:root {
  --ink: #102f3f;
  --ink-deep: #08232f;
  --ink-soft: #42606d;
  --paper: #f4f0e8;
  --paper-light: #fbf9f5;
  --paper-dark: #e6dfd2;
  --sky: #c9dce7;
  --gold: #c98243;
  --gold-light: #e8b77f;
  --line: rgba(16, 47, 63, 0.18);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(6, 28, 38, 0.14);
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --shell: min(1220px, calc(100vw - 48px));
  --header-height: 84px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--ink-deep);
  border-radius: 3px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(244, 240, 232, 0.9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(251, 249, 245, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 32px rgba(16, 47, 63, 0.06);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 680;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper-light);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  letter-spacing: -0.08em;
}

.brand-name {
  font-size: 17px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-contact {
  padding: 9px 16px;
  color: var(--paper-light);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-contact:hover {
  color: var(--ink);
  background: transparent;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  padding: calc(var(--header-height) + 76px) 0 90px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: -9vw;
  bottom: -26vw;
  z-index: -1;
  width: 54vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(16, 47, 63, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(16, 47, 63, 0.025), 0 0 0 160px rgba(16, 47, 63, 0.018);
}

.hero-wash {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  width: 47%;
  background: linear-gradient(155deg, rgba(201, 220, 231, 0.78), rgba(230, 223, 210, 0.15));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: clamp(48px, 7vw, 108px);
  align-items: center;
}

.hero-copy {
  padding-bottom: 28px;
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 90px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}

.hero-lead cite {
  color: var(--ink);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 11px 21px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--paper-light);
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(16, 47, 63, 0.15);
}

.button-primary:hover {
  background: var(--ink-deep);
  box-shadow: 0 16px 34px rgba(16, 47, 63, 0.2);
}

.button-quiet {
  background: transparent;
}

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

.arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  color: currentColor;
  vertical-align: -1px;
}

.arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.arrow::after {
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 1.5px;
  content: "";
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.arrow-se {
  transform: rotate(90deg);
}

.arrow-up {
  margin-left: 4px;
  transform: rotate(-45deg);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 0;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.hero-meta li:not(:last-child)::after {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 26px;
  vertical-align: middle;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  top: -24px;
  right: -24px;
  z-index: -1;
  width: 48%;
  height: 32%;
  content: "";
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
}

.image-frame {
  position: relative;
  aspect-ratio: 0.83;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(6, 28, 38, 0.28));
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover img {
  transform: scale(1.025);
}

.hero-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.section {
  padding: 132px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: clamp(44px, 7vw, 104px);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-top: 9px;
}

.section-label span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.section-label p {
  margin: 0;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.kicker {
  max-width: 940px;
  margin-bottom: 74px;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 60px);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.about-section {
  background: var(--paper-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.prose {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

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

.prose a {
  color: var(--ink);
  font-weight: 650;
}

.focus-list {
  border-top: 1px solid var(--ink);
}

.focus-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
}

.focus-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.focus-list p {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--ink);
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading p {
  max-width: 320px;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.research-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 150px;
  gap: 32px;
  align-items: start;
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.research-card.featured-paper {
  position: relative;
}

.research-card.featured-paper::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -34px;
  width: 3px;
  content: "";
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 300ms ease;
}

.research-card.featured-paper:hover::before {
  transform: scaleY(1);
}

.paper-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-published {
  color: #fff;
  background: var(--ink);
}

.status-progress {
  color: var(--ink);
  background: var(--sky);
}

.paper-body h3 {
  max-width: 700px;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.authors {
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
}

.journal {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.paper-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.paper-link:hover {
  color: var(--gold);
}

.repro-section {
  position: relative;
  padding: 144px 0;
  overflow: hidden;
  color: #f4f0e8;
  background: var(--ink-deep);
}

.repro-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 76% 28%, rgba(201, 130, 67, 0.19), transparent 29%);
}

.repro-grid {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 720px) 1fr;
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.section-label-light span {
  color: var(--gold-light);
}

.eyebrow-light {
  color: var(--gold-light);
}

.repro-copy h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(42px, 5.3vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.repro-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 17px;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.text-link-light {
  color: var(--gold-light);
}

.repro-motif {
  position: relative;
  width: min(320px, 22vw);
  aspect-ratio: 1;
  justify-self: end;
}

.repro-motif span {
  position: absolute;
  inset: calc(var(--i, 0) * 13%);
  border: 1px solid rgba(232, 183, 127, 0.28);
  border-radius: 50%;
}

.repro-motif span:nth-child(1) { --i: 0; }
.repro-motif span:nth-child(2) { --i: 1; }
.repro-motif span:nth-child(3) { --i: 2; }
.repro-motif span:nth-child(4) { --i: 3; background: var(--gold); border: 0; opacity: 0.85; }

.notes-section {
  background: var(--paper-light);
}

.notes-heading {
  margin-bottom: 34px;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.note-card {
  min-height: 350px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper-light);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.note-card:hover {
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-3px);
}

.note-card-wide {
  grid-column: 1 / -1;
  min-height: 310px;
}

.note-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 54px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.note-card:hover .note-topline {
  color: var(--gold-light);
}

.note-card h3 {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.14;
}

.note-card > p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 14px;
  transition: color 220ms ease;
}

.note-card:hover > p {
  color: rgba(244, 240, 232, 0.7);
}

.note-card ul {
  padding-left: 18px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  transition: color 220ms ease;
}

.note-card:hover ul {
  color: rgba(244, 240, 232, 0.72);
}

.note-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
}

.note-links a {
  display: inline-flex;
  gap: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 720;
  text-decoration: none;
}

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

.contact-section {
  padding: 150px 0;
  background: var(--sky);
  border-top: 1px solid var(--line);
}

.contact-inner {
  text-align: center;
}

.contact-inner h2 {
  max-width: 920px;
  margin: 0 auto 38px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 82px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 7px;
  margin-bottom: 36px;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 28px);
  text-decoration: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer {
  color: rgba(244, 240, 232, 0.76);
  background: var(--ink-deep);
}

.footer-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:nth-child(2) {
  text-align: center;
}

.footer-inner a {
  justify-self: end;
  text-decoration: none;
}

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

.reveal-delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 48px;
  }

  .section-grid,
  .repro-grid {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 46px;
  }

  .repro-motif {
    display: none;
  }

  .research-card {
    grid-template-columns: 145px minmax(0, 1fr);
  }

  .paper-link {
    grid-column: 2;
    width: 150px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 36px, 720px);
    --header-height: 72px;
  }

  .site-header {
    background: rgba(251, 249, 245, 0.96);
  }

  .nav-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav-open .nav-toggle > span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-open .nav-toggle > span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 18px 24px;
    visibility: hidden;
    background: var(--paper-light);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(16, 47, 63, 0.09);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
  }

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

  .nav-contact {
    margin-top: 12px;
    text-align: center;
    border: 1px solid var(--ink) !important;
  }

  .hero {
    padding-top: calc(var(--header-height) + 54px);
  }

  .hero-wash {
    top: 44%;
    width: 100%;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(49px, 13vw, 74px);
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .image-frame {
    aspect-ratio: 1.08;
  }

  .section {
    padding: 96px 0;
  }

  .section-grid,
  .repro-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-label {
    padding: 0 0 13px;
    border-bottom: 1px solid var(--line);
  }

  .section-label-light {
    border-color: var(--white-line);
  }

  .section-label p {
    writing-mode: initial;
    transform: none;
  }

  .kicker {
    margin-bottom: 54px;
  }

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

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin: 16px 0 0;
  }

  .repro-section {
    padding: 100px 0;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .brand-name {
    font-size: 15px;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-meta {
    display: grid;
    gap: 8px;
  }

  .hero-meta li::after {
    display: none !important;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .kicker {
    font-size: 34px;
  }

  .research-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 36px 0;
  }

  .paper-meta {
    flex-direction: row;
    align-items: center;
  }

  .paper-link {
    grid-column: auto;
  }

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

  .note-card-wide {
    grid-column: auto;
  }

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

  .contact-section {
    padding: 100px 0;
  }

  .contact-email {
    font-size: 17px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 30px 0;
    text-align: center;
  }

  .footer-inner p:nth-child(2) {
    order: 3;
  }

  .footer-inner a {
    justify-self: center;
  }
}

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

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