@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("assets/fonts/playfair-display-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --ink-soft: #262626;
  --muted: #6d6a64;
  --paper: #faf9f6;
  --paper-deep: #f0eee8;
  --white: #ffffff;
  --gold: #b8860b;
  --gold-light: #d7b45a;
  --red: #c9372c;
  --navy: #102a46;
  --green: #47744f;
  --line: rgba(10, 10, 10, 0.16);
  --line-light: rgba(255, 255, 255, 0.26);
  --shell: 1240px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  background: var(--gold);
  color: var(--white);
}

.shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 16px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: top 180ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--ink);
  background: rgba(250, 249, 246, 0.96);
  border-bottom: 1px solid var(--line);
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.site-header--overlay {
  color: var(--white);
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(250, 249, 246, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 56px), 1440px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 248px;
  color: inherit;
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid currentColor;
  color: currentColor;
  overflow: hidden;
}

.brand-symbol span {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}

.brand-symbol i {
  position: absolute;
  width: 22px;
  height: 2px;
  right: -5px;
  bottom: 7px;
  background: var(--gold);
  transform: rotate(-45deg);
}

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

.brand-copy strong {
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.66;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: inherit;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 20px;
  height: 2px;
  background: var(--gold);
  transition: right 280ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid currentColor;
  border-radius: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #ecd28f;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 560;
  line-height: 1.06;
}

h3 {
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

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

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

.button--light:hover {
  color: var(--white);
  background: transparent;
}

.button--dark {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: transparent;
}

.button--gold {
  border-color: var(--gold);
  color: var(--white);
  background: var(--gold);
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-action span {
  transition: transform 220ms var(--ease);
}

.text-action:hover span {
  transform: translateX(4px);
}

.text-action--light {
  color: var(--white);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 820ms var(--ease) var(--delay, 0ms), transform 820ms var(--ease) var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-slider {
  position: relative;
  min-height: 720px;
  height: 92svh;
  max-height: 940px;
  overflow: hidden;
  color: var(--white);
  background: #0b1117;
}

.hero-slides,
.hero-slide,
.hero-slide img,
.hero-shade,
.hero-grid-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 8s linear;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  object-fit: cover;
}

.hero-slide:nth-child(2) img,
.hero-slide:nth-child(3) img {
  filter: saturate(0.76) brightness(0.78);
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 9, 14, 0.9) 0%, rgba(3, 9, 14, 0.58) 52%, rgba(3, 9, 14, 0.35) 100%);
}

.hero-grid-lines {
  z-index: 1;
  opacity: 0.15;
  background-image: linear-gradient(90deg, transparent calc(25% - 1px), rgba(255,255,255,0.22) 25%, transparent calc(25% + 1px), transparent calc(50% - 1px), rgba(255,255,255,0.22) 50%, transparent calc(50% + 1px), transparent calc(75% - 1px), rgba(255,255,255,0.22) 75%, transparent calc(75% + 1px));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 52px;
  padding-bottom: 160px;
}

.hero-content h1 {
  max-width: 1060px;
  margin: 0;
  font-size: 104px;
  font-weight: 560;
  line-height: 0.94;
}

.hero-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-institutions {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  transform: translateX(-50%);
}

.hero-institutions[data-reveal] {
  transform: translate(-50%, 34px);
}

.hero-institutions[data-reveal].is-visible {
  transform: translate(-50%, 0);
}

.hero-logo {
  display: flex;
  align-items: center;
  height: 50px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-logo--um {
  width: 208px;
}

.hero-logo--iotsc {
  width: 198px;
}

.hero-logo img {
  width: 100%;
  max-height: 36px;
  object-fit: contain;
}

.hero-logo-divider {
  width: 1px;
  height: 44px;
  background: var(--line-light);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: max(32px, calc((100vw - var(--shell)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-controls > button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-light);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 22px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,0.34);
  cursor: pointer;
}

.hero-dots button.is-active {
  background: var(--gold-light);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 20px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
}

.scroll-cue i {
  width: 56px;
  height: 1px;
  background: currentColor;
  animation: scrollLine 2.1s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleX(0.45); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
}

.section {
  padding: 116px 0;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  align-items: end;
  gap: 64px;
}

.section-heading--split > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading--split > .text-action {
  justify-self: end;
  margin-bottom: 8px;
}

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

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 100px;
}

.about-story {
  padding-top: 38px;
}

.about-story p {
  margin: 0 0 24px;
  color: var(--muted);
}

.about-story .large-copy {
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  line-height: 1.45;
}

.about-story .large-copy a {
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.leader-feature {
  display: grid;
  grid-template-columns: minmax(340px, 0.84fr) minmax(0, 1.16fr);
  min-height: 620px;
  margin-top: 110px;
  background: var(--navy);
  color: var(--white);
}

.leader-image-wrap {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.leader-image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 14%;
}

.image-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 7px 10px;
  background: rgba(7, 17, 27, 0.82);
  color: rgba(255,255,255,0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leader-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px;
}

.leader-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 58px;
  font-weight: 560;
  line-height: 1;
}

.leader-copy h3 span {
  display: inline-block;
  margin-left: 12px;
  color: rgba(255,255,255,0.4);
  font-family: "Geist", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.leader-copy p {
  max-width: 600px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.7);
}

.leader-copy .leader-title {
  margin-top: 28px;
  color: var(--white);
  font-size: 18px;
}

.leader-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 34px;
}

.leader-links a {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.research-band {
  background: var(--paper-deep);
}

.research-index {
  border-top: 1px solid var(--line);
}

.research-index-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 30px;
  min-height: 132px;
  padding: 24px 4px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: color 220ms ease, padding 360ms var(--ease), background 220ms ease;
}

.research-index-item:hover {
  padding-inline: 20px;
  color: var(--red);
  background: rgba(255,255,255,0.42);
}

.index-number,
.meta-label,
.pub-venue,
.news-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.index-number {
  color: var(--gold);
}

.research-index-item h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 560;
  line-height: 1.16;
}

.research-index-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.index-arrow {
  font-size: 22px;
  transition: transform 280ms var(--ease);
}

.research-index-item:hover .index-arrow {
  transform: translate(4px, -4px);
}

.feature-studies {
  display: grid;
  gap: 48px;
  margin-top: 96px;
}

.study {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  min-height: 470px;
  background: var(--white);
}

.study--reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
}

.study--reverse .study-image {
  order: 2;
}

.study-image {
  min-height: 470px;
  overflow: hidden;
  background: #dfe4e8;
}

.study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.study:hover .study-image img {
  transform: scale(1.035);
}

.study-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 62px;
}

.meta-label,
.pub-venue {
  color: var(--gold);
}

.study-copy h3 {
  margin: 18px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 37px;
  font-weight: 560;
  line-height: 1.18;
}

.study-copy p {
  margin: 22px 0 28px;
  color: var(--muted);
}

.gallery-band {
  padding: 110px 0 100px;
  overflow: hidden;
  color: var(--white);
  background: #0d0f10;
}

.gallery-band h2 {
  color: var(--white);
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 max(32px, calc((100vw - var(--shell)) / 2));
  animation: galleryDrift 40s linear infinite alternate;
}

.gallery-track:hover {
  animation-play-state: paused;
}

@keyframes galleryDrift {
  from { transform: translateX(0); }
  to { transform: translateX(-18vw); }
}

.gallery-item {
  position: relative;
  width: 330px;
  height: 420px;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  background: #171a1c;
}

.gallery-item--wide {
  width: 560px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 650ms var(--ease), opacity 300ms ease;
}

.gallery-item:hover img {
  opacity: 1;
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 6px 9px;
  color: var(--white);
  background: rgba(0,0,0,0.72);
  font-size: 11px;
  font-weight: 700;
}

.member-preview-grid,
.member-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.member-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.member-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dfddd7;
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.member-card:hover .member-photo img {
  transform: scale(1.035);
}

.member-photo.placeholder img {
  filter: saturate(0.8);
}

.member-card-copy {
  position: relative;
  padding: 20px 0 16px;
  border-bottom: 1px solid var(--line);
}

.member-card-copy::after {
  content: "↗";
  position: absolute;
  right: 2px;
  top: 20px;
  color: var(--gold);
  font-size: 17px;
  transition: transform 260ms var(--ease);
}

.member-card:hover .member-card-copy::after {
  transform: translate(3px, -3px);
}

.member-card-copy > span {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-card-copy h3 {
  margin: 8px 32px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
}

.member-card-copy h3 small {
  color: var(--muted);
  font-family: "Geist", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.member-card-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.publication-band {
  background: var(--white);
}

.publication-preview,
.publication-results {
  border-top: 1px solid var(--line);
}

.publication-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 38px;
  gap: 34px;
  align-items: start;
  padding: 32px 4px;
  border-bottom: 1px solid var(--line);
}

.pub-year {
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.publication-row h3 {
  max-width: 860px;
  margin: 9px 0 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 560;
  line-height: 1.35;
}

.publication-row p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.row-arrow {
  justify-self: end;
  color: var(--ink);
  font-size: 21px;
  text-decoration: none;
}

.news-band {
  background: var(--paper-deep);
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 110px 110px minmax(0, 1fr) 28px;
  gap: 28px;
  align-items: center;
  min-height: 112px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: padding 300ms var(--ease), background 220ms ease;
}

.news-row:hover {
  padding-inline: 18px;
  background: rgba(255,255,255,0.48);
}

.news-row time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.news-type {
  color: var(--gold);
}

.news-row h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  font-weight: 560;
  line-height: 1.35;
}

.news-row > span:last-child {
  justify-self: end;
  font-size: 20px;
}

.opening-banner {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0b151e;
}

.opening-banner > img,
.opening-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.opening-banner > img {
  object-fit: cover;
}

.opening-shade {
  background: rgba(5, 15, 23, 0.78);
}

.opening-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.opening-content h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: 72px;
}

.opening-content p:not(.eyebrow) {
  max-width: 720px;
  margin: 25px auto 32px;
  color: rgba(255,255,255,0.74);
  font-size: 18px;
}

.site-footer {
  color: var(--white);
  background: #0a0a0a;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 0.55fr 0.7fr minmax(220px, 0.9fr);
  gap: 58px;
  padding-block: 76px 64px;
}

.site-brand--footer {
  min-width: 0;
}

.footer-brand p {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.42);
  font-family: "Geist", Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-institutions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.footer-institutions a {
  display: flex;
  align-items: center;
  height: 66px;
  padding: 10px 14px;
  background: var(--white);
}

.footer-institutions img {
  width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 21px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
}

/* Interior pages */

.page-hero {
  position: relative;
  min-height: 520px;
  padding: 180px 0 86px;
  overflow: hidden;
  color: var(--white);
  background: #101315;
}

.page-hero--image > img,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero--image > img {
  object-fit: cover;
}

.page-hero-shade {
  background: rgba(4, 10, 15, 0.76);
}

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

.page-hero h1 {
  max-width: 1050px;
  margin: 0;
  font-size: 86px;
  font-weight: 560;
  line-height: 0.98;
}

.page-hero p.page-lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
}

.page-hero-index {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 34px;
}

.page-hero-index a {
  color: rgba(255,255,255,0.78);
  font-size: 11px;
  font-weight: 700;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 4px;
}

.intro-band {
  padding: 92px 0;
  border-bottom: 1px solid var(--line);
}

.intro-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 90px;
}

.intro-layout h2 {
  font-size: 50px;
}

.intro-layout .intro-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.intro-copy p {
  margin: 0 0 20px;
}

.research-detail-list {
  display: grid;
}

.research-detail {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  min-height: 560px;
  border-bottom: 1px solid var(--line);
}

.research-detail:nth-child(even) {
  grid-template-columns: 1.17fr 0.83fr;
}

.research-detail:nth-child(even) .research-detail-image {
  order: 2;
}

.research-detail-image {
  min-height: 560px;
  background: #dfe3e5;
  overflow: hidden;
}

.research-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-detail-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 76px max(48px, calc((100vw - var(--shell)) / 2));
}

.research-detail:nth-child(odd) .research-detail-copy {
  padding-right: 40px;
}

.research-detail:nth-child(even) .research-detail-copy {
  padding-left: 40px;
}

.research-detail-copy h2 {
  margin-top: 8px;
  font-size: 48px;
}

.research-detail-copy p {
  max-width: 590px;
  margin: 22px 0 0;
  color: var(--muted);
}

.detail-points {
  display: grid;
  gap: 11px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.detail-points li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
}

.detail-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.profile-lead {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: center;
}

.profile-lead-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.profile-lead-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.profile-lead-copy h2 {
  font-size: 62px;
}

.profile-lead-copy h2 span {
  color: var(--muted);
  font-family: "Geist", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
}

.profile-role {
  margin: 24px 0 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 650;
}

.profile-lead-copy > p:not(.eyebrow):not(.profile-role) {
  margin: 22px 0 0;
  color: var(--muted);
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.team-group {
  padding-top: 90px;
}

.team-group + .team-group {
  padding-top: 100px;
}

.team-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.team-group-heading h2 {
  font-size: 46px;
}

.team-group-heading span {
  color: var(--muted);
  font-size: 12px;
}

.placeholder-notice {
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  color: #514a39;
  background: #f1ead8;
  font-size: 13px;
}

.placeholder-notice strong {
  color: var(--ink);
}

.publication-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 38px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

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

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

.publication-item .publication-row {
  transition: opacity 200ms ease;
}

.publication-note {
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.news-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  color: inherit;
  background: var(--white);
  text-decoration: none;
  transition: transform 300ms var(--ease), border-color 220ms ease;
}

.news-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.news-card time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.news-card .news-type {
  margin-top: 46px;
}

.news-card h2 {
  margin-top: 16px;
  font-size: 30px;
  line-height: 1.22;
}

.news-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.news-card > span:last-child {
  margin-top: auto;
  padding-top: 28px;
  font-size: 20px;
}

.opening-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 80px;
  align-items: start;
}

.opening-copy h2,
.contact-copy h2 {
  font-size: 54px;
}

.opening-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.opening-role-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.opening-role {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.opening-role strong {
  font-size: 14px;
}

.opening-role p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.info-panel {
  padding: 38px;
  color: var(--white);
  background: var(--navy);
}

.info-panel h2 {
  font-family: "Geist", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-panel ol,
.info-panel ul {
  display: grid;
  gap: 16px;
  margin: 26px 0 32px;
  padding-left: 20px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
}

.info-panel .button {
  width: 100%;
}

.info-panel-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
}

.contact-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.contact-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item dt {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-item dd {
  margin: 0;
  font-size: 14px;
}

.contact-image {
  margin-top: 80px;
  height: 440px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Member detail */

.member-detail-hero {
  padding: 160px 0 90px;
  background: var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.member-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.member-breadcrumb a {
  text-underline-offset: 3px;
}

.member-detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.member-detail-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #dedbd5;
}

.member-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.member-detail-copy {
  padding-top: 28px;
}

.member-detail-copy h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 72px;
  font-weight: 560;
  line-height: 1;
}

.member-detail-copy h1 span {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-family: "Geist", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.member-detail-role {
  margin: 26px 0 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
}

.member-detail-bio {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.member-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.member-meta {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.member-meta span {
  display: block;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.member-meta p {
  margin: 7px 0 0;
  font-size: 13px;
}

.member-body {
  padding: 100px 0;
}

.member-body-grid {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 90px;
}

.member-body-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}

.member-body-nav p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.member-body-content section + section {
  margin-top: 66px;
  padding-top: 66px;
  border-top: 1px solid var(--line);
}

.member-body-content h2 {
  font-size: 42px;
}

.member-body-content p,
.member-body-content li {
  color: var(--muted);
}

.member-body-content ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero-content h1 {
    font-size: 78px;
  }

  h2 {
    font-size: 54px;
  }

  .about-layout {
    gap: 70px;
  }

  .leader-copy {
    padding: 54px;
  }

  .member-preview-grid,
  .member-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .member-preview-grid .member-card:last-child {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.6fr 0.8fr;
  }

  .footer-institutions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 270px));
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .shell {
    width: min(calc(100% - 44px), var(--shell));
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 38px;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 260ms ease, visibility 260ms ease, transform 360ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    font-weight: 560;
  }

  .site-nav a::after {
    display: none;
  }

  .hero-content h1 {
    font-size: 70px;
  }

  .hero-controls,
  .scroll-cue {
    display: none;
  }

  .hero-institutions {
    bottom: 24px;
  }

  .section {
    padding: 92px 0;
  }

  .about-layout,
  .section-heading--split,
  .intro-layout,
  .profile-lead,
  .opening-layout,
  .contact-layout,
  .member-detail-grid,
  .member-body-grid {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    gap: 26px;
  }

  .section-heading--split > p {
    max-width: 620px;
  }

  .section-heading--split > .text-action {
    justify-self: start;
  }

  .about-story {
    padding-top: 0;
  }

  .leader-feature {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .leader-copy {
    padding: 44px;
  }

  .leader-copy h3 {
    font-size: 46px;
  }

  .study,
  .study--reverse {
    grid-template-columns: 1fr;
  }

  .study--reverse .study-image {
    order: 0;
  }

  .study-image {
    min-height: 390px;
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero h1 {
    font-size: 70px;
  }

  .research-detail,
  .research-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .research-detail:nth-child(even) .research-detail-image {
    order: 0;
  }

  .research-detail-copy,
  .research-detail:nth-child(odd) .research-detail-copy,
  .research-detail:nth-child(even) .research-detail-copy {
    padding: 64px 32px 72px;
  }

  .profile-lead {
    max-width: 760px;
  }

  .profile-lead-image {
    max-width: 520px;
  }

  .member-body-grid {
    gap: 40px;
  }

  .member-body-nav {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 10px;
  }

  .site-brand {
    min-width: 0;
  }

  .hero-slider {
    min-height: 650px;
    height: 90svh;
  }

  .hero-content {
    padding-top: 68px;
    padding-bottom: 150px;
  }

  .hero-content h1 {
    font-size: 52px;
    line-height: 1;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .hero-institutions {
    gap: 9px;
  }

  .hero-logo {
    height: 42px;
    padding: 7px;
  }

  .hero-logo--um {
    width: 150px;
  }

  .hero-logo--iotsc {
    width: 140px;
  }

  .hero-logo-divider {
    display: none;
  }

  h2 {
    font-size: 42px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .about-story .large-copy {
    font-size: 22px;
  }

  .leader-feature {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .leader-image-wrap {
    min-height: 500px;
  }

  .leader-copy {
    padding: 40px 26px 46px;
  }

  .leader-copy h3 {
    font-size: 42px;
  }

  .research-index-item {
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    gap: 14px;
    min-height: 120px;
  }

  .research-index-item h3 {
    font-size: 26px;
  }

  .research-index-item p {
    display: none;
  }

  .feature-studies {
    margin-top: 66px;
  }

  .study-image {
    min-height: 300px;
  }

  .study-copy {
    padding: 38px 26px 44px;
  }

  .study-copy h3 {
    font-size: 31px;
  }

  .gallery-band {
    padding: 78px 0;
  }

  .gallery-track {
    gap: 12px;
    padding-inline: 16px;
    animation: none;
    overflow-x: auto;
    max-width: 100%;
    scroll-snap-type: x mandatory;
  }

  .gallery-item,
  .gallery-item--wide {
    width: 82vw;
    height: 360px;
    scroll-snap-align: start;
  }

  .member-preview-grid,
  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .member-preview-grid .member-card:last-child {
    display: block;
  }

  .member-card-copy h3 {
    font-size: 21px;
  }

  .publication-row {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    padding-block: 28px;
  }

  .publication-row .row-arrow {
    display: none;
  }

  .publication-row h3 {
    font-size: 21px;
  }

  .news-row {
    grid-template-columns: 100px minmax(0, 1fr) 22px;
    gap: 14px;
    padding-block: 25px;
  }

  .news-row .news-type {
    display: none;
  }

  .news-row h3 {
    font-size: 20px;
  }

  .opening-banner {
    min-height: 560px;
  }

  .opening-content h2 {
    font-size: 48px;
  }

  .opening-content p:not(.eyebrow) {
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 24px;
  }

  .footer-brand,
  .footer-institutions {
    grid-column: 1 / -1;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .page-hero {
    min-height: 470px;
    padding: 148px 0 74px;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .page-hero p.page-lead {
    font-size: 16px;
  }

  .intro-band {
    padding: 72px 0;
  }

  .intro-layout {
    gap: 28px;
  }

  .intro-layout h2,
  .research-detail-copy h2,
  .team-group-heading h2,
  .opening-copy h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .intro-layout .intro-copy {
    font-size: 17px;
  }

  .research-detail-image {
    min-height: 340px;
  }

  .profile-lead-copy h2 {
    font-size: 48px;
  }

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

  .news-card {
    min-height: 320px;
  }

  .opening-role,
  .contact-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .member-detail-hero {
    padding: 128px 0 70px;
  }

  .member-detail-grid {
    gap: 42px;
  }

  .member-detail-copy {
    padding-top: 0;
  }

  .member-detail-copy h1 {
    font-size: 54px;
  }

  .member-meta-grid {
    grid-template-columns: 1fr;
  }

  .member-body {
    padding: 74px 0;
  }
}

@media (max-width: 480px) {
  .brand-symbol {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-content h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-logo--um {
    width: 137px;
  }

  .hero-logo--iotsc {
    width: 126px;
  }

  .member-preview-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .member-photo {
    aspect-ratio: 5 / 5.4;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .page-hero-index {
    gap: 9px 16px;
  }

  .info-panel {
    padding: 28px 22px;
  }

  .member-detail-copy h1 {
    font-size: 46px;
  }
}

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

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

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