:root {
  --paper: #f7f5f0;
  --paper-deep: #eeebe4;
  --surface: #ffffff;
  --ink: #0b1f3a;
  --body: #344253;
  --muted: #5e6b7b;
  --rule: #d7dbe0;
  --accent: #ef7c22;
  --accent-text: #ad4304;
  --accent-soft: #fcebdd;
  --navy-soft: #e8edf3;
  --white: #ffffff;
  --display: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-height: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

button {
  color: inherit;
  font: inherit;
}

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

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 160ms ease-out;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(247, 245, 240, 0.88);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  border-color: color-mix(in srgb, var(--rule) 82%, transparent);
  box-shadow: 0 8px 30px rgba(11, 31, 58, 0.04);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(100% - (var(--gutter) * 2), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--ink);
  white-space: nowrap;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.brand-place {
  padding-left: 0.75rem;
  border-left: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.25rem);
}

.site-nav > a {
  position: relative;
  color: var(--body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.055em;
}

.site-nav > a:not(.nav-contact)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease);
}

.site-nav > a:not(.nav-contact):hover::after,
.site-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  min-height: 40px;
  padding: 0.5rem 1.1rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 70%, var(--ink));
  color: var(--ink) !important;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-contact:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white) !important;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  place-content: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  min-height: min(900px, 100svh);
  padding: clamp(9rem, 16vh, 11rem) 0 clamp(5rem, 11vh, 7.5rem);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8.5rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 2.2rem;
  height: 2px;
  flex: 0 0 auto;
  background: var(--accent);
}

.hero h1 {
  margin-top: 1.35rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(5rem, 9vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero-role {
  margin-top: 2rem;
  color: var(--body);
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.hero-role a {
  background-image: linear-gradient(var(--rule), var(--rule));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 180ms ease;
}

.hero-role a:hover {
  background-image: linear-gradient(var(--accent), var(--accent));
}

.hero-statement {
  max-width: 37rem;
  margin-top: 2rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  letter-spacing: -0.025em;
  line-height: 1.27;
  text-wrap: balance;
}

.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.button svg,
.feature-link svg {
  width: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms var(--ease);
}

.button-primary {
  padding: 0.8rem 1.35rem;
  background: var(--ink);
  color: var(--white);
  transition:
    background-color 180ms ease,
    transform 180ms var(--ease);
}

.button-primary:hover {
  background: #15365f;
  transform: translateY(-2px);
}

.button-primary:hover svg,
.feature-link:hover svg {
  transform: translateX(4px);
}

.button-text {
  position: relative;
  color: var(--ink);
}

.button-text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.button-text:hover::after {
  transform: scaleX(0.45);
}

.button-text svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.profile-links {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.025em;
}

.profile-links li {
  display: flex;
  align-items: center;
}

.profile-links li:not(:last-child)::after {
  content: "";
  width: 3px;
  height: 3px;
  margin: 0 0.8rem;
  background: var(--accent);
  border-radius: 50%;
}

.profile-links a:hover {
  color: var(--ink);
}

.hero-visual {
  position: relative;
  width: min(100%, 27rem);
  justify-self: end;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #d8dddf;
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.14);
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.9) contrast(1.02);
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: -1.35rem;
  right: -1.35rem;
  width: 44%;
  height: 42%;
  background: var(--accent-soft);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: -0.85rem;
  bottom: 4.25rem;
  z-index: 2;
  width: 1.7rem;
  height: 5.5rem;
  background: var(--accent);
}

.portrait-caption {
  margin-top: 1.15rem;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.focus-band {
  border-block: 1px solid var(--rule);
}

.focus-grid {
  min-height: 9.5rem;
  display: grid;
  grid-template-columns: 0.62fr 1.45fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.focus-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.focus-statement {
  max-width: 34rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.focus-topics {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.focus-topics li {
  position: relative;
  padding-left: 1.1rem;
}

.focus-topics li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.38rem;
  height: 1px;
  background: var(--accent);
}

.section {
  padding: clamp(5.5rem, 10vw, 8rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7.5rem);
}

.section-heading h2,
.about-heading h2 {
  max-width: 43rem;
  margin-top: 1rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.7rem, 5.2vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 32rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.paper-group {
  margin-top: clamp(4rem, 7vw, 6.25rem);
}

.publication-group {
  margin-top: clamp(5rem, 9vw, 7.5rem);
}

.paper-group-heading {
  padding-bottom: 1.35rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
}

.paper-group-heading h3 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.paper-group-heading span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.paper-row {
  position: relative;
  min-height: 10.5rem;
  padding: 1.8rem 0;
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr) 6rem;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--rule);
  transition:
    background-color 200ms ease,
    padding 200ms var(--ease);
}

.paper-row::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--gutter) * -0.45);
  z-index: -1;
  background: var(--accent-soft);
  opacity: 0;
  transition: opacity 200ms ease;
}

.paper-row:hover::before,
.paper-row:focus-within::before {
  opacity: 0.62;
}

.paper-number {
  align-self: start;
  padding-top: 0.2rem;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.95rem;
}

.paper-meta {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.paper-meta span {
  color: var(--ink);
}

.paper-meta span::after {
  content: "·";
  margin: 0 0.45rem;
  color: var(--accent);
}

.paper-copy h4 {
  max-width: 52rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.24;
  text-wrap: balance;
}

.paper-copy h4 a {
  background-image: linear-gradient(var(--accent), var(--accent));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  transition: background-size 240ms var(--ease);
}

.paper-row:hover .paper-copy h4 a,
.paper-copy h4 a:focus-visible {
  background-size: 100% 2px;
}

.paper-authors {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.paper-note {
  margin-top: 0.75rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--accent);
  color: var(--body);
  font-size: 0.73rem;
  line-height: 1.5;
}

.paper-action {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-action svg {
  width: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 180ms var(--ease);
}

.paper-row:hover .paper-action svg,
.paper-action:hover svg {
  transform: translate(3px, -3px);
}

.feature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 8rem) 0;
  background: var(--ink);
  color: var(--white);
}

.feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.25rem, 8vw, 9rem);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.48fr 1.2fr 0.62fr;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.56);
}

.feature-kicker > p:last-child {
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.75rem;
}

.feature-copy h2 {
  max-width: 43rem;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3rem, 5.7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.feature-copy > p {
  max-width: 43rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.8;
}

.feature-link {
  width: fit-content;
  min-height: 48px;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.045em;
}

.feature-takeaway {
  padding-top: 0.5rem;
}

.feature-mark {
  display: block;
  height: 2.6rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: 4.8rem;
  line-height: 1;
}

.feature-takeaway p {
  max-width: 15rem;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.teaching-section {
  background: var(--surface);
}

.course-list {
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 2px solid var(--ink);
}

.course-row {
  position: relative;
  min-height: 9.5rem;
  padding: 1.75rem 0;
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) minmax(0, 1fr) 3rem;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--rule);
  transition: color 180ms ease;
}

.course-row::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--gutter) * -0.45);
  z-index: 0;
  background: var(--navy-soft);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms var(--ease);
}

.course-row:hover::before {
  transform: scaleY(1);
}

.course-row > * {
  position: relative;
  z-index: 1;
}

.course-code {
  color: var(--accent-text);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.course-row h3 {
  max-width: 46rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

.course-row div p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.course-index {
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.78rem;
  text-align: right;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.15fr) minmax(240px, 0.55fr);
  align-items: start;
  gap: clamp(3rem, 6vw, 6rem);
}

.about-heading h2 {
  font-size: clamp(2.6rem, 4.6vw, 3.9rem);
}

.about-copy > p {
  max-width: 44rem;
  color: var(--body);
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-copy .about-lead {
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  letter-spacing: -0.022em;
  line-height: 1.38;
}

.about-facts {
  margin-top: 2.75rem;
  border-top: 1px solid color-mix(in srgb, var(--rule) 80%, var(--ink));
}

.about-facts > div {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 80%, var(--ink));
}

.about-facts dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-facts dd {
  color: var(--body);
  font-size: 0.78rem;
}

.about-facts a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.highlights {
  padding-left: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid color-mix(in srgb, var(--rule) 75%, var(--ink));
}

.highlights h3 {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.highlights ol {
  margin-top: 1.5rem;
}

.highlights li {
  padding: 1.15rem 0;
  border-top: 1px solid color-mix(in srgb, var(--rule) 75%, var(--ink));
}

.highlights li > span {
  color: var(--accent-text);
  font-family: var(--display);
  font-size: 1.15rem;
}

.highlights li p {
  margin-top: 0.45rem;
  color: var(--body);
  font-size: 0.76rem;
  line-height: 1.65;
}

.highlights em {
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.92rem;
}

.site-footer {
  padding: clamp(4.5rem, 8vw, 6.5rem) 0 1.5rem;
  background: #07182e;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 4rem;
}

.footer-label {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-email {
  position: relative;
  width: fit-content;
  margin-top: 0.75rem;
  display: block;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.footer-email::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.footer-email:hover::after {
  transform: scaleX(0.35);
}

.footer-details > p {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.77rem;
  line-height: 1.75;
}

.footer-details nav {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-details a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.75rem;
}

.footer-details a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.footer-bottom a {
  justify-self: end;
}

html.js [data-reveal] {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 9.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(270px, 0.72fr);
    gap: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 10vw, 6.5rem);
  }

  .focus-grid {
    grid-template-columns: 0.45fr 1.2fr;
  }

  .focus-topics {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .feature-grid {
    grid-template-columns: 0.48fr 1.52fr;
  }

  .feature-takeaway {
    grid-column: 2;
    padding-top: 1rem;
  }

  .feature-takeaway p {
    max-width: 30rem;
  }

  .about-grid {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.1fr);
  }

  .highlights {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    background: rgba(247, 245, 240, 0.94);
    background: color-mix(in srgb, var(--paper) 94%, transparent);
  }

  .site-nav {
    max-width: calc(100% - 10rem);
    gap: 0.8rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav > a {
    flex: 0 0 auto;
    font-size: 0.7rem;
  }

  .site-nav .nav-contact {
    display: none;
  }

  html.js .menu-toggle {
    z-index: 102;
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  html.js .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    max-width: none;
    padding: 7rem var(--gutter) 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--paper);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 220ms var(--ease),
      visibility 0s linear 220ms;
  }

  html.js .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  html.js .site-nav > a {
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 1.05;
  }

  .site-nav > a:not(.nav-contact)::after {
    bottom: -0.15rem;
  }

  html.js .site-nav .nav-contact {
    display: inline-flex;
    min-height: 52px;
    margin-top: 1.25rem;
    padding: 0.6rem 1.3rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .hero {
    padding: 8.5rem 0 5rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 23vw, 6.4rem);
  }

  .hero-visual {
    width: min(88%, 27rem);
    justify-self: center;
  }

  .focus-grid {
    min-height: auto;
    padding: 2rem 0;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section-heading h2,
  .about-heading h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .paper-row {
    min-height: 0;
    padding: 1.75rem 0 2rem;
    grid-template-columns: 2.25rem minmax(0, 1fr);
    align-items: start;
    gap: 0.85rem;
  }

  .paper-action {
    grid-column: 2;
    width: fit-content;
    min-height: 38px;
    justify-content: flex-start;
  }

  .paper-meta {
    font-size: 0.72rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .feature-takeaway {
    grid-column: auto;
  }

  .course-row {
    min-height: 0;
    padding: 2rem 0;
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1.5rem;
  }

  .course-code {
    grid-column: 1;
    font-size: 2.2rem;
  }

  .course-row > div {
    grid-column: 1 / -1;
  }

  .course-index {
    grid-column: 2;
    grid-row: 1;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .highlights {
    grid-column: auto;
    padding-left: 0;
    border-left: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-email {
    font-size: clamp(2.2rem, 10.5vw, 4.2rem);
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.6rem;
  }

  .button-primary,
  .button-text {
    width: 100%;
  }

  .button-text::after {
    bottom: 0.2rem;
  }

  .profile-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .profile-links li:not(:last-child)::after {
    display: none;
  }

  .hero-visual {
    width: calc(100% - 1.25rem);
  }

  .paper-copy h4 {
    text-wrap: pretty;
  }

  .paper-meta span {
    display: block;
  }

  .paper-meta span::after {
    display: none;
  }

  .about-facts > div {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

/* Final consolidation: one identity, one research statement, no secondary footer composition. */

body.theme-classic .brand-name {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

body.theme-classic .section-heading {
  display: block;
}

body.theme-classic .paper-group {
  margin-top: 2.75rem;
}

body.theme-classic .publication-group {
  margin-top: 4rem;
}

body.theme-classic .course-list {
  margin-top: 2.75rem;
}

body.theme-classic .about-grid {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
}

body.theme-classic .about-copy {
  max-width: 42rem;
}

body.theme-classic .about-copy > p {
  font-size: 0.95rem;
}

body.theme-classic .site-footer {
  padding: 1.4rem 0;
}

body.theme-classic .footer-minimal {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
}

@media (max-width: 760px) {
  body.theme-classic .paper-group,
  body.theme-classic .course-list {
    margin-top: 2.15rem;
  }

  body.theme-classic .publication-group {
    margin-top: 3.4rem;
  }

  body.theme-classic .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  body.theme-classic .site-footer {
    padding: 1.2rem 0;
  }
}

@media (max-width: 760px) and (max-height: 560px) {
  html.js .site-nav {
    justify-content: flex-start;
  }
}

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

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

  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Restrained academic direction */

body.theme-classic {
  --paper: #fbfaf7;
  --paper-deep: #f2f0eb;
  --surface: #ffffff;
  --ink: #17263a;
  --body: #344354;
  --muted: #687382;
  --rule: #d8dde2;
  --accent: #9f4b26;
  --accent-text: #8c3f20;
  --accent-soft: #f5eee8;
  --navy-soft: #f3f5f7;
  --container: 980px;
  --header-height: 64px;
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.68;
}

body.theme-classic .site-header {
  position: relative;
  inset: auto;
  height: var(--header-height);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  box-shadow: none;
  transition: none;
}

body.theme-classic .site-header.is-scrolled {
  border-color: var(--rule);
  box-shadow: none;
  backdrop-filter: none;
}

body.theme-classic .brand-name {
  font-size: 1.3rem;
  letter-spacing: -0.015em;
}

body.theme-classic .brand-place {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

body.theme-classic .site-nav {
  gap: clamp(1.1rem, 2.2vw, 1.8rem);
}

body.theme-classic .site-nav > a {
  color: var(--body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.015em;
}

body.theme-classic .site-nav > a::after {
  bottom: -0.35rem;
  height: 1px;
  background: var(--accent);
}

body.theme-classic .hero {
  min-height: 0;
  padding: 3.75rem 0 4.25rem;
  display: block;
}

body.theme-classic .hero-grid {
  grid-template-columns: minmax(0, 1fr) 185px;
  align-items: center;
  gap: clamp(3rem, 7vw, 5.5rem);
}

body.theme-classic .hero .eyebrow {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

body.theme-classic .hero h1 {
  margin-top: 0;
  font-size: clamp(3rem, 4.2vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

body.theme-classic .hero-role {
  margin-top: 1.25rem;
  font-size: 0.96rem;
  line-height: 1.65;
}

body.theme-classic .hero-statement {
  max-width: 38rem;
  margin-top: 1.45rem;
  font-size: clamp(1.15rem, 1.7vw, 1.32rem);
  letter-spacing: -0.012em;
  line-height: 1.5;
  text-wrap: pretty;
}

body.theme-classic .profile-links {
  margin-top: 1.55rem;
  color: #315c7c;
  font-size: 0.82rem;
  letter-spacing: 0;
}

body.theme-classic .profile-links li:not(:last-child)::after {
  width: 2px;
  height: 2px;
  margin: 0 0.65rem;
  background: var(--muted);
}

body.theme-classic .profile-links a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

body.theme-classic .profile-links a:hover {
  color: var(--ink);
  text-decoration-color: var(--rule);
}

body.theme-classic .hero-visual {
  width: 185px;
  justify-self: end;
}

body.theme-classic .portrait-frame {
  aspect-ratio: 1 / 1;
  background: #e4e6e7;
  border: 1px solid var(--rule);
  box-shadow: none;
}

body.theme-classic .portrait-frame img {
  filter: none;
}

body.theme-classic .hero-visual::before,
body.theme-classic .hero-visual::after,
body.theme-classic .portrait-frame::before {
  display: none;
}

body.theme-classic .section {
  padding: 4.5rem 0;
}

body.theme-classic .research-section {
  border-top: 1px solid var(--rule);
}

body.theme-classic .section-heading {
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

body.theme-classic .section-heading h2,
body.theme-classic .about-heading h2,
body.theme-classic .news-grid > h2 {
  max-width: none;
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

body.theme-classic .section-heading > p {
  max-width: 40rem;
  color: var(--body);
  font-size: 0.96rem;
  line-height: 1.72;
}

body.theme-classic .paper-group {
  margin-top: 3.25rem;
}

body.theme-classic .publication-group {
  margin-top: 4.5rem;
}

body.theme-classic .paper-group-heading {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink);
}

body.theme-classic .paper-group-heading h3 {
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

body.theme-classic .paper-row {
  min-height: 0;
  padding: 1.45rem 0 1.55rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 2rem;
  transition: none;
}

body.theme-classic .paper-row::before {
  display: none;
}

body.theme-classic .paper-meta {
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.5;
  text-transform: none;
}

body.theme-classic .paper-meta span {
  font-weight: 600;
}

body.theme-classic .paper-meta span::after {
  color: var(--muted);
}

body.theme-classic .paper-copy h4 {
  max-width: 48rem;
  font-size: clamp(1.16rem, 2vw, 1.35rem);
  letter-spacing: -0.015em;
  line-height: 1.35;
  text-wrap: pretty;
}

body.theme-classic .paper-copy h4 a {
  background-size: 0 1px;
}

body.theme-classic .paper-row:hover .paper-copy h4 a,
body.theme-classic .paper-copy h4 a:focus-visible {
  background-size: 100% 1px;
}

body.theme-classic .paper-authors {
  margin-top: 0.45rem;
  font-size: 0.82rem;
}

body.theme-classic .paper-note {
  margin-top: 0.55rem;
  padding-left: 0;
  border-left: 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-style: italic;
}

body.theme-classic .paper-action {
  width: auto;
  min-height: 0;
  padding-top: 1.7rem;
  display: inline-block;
  color: #315c7c;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: none;
}

body.theme-classic .news-section {
  padding: 2.8rem 0;
  background: var(--surface);
  border-block: 1px solid var(--rule);
}

body.theme-classic .news-grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 4.5rem);
}

body.theme-classic .news-grid > h2 {
  font-family: var(--display);
  font-weight: 500;
}

body.theme-classic .news-item {
  padding-top: 0.3rem;
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: 1.5rem;
}

body.theme-classic .news-item time {
  color: var(--muted);
  font-size: 0.78rem;
}

body.theme-classic .news-item p {
  color: var(--body);
  font-size: 0.9rem;
  line-height: 1.6;
}

body.theme-classic .news-item a {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.12rem;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 3px;
}

body.theme-classic .news-item a:hover {
  text-decoration-color: var(--accent);
}

body.theme-classic .news-item span {
  margin-top: 0.3rem;
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

body.theme-classic .teaching-section {
  background: var(--paper);
}

body.theme-classic .course-list {
  margin-top: 3rem;
  border-top: 1px solid var(--ink);
}

body.theme-classic .course-row {
  min-height: 0;
  padding: 1.25rem 0;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: 2rem;
  transition: none;
}

body.theme-classic .course-row::before {
  display: none;
}

body.theme-classic .course-code {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.theme-classic .course-row h3 {
  font-size: 1.12rem;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

body.theme-classic .course-row div p {
  margin-top: 0.3rem;
  font-size: 0.74rem;
}

body.theme-classic .about-section {
  background: var(--paper-deep);
}

body.theme-classic .about-grid {
  grid-template-columns: 160px minmax(0, 1fr) 215px;
  gap: clamp(2.5rem, 5vw, 4rem);
}

body.theme-classic .about-heading h2 {
  font-size: clamp(2rem, 3.4vw, 2.45rem);
}

body.theme-classic .about-copy > p {
  font-size: 0.92rem;
  line-height: 1.75;
}

body.theme-classic .about-copy .about-lead {
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

body.theme-classic .about-facts {
  margin-top: 2rem;
}

body.theme-classic .about-facts > div {
  padding: 0.75rem 0;
  grid-template-columns: 5rem 1fr;
}

body.theme-classic .highlights {
  padding-left: 1.5rem;
}

body.theme-classic .highlights li {
  padding: 0.9rem 0;
}

body.theme-classic .highlights li > span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
}

body.theme-classic .highlights li p {
  margin-top: 0.3rem;
  font-size: 0.76rem;
  line-height: 1.55;
}

body.theme-classic .site-footer {
  padding: 3.5rem 0 1.25rem;
  background: var(--paper);
  border-top: 1px solid var(--rule);
  color: var(--body);
}

body.theme-classic .footer-main {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
}

body.theme-classic .footer-label {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

body.theme-classic .footer-email {
  margin-top: 0.6rem;
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

body.theme-classic .footer-email::after {
  bottom: -0.25rem;
  height: 1px;
  background: var(--rule);
}

body.theme-classic .footer-details > p {
  color: var(--muted);
  font-size: 0.76rem;
}

body.theme-classic .footer-details nav {
  margin-top: 1rem;
}

body.theme-classic .footer-details a,
body.theme-classic .footer-bottom a {
  color: #315c7c;
  font-size: 0.75rem;
}

body.theme-classic .footer-details a:hover,
body.theme-classic .footer-bottom a:hover {
  color: var(--ink);
}

body.theme-classic .footer-bottom {
  margin-top: 2.75rem;
  border-color: var(--rule);
  color: var(--muted);
}

@media (max-width: 760px) {
  body.theme-classic .site-header {
    height: 64px;
  }

  body.theme-classic html.js .site-nav,
  html.js body.theme-classic .site-nav {
    padding: 5.5rem var(--gutter) 2.5rem;
    justify-content: flex-start;
    gap: 1.1rem;
  }

  body.theme-classic html.js .site-nav > a,
  html.js body.theme-classic .site-nav > a {
    font-size: 1.55rem;
    letter-spacing: -0.015em;
  }

  body.theme-classic .hero {
    padding: 2.75rem 0 3.25rem;
  }

  body.theme-classic .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  body.theme-classic .hero h1 {
    font-size: 2.65rem;
    line-height: 1;
  }

  body.theme-classic .hero-role {
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  body.theme-classic .hero-statement {
    margin-top: 1.25rem;
    font-size: 1.08rem;
  }

  body.theme-classic .profile-links {
    margin-top: 1.25rem;
    align-items: center;
    flex-direction: row;
    gap: 0;
  }

  body.theme-classic .profile-links li:not(:last-child)::after {
    display: block;
  }

  body.theme-classic .hero-visual {
    width: 125px;
    justify-self: start;
  }

  body.theme-classic .section {
    padding: 3.4rem 0;
  }

  body.theme-classic .section-heading,
  body.theme-classic .news-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  body.theme-classic .section-heading h2,
  body.theme-classic .about-heading h2,
  body.theme-classic .news-grid > h2 {
    font-size: 1.9rem;
  }

  body.theme-classic .paper-group {
    margin-top: 2.5rem;
  }

  body.theme-classic .publication-group {
    margin-top: 3.75rem;
  }

  body.theme-classic .paper-row {
    padding: 1.25rem 0 1.35rem;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
  }

  body.theme-classic .paper-copy {
    grid-column: 1;
  }

  body.theme-classic .paper-action {
    grid-column: 2;
    align-self: start;
    padding-top: 1.55rem;
  }

  body.theme-classic .paper-meta span {
    display: inline;
  }

  body.theme-classic .paper-meta span::after {
    display: inline;
  }

  body.theme-classic .news-item {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  body.theme-classic .course-list {
    margin-top: 2.4rem;
  }

  body.theme-classic .course-row {
    padding: 1.15rem 0;
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 1rem;
  }

  body.theme-classic .course-code {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.82rem;
  }

  body.theme-classic .course-row > div {
    grid-column: 2;
    grid-row: 1;
  }

  body.theme-classic .course-row h3 {
    font-size: 1rem;
  }

  body.theme-classic .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.theme-classic .highlights {
    padding: 1.75rem 0 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  body.theme-classic .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body.theme-classic .footer-email {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  body.theme-classic .profile-links {
    align-items: flex-start;
    flex-direction: row;
    gap: 0.45rem 0;
  }

  body.theme-classic .profile-links li:not(:last-child)::after {
    margin-inline: 0.5rem;
  }

  body.theme-classic .paper-meta span {
    display: inline;
  }

  body.theme-classic .paper-meta span::after {
    display: inline;
  }

  body.theme-classic .footer-bottom {
    grid-template-columns: 1fr auto;
  }
}

/* Quiet final scale: spare navigation, modest hierarchy, restrained typography. */

body.theme-classic {
  font-size: 0.95rem;
  --hairline: #e3e5e7;
}

body.theme-classic .site-header {
  height: 56px;
}

body.theme-classic .nav-shell {
  justify-content: flex-end;
}

body.theme-classic .site-nav {
  gap: clamp(1rem, 2vw, 1.55rem);
}

body.theme-classic .site-nav > a {
  font-size: 0.74rem;
}

body.theme-classic .site-nav > a[aria-current="true"]::after {
  transform: scaleX(0);
}

body.theme-classic .site-nav > a:hover::after,
body.theme-classic .site-nav > a:focus-visible::after {
  background: var(--rule);
  transform: scaleX(1);
}

body.theme-classic .hero {
  padding: 3.3rem 0 3.8rem;
}

body.theme-classic .hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.65rem);
  letter-spacing: -0.035em;
}

body.theme-classic .hero-grid {
  grid-template-columns: minmax(0, 1fr) 160px;
}

body.theme-classic .hero-visual {
  width: 160px;
}

body.theme-classic .hero-role {
  margin-top: 1.1rem;
  font-size: 0.86rem;
  line-height: 1.6;
}

body.theme-classic .hero-statement {
  max-width: 34rem;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.55;
}

body.theme-classic .section {
  padding: 4.1rem 0;
}

body.theme-classic .section-heading h2,
body.theme-classic .about-heading h2 {
  font-size: clamp(1.65rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
}

body.theme-classic .paper-group-heading h3 {
  font-size: 1.24rem;
}

body.theme-classic .paper-row {
  padding: 1.3rem 0 1.4rem;
}

body.theme-classic .paper-meta {
  font-size: 0.69rem;
}

body.theme-classic .paper-copy h4 {
  font-size: clamp(1.02rem, 1.45vw, 1.12rem);
}

body.theme-classic .paper-authors {
  font-size: 0.77rem;
}

body.theme-classic .paper-note {
  font-size: 0.71rem;
}

body.theme-classic .paper-action {
  font-size: 0.71rem;
}

body.theme-classic .course-code {
  font-size: 0.8rem;
}

body.theme-classic .course-row h3 {
  font-size: 1rem;
}

body.theme-classic .course-row div p {
  font-size: 0.7rem;
}

body.theme-classic .about-copy > p {
  font-size: 0.86rem;
  line-height: 1.7;
}

body.theme-classic .site-footer {
  padding: 1.1rem 0;
}

@media (max-width: 760px) {
  body.theme-classic .site-header {
    height: 56px;
  }

  body.theme-classic html.js .site-nav,
  html.js body.theme-classic .site-nav {
    padding-top: 4.75rem;
    gap: 0.9rem;
  }

  body.theme-classic .site-nav {
    max-width: 100%;
  }

  body.theme-classic html.js .site-nav > a,
  html.js body.theme-classic .site-nav > a {
    font-size: 1.32rem;
  }

  body.theme-classic .hero {
    padding: 2.45rem 0 3rem;
  }

  body.theme-classic .hero-grid {
    grid-template-columns: minmax(0, 1fr) 112px;
    column-gap: 1.25rem;
    row-gap: 0;
    align-items: start;
  }

  body.theme-classic .hero-copy {
    display: contents;
  }

  body.theme-classic .hero h1 {
    grid-column: 1;
    grid-row: 1;
    font-size: 2rem;
  }

  body.theme-classic .hero-role {
    grid-column: 1;
    grid-row: 2;
    font-size: 0.82rem;
  }

  body.theme-classic .hero-statement {
    grid-column: 1 / -1;
    grid-row: 3;
    font-size: 1rem;
  }

  body.theme-classic .hero-visual {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 112px;
    align-self: start;
    justify-self: end;
  }

  body.theme-classic .section {
    padding: 3.25rem 0;
  }

  body.theme-classic .section-heading h2,
  body.theme-classic .about-heading h2 {
    font-size: 1.55rem;
  }

  body.theme-classic .paper-group-heading h3 {
    font-size: 1.15rem;
  }

  body.theme-classic .paper-copy h4 {
    font-size: 1rem;
  }

  body.theme-classic .course-row h3 {
    font-size: 0.94rem;
  }

  body.theme-classic .site-footer {
    padding: 1rem 0;
  }
}

/* Bibliographic spacing replaces repeated table-like rules. */

body.theme-classic .paper-group-heading {
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--hairline);
}

body.theme-classic .paper-row {
  padding: 1.1rem 0 0.75rem;
  border-bottom: 0;
}

body.theme-classic .course-list {
  border-top: 1px solid var(--hairline);
}

body.theme-classic .course-row {
  padding: 0.8rem 0;
  border-bottom: 0;
}

@media (max-width: 760px) {
  body.theme-classic .paper-row {
    padding: 1rem 0 0.7rem;
  }

  body.theme-classic .course-row {
    padding: 0.75rem 0;
  }
}
