:root {
  --ink: #08090d;
  --ink-raised: #0e1118;
  --paper: #f2f3f6;
  --muted: #9ba1ad;
  --line: rgba(255, 255, 255, 0.14);
  --blue: #4b73ff;
  --violet: #896cff;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  width: min(100%, var(--max));
  min-height: 96px;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.wordmark-light {
  font-weight: 300;
}

.wordmark i {
  width: 0.31rem;
  height: 0.31rem;
  margin-left: 0.28rem;
  background: var(--blue);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #9db0ff;
}

.site-nav .nav-cta {
  padding: 0.72rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-cta span {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 180ms ease;
}

.nav-cta:hover span {
  transform: translate(2px, -2px);
}

.menu-button {
  display: none;
  padding: 0;
  background: transparent;
  border: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #040509;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 9, 0.98) 0%, rgba(4, 5, 9, 0.72) 38%, rgba(4, 5, 9, 0.08) 72%),
    linear-gradient(0deg, rgba(4, 5, 9, 0.72) 0%, transparent 35%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url("./tuttlelab-hero.png");
  background-size: cover;
  background-position: center;
  animation: hero-in 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 6rem 6rem;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 10rem 4rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0;
  color: #b8bdc7;
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow span {
  margin-right: 0.8rem;
  color: #6685ff;
}

.hero h1 {
  max-width: 1000px;
  margin: 2.3rem 0 3rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(5rem, 10.5vw, 10.8rem);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.hero-bottom {
  width: min(100%, 720px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.hero-intro {
  max-width: 500px;
  margin: 0;
  color: #c9cdd4;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
}

.round-link {
  flex: 0 0 86px;
  width: 86px;
  height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.round-link b {
  font-size: 1rem;
  font-weight: 400;
}

.round-link:hover,
.round-link:focus-visible {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(3px);
}

.hero-coordinate {
  position: absolute;
  z-index: 4;
  right: 1.6rem;
  bottom: 3rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 9.5rem 4rem;
}

.section-heading h2 {
  margin: 1.4rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 6.3vw, 6.9rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading h2 span {
  color: #7f8490;
}

.research-section {
  background: var(--ink);
}

.research-layout {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) 1.4fr;
  gap: 10vw;
}

.research-statement p {
  margin: 0;
  color: #c3c6cd;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 300;
  line-height: 1.55;
}

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

.research-item {
  position: relative;
  padding: 2.3rem 3.5rem 2.3rem 0;
  display: grid;
  grid-template-columns: 3rem 1fr;
  column-gap: 1.4rem;
  border-bottom: 1px solid var(--line);
  transition: padding-left 220ms ease, border-color 220ms ease;
}

.research-item:hover {
  padding-left: 1rem;
  border-color: rgba(96, 126, 255, 0.85);
}

.item-number,
.card-meta {
  margin: 0;
  color: #687081;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.research-item h3 {
  margin: -0.15rem 0 0.45rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.research-item > p:last-of-type {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.research-item > span {
  position: absolute;
  top: 2.5rem;
  right: 0;
  color: #718aff;
  font-size: 1.2rem;
}

.home-people-section {
  padding: 7rem max(4rem, calc((100vw - var(--max)) / 2 + 4rem)) 8rem;
  color: #0d1017;
  background: #eef0f4;
}

.home-people-heading {
  margin-bottom: 3.5rem;
  display: flex;
  gap: 3rem;
  align-items: flex-end;
  justify-content: space-between;
}

.home-people-heading .eyebrow {
  color: #616875;
}

.home-people-heading h2 {
  max-width: 860px;
  margin: 1.2rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.home-people-link {
  min-width: 190px;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(13, 16, 23, 0.3);
  border-bottom: 1px solid rgba(13, 16, 23, 0.3);
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-people-link b {
  color: #526bd7;
  font-size: 1rem;
  font-weight: 400;
}

.home-team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.home-team-card {
  min-width: 0;
}

.home-team-card figure {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #d8dbe2;
}

.home-team-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 44%;
}

.home-team-card h3 {
  margin: 1rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.work-section {
  width: 100%;
  max-width: none;
  padding-right: max(4rem, calc((100vw - var(--max)) / 2 + 4rem));
  padding-left: max(4rem, calc((100vw - var(--max)) / 2 + 4rem));
  color: #0d1017;
  background: #eef0f4;
}

.work-section .eyebrow {
  color: #5f6570;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr;
  gap: 8vw;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 0.8rem;
  color: #616875;
  font-size: 0.95rem;
  line-height: 1.65;
}

.work-grid {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
}

.work-card {
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.work-card-featured {
  grid-row: span 2;
  min-height: 760px;
}

.work-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  background: #10131b;
}

.work-card-featured .work-visual {
  min-height: 510px;
}

.visual-one {
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, transparent 48%, rgba(7, 9, 14, 0.66)),
    url("./tuttlelab-hero.png") 62% center / cover;
}

.work-copy {
  flex: 1;
  padding: 2.1rem;
}

.work-copy h3 {
  margin: 0.8rem 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.work-copy > p:not(.card-meta) {
  max-width: 520px;
  margin: 0;
  color: #656b76;
  font-size: 0.92rem;
}

.text-link {
  margin-top: 1.6rem;
  display: inline-flex;
  gap: 0.55rem;
  border-bottom: 1px solid #c7cad1;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.text-link b {
  font-size: 0.9rem;
  font-weight: 400;
}

.visual-two {
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(135deg, #11141b 20%, #283d8f 130%);
}

.visual-three {
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a1d27 15%, #4c357b 150%);
}

.visual-label {
  color: rgba(255,255,255,0.5);
  font-family: "DM Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.visual-index {
  color: rgba(255,255,255,0.78);
  font-family: "Manrope", sans-serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.7;
}

.current-team {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.team-card {
  min-height: 360px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  grid-column: span 2;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,0.026), transparent 60%);
  transition: background 220ms ease;
}

.team-card:nth-child(4),
.team-card:nth-child(5) {
  grid-column: span 3;
}

.team-card:hover {
  background: linear-gradient(145deg, rgba(74, 111, 255, 0.13), transparent 70%);
}

.team-index {
  margin: 0 0 auto;
  color: #6685ff;
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.team-card h3 {
  margin: 5rem 0 1.1rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.team-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.alumni {
  margin-top: 10rem;
}

.alumni-intro {
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
}

.alumni-intro h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.alumni-group {
  padding: 3.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.alumni-group h4 {
  max-width: 270px;
  margin: 0;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.alumni-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3rem;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.alumni-list li {
  min-width: 0;
  padding: 1.25rem 0 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.alumni-list h5 {
  margin: 0 0 0.45rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.alumni-list p {
  margin: 0;
  color: #858b97;
  font-size: 0.84rem;
  line-height: 1.55;
}

.about-page .site-nav .active {
  color: #9db0ff;
}

.about-hero {
  width: min(100%, var(--max));
  min-height: 100svh;
  margin: 0 auto;
  padding: 10rem 4rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 7vw;
  align-items: center;
}

.about-heading h1 {
  margin: 2rem 0 2.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(5.4rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.about-heading h1 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.72);
}

.about-role {
  margin: 0;
  color: #a7acb7;
  font-family: "DM Mono", monospace;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-portrait {
  position: relative;
  margin: 0;
  padding: 0 1.2rem 1.2rem 0;
}

.about-portrait::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: calc(100% - 1.2rem);
  height: calc(100% - 1.2rem);
  background: #315ae8;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.82) contrast(1.03);
}

.about-portrait figcaption {
  position: absolute;
  right: 2.1rem;
  bottom: 2rem;
  padding: 0.55rem 0.7rem;
  color: rgba(255,255,255,0.82);
  background: rgba(8,9,13,0.72);
  font-family: "DM Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}

.about-biography {
  padding: 9rem max(4rem, calc((100vw - var(--max)) / 2 + 4rem));
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5vw;
  color: #0d1017;
  background: #eef0f4;
}

.about-biography .eyebrow,
.profile-links .eyebrow {
  color: #626875;
}

.biography-copy {
  max-width: 790px;
}

.biography-copy h2 {
  margin: 0 0 4.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.biography-copy p {
  margin: 0 0 2rem;
  color: #4f5663;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 300;
  line-height: 1.72;
}

.biography-copy p:first-of-type {
  color: #171a21;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.biography-copy p:last-child {
  margin-bottom: 0;
}

.profile-links {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 8rem 4rem 9rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5vw;
}

.profile-links-heading h2 {
  margin: 1.2rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.055em;
}

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

.profile-link-list a {
  padding: 1.55rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  transition: color 180ms ease, padding 180ms ease;
}

.profile-link-list a:hover,
.profile-link-list a:focus-visible {
  padding-left: 0.8rem;
  color: #8ca2ff;
}

.profile-link-list b {
  color: #6d86ff;
  font-size: 1rem;
  font-weight: 400;
}

.people-page .site-nav .active,
.research-page .site-nav .active,
.opportunities-page .site-nav .active {
  color: #9db0ff;
}

.people-page-hero {
  width: min(100%, var(--max));
  min-height: 58svh;
  margin: 0 auto;
  padding: 11rem 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.people-page-hero h1 {
  margin: 1.8rem 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(6rem, 14vw, 13rem);
  font-weight: 300;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.research-anchor-alias {
  position: absolute;
  scroll-margin-top: 2rem;
}

.research-philosophy {
  position: relative;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4rem 4rem 10rem;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.research-philosophy-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.8rem, 7vw, 7.4rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.research-philosophy-copy h2 span {
  color: #6d7480;
}

.research-philosophy-lead {
  max-width: 850px;
  margin: 3.5rem 0 1.6rem;
  color: #d6d9df;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.research-philosophy-copy > p:last-child {
  max-width: 680px;
  margin: 0;
  color: #949ba7;
  font-size: 1rem;
  line-height: 1.75;
}

.research-signposts {
  padding: 0 max(4rem, calc((100vw - var(--max)) / 2 + 4rem)) 8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: #0d1017;
  background: #eef0f4;
}

.research-signpost {
  position: relative;
  min-height: 440px;
  padding: 2.2rem 2.2rem 5rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(13, 16, 23, 0.28);
  border-right: 1px solid rgba(13, 16, 23, 0.16);
  transition: background 180ms ease;
}

.research-signpost:first-child {
  border-left: 1px solid rgba(13, 16, 23, 0.16);
}

.research-signpost:hover,
.research-signpost:focus-visible {
  background: #e4e7ee;
}

.research-signpost-number,
.research-area-number,
.research-tool-number {
  color: #586dc8;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.research-signpost h2 {
  max-width: 390px;
  margin: auto 0 1.6rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.research-signpost p {
  max-width: 360px;
  margin: 0;
  color: #646b77;
  line-height: 1.6;
}

.research-signpost b {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  color: #526bd7;
  font-size: 1.15rem;
  font-weight: 400;
}

.research-area {
  position: relative;
  padding: 10rem max(4rem, calc((100vw - var(--max)) / 2 + 4rem));
  scroll-margin-top: 0;
}

.research-area-light {
  color: #0d1017;
  background: #eef0f4;
}

.research-area-dark {
  color: var(--paper);
  background: #10141d;
}

.research-area-heading {
  padding-top: 1.6rem;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
  border-top: 1px solid currentColor;
}

.research-area-dark .research-area-heading {
  border-color: rgba(255,255,255,0.24);
}

.research-area-heading h2 {
  max-width: 980px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4rem, 7.5vw, 8rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.research-area-layout {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  align-items: start;
}

.research-area-layout-reversed .research-area-copy {
  order: 2;
}

.research-area-layout-reversed .research-image-space {
  order: 1;
}

.research-area-copy {
  padding-top: 1rem;
}

.research-area-lead {
  margin: 0 0 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.research-area-copy > p:not(.research-area-lead) {
  max-width: 650px;
  margin: 0;
  color: #676e7a;
  line-height: 1.75;
}

.research-area-dark .research-area-copy > p:not(.research-area-lead) {
  color: #a7adb8;
}

.research-focus {
  margin-top: 3.5rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(13, 16, 23, 0.2);
}

.research-area-dark .research-focus {
  border-color: rgba(255,255,255,0.16);
}

.research-focus > p {
  margin: 0 0 1.2rem;
  color: #697078;
  font-family: "DM Mono", monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.research-focus ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.research-focus li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(13, 16, 23, 0.12);
  font-size: 0.92rem;
}

.research-area-dark .research-focus li {
  border-color: rgba(255,255,255,0.1);
}

.research-image-space {
  height: clamp(300px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  background: #eef0f4;
}

.research-area-dark .research-image-space {
  background: #fff;
}

.research-image-space img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.research-toolkit {
  position: relative;
  padding: 10rem max(4rem, calc((100vw - var(--max)) / 2 + 4rem)) 11rem;
  background: var(--ink);
}

.research-toolkit-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.research-toolkit-heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.research-toolkit-heading > p:last-child {
  grid-column: 2;
  max-width: 760px;
  margin: 2rem 0 0;
  color: #a7adb8;
  font-size: 1rem;
  line-height: 1.75;
}

.research-toolkit-list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.research-tool {
  min-height: 300px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.research-tool-core {
  box-shadow: inset 3px 0 0 #536fdc;
}

.research-tool h3 {
  max-width: 570px;
  margin: 4.5rem 0 1.2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.research-tool > p:last-child {
  max-width: 590px;
  margin: 0;
  color: #969da9;
  line-height: 1.7;
}

.group-leader-section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4rem 4rem 10rem;
  display: grid;
  grid-template-columns: minmax(360px, 1.25fr) minmax(280px, 0.75fr);
  gap: 7vw;
  align-items: end;
}

.leader-portrait {
  margin: 0;
  overflow: hidden;
  background: #151924;
}

.leader-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.88) contrast(1.02);
}

.leader-copy {
  padding-bottom: 2rem;
}

.leader-copy h2 {
  margin: 1.2rem 0 2.4rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.leader-copy a {
  width: min(100%, 330px);
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leader-copy a b {
  color: #6e88ff;
  font-size: 1rem;
  font-weight: 400;
}

.current-team-section {
  padding: 9rem max(4rem, calc((100vw - var(--max)) / 2 + 4rem)) 10rem;
  color: #0d1017;
  background: #eef0f4;
}

.people-section-heading {
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

.people-section-heading .eyebrow {
  color: #616875;
}

.people-section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.member-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: start;
}

.member-card {
  min-width: 0;
}

.member-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8dbe2;
}

.member-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portrait-ross {
  object-position: 50% 42%;
}

.portrait-raj {
  object-position: 50% 43%;
}

.portrait-ryan {
  object-position: 50% 41%;
}

.portrait-nikita {
  object-position: 50% 42%;
}

.portrait-luke {
  object-position: 55% 40%;
}

.member-card h3 {
  min-height: 3.1em;
  margin: 1.35rem 0 0.8rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.member-card p {
  margin: 0;
  color: #646b77;
  font-size: 0.88rem;
  line-height: 1.6;
}

.scotch-photo {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 9rem 4rem;
}

.scotch-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.scotch-photo figcaption {
  margin-top: 1rem;
  color: #858c99;
  font-family: "DM Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.people-alumni {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 3rem 4rem 10rem;
}

.people-alumni .people-section-heading .eyebrow {
  color: #b8bdc7;
}

.chronology-group {
  padding: 4rem 0 5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  border-top: 1px solid var(--line);
}

.chronology-group > h3 {
  max-width: 300px;
  margin: 0;
  font-family: "DM Mono", monospace;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.chronology-list {
  border-top: 1px solid rgba(255,255,255,0.09);
}

.chronology-year {
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.chronology-year h4 {
  margin: 0;
  color: #6e86ee;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.chronology-year ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2.8rem;
  row-gap: 1.65rem;
  list-style: none;
}

.chronology-year li {
  min-width: 0;
}

.chronology-year h5 {
  margin: 0 0 0.35rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.chronology-year p {
  margin: 0;
  color: #858b97;
  font-size: 0.84rem;
  line-height: 1.55;
}

.opportunities-page-intro {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4rem 4rem 9rem;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 5rem;
  align-items: start;
}

.opportunities-page-intro-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.opportunities-page-intro-copy h2 span {
  color: #6d7480;
}

.opportunities-page-intro-copy p {
  max-width: 780px;
  margin: 2.5rem 0 0;
  color: #a7adb8;
  font-size: 1rem;
  line-height: 1.75;
}

.opportunities-page-list {
  padding: 1rem max(4rem, calc((100vw - var(--max)) / 2 + 4rem)) 9rem;
  color: #0d1017;
  background: #eef0f4;
}

.opportunity-detail {
  padding: 4rem 0 5rem;
  display: grid;
  grid-template-columns: 0.3fr 0.75fr 1.15fr;
  gap: 3rem;
  align-items: start;
  border-top: 1px solid rgba(13, 16, 23, 0.2);
}

.opportunity-detail-number {
  margin: 0;
  color: #586dc8;
  font-family: "DM Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.opportunity-detail h2 {
  max-width: 440px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.055em;
}

.opportunity-detail div {
  max-width: 680px;
}

.opportunity-detail div p {
  margin: 0 0 1.2rem;
  color: #646b77;
  line-height: 1.7;
}

.opportunity-detail div p:last-child {
  margin-bottom: 0;
}

.opportunity-detail .opportunity-status {
  color: #171b24;
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
}

.opportunities-contact {
  padding: 2.5rem 0 0;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: 3rem;
  border-top: 1px solid rgba(13, 16, 23, 0.2);
}

.opportunities-contact h2 {
  margin: 0;
  font-family: "DM Mono", monospace;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opportunities-contact p {
  max-width: 680px;
  margin: 0;
  color: #646b77;
  line-height: 1.7;
}

.opportunities-contact a {
  color: #273f9d;
  text-decoration: underline;
  text-decoration-color: rgba(39, 63, 157, 0.35);
  text-underline-offset: 0.2em;
}

.opportunities-contact a:hover,
.opportunities-contact a:focus-visible {
  text-decoration-color: currentColor;
}

.opportunities-section {
  position: relative;
  min-height: 780px;
  padding: 9rem max(4rem, calc((100vw - var(--max)) / 2 + 4rem));
  overflow: hidden;
  display: flex;
  align-items: center;
  color: #fff;
  background: #3058e8;
}

.opportunities-glow {
  position: absolute;
  right: -10vw;
  bottom: -30vw;
  width: 75vw;
  height: 75vw;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 8vw rgba(255,255,255,0.035),
    0 0 0 16vw rgba(255,255,255,0.025),
    inset 0 0 120px rgba(112, 66, 255, 0.6);
}

.opportunities-content {
  position: relative;
  z-index: 2;
  width: min(100%, 870px);
}

.opportunities-section .eyebrow {
  color: rgba(255,255,255,0.7);
}

.opportunities-section .eyebrow span {
  color: white;
}

.opportunities-content h2 {
  margin: 1.3rem 0 2.4rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(4.7rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.opportunities-content > p {
  max-width: 520px;
  margin: 0 0 3rem;
  color: rgba(255,255,255,0.76);
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.65;
}

.opportunity-link {
  width: min(100%, 520px);
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.65);
  font-family: "DM Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.opportunity-link b {
  font-size: 1rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.opportunities-content small {
  margin-top: 1.1rem;
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.73rem;
}

.site-footer {
  width: min(100%, var(--max));
  min-height: 230px;
  margin: 0 auto;
  padding: 3.6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
}

.site-footer p {
  margin: 0;
  color: #8e949f;
  font-size: 0.78rem;
}

.footer-note {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.copyright {
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
    padding: 0 1.4rem;
  }

  .menu-button {
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: "DM Mono", monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .menu-lines,
  .menu-lines::before {
    width: 20px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-lines::before {
    content: "";
    transform: translateY(-5px);
  }

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

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

  .site-nav {
    position: absolute;
    top: 0;
    right: 0;
    width: min(88vw, 420px);
    padding: 7rem 2.2rem 2.5rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.7rem;
    background: #10131a;
    box-shadow: -20px 30px 60px rgba(0,0,0,0.35);
  }

  .site-nav.open {
    display: flex;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(4, 5, 9, 0.88), rgba(4, 5, 9, 0.2)),
      linear-gradient(0deg, rgba(4, 5, 9, 0.95), rgba(4, 5, 9, 0.08) 70%);
  }

  .hero-image {
    background-position: 62% center;
  }

  .hero-content {
    padding: 8.5rem 1.4rem 2.5rem;
    justify-content: flex-end;
  }

  .hero h1 {
    margin-top: 1.6rem;
    font-size: clamp(4.4rem, 18vw, 7.8rem);
  }

  .hero-coordinate {
    display: none;
  }

  .section {
    padding: 7rem 1.4rem;
  }

  .research-layout {
    margin-top: 5rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .work-section {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .home-people-section {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .home-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.5rem 1rem;
  }

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

  .work-card-featured {
    grid-row: auto;
  }

  .current-team {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-card,
  .team-card:nth-child(4),
  .team-card:nth-child(5) {
    grid-column: span 1;
  }

  .team-card:last-child {
    grid-column: span 2;
  }

  .alumni-intro,
  .alumni-group {
    grid-template-columns: 1fr;
  }

  .alumni-group {
    gap: 2.5rem;
  }

  .about-hero {
    min-height: auto;
    padding: 9rem 1.4rem 5rem;
    grid-template-columns: 1fr 0.8fr;
    gap: 3rem;
  }

  .about-heading h1 {
    font-size: clamp(4.6rem, 14vw, 7rem);
  }

  .about-biography,
  .profile-links {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .people-page-hero {
    min-height: 48svh;
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .research-philosophy,
  .research-area-heading,
  .research-toolkit-heading {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .research-philosophy {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .research-toolkit-heading > p:last-child {
    grid-column: 1;
  }

  .research-signposts,
  .research-area,
  .research-toolkit {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

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

  .opportunities-page-intro,
  .opportunity-detail,
  .opportunities-contact {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .opportunities-page-intro,
  .opportunities-page-list {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .research-signpost {
    min-height: 330px;
    border-left: 1px solid rgba(13, 16, 23, 0.16);
  }

  .research-area-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .research-area-layout-reversed .research-area-copy,
  .research-area-layout-reversed .research-image-space {
    order: initial;
  }

  .group-leader-section {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .current-team-section {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .people-section-heading,
  .chronology-group {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem 1.2rem;
  }

  .member-card h3 {
    min-height: 0;
  }

  .scotch-photo,
  .people-alumni {
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }

  .opportunities-section {
    min-height: 690px;
    padding: 7rem 1.4rem;
  }

  .site-footer {
    padding: 3rem 1.4rem;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-intro {
    max-width: 88%;
  }

  .round-link {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .section-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

  .research-item {
    grid-template-columns: 2.2rem 1fr;
  }

  .work-card,
  .work-card-featured {
    min-height: 0;
  }

  .work-visual,
  .work-card-featured .work-visual {
    min-height: 300px;
  }

  .home-people-section {
    padding-top: 5.5rem;
    padding-bottom: 6rem;
  }

  .home-people-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.5rem;
  }

  .home-people-heading h2 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .home-people-link {
    width: 100%;
  }

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

  .current-team {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card:nth-child(4),
  .team-card:nth-child(5),
  .team-card:last-child {
    min-height: 320px;
    grid-column: span 1;
  }

  .alumni {
    margin-top: 7rem;
  }

  .alumni-list {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-top: 8.5rem;
    grid-template-columns: 1fr;
  }

  .about-heading h1 {
    font-size: clamp(4.7rem, 23vw, 7rem);
  }

  .about-portrait {
    width: 88%;
    margin-left: auto;
  }

  .about-biography {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .profile-links {
    padding-top: 6.5rem;
    padding-bottom: 7rem;
  }

  .people-page-hero h1 {
    font-size: clamp(5.5rem, 28vw, 8rem);
  }

  .research-philosophy {
    padding-top: 2rem;
    padding-bottom: 7rem;
  }

  .research-philosophy-copy h2 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }

  .research-signposts {
    padding-bottom: 5rem;
  }

  .research-signpost {
    min-height: 300px;
    padding: 1.6rem 1.5rem 4rem;
  }

  .research-area {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .research-area-heading h2 {
    font-size: clamp(3.3rem, 17vw, 5.6rem);
  }

  .research-area-layout {
    margin-top: 4rem;
  }

  .research-image-space {
    height: min(64vw, 270px);
  }

  .research-toolkit {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }

  .research-toolkit-heading h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .research-toolkit-list {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }

  .research-tool {
    min-height: 260px;
    padding: 1.5rem;
  }

  .opportunities-page-intro {
    padding-top: 2rem;
    padding-bottom: 6.5rem;
  }

  .opportunities-page-intro-copy h2 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .opportunities-page-list {
    padding-bottom: 7rem;
  }

  .opportunity-detail {
    padding: 3.5rem 0 4rem;
    gap: 1.5rem;
  }

  .group-leader-section {
    padding-bottom: 7rem;
    grid-template-columns: 1fr;
  }

  .leader-portrait {
    width: 88%;
  }

  .leader-copy {
    padding: 0;
  }

  .current-team-section {
    padding-top: 6.5rem;
    padding-bottom: 7rem;
  }

  .member-grid {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .member-card h3 {
    font-size: 1.7rem;
  }

  .scotch-photo {
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .people-alumni {
    padding-bottom: 7rem;
  }

  .chronology-group {
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

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

  .chronology-year ul {
    grid-template-columns: 1fr;
  }

  .opportunities-content h2 {
    font-size: clamp(4.1rem, 22vw, 6rem);
  }

  .site-footer {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .copyright {
    text-align: left;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
