:root {
	--paper: #f5f4ef;
	--paper-deep: #ebece5;
	--surface: #fffefa;
	--surface-raised: #ffffff;
	--ink: #142631;
	--ink-soft: #30444f;
	--muted: #68777d;
	--line: #d9dfdc;
	--line-strong: #bdcac6;
	--navy: #173b57;
	--teal: #176c67;
	--teal-dark: #0f4f4d;
	--teal-soft: #e0eeea;
	--burgundy: #98333d;
	--burgundy-soft: #f6e8e8;
	--gold: #a86f14;
	--gold-soft: #f5edda;
	--stripe: #f7f8f4;
	--shadow-sm: 0 1px 2px rgba(18, 38, 49, 0.05), 0 8px 24px rgba(18, 38, 49, 0.05);
	--shadow-lg: 0 24px 70px rgba(18, 38, 49, 0.16);
	--serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
	--sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
	--content: 1180px;
	--header-height: 78px;
}

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

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

body {
	margin: 0;
	background:
		radial-gradient(circle at 8% 4%, rgba(23, 108, 103, 0.08), transparent 30rem),
		radial-gradient(circle at 92% 18%, rgba(168, 111, 20, 0.07), transparent 28rem),
		var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body::before {
	position: fixed;
	z-index: -1;
	inset: 0;
	background-image:
		linear-gradient(rgba(20, 38, 49, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(20, 38, 49, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, black, transparent 50rem);
	content: "";
	pointer-events: none;
}

::selection {
	background: var(--teal);
	color: #fff;
}

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

a {
	color: var(--teal-dark);
	text-decoration-color: rgba(15, 79, 77, 0.35);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color 160ms ease, text-decoration-color 160ms ease;
}

a:hover {
	color: var(--burgundy);
	text-decoration-color: currentColor;
}

button,
input {
	font: inherit;
}

button {
	color: inherit;
}

:focus-visible {
	outline: 3px solid rgba(23, 108, 103, 0.45);
	outline-offset: 4px;
}

.skip-link {
	position: fixed;
	z-index: 200;
	top: 12px;
	left: 12px;
	padding: 0.7rem 1rem;
	border-radius: 0.45rem;
	background: var(--ink);
	color: #fff;
	font-weight: 700;
	transform: translateY(-160%);
	transition: transform 160ms ease;
}

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

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

#wrapper {
	min-height: 100vh;
	overflow: clip;
}

.site-header {
	position: sticky;
	z-index: 100;
	top: 0;
	height: var(--header-height);
	border-bottom: 1px solid rgba(189, 202, 198, 0.72);
	background: rgba(245, 244, 239, 0.88);
	backdrop-filter: blur(18px) saturate(140%);
	-webkit-backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(calc(100% - 48px), var(--content));
	height: 100%;
	margin: 0 auto;
	gap: 2rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 0.72rem;
	color: var(--ink);
	text-decoration: none;
}

.brand:hover {
	color: var(--ink);
}

.brand-mark {
	display: grid;
	width: 2.6rem;
	height: 2.6rem;
	flex: 0 0 auto;
	place-items: center;
	border-radius: 50%;
	background: var(--ink);
	color: #fff;
	font-family: var(--serif);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.brand-copy {
	display: grid;
	line-height: 1.15;
}

.brand-copy strong {
	font-family: var(--serif);
	font-size: 1rem;
	font-weight: 600;
}

.brand-copy small {
	margin-top: 0.2rem;
	color: var(--muted);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

#nav {
	display: flex;
	align-items: center;
	gap: clamp(0.8rem, 2vw, 1.55rem);
}

#nav a {
	position: relative;
	padding: 0.4rem 0;
	color: var(--ink-soft);
	font-size: 0.76rem;
	font-weight: 720;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

#nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: var(--teal);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

#nav a:hover,
#nav a.active {
	color: var(--ink);
}

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

.menu-toggle {
	display: none;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--line-strong);
	border-radius: 0.45rem;
	background: rgba(255, 255, 255, 0.65);
	cursor: pointer;
	font-size: 0.73rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
	display: block;
	width: 1.1rem;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle-lines {
	position: relative;
}

.menu-toggle-lines::before {
	position: absolute;
	top: -5px;
}

.menu-toggle-lines::after {
	position: absolute;
	top: 5px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
	background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
	top: 0;
	transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
	top: 0;
	transform: rotate(-45deg);
}

#main {
	width: min(calc(100% - 48px), var(--content));
	margin: 0 auto;
}

.panel {
	position: relative;
	padding: clamp(5.5rem, 10vw, 8.5rem) 0;
	scroll-margin-top: calc(var(--header-height) + 20px);
}

.panel:not(:last-child) {
	border-bottom: 1px solid var(--line);
}

#me {
	display: grid;
	min-height: min(850px, calc(100vh - var(--header-height)));
	align-items: center;
	grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.7fr);
	gap: clamp(3rem, 8vw, 7.5rem);
	padding-top: clamp(5rem, 9vw, 8rem);
	padding-bottom: clamp(5rem, 9vw, 8rem);
}

#me::before {
	position: absolute;
	z-index: -1;
	top: 8%;
	right: -11%;
	width: 38rem;
	height: 38rem;
	border: 1px solid rgba(23, 108, 103, 0.16);
	border-radius: 50%;
	box-shadow:
		0 0 0 4rem rgba(23, 108, 103, 0.025),
		0 0 0 8rem rgba(23, 108, 103, 0.018);
	content: "";
}

.hero-copy {
	position: relative;
	z-index: 1;
}

.eyebrow,
.section-kicker {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin: 0 0 1.4rem;
	color: var(--teal-dark);
	font-size: 0.74rem;
	font-weight: 780;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
	width: 2.5rem;
	height: 1px;
	background: var(--teal);
	content: "";
}

h1,
h2,
h3 {
	color: var(--ink);
	font-family: var(--serif);
	text-wrap: balance;
}

h1 {
	max-width: 9ch;
	margin: 0;
	font-size: clamp(4.1rem, 8.2vw, 7.3rem);
	font-weight: 520;
	letter-spacing: -0.065em;
	line-height: 0.87;
}

.hero-intro {
	max-width: 48rem;
	margin: 2.2rem 0 0;
	color: var(--ink-soft);
	font-size: clamp(1.02rem, 1.4vw, 1.16rem);
	line-height: 1.75;
}

.hero-intro a {
	font-weight: 620;
}

.research-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.research-topics li {
	padding: 0.42rem 0.72rem;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.48);
	color: var(--ink-soft);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.025em;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 2.25rem;
}

.button {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1.08rem;
	border: 1px solid transparent;
	border-radius: 0.45rem;
	font-size: 0.78rem;
	font-weight: 760;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
	background: var(--ink);
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.button-primary:hover {
	background: var(--teal-dark);
	color: #fff;
}

.button-secondary {
	border-color: var(--line-strong);
	background: rgba(255, 255, 255, 0.4);
	color: var(--ink);
}

.button-secondary:hover {
	border-color: var(--teal);
	color: var(--teal-dark);
}

.pic {
	position: relative;
	display: block;
	color: inherit;
	text-decoration: none;
}

.portrait-frame {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border-radius: 12rem 12rem 1.2rem 1.2rem;
	background: var(--paper-deep);
	box-shadow: var(--shadow-lg);
}

.portrait-frame::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: inherit;
	box-shadow: inset 0 -8rem 7rem -7rem rgba(20, 38, 49, 0.3);
	content: "";
}

.portrait-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 18%;
	transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pic:hover .portrait-frame img {
	transform: scale(1.025);
}

.portrait-caption {
	position: absolute;
	right: -1rem;
	bottom: 1.3rem;
	display: flex;
	min-width: min(19rem, 92%);
	align-items: center;
	gap: 0.8rem;
	padding: 0.9rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 0.65rem;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.status-dot {
	width: 0.62rem;
	height: 0.62rem;
	flex: 0 0 auto;
	border-radius: 50%;
	background: var(--teal);
	box-shadow: 0 0 0 5px var(--teal-soft);
}

.portrait-caption > span:last-child {
	display: grid;
}

.portrait-caption strong {
	color: var(--ink);
	font-family: var(--serif);
	font-size: 0.92rem;
	font-weight: 650;
}

.portrait-caption small {
	color: var(--muted);
	font-size: 0.69rem;
	font-weight: 650;
	letter-spacing: 0.035em;
}

.section-header {
	display: grid;
	max-width: 60rem;
	grid-template-columns: minmax(0, 1fr);
	margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
}

.section-header:has(> #awards) {
	max-width: none;
}

.section-header h2 {
	margin: 0;
	font-size: clamp(3rem, 6vw, 5.5rem);
	font-weight: 520;
	letter-spacing: -0.055em;
	line-height: 0.96;
}

.section-summary {
	max-width: 43rem;
	margin: 1.35rem 0 0;
	color: var(--muted);
	font-size: 1.05rem;
	line-height: 1.65;
}

.section-content > h3,
.publication-groups > h3,
#service > h3 {
	margin: 4.5rem 0 1.2rem;
	font-size: clamp(1.55rem, 3vw, 2.3rem);
	font-weight: 560;
	letter-spacing: -0.025em;
	line-height: 1.15;
}

.section-content > h3:first-of-type,
.publication-groups > h3:first-child,
#service > .section-jump-links + h3 {
	margin-top: 0;
}

table.default {
	width: 100%;
	margin: 0 0 2.5rem;
	border-collapse: separate;
	border-spacing: 0;
	border-top: 2px solid var(--ink);
	background: rgba(255, 255, 255, 0.54);
	font-size: 0.88rem;
	line-height: 1.5;
}

table.default th,
table.default td {
	padding: 0.95rem 1rem;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

table.default th {
	background: transparent !important;
	color: var(--ink-soft);
	font-size: 0.68rem !important;
	font-weight: 780 !important;
	letter-spacing: 0.085em;
	text-transform: uppercase;
}

table.default tr {
	background: transparent !important;
}

table.default tr:nth-child(even) td {
	background: rgba(235, 238, 232, 0.45) !important;
}

table.default tr:nth-child(odd) td {
	background: rgba(255, 255, 255, 0.28) !important;
}

table.default tbody tr {
	transition: background-color 150ms ease;
}

table.default tbody tr:hover td {
	background: var(--teal-soft) !important;
}

table.default a {
	font-weight: 660;
}

.authors {
	margin-top: 0.34rem;
	color: var(--muted);
	font-size: 0.8rem;
	font-weight: 430;
	line-height: 1.48;
}

.awarded {
	display: inline-block;
	margin-top: 0.55rem;
	padding: 0.22rem 0.48rem;
	border-radius: 0.25rem;
	background: var(--gold-soft);
	color: #714a0c;
	font-size: 0.72rem;
	font-weight: 720;
	line-height: 1.4;
}

#publications table td:first-child {
	width: 5.4rem;
	color: var(--teal-dark);
	font-family: var(--mono);
	font-size: 0.74rem;
	font-weight: 760;
	white-space: nowrap;
}

#publications table td:nth-child(2) {
	width: 65%;
	color: var(--ink);
	font-weight: 620;
}

#publications table td:nth-child(n + 3) {
	color: var(--ink-soft);
	font-size: 0.8rem;
	font-weight: 650;
	white-space: nowrap;
}

.publication-tools {
	position: sticky;
	z-index: 30;
	top: calc(var(--header-height) + 12px);
	display: grid;
	align-items: center;
	grid-template-columns: minmax(260px, 1fr) auto auto;
	gap: 1rem;
	margin: 0 0 3.6rem;
	padding: 0.82rem;
	border: 1px solid rgba(189, 202, 198, 0.84);
	border-radius: 0.72rem;
	background: rgba(255, 254, 250, 0.9);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(16px) saturate(130%);
	-webkit-backdrop-filter: blur(16px) saturate(130%);
}

.search-field {
	position: relative;
	display: flex;
	align-items: center;
}

.search-field input {
	width: 100%;
	min-height: 2.85rem;
	padding: 0.64rem 0.85rem 0.64rem 2.55rem;
	border: 1px solid var(--line);
	border-radius: 0.45rem;
	background: rgba(245, 244, 239, 0.7);
	color: var(--ink);
	font-size: 0.82rem;
	transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.search-field input::placeholder {
	color: #7c898e;
}

.search-field input:focus {
	border-color: var(--teal);
	outline: none;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(23, 108, 103, 0.12);
}

.search-icon {
	position: absolute;
	z-index: 1;
	left: 0.9rem;
	width: 0.82rem;
	height: 0.82rem;
	border: 2px solid var(--muted);
	border-radius: 50%;
	pointer-events: none;
}

.search-icon::after {
	position: absolute;
	right: -0.38rem;
	bottom: -0.23rem;
	width: 0.43rem;
	height: 2px;
	background: var(--muted);
	content: "";
	transform: rotate(45deg);
	transform-origin: left center;
}

.filter-buttons {
	display: flex;
	gap: 0.3rem;
}

.filter-buttons button {
	min-height: 2.6rem;
	padding: 0.55rem 0.72rem;
	border: 0;
	border-radius: 0.38rem;
	background: transparent;
	color: var(--muted);
	cursor: pointer;
	font-size: 0.7rem;
	font-weight: 760;
	letter-spacing: 0.045em;
	text-transform: uppercase;
	transition: background 150ms ease, color 150ms ease;
}

.filter-buttons button:hover {
	background: var(--paper-deep);
	color: var(--ink);
}

.filter-buttons button.active {
	background: var(--ink);
	color: #fff;
}

.result-count {
	min-width: 7.8rem;
	margin: 0;
	color: var(--muted);
	font-size: 0.72rem;
	font-variant-numeric: tabular-nums;
	font-weight: 680;
	text-align: right;
}

.row-hidden,
.publication-group-hidden {
	display: none !important;
}

.no-results {
	margin: 2rem 0 0;
	padding: 2rem;
	border: 1px dashed var(--line-strong);
	background: rgba(255, 255, 255, 0.4);
	color: var(--muted);
	text-align: center;
}

.featured-award {
	margin: 2rem 0 0 !important;
	border: 1px solid rgba(152, 51, 61, 0.18);
	border-left: 3px solid rgba(152, 51, 61, 0.62);
	border-radius: 0.5rem;
	background: linear-gradient(90deg, var(--burgundy-soft), rgba(255, 254, 250, 0.65)) !important;
	box-shadow: none;
	overflow: hidden;
}

.featured-award p {
	margin: 0;
	padding: clamp(1.1rem, 2.5vw, 1.55rem) clamp(1.2rem, 3vw, 1.8rem) !important;
	color: var(--ink-soft) !important;
	font-family: var(--serif);
	font-size: clamp(1rem, 2vw, 1.3rem) !important;
	font-weight: 520 !important;
	letter-spacing: -0.015em;
	line-height: 1.35;
	text-align: left;
	text-transform: none;
}

.featured-award a {
	color: var(--burgundy);
	text-decoration-color: rgba(152, 51, 61, 0.35);
}

#awards > table:not(.featured-award) td:first-child {
	width: 70%;
	color: var(--ink);
	font-weight: 640;
}

.section-jump-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: -1.3rem 0 3.6rem;
	padding: 0;
}

.section-jump-links a {
	padding: 0.45rem 0.7rem;
	border: 1px solid var(--line-strong);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	color: var(--ink-soft);
	font-size: 0.72rem;
	font-weight: 700;
	text-decoration: none;
}

.section-jump-links a:hover {
	border-color: var(--teal);
	background: var(--teal-soft);
	color: var(--teal-dark);
}

.contact-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
	gap: 1px;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 0.9rem;
	background: var(--line);
	box-shadow: var(--shadow-sm);
}

.contact-card {
	min-height: 18rem;
	padding: clamp(2rem, 5vw, 4rem);
	background: var(--surface);
}

.contact-card-accent {
	background: var(--ink);
	color: #fff;
}

.contact-label {
	margin: 0 0 2rem;
	color: var(--teal);
	font-size: 0.72rem;
	font-weight: 780;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.contact-card-accent .contact-label {
	color: #90d2ca;
}

.contact-card p {
	margin-top: 0;
}

.contact-card strong {
	font-family: var(--serif);
	font-size: 1.18rem;
	font-weight: 600;
}

.contact-card > a {
	display: inline-block;
	margin-top: 1.5rem;
	font-size: 0.76rem;
	font-weight: 750;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.contact-email {
	margin-bottom: 1.3rem;
	font-family: var(--serif);
	font-size: clamp(1.8rem, 4vw, 3.1rem);
	font-weight: 520;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.contact-note {
	max-width: 25rem;
	color: #b8c4c8;
	font-size: 0.79rem;
	line-height: 1.55;
}

#footer {
	margin-top: 1rem;
	padding: 3.5rem 0;
	background: var(--ink);
	color: #b8c4c8;
}

.footer-inner {
	display: flex;
	width: min(calc(100% - 48px), var(--content));
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	gap: 2rem;
}

.footer-brand {
	color: #fff;
}

.footer-brand:hover {
	color: #fff;
}

.footer-brand .brand-mark {
	background: #fff;
	color: var(--ink);
}

.footer-brand .brand-copy small {
	color: #9fadb2;
}

.copyright {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.45rem 1.25rem;
	margin: 0;
	padding: 0;
	color: #9fadb2;
	font-size: 0.72rem;
	list-style: none;
}

.copyright a {
	color: #d4e2e0;
}

@media (max-width: 1040px) {
	#me {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 0.63fr);
		gap: 3.5rem;
	}

	h1 {
		font-size: clamp(3.8rem, 8vw, 6rem);
	}

	.brand-copy {
		display: none;
	}

	.publication-tools {
		grid-template-columns: minmax(240px, 1fr) auto;
	}

	.result-count {
		grid-column: 1 / -1;
		min-width: 0;
		padding: 0 0.2rem;
		text-align: left;
	}
}

@media (max-width: 860px) {
	:root {
		--header-height: 70px;
	}

	.nav-shell,
	#main,
	.footer-inner {
		width: min(calc(100% - 32px), var(--content));
	}

	.brand-copy {
		display: grid;
	}

	.js .menu-toggle {
		display: inline-flex;
	}

	.js #nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 16px;
		left: 16px;
		display: grid;
		visibility: hidden;
		overflow: hidden;
		gap: 0;
		padding: 0.55rem;
		border: 1px solid var(--line-strong);
		border-radius: 0 0 0.75rem 0.75rem;
		background: rgba(255, 254, 250, 0.98);
		box-shadow: var(--shadow-lg);
		opacity: 0;
		transform: translateY(-0.5rem);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
	}

	.js #nav.open {
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.js #nav a {
		padding: 0.75rem 0.8rem;
		border-radius: 0.35rem;
	}

	.js #nav a::after {
		display: none;
	}

	.js #nav a:hover,
	.js #nav a.active {
		background: var(--teal-soft);
		color: var(--teal-dark);
	}

	#me {
		min-height: auto;
		grid-template-columns: 1fr;
		gap: 3.8rem;
	}

	.hero-copy {
		max-width: 48rem;
	}

	.pic {
		width: min(100%, 31rem);
		margin: 0 auto;
	}

	.portrait-caption {
		right: -0.5rem;
	}

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

	.filter-buttons {
		overflow-x: auto;
		padding-bottom: 0.12rem;
	}

	.result-count {
		grid-column: auto;
	}

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

	.contact-card {
		min-height: 0;
	}

	.footer-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.copyright {
		justify-content: flex-start;
	}
}

@media (max-width: 720px) {
	body {
		font-size: 16px;
	}

	.panel {
		padding: 5.25rem 0;
	}

	#me {
		padding-top: 4.8rem;
	}

	h1 {
		font-size: clamp(3.55rem, 18vw, 5.4rem);
	}

	.section-header h2 {
		font-size: clamp(2.8rem, 14vw, 4.4rem);
	}

	.research-topics {
		gap: 0.4rem;
	}

	.research-topics li {
		font-size: 0.67rem;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.portrait-frame {
		border-radius: 9rem 9rem 0.9rem 0.9rem;
	}

	.section-content > h3,
	.publication-groups > h3,
	#service > h3 {
		margin-top: 3.8rem;
		font-size: 1.7rem;
	}

	table.default:not(.featured-award) {
		display: block;
		border-top: 0;
		background: transparent;
	}

	table.default:not(.featured-award) tbody {
		display: grid;
		gap: 0.75rem;
	}

	table.default:not(.featured-award) tr {
		display: grid;
		overflow: hidden;
		grid-template-columns: minmax(0, 1fr);
		padding: 0.92rem 1rem;
		border: 1px solid var(--line);
		border-left: 3px solid var(--line-strong);
		border-radius: 0.48rem;
		background: rgba(255, 255, 255, 0.56) !important;
		box-shadow: 0 1px 2px rgba(18, 38, 49, 0.025);
	}

	table.default .table-head {
		display: none;
	}

	table.default:not(.featured-award) th {
		display: none;
	}

	table.default:not(.featured-award) td {
		width: auto !important;
		padding: 0.28rem 0;
		border: 0;
		background: transparent !important;
		white-space: normal !important;
	}

	table.default:not(.featured-award) tr:hover td,
	table.default:not(.featured-award) tr:nth-child(even) td,
	table.default:not(.featured-award) tr:nth-child(odd) td {
		background: transparent !important;
	}

	table.default:not(.featured-award) td[data-label]:not([data-label=""])::before {
		display: block;
		margin-bottom: 0.05rem;
		color: var(--muted);
		content: attr(data-label);
		font-size: 0.58rem;
		font-weight: 760;
		letter-spacing: 0.09em;
		text-transform: uppercase;
	}

	#publications table tr {
		border-left-color: var(--teal);
	}

	#publications table td:nth-child(1) {
		order: -2;
		margin-bottom: 0.2rem;
		color: var(--teal-dark);
	}

	#publications table td:nth-child(2) {
		order: -1;
		margin-bottom: 0.45rem;
		font-size: 0.94rem;
	}

	#publications table td:nth-child(n + 3) {
		display: inline-block;
		width: fit-content !important;
		color: var(--muted);
	}

	.authors {
		font-size: 0.76rem;
	}

	.section-jump-links {
		margin-bottom: 2.8rem;
	}

	.contact-email {
		font-size: clamp(1.75rem, 9vw, 2.5rem);
	}
}

@media (max-width: 520px) {
	.brand-copy {
		display: none;
	}

	.menu-toggle-label {
		display: none;
	}

	.eyebrow,
	.section-kicker {
		font-size: 0.67rem;
	}

	.hero-intro {
		font-size: 0.98rem;
	}

	.portrait-caption {
		right: 0.7rem;
		left: 0.7rem;
		min-width: 0;
	}

	.filter-buttons button {
		flex: 0 0 auto;
	}

	.contact-card {
		padding: 2rem 1.35rem;
	}
}

@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;
	}
}

@media print {
	.site-header,
	.publication-tools,
	.section-jump-links,
	.hero-actions,
	#footer {
		display: none !important;
	}

	body {
		background: #fff;
		color: #000;
		font-size: 10pt;
	}

	#main {
		width: 100%;
	}

	.panel {
		padding: 1rem 0;
		border-bottom: 1px solid #bbb;
		break-inside: avoid;
	}

	#me {
		display: block;
		min-height: 0;
	}

	.pic {
		display: none;
	}

	table.default {
		font-size: 7.5pt;
	}
}
