﻿@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&display=swap");
@import url("styles/design-tokens.css");
@import url("styles/global.css");
@import url("styles/components.css");

:root {
  --color-primary: var(--ri-color-primary-green);
  --color-primary-dark: var(--ri-color-heading);
  --color-heading: var(--ri-color-heading);
  --text-primary: #1a1a1a;
  --text-secondary: #2a2a2a;
  --text-muted: #4a4a4a;
  --color-text-strong: #3A403B;
  --border-color: rgba(0, 0, 0, 0.08);
  --color-text: var(--text-primary);
  --color-secondary-text: var(--text-secondary);
  --color-muted: var(--text-muted);
  --color-caption: #4a4a4a;
  --secondary-green: #3f6f52;
  --color-cta-text: var(--secondary-green);
  --primary-green: var(--color-heading);
  --hover-green: var(--secondary-green);
  --brand-green: var(--color-primary);
  --teal-accent: #7fcfc5;
  --light-sage: #d8e6c5;
  --warm-accent: #e8c46a;
  --magenta-accent: #c70f5b;
  --interaction-rose: var(--ri-color-accent-rose);
  --interaction-rose-hover: var(--ri-color-accent-rose-hover);
  --text: var(--color-text);
  --body-text: var(--color-text);
  --muted: var(--color-muted);
  --caption-text: var(--color-caption);
  --paper: var(--ri-color-background);
  --footer-paper: #eef4ec;
  --footer-background: #557461;
  --line: var(--border-color);
  --shadow-card: var(--ri-shadow-card);
  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans: Inter, "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-body: var(--font-sans);
  --font-heading: var(--font-serif);
  --font-display: var(--font-heading);
  --layout-max: 1360px;
  --layout-gutter-total: clamp(48px, 8vw, 128px);
  --layout-width: min(var(--layout-max), calc(100% - var(--layout-gutter-total)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
}

h1,
h2,
.hero-title,
.section-title,
.page-title,
.paper-title {
  font-family: var(--font-heading);
}

h3,
h4,
h5,
h6,
.card-title,
.footer-heading {
  font-family: var(--font-sans);
}

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

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

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

.focus-ring {
  outline: 2px solid transparent;
  outline-offset: 4px;
}

.focus-ring:focus-visible {
  outline-color: var(--magenta-accent);
}

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

.page-container {
  width: var(--layout-width);
  margin-inline: auto;
}

.home-page .home-content-shell {
  width: var(--layout-width);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-sans);
  backdrop-filter: blur(0);
  transition: all 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open,
.site-header.is-mega-open {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(18, 19, 20, 0.024);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  min-height: 82px;
  margin-inline: 0;
  padding-right: clamp(48px, 8vw, 120px);
  padding-left: clamp(48px, 8vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-lockup img {
  width: 214px;
  height: auto;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-left: clamp(42px, 5vw, 90px);
  color: #050505;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.desktop-nav__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 2.2vw, 42px);
  margin-left: auto;
}

.desktop-nav__item {
  display: flex;
  align-items: center;
}

.desktop-nav__trigger {
  position: relative;
  padding: 7px 0;
  font-weight: 650;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav__trigger::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--interaction-rose);
  opacity: 0;
  transform: translateX(-50%) translateY(3px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav__trigger:hover,
.desktop-nav__trigger:focus-visible {
  color: var(--hover-green);
}

.desktop-nav__trigger.is-active {
  color: var(--secondary-green);
}

.desktop-nav__trigger.is-active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.desktop-nav__trigger:hover::after,
.desktop-nav__trigger:focus-visible::after,
.desktop-nav__item:hover > .desktop-nav__trigger::after,
.desktop-nav__item:focus-within > .desktop-nav__trigger::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.desktop-nav__item:hover > .desktop-nav__trigger,
.desktop-nav__item:focus-within > .desktop-nav__trigger {
  color: var(--hover-green);
}

.mega-menu {
  position: fixed;
  top: 82px;
  left: 50%;
  width: min(calc(100vw - 68px), 1160px);
  border-top: 1px solid rgba(18, 19, 20, 0.055);
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 18px 36px rgba(18, 19, 20, 0.045);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  visibility: hidden;
  transition:
    opacity 210ms ease,
    transform 210ms ease,
    visibility 210ms ease;
}

.mega-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 18px;
}

.desktop-nav__item:hover > .mega-menu,
.desktop-nav__item:focus-within > .mega-menu,
.desktop-nav__item.is-open > .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.mega-menu__inner {
  min-height: 250px;
  padding: 42px 54px 52px;
}

.mega-menu__label {
  margin: 0 0 34px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.mega-menu__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 300px));
  gap: 34px 74px;
  width: fit-content;
}

.mega-menu__columns--single {
  grid-template-columns: minmax(260px, 360px);
}

.mega-menu__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mega-menu__column a {
  position: relative;
  width: fit-content;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition:
    color 180ms ease,
    transform 180ms ease,
    text-decoration-color 180ms ease;
}

.mega-menu__column a:hover,
.mega-menu__column a:focus-visible {
  color: var(--hover-green);
  text-decoration-line: underline;
  text-decoration-color: var(--primary-green);
  transform: translateX(4px);
}

.nav-donate {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-left: clamp(4px, 0.7vw, 12px);
  border-radius: 10px;
  background: var(--interaction-rose);
  color: #fff;
  padding: 13px 20px 12px;
  line-height: 1;
  box-shadow: 0 0 0 rgba(199, 109, 126, 0);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.nav-donate::before {
  position: absolute;
  z-index: 1;
  top: -55%;
  bottom: -55%;
  left: 0;
  width: 30%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.08) 28%,
    rgba(255, 255, 255, 0.48) 50%,
    rgba(255, 255, 255, 0.08) 72%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  transform: translateX(-180%) skewX(-16deg);
  transition: transform 520ms ease;
}

.nav-donate:hover,
.nav-donate:focus-visible {
  background: var(--interaction-rose);
  box-shadow: 0 10px 20px rgba(199, 109, 126, 0.18);
  transform: translateY(-1px);
}

.nav-donate:hover::before {
  transform: translateX(440%) skewX(-16deg);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.language-switcher--desktop {
  position: relative;
  margin-left: 0;
  padding: 7px 0;
  color: #050505;
}

.language-switcher--desktop::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -8px;
  width: 92px;
  height: 16px;
  transform: translateX(50%);
}

.language-switcher a,
.language-switcher__option,
.language-switcher__trigger {
  color: inherit;
  transition: color 160ms ease;
}

.language-switcher__option {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.language-switcher a:not(.language-switcher__option--disabled):hover,
.language-switcher a:not(.language-switcher__option--disabled):focus-visible,
.language-switcher__option:not(.language-switcher__option--disabled):hover,
.language-switcher__option:not(.language-switcher__option--disabled):focus-visible,
.language-switcher__trigger:hover,
.language-switcher__trigger:focus-visible {
  color: var(--hover-green);
}

.language-switcher__current {
  color: #050505 !important;
  font-weight: 600;
}

.language-switcher__trigger {
  display: inline-flex;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  gap: 5px;
  font: inherit;
  cursor: pointer;
}

.language-switcher--desktop .language-switcher__trigger {
  padding: calc(0.5rem + 1px) 1.05rem;
  border: 2px solid rgba(199, 109, 126, 0.65);
  border-radius: 10px;
  background: transparent;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.language-switcher--desktop .language-switcher__current {
  color: #1a1a1a !important;
}

.language-switcher--desktop .language-switcher__trigger:hover,
.language-switcher--desktop .language-switcher__trigger:focus-visible {
  border-color: rgba(199, 109, 126, 0.82);
  background: rgba(199, 109, 126, 0.06);
  color: #1a1a1a !important;
}

.language-switcher__caret {
  color: #c76d7e;
  font-size: 11px;
  line-height: 1;
  transform: translateY(-1px);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% - 1px);
  right: 50%;
  z-index: 1010;
  display: grid;
  min-width: 92px;
  padding: 10px 0;
  border: 1px solid rgba(18, 19, 20, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 32px rgba(18, 19, 20, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, -4px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
  visibility: hidden;
}

.language-switcher__menu a,
.language-switcher__menu .language-switcher__option {
  display: block;
  padding: 10px 18px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  transition: color 160ms ease, transform 160ms ease;
}

.language-switcher__menu a:hover,
.language-switcher__menu a:focus-visible,
.language-switcher__menu button:hover,
.language-switcher__menu button:focus-visible {
  color: var(--hover-green);
  transform: translateX(3px);
}

.language-switcher__option.is-current {
  color: var(--primary-green);
}

.language-switcher__option--disabled {
  color: rgba(74, 74, 74, 0.62) !important;
  cursor: default;
  opacity: 0.56;
  pointer-events: none;
}

.language-switcher__menu .language-switcher__option--disabled {
  transform: none;
}

.language-switcher--desktop:hover .language-switcher__menu,
.language-switcher--desktop:focus-within .language-switcher__menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translate(50%, 0) !important;
  visibility: visible !important;
}

.language-switcher__current:hover,
.language-switcher__current:focus-visible {
  color: var(--hover-green) !important;
}

.language-switcher--desktop .language-switcher__current:hover,
.language-switcher--desktop .language-switcher__current:focus-visible {
  color: #1a1a1a !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 19, 20, 0.18);
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 20px;
  height: 1px;
  margin-inline: auto;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 -6px 0 currentColor;
}

.mobile-nav {
  width: min(100% - 34px, 1120px);
  max-height: calc(100vh - 96px);
  margin: 0 auto 16px;
  overflow-y: auto;
  border: 1px solid rgba(18, 19, 20, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  padding: 12px 18px 18px;
}

.mobile-nav__item {
  border-bottom: 1px solid rgba(18, 19, 20, 0.06);
}

.mobile-nav__toggle {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 8px 0;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease;
}

.mobile-nav__symbol {
  color: var(--primary-green);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.mobile-nav__submenu {
  padding: 0 0 14px 14px;
}

.mobile-nav__submenu a {
  display: block;
  min-height: 42px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
}

.mobile-nav__donate {
  display: block;
  margin-top: 14px;
  padding: 12px 0 4px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.language-switcher--mobile {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(18, 19, 20, 0.06);
}

.language-switcher--mobile .language-switcher__option {
  padding: 0;
}

.mobile-nav__toggle:hover,
.mobile-nav__toggle:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--hover-green);
}

.desktop-nav__trigger.nav-link--coming-soon,
.desktop-nav__item:hover > .desktop-nav__trigger.nav-link--coming-soon,
.desktop-nav__item:focus-within > .desktop-nav__trigger.nav-link--coming-soon,
.mega-menu__column a.nav-link--coming-soon,
.mega-menu__column a.nav-link--coming-soon:hover,
.mega-menu__column a.nav-link--coming-soon:focus-visible,
.mobile-nav__submenu a.nav-link--coming-soon,
.mobile-nav__submenu a.nav-link--coming-soon:hover,
.mobile-nav__submenu a.nav-link--coming-soon:focus-visible {
  color: #9b9b9b;
  cursor: default;
  opacity: 0.88;
  pointer-events: none;
  text-decoration: none;
  text-decoration-color: transparent;
  transform: none;
}

.desktop-nav__trigger.nav-link--coming-soon::after,
.desktop-nav__trigger.nav-link--coming-soon:hover::after,
.desktop-nav__trigger.nav-link--coming-soon:focus-visible::after,
.desktop-nav__item:hover > .desktop-nav__trigger.nav-link--coming-soon::after,
.desktop-nav__item:focus-within > .desktop-nav__trigger.nav-link--coming-soon::after {
  opacity: 0;
  transform: translateX(-50%) translateY(3px);
}

.coming-soon-label {
  display: block;
  margin-top: 4px;
  color: #b5b5b5;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--layout-width);
    max-width: var(--layout-max);
    margin-inline: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .brand-lockup {
    flex: 0 0 auto;
  }

  .desktop-nav {
    flex: 0 0 auto;
    width: max-content;
    margin-left: auto;
    justify-content: flex-end;
  }

  .desktop-nav__right {
    flex: 0 0 auto;
    width: max-content;
    margin-left: 0;
    justify-content: flex-end;
  }
}

.hero {
  position: relative;
  min-height: 82vh;
  min-height: 82svh;
  overflow: hidden;
  padding-top: 82px;
}

.hero__layout {
  position: relative;
  z-index: 2;
  min-height: calc(82vh - 82px);
  min-height: calc(82svh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 836px) 1fr;
  align-items: start;
  padding-top: 127px;
}

.hero__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.12;
  white-space: nowrap;
}

.hero__copy h1 span {
  color: var(--primary-green);
}

.hero__copy {
  transform: translateX(50px);
}

.hero__copy p {
  width: 836px;
  max-width: 100%;
  margin: 38px 0 0;
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.75;
}

.brand-landscape {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  max-width: 100vw;
  overflow: hidden;
}

.brand-landscape--hero {
  right: 0;
  left: auto;
  bottom: 12px;
  width: 100vw;
  height: 462px;
  z-index: 1;
}

.brand-landscape--hero .terrain--warm {
  opacity: 0.2;
}

.brand-landscape--hero .terrain--sage {
  opacity: 0.4;
}

.brand-landscape--hero .terrain--primary {
  opacity: 0.48;
}

.brand-landscape--hero .terrain--teal {
  opacity: 0.54;
}

.terrain--warm {
  fill: var(--warm-accent);
  opacity: 0.22;
}

.terrain--sage {
  fill: var(--light-sage);
  opacity: 0.48;
}

.terrain--primary {
  fill: var(--brand-green);
  opacity: 0.47;
}

.terrain--teal {
  fill: var(--teal-accent);
  opacity: 0.56;
}

.institutional-values {
  position: relative;
  overflow: hidden;
  padding: 124px 0 120px;
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.institutional-values::before,
.institutional-values::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.institutional-values .page-shell {
  position: relative;
  z-index: 10;
}

.section-eyebrow {
  margin: 0 0 18px;
  color: var(--hover-green);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.section-eyebrow--center {
  text-align: center;
}

.institutional-values h2 {
  position: relative;
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.08;
  text-align: center;
}

.institutional-values__intro {
  max-width: 760px;
  margin: 34px auto 82px;
  font-family: var(--font-body);
  text-align: center;
}

.institutional-values__intro-primary {
  display: block;
  color: var(--text-secondary);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
}

.institutional-values__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin: 0;
  padding: 0;
  counter-reset: philosophy;
  list-style: none;
}

.institutional-value {
  position: relative;
  min-width: 0;
  padding-top: 38px;
  color: var(--text);
  text-align: left;
  counter-increment: philosophy;
}

.institutional-value::after {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  width: calc(100% + 12px);
  height: 1px;
  background: rgba(79, 127, 95, 0.34);
}

.institutional-value:not(:last-child)::after {
  width: calc(100% + 48px);
}

.institutional-value:not(:last-child) span::after {
  content: "";
  position: absolute;
  top: -41px;
  right: -52px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgba(79, 127, 95, 0.46);
  border-right: 1px solid rgba(79, 127, 95, 0.46);
  transform: rotate(45deg);
}

.institutional-value::before {
  content: "0" counter(philosophy);
  display: block;
  margin-bottom: 27px;
  color: rgba(79, 127, 95, 0.42);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}

.institutional-value span {
  position: relative;
  display: block;
  max-width: none;
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.16;
}

.institutional-value p {
  max-width: 240px;
  margin: 27px 0 0;
  color: var(--body-text);
  font-size: 13px;
  line-height: 1.75;
}

.institutional-values__deco-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: -24px;
  right: -2.5%;
  width: min(38vw, 540px);
  overflow: visible;
}

.institutional-values__bougainvillea {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: none;
  transform-origin: center center;
  transition: none;
}

@keyframes blossom-micro-float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.01);
  }
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.about-page) .about-section {
  position: relative;
  overflow: hidden;
  margin-top: -20px;
  padding: 124px 0 122px;
}

.about-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 60fr) minmax(0, 40fr);
  gap: 28px;
  align-items: start;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(18, 19, 20, 0.08);
}

.about-photo img {
  width: 100%;
  height: 490px;
  object-fit: cover;
}

.about-copy {
  width: 100%;
  padding-top: 16px;
}

.section-title {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.05;
  text-transform: none;
}

.about-copy > p {
  width: 100%;
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 25px;
  color: var(--color-cta-text);
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.006em;
  text-transform: none;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--color-primary-dark, var(--primary-green));
  text-decoration: none;
  transform: translateX(4px);
}

.text-link span {
  font-size: 24px;
  line-height: 0.7;
}

.founder-section {
  position: relative;
  padding: 0 0 122px;
}

.founder-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 20px;
  align-items: center;
}

.founder-photo {
  width: min(100%, 520px);
  margin: 0;
  margin-left: auto;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(18, 19, 20, 0.08);
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  object-position: center 48%;
}

.founder-copy {
  padding-block: 16px;
}

.founder-copy__role {
  margin: 18px 0 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 20px;
  line-height: 1.35;
}

.founder-copy > p:not(.section-eyebrow):not(.founder-copy__role) {
  width: 700px;
  max-width: 100%;
  margin: 24px 0 0;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.9;
}

.trcs-section {
  position: relative;
  padding: 0 0 44px;
  scroll-margin-top: 110px;
}

.trcs-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: 20px;
  align-items: center;
}

.trcs-section__copy {
  padding-block: 16px;
}

.trcs-section .section-title {
  font-size: 49px;
  white-space: nowrap;
}

.trcs-section__copy > p:not(.section-eyebrow) {
  width: 700px;
  max-width: 100%;
  margin: 24px 0 0;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.9;
}

.trcs-section__figure {
  width: min(100%, 520px);
  margin: 0 0 0 auto;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 19, 20, 0.08);
}

.trcs-section__figure img {
  width: 100%;
  height: auto;
}

.collaborations-section {
  padding: 24px 0 28px;
}

.collaborations-section .home-content-shell {
  display: block;
}

.collaborations-section__header {
  flex: 0 0 auto;
  margin: 0;
}

.collaborations-section h2 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.collaborations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(30px, 4vw, 60px);
  width: auto;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-start;
}

@media (min-width: 769px) {
  .home-page .collaborations-section .collaborations-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    gap: clamp(24px, 3vw, 52px);
    align-items: center;
    justify-items: center;
  }
}

.logo-wall__item {
  display: grid;
  min-width: 0;
  min-height: 60px;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

div.logo-wall__item {
  cursor: default;
}

.logo-wall__item img {
  display: block;
  max-width: 220px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.logo-wall__item--longenia img {
  max-width: 230px;
  max-height: 78px;
}

.logo-wall__item--ila img {
  max-width: 225px;
  max-height: 74px;
}

.logo-wall__item--ssvle img {
  max-width: 220px;
  max-height: 68px;
}

.logo-wall__item--mango img {
  max-width: 200px;
  max-height: 64px;
}

a.logo-wall__item:hover img,
a.logo-wall__item:focus-visible img,
a.logo-wall__item:active img {
  filter: brightness(0.92);
  opacity: 0.75;
}

.updates-section {
  min-height: 82vh;
  padding: 76px 0 118px;
}

.updates-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
}

.updates-section .section-title {
  font-size: 56px;
}

.updates-section__header .text-link {
  margin-top: 0;
}

.news-editorial {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(320px, 9fr);
  gap: 44px;
  align-items: stretch;
}

.news-featured,
.news-secondary {
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 26px rgba(18, 19, 20, 0.045);
}

.home-page .updates-section .news-featured,
.home-page .updates-section .news-secondary {
  border: none;
  outline: none;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.045);
}

.home-page .updates-section .news-visual,
.home-page .updates-section .news-image {
  border: none;
  outline: none;
  box-shadow: none;
}

.news-featured {
  display: grid;
  grid-template-rows: minmax(420px, 1fr) auto;
}

.news-secondary-list {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.news-secondary {
  display: grid;
  grid-template-rows: 240px auto;
}

.news-visual {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.news-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
}

.news-category {
  position: relative;
  z-index: 2;
  display: inline-flex;
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-sans);
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.news-visual--partner {
  background:
    radial-gradient(circle at 28% 30%, rgba(255, 255, 255, 0.98), transparent 31%),
    linear-gradient(120deg, rgba(199, 219, 224, 0.88), rgba(255, 255, 255, 0.62)),
    linear-gradient(45deg, rgba(54, 108, 122, 0.2), rgba(255, 255, 255, 0.2));
}

.news-category--publication {
  background: #c76d7e;
}

.news-category--release {
  background: var(--primary-green);
}

.news-visual--publication {
  background:
    radial-gradient(circle at 52% 54%, rgba(81, 221, 224, 0.75) 0 6px, transparent 7px),
    radial-gradient(circle at 35% 36%, rgba(187, 59, 172, 0.8) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 36%, rgba(35, 201, 195, 0.65) 0 8px, transparent 9px),
    linear-gradient(135deg, #182a55, #672f88 48%, #147e90);
}

.news-visual--publication::after {
  content: "";
  position: absolute;
  inset: -40px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px);
  background-size: 38px 32px;
  opacity: 0.55;
}

.news-visual--release {
  background:
    radial-gradient(circle at 82% 36%, rgba(241, 217, 180, 0.9) 0 28px, transparent 29px),
    linear-gradient(105deg, #06384a, #0a6473);
}

.news-featured__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 36px 38px;
}

.news-featured h3,
.news-secondary h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
}

.news-featured time,
.news-secondary time {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-featured h3 {
  max-width: 650px;
  font-size: 34px;
  line-height: 1.2;
}

.news-secondary__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 26px 26px;
}

.news-featured__body .text-link,
.news-secondary__body .text-link {
  margin-top: auto;
  padding-top: 24px;
}

.news-secondary__body time,
.news-secondary__body h3 {
  width: 100%;
}

.news-secondary h3 {
  font-size: 19px;
  line-height: 1.3;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.update-card {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(18, 19, 20, 0.05);
}

.card-visual {
  position: relative;
  height: 210px;
  overflow: hidden;
  padding: 12px 14px;
}

.card-visual span {
  display: inline-flex;
  border-radius: 999px;
  color: #fff;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-visual--partner {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(120deg, rgba(199, 219, 224, 0.8), rgba(255, 255, 255, 0.58)),
    linear-gradient(45deg, rgba(54, 108, 122, 0.18), rgba(255, 255, 255, 0.2));
}

.card-visual--partner span {
  background: #26aa83;
}

.card-visual--partner strong {
  position: absolute;
  right: 32px;
  top: 48px;
  color: #16477b;
  font-size: 27px;
  line-height: 0.95;
  text-transform: uppercase;
}

.card-visual--publication {
  background:
    radial-gradient(circle at 52% 54%, rgba(81, 221, 224, 0.75) 0 6px, transparent 7px),
    radial-gradient(circle at 35% 36%, rgba(187, 59, 172, 0.8) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 36%, rgba(35, 201, 195, 0.65) 0 8px, transparent 9px),
    linear-gradient(135deg, #182a55, #672f88 48%, #147e90);
}

.card-visual--publication::after {
  content: "";
  position: absolute;
  inset: -40px;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.28) 0 2px, transparent 3px);
  background-size: 38px 32px;
  opacity: 0.55;
}

.card-visual--publication span {
  position: relative;
  z-index: 1;
  background: var(--magenta-accent);
}

.card-visual--event {
  background:
    radial-gradient(circle at 84% 42%, rgba(241, 217, 180, 0.9) 0 33px, transparent 34px),
    linear-gradient(105deg, #06384a, #0a6473);
  color: #fff;
}

.card-visual--event span {
  background: #f1a918;
}

.card-visual--event small {
  display: block;
  margin-top: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-visual--event strong {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
}

.update-card__body {
  min-height: 250px;
  padding: 34px 30px 38px;
}

.update-card time {
  display: block;
  margin-bottom: 13px;
  color: var(--caption-text);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.update-card h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.36;
}

.update-card p {
  margin: 12px 0 0;
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.65;
}

.events-section {
  padding: 8px 0 128px;
}

.events-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
}

.events-section .section-title {
  font-size: 56px;
}

.events-section__header .text-link {
  margin-top: 0;
  white-space: nowrap;
}

.events-editorial {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(340px, 9fr);
  gap: 48px;
  align-items: stretch;
}

.featured-event {
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 26px rgba(18, 19, 20, 0.045);
}

.featured-event__visual {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #eef4ec;
}

.featured-event__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-event__body {
  padding: 34px 36px 38px;
}

.featured-event__date,
.upcoming-event__date,
.upcoming-event__location {
  margin: 0;
  color: var(--caption-text);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.featured-event h3 {
  max-width: 620px;
  margin: 14px 0 0;
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.featured-event__organization {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
}

.featured-event .text-link {
  margin-top: 25px;
}

.upcoming-events {
  display: flex;
  flex-direction: column;
}

.upcoming-events__label {
  margin: 0;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(79, 127, 95, 0.38);
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 25px;
  line-height: 1.2;
}

.upcoming-event {
  padding: 30px 0 32px;
  border-bottom: 1px solid var(--line);
}

.upcoming-event h3 {
  margin: 13px 0 15px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.upcoming-event h3 a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.upcoming-event h3 a:hover,
.upcoming-event h3 a:focus-visible,
.upcoming-event h3 a:active {
  color: var(--color-primary-dark, var(--hover-green));
  text-decoration: none;
  transform: translateX(4px);
}

.academic-footer {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(15, 31, 27, 0.08)),
    var(--footer-background);
  padding: 90px 0 80px;
}

.footer-core {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 228px;
  flex-direction: column;
  align-items: stretch;
}

.footer-access {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  min-width: 0;
  padding-top: 10px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 0.9fr) minmax(360px, 1.2fr);
  gap: 56px;
  align-items: start;
}

.footer-brand {
  color: #fff;
}

.footer-brand__logo {
  display: block;
  width: 238px;
}

.footer-brand__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-brand__description {
  max-width: 330px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.8;
}

.footer-brand__pathway {
  max-width: 340px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-action,
.footer-structure {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: rgba(250, 249, 244, 0.96);
  text-align: left;
}

.footer-structure {
  padding-top: 10px;
}

.footer-action h3,
.footer-structure h3 {
  display: block;
  color: rgba(255, 255, 255, 0.95);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 22px;
}

.footer-action a,
.footer-structure__list span,
.footer-structure__list a {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
}

.footer-action a,
.footer-structure__list a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}

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

.footer-structure__list span,
.footer-structure__list a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.footer-action a + a,
.footer-structure__list span + span,
.footer-structure__list span + a,
.footer-structure__list a + a,
.footer-structure__list a + span {
  margin-top: 8px;
}

.footer-action a:hover,
.footer-action a:focus-visible,
.footer-action a:active,
.footer-structure__list a:hover,
.footer-structure__list a:focus-visible,
.footer-structure__list a:active {
  color: #ffffff;
  opacity: 1;
  text-decoration: none;
  transform: translateX(3px);
}

.connect-icons {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 2px;
}

.connect-icons a {
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.connect-icons a:hover,
.connect-icons a:focus-visible,
.connect-icons a:active {
  color: #ffffff;
  opacity: 1;
  transform: translateY(-2px);
}

.connect-icons svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: none;
}

.connect-icons .youtube-logo {
  width: 28px;
}

.connect-icons .youtube-play {
  fill: var(--footer-background);
}

.academic-footer__copyright {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.copyright-row {
  text-align: center;
}

.copyright-row p {
  margin: 0;
  line-height: 1.7;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--interaction-rose);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 7px 18px rgba(18, 19, 20, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--interaction-rose-hover);
  box-shadow:
    0 8px 20px rgba(18, 19, 20, 0.16),
    0 0 0 7px rgba(199, 109, 126, 0.18);
  transform: translateY(-2px) scale(1.05);
}

.back-to-top svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Legacy homepage typography preview class, retained for the temporary comparison page. */
.home-page.typography-b {
  --typography-b-sans: Inter, "Helvetica Neue", Arial, system-ui, sans-serif;
}

.home-page.typography-b .hero h1,
.home-page.typography-b .hero h1 span {
  font-family: var(--typography-b-sans);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.home-page.typography-b .hero p {
  font-family: var(--typography-b-sans);
  font-weight: 400;
  line-height: 1.6;
}

.home-page.typography-b main > section:not(.hero),
.home-page.typography-b .academic-footer {
  font-family: var(--typography-b-sans);
}

.home-page.typography-b .section-eyebrow,
.home-page.typography-b .collaborations-section h2,
.home-page.typography-b .news-category,
.home-page.typography-b .news-featured time,
.home-page.typography-b .news-secondary time,
.home-page.typography-b .featured-event__date,
.home-page.typography-b .upcoming-event__date,
.home-page.typography-b .upcoming-event__location,
.home-page.typography-b .footer-brand__pathway {
  font-family: var(--typography-b-sans);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-page.typography-b .institutional-values h2,
.home-page.typography-b .section-title,
.home-page.typography-b .institutional-value span,
.home-page.typography-b .footer-action h3,
.home-page.typography-b .footer-structure h3 {
  font-family: var(--typography-b-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.home-page.typography-b .institutional-values__intro,
.home-page.typography-b .institutional-values__intro-primary,
.home-page.typography-b .institutional-value p,
.home-page.typography-b .about-copy > p,
.home-page.typography-b .founder-copy__role,
.home-page.typography-b .founder-copy > p:not(.section-eyebrow):not(.founder-copy__role),
.home-page.typography-b .trcs-section__copy > p:not(.section-eyebrow),
.home-page.typography-b .featured-event__organization,
.home-page.typography-b .footer-brand__description,
.home-page.typography-b .academic-footer p {
  font-family: var(--typography-b-sans);
  font-weight: 400;
  line-height: 1.65;
}

.home-page.typography-b .text-link,
.home-page.typography-b .footer-action a,
.home-page.typography-b .footer-structure__list span,
.home-page.typography-b .footer-structure__list a {
  font-family: var(--typography-b-sans);
  font-weight: 600;
}

.home-page.typography-b .news-featured h3,
.home-page.typography-b .news-secondary h3,
.home-page.typography-b .featured-event h3,
.home-page.typography-b .upcoming-events__label,
.home-page.typography-b .upcoming-event h3,
.home-page.typography-b .upcoming-event h3 a {
  font-family: var(--typography-b-sans);
  font-weight: 600;
  letter-spacing: -0.018em;
}

/* About page */
.about-page {
  --about-media-aspect: 3 / 2;
  --about-video-aspect: 3 / 2;
  --about-media-max-width: 560px;
  --about-media-radius: 6px;
  --about-media-caption-gap: 13px;
  --about-heading-gap: 40px;
  --about-grid-gap: 72px;
  --about-card-gap: 30px;
}

.about-page main > section:not(.about-page-hero):not(.publication-hero) {
  background: var(--paper);
}

.about-page main > .about-content-section {
  display: flow-root;
  margin: 0;
  padding-top: 88px;
  padding-bottom: 88px;
}

.header-over-hero .site-header:not(.is-scrolled):not(.is-menu-open):not(.is-mega-open) {
  color: #ffffff;
}

.header-over-hero .site-header:not(.is-scrolled):not(.is-menu-open):not(.is-mega-open) .brand-lockup img {
  filter: brightness(0) invert(1);
}

.header-over-hero .site-header:not(.is-scrolled):not(.is-menu-open):not(.is-mega-open) .desktop-nav {
  color: #ffffff;
}

.header-over-hero .site-header:not(.is-scrolled):not(.is-menu-open):not(.is-mega-open) .language-switcher {
  color: rgba(255, 255, 255, 0.58);
}

.header-over-hero .site-header:not(.is-scrolled):not(.is-menu-open):not(.is-mega-open) .language-switcher__current {
  color: rgba(255, 255, 255, 0.94) !important;
}

.about-page-hero {
  position: relative;
  height: 620px;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(27, 72, 53, 0.86), rgba(37, 84, 63, 0.58) 56%, rgba(37, 84, 63, 0.35)),
    url("brand-assets/photos/bhiar-environment-enhanced.png") center 48% / cover no-repeat;
  color: #ffffff;
}

.donate-page .about-page-hero.donate-hero {
  background: #0f2a44;
}

.donate-page .donate-hero .about-page-hero__network {
  opacity: 0.1;
}

.donate-page .donate-hero .about-page-hero__network path,
.donate-page .donate-hero .about-page-hero__network circle {
  stroke: #dce8e5;
}

.research-focus-page .about-page-hero.research-hero {
  background:
    linear-gradient(90deg, rgba(6, 28, 62, 0.88) 0%, rgba(7, 55, 103, 0.76) 54%, rgba(0, 83, 142, 0.66) 100%),
    linear-gradient(180deg, rgba(4, 25, 56, 0.28), rgba(0, 79, 137, 0.2)),
    url("/brand-assets/photos/research-dna-hero.png") center center / cover no-repeat;
}

.trcs-page .about-page-hero.research-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 58, 106, 0.78) 0%, rgba(0, 98, 145, 0.68) 54%, rgba(0, 132, 170, 0.58) 100%),
    linear-gradient(180deg, rgba(55, 150, 185, 0.16), rgba(0, 76, 126, 0.24)),
    url("/brand-assets/photos/trcs-hero.png");
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-page-hero.research-hero .about-page-hero__network {
  display: none;
}

.trcs-page .about-page-hero.trcs-hero .section-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.about-page-hero__network {
  position: absolute;
  z-index: 0;
  top: 54px;
  right: -45px;
  width: min(54vw, 760px);
  height: auto;
  opacity: 0.075;
}

.about-page-hero__network path,
.about-page-hero__network circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.2;
}

.about-page-hero__content {
  position: absolute;
  z-index: 1;
  top: 170px;
  right: 0;
  left: 0;
  padding: 0;
}

.about-page-hero__breadcrumb {
  display: flex;
  gap: 11px;
  margin: 0 0 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-page-hero__breadcrumb a {
  color: #ffffff;
  transition: opacity 180ms ease;
}

.about-page-hero__breadcrumb a:hover,
.about-page-hero__breadcrumb a:focus-visible {
  opacity: 0.72;
}

.about-page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.about-page-hero__description {
  max-width: 720px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.72;
}

.publication-hero {
  position: relative;
  height: 620px;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(75, 51, 65, 0.9), rgba(117, 79, 96, 0.7) 56%, rgba(99, 72, 85, 0.54)),
    url("/brand-assets/photos/publications-library-hero.png") center 48% / cover no-repeat;
  color: #ffffff;
}

.publications-page .publication-hero,
.papers-page .publication-hero,
.paper-detail-page .publication-hero {
  background:
    linear-gradient(90deg, rgba(75, 51, 65, 0.9), rgba(117, 79, 96, 0.7) 56%, rgba(99, 72, 85, 0.54)),
    url("/brand-assets/photos/publications-library-hero.png") center 48% / cover no-repeat;
}

.publication-hero__network {
  position: absolute;
  z-index: 0;
  top: 54px;
  right: -45px;
  width: min(54vw, 760px);
  height: auto;
  opacity: 0.075;
}

.publication-hero__network path,
.publication-hero__network circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.2;
}

.publication-hero__inner {
  position: absolute;
  z-index: 1;
  top: 170px;
  right: 0;
  left: 0;
  padding: 0;
}

.publication-hero__breadcrumb {
  display: flex;
  gap: 11px;
  margin: 0 0 28px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.publication-hero__breadcrumb a {
  color: #ffffff;
  transition: opacity 180ms ease;
}

.publication-hero__breadcrumb a:hover,
.publication-hero__breadcrumb a:focus-visible {
  opacity: 0.72;
}

.publication-hero__title {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 4vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.paper-detail-page .publication-hero__title {
  max-width: 1100px;
}

.publication-hero__subtitle {
  max-width: 720px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.72;
}

.about-page-subnav {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(18, 31, 24, 0.94);
}

.about-page-subnav__inner {
  position: relative;
}

.about-page-subnav__toggle {
  display: none;
}

.about-page-subnav__links {
  display: flex;
}

.about-page-subnav__links a {
  position: relative;
  display: flex;
  min-width: max-content;
  min-height: 72px;
  padding: 0 30px;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.about-page-subnav__links a:hover,
.about-page-subnav__links a:focus-visible {
  color: #ffffff;
  transform: translateX(3px);
}

.about-page-subnav__links a[aria-current="page"] {
  background: var(--paper);
  color: var(--color-cta-text);
}

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

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

.about-page-prose p,
.about-approach-header p,
.about-approach-card p,
.about-origin p:not(.section-eyebrow),
.institute-introduction__copy > p:last-child,
.work-location p,
.work-closing {
  color: var(--body-text);
}

.about-page-intro,
.about-origin__grid,
.institute-introduction__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--about-grid-gap);
  align-items: center;
}

.about-page-intro__copy .section-title {
  margin-bottom: 40px;
}

.about-page-prose {
  max-width: 670px;
}

.about-page-prose p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
}

.about-page-prose p + p {
  margin-top: 24px;
}

.about-page-intro__image,
.about-origin__portrait,
.institute-introduction__media,
.about-media,
.about-video,
.work-landscape,
.about-location-media,
.about-institutional-media {
  width: 100%;
  max-width: var(--about-media-max-width);
  margin: 0 0 0 auto;
}

.about-page-intro__image img,
.about-origin__portrait img,
.about-media img,
.work-landscape img,
.about-location-media img,
.about-institutional-media img {
  display: block;
  width: 100%;
  aspect-ratio: var(--about-media-aspect);
  border-radius: var(--about-media-radius);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.about-media__trigger {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--about-media-radius);
  background: transparent;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.about-media__trigger img {
  box-shadow: none;
  transition: filter 280ms ease, transform 320ms ease;
}

.about-media__expand {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: #c76d7e;
  color: #fff;
  opacity: 0;
  box-shadow: 0 7px 18px rgba(18, 19, 20, 0.18);
  transform: translateY(-3px) scale(0.98);
  transition:
    background-color 240ms ease,
    box-shadow 240ms ease,
    opacity 240ms ease,
    transform 240ms ease;
}

.about-media__expand svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.about-media__trigger:hover img,
.about-media__trigger:focus-visible img {
  filter: brightness(0.88);
  transform: scale(1.025);
}

.about-media__trigger:hover .about-media__expand,
.about-media__trigger:focus-visible .about-media__expand {
  background: #d27d8e;
  box-shadow:
    0 8px 20px rgba(18, 19, 20, 0.18),
    0 0 0 7px rgba(199, 109, 126, 0.18);
  opacity: 1;
  transform: translateY(0) scale(1.05);
}

.about-page-intro__image figcaption,
.about-origin__portrait figcaption,
.institute-introduction__media figcaption,
.about-media figcaption,
.work-landscape figcaption,
.about-location-media figcaption,
.about-institutional-media figcaption {
  margin-top: var(--about-media-caption-gap);
  color: var(--caption-text);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-media__caption {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 7px;
  align-items: baseline;
}

.about-media__caption-title::after {
  content: "\00b7";
  margin-left: 7px;
  color: var(--caption-text);
}

.about-media__caption-title--standalone::after {
  content: none;
}

.about-media__credit {
  color: var(--caption-text);
  white-space: nowrap;
}

.about-media__credit a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: rgba(79, 127, 95, 0.48);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.about-media__credit a:hover,
.about-media__credit a:focus-visible {
  color: var(--hover-green);
  text-decoration-color: currentColor;
}

.about-approach-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--about-grid-gap);
  margin-bottom: 32px;
  align-items: start;
}

.about-approach-section {
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.about-approach-section::before,
.about-approach-section::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  background: none !important;
  filter: none !important;
  -webkit-filter: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

.about-approach-section .page-container {
  position: relative;
  z-index: 10;
}

.about-approach-decoration-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 2;
  top: 64px;
  left: clamp(-40px, 2.8vw, 42px);
  width: clamp(210px, 18vw, 300px);
  overflow: visible;
}

.about-approach-decoration {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-page .about-approach-decoration-wrapper {
  display: none;
}

.triangle-rose-wrapper,
.triangle-rose-wrapper::before,
.triangle-rose-wrapper::after,
.triangle-rose,
.triangle-rose img,
.triangle-rose::before,
.triangle-rose::after,
.about-approach-decoration-wrapper,
.about-approach-decoration-wrapper::before,
.about-approach-decoration-wrapper::after,
.about-approach-decoration,
.about-approach-decoration img,
.about-approach-decoration::before,
.about-approach-decoration::after,
.institutional-values__deco-wrapper,
.institutional-values__deco-wrapper::before,
.institutional-values__deco-wrapper::after,
.institutional-values__bougainvillea,
.institutional-values__bougainvillea img,
.institutional-values__bougainvillea::before,
.institutional-values__bougainvillea::after {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.about-approach-header p,
.work-closing {
  max-width: 590px;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.about-approach-header p {
  margin: 0;
}

@media (min-width: 1025px) {
  .about-approach-header {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
  }

  .about-approach-header p {
    max-width: 590px;
    margin-left: 0;
  }
}

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 64px;
  margin: 0;
  padding: 0;
  counter-reset: about-principle;
  list-style: none;
}

.about-approach-card {
  position: relative;
  padding: 24px 0 26px 54px;
  border-top: 1px solid rgba(79, 127, 95, 0.34);
  counter-increment: about-principle;
}

.about-approach-card::before {
  content: "0" counter(about-principle);
  position: absolute;
  top: 29px;
  left: 0;
  color: rgba(79, 127, 95, 0.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.about-approach-card h3 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

.about-approach-card p {
  max-width: 430px;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.85;
}

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

.about-origin__content {
  max-width: 620px;
}

.about-origin p:not(.section-eyebrow) {
  margin: 30px 0 0;
  font-size: 17px;
  line-height: 1.85;
}

.about-origin .text-link {
  margin-top: 34px;
}

.about-origin__portrait img {
  object-position: center;
}

.institute-introduction {
  background: var(--paper);
}

.institute-introduction__grid {
  align-items: start;
}

.institute-introduction__copy > p:last-child {
  max-width: 480px;
  margin: 31px 0 0;
  font-size: 17px;
  line-height: 1.85;
}

.institute-introduction__media {
  margin-top: 0;
  margin-bottom: 0;
}

.about-video,
.about-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: var(--about-video-aspect);
  border-radius: var(--about-media-radius);
}

.about-video {
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-video__poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: inherit;
  background: #18231d;
  cursor: pointer;
}

.about-video__poster::after {
  position: absolute;
  inset: 0;
  background: rgba(18, 19, 20, 0.08);
  content: "";
  transition: background-color 240ms ease;
}

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

.about-video__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #c76d7e;
  place-items: center;
  box-shadow: 0 8px 22px rgba(18, 19, 20, 0.2);
  transform: translate(-50%, -50%);
  transition:
    box-shadow 240ms ease,
    transform 240ms ease;
}

.about-video__play svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

.about-video__poster:hover::after,
.about-video__poster:focus-visible::after {
  background: rgba(18, 19, 20, 0.03);
}

.about-video__poster:hover .about-video__play,
.about-video__poster:focus-visible .about-video__play {
  box-shadow:
    0 9px 24px rgba(18, 19, 20, 0.2),
    0 0 0 8px rgba(199, 109, 126, 0.18);
  transform: translate(-50%, -50%) scale(1.05);
}

.about-video iframe {
  height: 100%;
  border: 0;
}

.about-lightbox {
  width: min(1040px, calc(100vw - 72px));
  max-height: calc(100vh - 72px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: #fff;
}

.about-lightbox::backdrop {
  background: rgba(12, 16, 14, 0.84);
  backdrop-filter: blur(3px);
}

.about-lightbox__figure {
  margin: 0;
}

.about-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: var(--about-media-radius);
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.about-lightbox__caption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(18, 19, 20, 0.28);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.about-lightbox__close:hover,
.about-lightbox__close:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(18, 19, 20, 0.5);
}

.scientific-journey__header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.scientific-journey__subtitle {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--body-text);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.scientific-journey__viewport {
  overflow-x: auto;
  padding: 4px 2px 16px;
  scrollbar-color: rgba(79, 127, 95, 0.42) transparent;
  scrollbar-width: thin;
}

.scientific-journey__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 940px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scientific-journey__timeline::before {
  content: "";
  position: absolute;
  top: 44px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(79, 127, 95, 0.42);
}

.scientific-journey__milestone {
  position: relative;
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  scroll-snap-align: center;
}

.scientific-journey__milestone time {
  display: block;
  margin: 0 0 25px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
}

.scientific-journey__node {
  position: relative;
  z-index: 1;
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 auto 30px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--primary-green);
  box-shadow: 0 0 0 1px rgba(79, 127, 95, 0.72);
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.scientific-journey__milestone h3 {
  max-width: 190px;
  margin: 0 auto;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.35;
  transition: color 220ms ease;
}

.scientific-journey__titles {
  display: grid;
  gap: 13px;
}

.scientific-journey__milestone--turning-point time,
.scientific-journey__milestone--turning-point h3 {
  color: #c76d7e;
}

.scientific-journey__milestone--turning-point .scientific-journey__node {
  background: #c76d7e;
  box-shadow: 0 0 0 1px rgba(199, 109, 126, 0.76);
}

.scientific-journey__milestone:hover .scientific-journey__node {
  background: var(--hover-green);
  box-shadow: 0 0 0 3px rgba(79, 127, 95, 0.16);
  transform: translateY(-2px);
}

.scientific-journey__milestone:hover h3 {
  color: var(--primary-green);
}

.scientific-journey__milestone--turning-point:hover .scientific-journey__node {
  background: #c76d7e;
  box-shadow: 0 0 0 3px rgba(199, 109, 126, 0.16);
}

.scientific-journey__milestone--turning-point:hover h3 {
  color: #c76d7e;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.work-location {
  padding: 36px 38px;
  border-top: 2px solid rgba(79, 127, 95, 0.48);
  background: rgba(255, 255, 255, 0.72);
}

.work-location h3 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.15;
}

.work-location p {
  margin: 25px 0 0;
  font-size: 17px;
  line-height: 1.85;
}

.work-location__image {
  --about-media-aspect: 4 / 3;
  --about-media-radius: 10px;
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
}

.work-location__image .about-media__trigger {
  border: 1px solid var(--line);
  background: #ffffff;
}

.research-base-gallery {
  max-width: 1120px;
  margin-top: 76px;
  margin-right: auto;
  margin-left: auto;
}

.research-base-gallery h3 {
  margin: 0 0 42px;
  color: var(--primary-green);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.006em;
  line-height: 1.16;
  text-align: left;
}

.research-base-gallery__layout {
  display: grid;
  grid-template-columns: minmax(0, 70fr) minmax(0, 30fr);
  gap: 36px 34px;
  align-items: stretch;
}

.research-base-gallery__featured {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(79, 127, 95, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 10px 24px rgba(18, 19, 20, 0.045);
  aspect-ratio: 4 / 3;
}

.research-base-gallery__featured img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 220ms ease;
}

.research-base-gallery__featured img.is-fading {
  opacity: 0.58;
}

.research-base-gallery__thumbs {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.research-base-gallery__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(79, 127, 95, 0.24);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  opacity: 0.72;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.research-base-gallery__thumb::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 180ms ease;
}

.research-base-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.research-base-gallery__thumb:hover,
.research-base-gallery__thumb:focus-visible,
.research-base-gallery__thumb.is-active {
  border-color: rgba(79, 127, 95, 0.66);
  opacity: 1;
}

.research-base-gallery__thumb.is-active::after {
  border-color: rgba(79, 127, 95, 0.82);
}

.research-base-gallery__caption {
  grid-column: 1 / -1;
  grid-row: 2;
  max-width: 760px;
  margin-top: 0;
}

.research-base-gallery__caption span {
  display: block;
  margin-bottom: 10px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.research-base-gallery__caption p {
  margin: 0;
  color: var(--caption-text);
  font-size: 16px;
  line-height: 1.75;
}

.work-closing {
  max-width: 760px;
  margin: 58px auto 0;
  text-align: center;
}

.explore-further-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--about-card-gap);
  margin-top: 36px;
}

.explore-further-card {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 46px 40px 40px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(79, 127, 95, 0.2);
  border-top: 2px solid rgba(79, 127, 95, 0.55);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(18, 19, 20, 0.025);
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.explore-further-card:hover,
.explore-further-card:focus-visible {
  border-color: rgba(79, 127, 95, 0.52);
  border-top-color: rgba(79, 127, 95, 0.9);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(18, 19, 20, 0.075);
  transform: translateY(-5px);
}

.explore-further-card:active {
  transform: translateY(-2px);
}

.explore-further-card h3 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.16;
}

.explore-further-card p {
  margin: 42px 0 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  transition: color 0.25s ease, transform 0.25s ease;
}

.explore-further-card p span {
  display: inline-block;
  margin-left: 5px;
  color: var(--color-cta-text);
}

.explore-further-card:hover p,
.explore-further-card:focus-visible p {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

/* Governance page */
.governance-prose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--about-grid-gap);
  align-items: start;
}

.governance-section-heading .section-title {
  margin-bottom: 40px;
}

.governance-prose .section-title {
  margin-bottom: 0;
}

.governance-page .section-title,
.organization-page .section-title,
.contact-page .section-title,
.papers-page .section-title {
  max-width: 900px;
}

.governance-section-heading {
  max-width: 820px;
}

.governance-section-heading > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.9;
}

.governance-people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: var(--about-card-gap);
  margin-top: 40px;
}

.governance-people-grid--leadership {
  grid-template-columns: repeat(2, minmax(300px, 360px));
  max-width: calc(720px + var(--about-card-gap));
}

.governance-people-grid--advisory {
  grid-template-columns: minmax(300px, 360px);
  width: min(100%, 360px);
}

@media (min-width: 1025px) {
  .institute-introduction__copy > p:last-child {
    max-width: 620px;
  }

  .governance-page .governance-people-section .section-title,
  .governance-page .governance-accountability > .section-title {
    text-align: center;
  }

  .governance-page #governance-structure-title,
  .governance-page #institutional-accountability-title {
    width: 100%;
    max-width: none;
    margin-inline: auto;
  }

  .organization-page #organization-structure-title {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .about-page #where-we-work-title {
    width: 100%;
    max-width: none;
    margin-inline: auto;
    text-align: center;
  }

  .governance-page .governance-people-section .governance-section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .governance-page .governance-people-section .governance-section-heading > p:last-child {
    margin-inline: auto;
  }

  .governance-page .governance-people-grid--leadership,
  .governance-page .governance-people-grid--advisory {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }
}

.governance-person {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(79, 127, 95, 0.2);
  border-radius: var(--about-media-radius);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(18, 19, 20, 0.025);
}

.governance-person--board {
  border-color: rgba(31, 62, 46, 0.16);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 34px rgba(18, 19, 20, 0.035);
}

.governance-person__portrait {
  overflow: hidden;
  background: #e8ece7;
}

.governance-person__portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.governance-person--board .governance-person__portrait {
  aspect-ratio: 3 / 4;
  background: #edf1ec;
}

.governance-person--board .governance-person__portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.governance-person__content {
  padding: 28px 30px 32px;
}

.governance-person__content h3 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

.governance-person__content p {
  margin: 12px 0 0;
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.7;
}

.governance-person__content > p:first-of-type {
  color: var(--hover-green);
  font-weight: 600;
}

.governance-person__bio-toggle {
  display: inline-flex;
  min-height: 42px;
  margin-top: 22px;
  padding: 10px 18px;
  border: 2px solid rgba(201, 111, 132, 0.45);
  border-radius: 999px;
  background: transparent;
  align-items: center;
  gap: 7px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.governance-person__bio-toggle:hover,
.governance-person__bio-toggle:focus-visible {
  border-color: #c96f84;
  background: #c96f84;
  color: #ffffff;
  transform: translateY(-1px);
}

.governance-person__bio-caret {
  color: #c96f84;
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(-1px);
  transition: color 180ms ease;
}

.governance-person__bio-toggle:hover .governance-person__bio-caret,
.governance-person__bio-toggle:focus-visible .governance-person__bio-caret {
  color: #ffffff;
}

.governance-person__bio {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.governance-person__bio.is-open {
  overflow: visible;
}

.governance-person__bio-inner {
  padding-top: 24px;
}

.governance-person__bio-inner:empty {
  padding-top: 0;
}

.governance-person__bio-inner p {
  margin: 0 0 13px;
  color: var(--body-text);
  font-size: 14.5px;
  line-height: 1.75;
}

.governance-person__bio-inner p:last-child {
  margin-bottom: 0;
}

.governance-person__content .governance-person__affiliation {
  margin-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.governance-text-highlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--about-grid-gap);
  margin-top: 40px;
  align-items: start;
}

.governance-accountability__column h3 {
  margin: 0 0 26px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.governance-accountability__column .governance-audit {
  margin-top: 30px;
}

.governance-audit {
  padding: 34px 36px;
  border-top: 2px solid rgba(79, 127, 95, 0.58);
  background: rgba(255, 255, 255, 0.5);
}

.governance-audit p {
  margin: 0 0 17px;
  color: var(--hover-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.governance-audit strong {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
}

/* Organization page */
.organization-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--about-grid-gap);
  align-items: start;
}

.organization-page .organization-intro {
  padding-bottom: 54px;
}

.organization-page .organization-structure {
  padding-top: 54px;
}

.organization-diagram {
  position: relative;
  margin-top: 42px;
  padding-top: 10px;
}

.organization-diagram::before {
  position: absolute;
  z-index: 0;
  top: 116px;
  bottom: 176px;
  left: 50%;
  width: 3px;
  background: rgba(63, 111, 82, 0.56);
  content: "";
  transform: translateX(-50%);
}

.organization-diagram__leadership {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 74px;
  width: min(100%, 460px);
  margin-inline: auto;
}

.organization-diagram__support {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 286px));
  gap: 30px;
  width: min(100%, 650px);
  margin: 72px auto 0;
  justify-content: space-between;
}

.organization-diagram__support::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 150px;
  left: 150px;
  border-top: 2.5px dashed rgba(63, 111, 82, 0.5);
  content: "";
}

.organization-diagram__divisions {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 88px;
  padding-top: 44px;
}

.organization-diagram__divisions::before {
  position: absolute;
  top: 0;
  right: 9%;
  left: 9%;
  border-top: 2.5px solid rgba(63, 111, 82, 0.48);
  content: "";
}

.organization-diagram__divisions .organization-card::before {
  position: absolute;
  top: -45px;
  left: 50%;
  width: 2.5px;
  height: 45px;
  background: rgba(63, 111, 82, 0.48);
  content: "";
}

.organization-card {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 38px 36px;
  border: 1px solid rgba(79, 127, 95, 0.18);
  border-top: 2px solid rgba(79, 127, 95, 0.38);
  border-radius: var(--about-media-radius);
  background: rgba(255, 255, 255, 0.5);
  align-items: flex-end;
  box-shadow: 0 8px 20px rgba(18, 19, 20, 0.025);
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.organization-card:hover {
  border-color: rgba(79, 127, 95, 0.32);
  border-top-color: rgba(79, 127, 95, 0.58);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 26px rgba(18, 19, 20, 0.045);
  transform: translateY(-2px);
}

.organization-card h3 {
  max-width: 380px;
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

.organization-card--leadership {
  min-height: 142px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.organization-card--founder {
  border: 2px solid rgba(63, 111, 82, 0.58);
  border-top-width: 3px;
  background: rgba(216, 230, 197, 0.42);
  box-shadow: 0 14px 30px rgba(18, 19, 20, 0.045);
}

.organization-card--founder h3 {
  font-size: 37px;
}

.organization-card--executive {
  border: 2px solid rgba(63, 111, 82, 0.38);
  border-top-width: 3px;
  background: rgba(216, 230, 197, 0.24);
}

.organization-card--executive h3 {
  font-size: 30px;
}

.organization-card--support {
  min-height: 132px;
  border: 1px dashed rgba(63, 111, 82, 0.38);
  border-top: 2px dashed rgba(63, 111, 82, 0.46);
  background: rgba(216, 230, 197, 0.1);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.organization-card--support h3 {
  font-size: 27px;
}

.organization-diagram__divisions .organization-card {
  height: 146px;
  min-height: 146px;
  padding: 24px 20px;
  border-color: rgba(79, 127, 95, 0.16);
  border-top-color: rgba(79, 127, 95, 0.28);
  background: rgba(255, 255, 255, 0.46);
  align-items: center;
  justify-content: center;
  text-align: center;
}

.organization-diagram__divisions .organization-card h3 {
  font-size: 22px;
  line-height: 1.22;
}

.organization-card h3 span {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Collaborations pages */
.collaborations-page .about-page-hero.collaborations-hero {
  background:
    linear-gradient(90deg, rgba(11, 60, 109, 0.66) 0%, rgba(11, 60, 109, 0.5) 48%, rgba(11, 60, 109, 0.34) 100%),
    linear-gradient(rgba(11, 60, 109, 0.12), rgba(11, 60, 109, 0.12)),
    url("brand-assets/photos/translational-office-cell-culture-hero.png") center center / cover no-repeat;
}

.collaborations-page-subnav .collaborations-page-subnav__disabled {
  color: rgba(255, 255, 255, 0.48);
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
}

.collaborations-page-subnav .collaborations-page-subnav__disabled:hover,
.collaborations-page-subnav .collaborations-page-subnav__disabled:focus-visible {
  color: rgba(255, 255, 255, 0.48);
  transform: none;
}

.research-page-subnav .nav-link--coming-soon,
.research-page-subnav .nav-link--coming-soon:hover,
.research-page-subnav .nav-link--coming-soon:focus-visible {
  color: rgba(255, 255, 255, 0.48);
  cursor: default;
  opacity: 0.72;
  pointer-events: none;
  transform: none;
}

.trcs-page-subnav .trcs-page-subnav__disabled,
.trcs-page-subnav .trcs-page-subnav__disabled:hover,
.trcs-page-subnav .trcs-page-subnav__disabled:focus-visible {
  color: rgba(255, 255, 255, 0.58);
  cursor: default;
  opacity: 0.78;
  pointer-events: none;
  transform: none;
}

.translational-office-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--about-grid-gap);
  align-items: start;
}

.translational-office-intro .section-title {
  margin-bottom: 0;
}

.translational-office-functions .section-title {
  margin-bottom: 48px;
}

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

.translational-section-heading {
  max-width: 860px;
}

.translational-section-heading .section-title {
  margin-bottom: 28px;
}

.translational-section-heading > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.9;
}

.translational-entities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 420px));
  gap: 32px;
  margin-top: 48px;
}

.translational-entity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 430px;
  padding: 38px 34px 36px;
  border: 1px solid rgba(79, 127, 95, 0.18);
  border-radius: var(--about-media-radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(18, 19, 20, 0.05);
  text-align: center;
}

.translational-entity-card__logo {
  display: grid;
  min-height: 190px;
  margin-bottom: 28px;
  place-items: center;
}

.translational-entity-card__logo img {
  display: block;
  width: min(100%, 210px);
  max-height: 180px;
  object-fit: contain;
}

.translational-entity-card h3 {
  margin: 0 0 14px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}

.translational-entity-card p {
  max-width: 260px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  color: var(--body-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
}

.translational-entities-section {
  padding-bottom: 120px;
}

/* Contact page */
.contact-page main > .contact-information-section {
  padding-bottom: 48px;
}

.contact-page main > .contact-connect-section {
  padding-top: 48px;
}

.contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--about-grid-gap);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 48px;
}

.contact-detail {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(0, 1.35fr);
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(79, 127, 95, 0.38);
}

.contact-detail h3 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
}

.contact-detail__content {
  margin: 0;
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 17px;
  font-style: normal;
  line-height: 1.9;
}

.contact-link {
  display: block;
  width: fit-content;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.contact-link + .contact-link {
  margin-top: 6px;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--color-primary-dark, var(--hover-green));
  text-decoration: none;
  transform: translateX(4px);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(79, 127, 95, 0.38);
}

.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.contact-social svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
  stroke: none;
}

.contact-social .youtube-logo {
  width: 28px;
}

.contact-social .youtube-play {
  fill: var(--paper);
}

.contact-social:hover,
.contact-social:focus-visible {
  color: var(--hover-green);
  transform: translateY(-2px);
}

/* Papers page */
.papers-introduction__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--about-grid-gap);
  align-items: start;
}

.papers-introduction__grid > p {
  max-width: 620px;
  margin: 0;
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.65;
}

.papers-themes {
  border-top: 1px solid rgba(79, 127, 95, 0.22);
  border-bottom: 1px solid rgba(79, 127, 95, 0.22);
  background: rgba(216, 230, 197, 0.12);
  font-family: var(--font-sans);
}

.papers-themes__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 42px;
  padding-top: 24px;
  padding-bottom: 24px;
  justify-content: center;
}

.papers-themes a {
  position: relative;
  color: var(--primary-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.papers-themes__count {
  opacity: 0.75;
}

.papers-themes-mobile {
  display: none;
}

.papers-themes__inner a {
  opacity: 0.78;
}

.papers-themes__inner a::after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--interaction-rose);
  content: "";
  opacity: 0;
  transform: translateX(-50%) translateY(3px) scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.papers-themes__inner a:hover,
.papers-themes__inner a:focus-visible,
.papers-themes__inner a.is-active {
  color: var(--primary-green);
  opacity: 1;
}

.papers-themes__inner a:hover::after,
.papers-themes__inner a:focus-visible::after,
.papers-themes__inner a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.about-page.papers-page main > .papers-archive {
  padding-top: 0;
}

.publication-entry {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: 48px;
  padding: 54px 0 58px;
  border-bottom: 1px solid rgba(18, 19, 20, 0.16);
  scroll-margin-top: 110px;
}

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

.publication-entry__theme {
  margin: 5px 0 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.publication-entry__content h3 {
  max-width: 880px;
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.25;
}

.publication-entry__paper-list {
  display: grid;
  gap: 8px;
  max-width: 820px;
  margin: 18px 0 0;
  padding-left: 1.2em;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.8;
}

.publication-entry__paper-list li::marker {
  color: var(--primary-green);
}

.book-chapter-entry {
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.institute-publication-entry {
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.book-chapter-entry .publication-entry__theme,
.institute-publication-entry .publication-entry__theme {
  margin-top: 0;
}

.book-cover,
.book-cover-placeholder,
.publication-cover-placeholder {
  display: grid;
  width: min(100%, 210px);
  aspect-ratio: 0.68;
  place-items: center;
  border: 1px solid rgba(199, 109, 126, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(199, 109, 126, 0.16), rgba(216, 230, 197, 0.18)),
    #ffffff;
  box-shadow: 0 14px 32px rgba(18, 19, 20, 0.07);
  color: var(--muted);
  overflow: hidden;
}

.publication-cover {
  display: block;
  width: min(100%, 210px);
}

.book-cover img {
  display: block;
  width: 100%;
  height: 100%;
}

.book-cover img {
  object-fit: cover;
}

.publication-cover img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 14px 32px rgba(18, 19, 20, 0.07);
  object-fit: contain;
}

.book-cover-placeholder span,
.publication-cover-placeholder span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.publication-entry__label-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.publication-entry__status {
  display: inline-flex;
  color: var(--interaction-rose);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.publication-entry__metadata {
  display: grid;
  gap: 7px;
  margin: 28px 0 0;
  font-family: var(--font-sans);
}

.publication-entry__metadata div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
}

.publication-entry__metadata dt {
  color: var(--caption-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.publication-entry__metadata dd {
  margin: 0;
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.65;
}

.publication-abstract-trigger {
  display: inline-flex;
  gap: 10px;
  margin-top: 27px;
  padding: 0;
  border: 0;
  background: transparent;
  align-items: center;
  color: var(--color-cta-text);
  font-family: var(--font-sans);
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.publication-abstract-trigger:hover,
.publication-abstract-trigger:focus-visible {
  color: var(--color-primary-dark, var(--primary-green));
  text-decoration: none;
  transform: translateX(4px);
}

.publication-abstract-trigger--disabled,
.publication-abstract-trigger--disabled:hover,
.publication-abstract-trigger--disabled:focus-visible {
  color: var(--muted);
  cursor: default;
  transform: none;
}

/* Publication detail pages */
.paper-detail-content {
  padding: 86px 0 104px;
  background: var(--paper);
}

.paper-detail-content__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: start;
}

.paper-detail-primary {
  max-width: 780px;
}

.paper-detail-authors__names {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
}

.paper-detail-abstract p {
  max-width: 760px;
  margin: 34px 0 0;
  color: var(--body-text);
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.85;
}

.paper-detail-metadata {
  padding-top: 5px;
  font-family: var(--font-sans);
}

.paper-detail-metadata dl {
  display: grid;
  gap: 28px;
  margin: 0;
}

.paper-detail-metadata div {
  display: grid;
  gap: 8px;
}

.paper-detail-metadata dt {
  color: rgba(74, 74, 74, 0.56);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.paper-detail-metadata dd {
  margin: 0;
  color: var(--body-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
}

.paper-detail-metadata a {
  color: var(--color-cta-text);
  text-decoration: none;
  text-underline-offset: 0.18em;
}

.paper-detail-metadata a:hover,
.paper-detail-metadata a:focus-visible {
  color: var(--primary-green);
  text-decoration: underline;
}

.paper-detail-back {
  margin-top: 76px;
}

.paper-detail-back .text-link {
  margin-top: 0;
}

.paper-detail-back .text-link span {
  font-size: 21px;
}

/* TRCS internal pages */
.trcs-page main {
  --about-card-gap: 32px;
  background: var(--paper);
}

.trcs-page main > .about-content-section {
  display: flow-root;
  margin: 0;
  padding-top: 88px;
  padding-bottom: 88px;
  background: var(--paper);
}

.trcs-container {
  width: var(--layout-width);
  margin-inline: auto;
}

.trcs-hero h1,
.trcs-overview h2,
.trcs-mechanism h2,
.trcs-summary h2,
.trcs-references h2,
.trcs-explore h2 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-display);
  font-weight: 600;
}

.trcs-page .about-page-hero.trcs-hero h1 {
  color: #ffffff;
}

.trcs-overview,
.trcs-summary,
.trcs-references,
.trcs-explore {
  padding: 96px 0;
}

.trcs-overview__copy {
  width: 82%;
  max-width: 1100px;
  padding-left: 32px;
  border-left: 2px solid rgba(79, 127, 95, 0.38);
}

.trcs-overview h2 {
  margin-bottom: 32px;
  font-size: 42px;
  line-height: 1.08;
}

.trcs-overview p,
.trcs-mechanism p,
.trcs-key-idea,
.trcs-references li {
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.88;
}

.trcs-overview p {
  margin: 0;
}

.trcs-overview p + p,
.trcs-mechanism p + p {
  margin-top: 24px;
}

.trcs-mechanisms {
  width: var(--layout-width);
  margin-inline: auto;
}

.trcs-mechanism {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 64px;
  padding: 104px 0;
  align-items: center;
  border-top: 1px solid rgba(79, 127, 95, 0.16);
}

.trcs-mechanism--reverse {
  grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1fr);
}

.trcs-mechanism__number {
  margin: 0 0 24px;
  color: var(--caption-text);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.trcs-mechanism h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 4vw, 56px);
  letter-spacing: -0.012em;
  line-height: 1.04;
}

.trcs-mechanism__copy > p:not(.trcs-mechanism__number) {
  margin-bottom: 0;
}

.trcs-mechanism__figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(79, 127, 95, 0.16);
  border-radius: var(--about-media-radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(18, 19, 20, 0.065);
}

.trcs-mechanism__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: contain;
}

.trcs-mechanism__figure figcaption {
  margin: 0;
  padding: 18px 22px 20px;
  border-top: 1px solid rgba(79, 127, 95, 0.12);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.65;
}

.trcs-key-idea {
  margin-top: 32px;
  padding: 24px 32px;
  border-left: 3px solid var(--primary-green);
  background: rgba(79, 127, 95, 0.055);
}

.trcs-key-idea strong {
  color: var(--primary-green);
  font-weight: 700;
}

.trcs-citation {
  margin-top: 22px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.65;
}

.trcs-citation a {
  color: var(--primary-green);
}

.trcs-summary {
  border-top: 1px solid rgba(79, 127, 95, 0.16);
}

.trcs-summary h2 {
  max-width: 760px;
  margin-bottom: 40px;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1.08;
}

.trcs-summary__flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.trcs-summary__flow div {
  position: relative;
  min-height: 136px;
  padding: 24px;
  border: 1px solid rgba(79, 127, 95, 0.2);
  border-radius: 6px;
  background: rgba(79, 127, 95, 0.04);
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.55;
}

.trcs-summary__flow div:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -16px;
  color: var(--primary-green);
  content: ">";
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  transform: translateY(-50%);
}

.trcs-references {
  border-top: 1px solid rgba(79, 127, 95, 0.16);
}

.trcs-references h2,
.trcs-explore h2 {
  margin-bottom: 32px;
  font-size: 42px;
  line-height: 1.08;
}

.trcs-references a {
  color: var(--primary-green);
}

.trcs-publication-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--about-card-gap);
}

.trcs-publication-card {
  display: flex;
  min-height: 100%;
  padding: 30px;
  flex-direction: column;
  border: 1px solid rgba(79, 127, 95, 0.2);
  border-top: 2px solid rgba(79, 127, 95, 0.55);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(18, 19, 20, 0.025);
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.trcs-publication-card:hover {
  border-color: rgba(79, 127, 95, 0.52);
  border-top-color: rgba(79, 127, 95, 0.9);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 34px rgba(18, 19, 20, 0.075);
  transform: translateY(-5px);
}

.trcs-publication-card__label {
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(79, 127, 95, 0.08);
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.trcs-publication-card__cover {
  position: relative;
  overflow: hidden;
  width: min(100%, 280px);
  aspect-ratio: 3 / 4;
  margin: 0 auto 8px;
  border: 1px solid #d8e3d8;
  border-radius: 12px;
  background: linear-gradient(180deg, #f7faf7, #eef5ef);
}

.trcs-publication-card .publication-cover {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.trcs-publication-card .publication-cover[src] {
  display: block;
}

.trcs-publication-card .publication-cover[src] + .publication-cover-placeholder {
  display: none;
}

.trcs-publication-card .publication-cover-placeholder {
  display: grid;
  height: 100%;
  padding: 28px 20px;
  place-content: center;
  gap: 14px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  text-align: center;
}

.trcs-publication-card .publication-cover-placeholder span:first-child {
  font-size: 24px;
  line-height: 1.12;
}

.trcs-publication-card .publication-cover-placeholder span:last-child {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.trcs-publication-card__body h3 {
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.16;
}

.trcs-publication-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.trcs-publication-card__year {
  margin: 12px 0 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.trcs-publication-card__cta {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 32px;
  align-items: center;
  gap: 6px;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  transition: color 0.25s ease, transform 0.25s ease;
}

.trcs-publication-card__cta:hover,
.trcs-publication-card__cta:focus-visible {
  color: var(--color-primary-dark);
  text-decoration: none;
  transform: translateX(4px);
}

.trcs-explore {
  border-top: 1px solid rgba(79, 127, 95, 0.16);
}

@media (max-width: 1100px) {
  .about-approach-decoration-wrapper {
    top: 72px;
    left: -34px;
    width: 210px;
  }

  .trcs-mechanism,
  .trcs-mechanism--reverse {
    gap: 52px;
  }

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

  .trcs-summary__flow div:nth-child(3)::after {
    display: none;
  }

  .page-shell {
    width: min(100% - 40px, 1120px);
  }

  .site-header__inner {
    width: 100%;
    max-width: none;
    padding-right: clamp(32px, 4vw, 56px);
    padding-left: clamp(32px, 4vw, 56px);
  }

  .page-container,
  .home-page .home-content-shell,
  .trcs-container,
  .trcs-mechanisms {
    width: min(1200px, 86vw);
  }

  .desktop-nav {
    margin-left: auto;
  }

  .desktop-nav__right {
    gap: 18px;
  }

  .nav-donate {
    margin-left: 2px;
  }

  .mega-menu {
    width: calc(100vw - 40px);
  }

  .mega-menu__inner {
    min-height: 230px;
    padding: 36px 40px 44px;
  }

  .mega-menu__columns {
    gap: 30px 54px;
  }

  .hero__copy h1 {
    font-size: clamp(4.75rem, 6vw, 5.5rem);
  }

  .hero__copy {
    transform: translateX(28px);
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    width: min(100% - 40px, 1120px);
    max-width: 1120px;
    margin-inline: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    min-height: 610px;
    padding-top: 112px;
  }

  .hero__copy h1 {
    font-size: clamp(2.5rem, 6vw, 3rem);
    white-space: normal;
  }

  .hero__copy {
    transform: none;
  }

  .hero__statement-break {
    display: none;
  }

  .brand-landscape--hero {
    width: 100%;
    height: 350px;
    bottom: 8px;
  }

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

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

  .events-editorial {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .institutional-values__list {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .institutional-values__deco-wrapper {
    display: none;
  }

  .institutional-value {
    min-height: 0;
    padding: 28px 0 0 42px;
  }

  .institutional-value::after,
  .institutional-value:not(:last-child)::after {
    top: 0;
    right: auto;
    left: 0;
    width: 1px;
    height: calc(100% + 48px);
  }

  .institutional-value:last-child::after {
    height: 100%;
  }

  .institutional-value:not(:last-child) span::after {
    top: auto;
    right: auto;
    bottom: -50px;
    left: -45px;
    transform: rotate(135deg);
  }

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

  .founder-section__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .founder-photo {
    width: 100%;
    margin-left: 0;
    order: -1;
  }

  .trcs-section__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .trcs-section__figure {
    width: min(100%, 520px);
    margin: 0;
  }

  .footer-access {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100%, 520px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-brand {
    width: min(100%, 520px);
  }

  .footer-structure {
    width: min(100%, 520px);
  }

  .header-over-hero .site-header:not(.is-scrolled):not(.is-menu-open):not(.is-mega-open) .menu-toggle {
    color: #ffffff;
  }

  .about-page-intro,
  .about-approach-header,
  .about-origin__grid,
  .institute-introduction__grid,
  .governance-prose,
  .organization-intro__grid,
  .translational-office-intro,
  .governance-text-highlight,
  .contact-editorial,
  .papers-introduction__grid {
    grid-template-columns: 1fr;
    gap: var(--about-heading-gap);
  }

  .organization-diagram__divisions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--about-card-gap);
    padding-top: 0;
  }

  .translational-entities-grid {
    grid-template-columns: minmax(0, 420px);
    margin-top: 48px;
  }

  .organization-diagram__divisions::before,
  .organization-diagram__divisions .organization-card::before {
    display: none;
  }

  .governance-prose .section-title {
    margin-bottom: 0;
  }

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

  .about-page-intro__image,
  .about-origin__portrait,
  .institute-introduction__media,
  .about-media,
  .about-video,
  .about-location-media,
  .about-institutional-media {
    max-width: var(--about-media-max-width);
    margin-left: 0;
  }

  .about-copy > p,
  .hero__copy p {
    width: auto;
  }

}

@media (max-width: 1024px) {
  .collaborations-grid {
    gap: 18px 42px;
  }

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

  .research-base-gallery__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .research-base-gallery__featured,
  .research-base-gallery__thumbs,
  .research-base-gallery__caption {
    grid-column: 1;
  }

  .research-base-gallery__featured {
    grid-row: 1;
  }

  .research-base-gallery__thumbs {
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;
    height: auto;
  }

  .research-base-gallery__caption {
    grid-row: 3;
    margin-top: 6px;
  }

  .governance-page .governance-people-section .section-title,
  .governance-page .governance-people-section .governance-section-heading {
    text-align: center;
  }

  .governance-page .governance-people-section .governance-section-heading {
    margin-inline: auto;
  }

  .governance-page .governance-people-section .governance-section-heading > p:last-child {
    margin-inline: auto;
  }

  .governance-page .governance-people-section .governance-people-grid {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }
}

@media (min-width: 1024px) and (max-width: 1100px) {
  .trcs-mechanism,
  .trcs-mechanism--reverse {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .page-shell,
  .page-container,
  .home-page .home-content-shell {
    width: calc(100% - 40px);
    max-width: 100%;
  }

  .trcs-container,
  .trcs-mechanisms {
    width: calc(100% - 40px);
    max-width: 100%;
  }

  .trcs-publication-grid {
    grid-template-columns: 1fr;
  }

  .trcs-publication-card {
    padding: 28px 24px;
  }

  .trcs-page .about-page-hero.research-hero {
    background-position: center, center, 58% center;
  }

  .collaborations-page .about-page-hero.collaborations-hero {
    background:
      linear-gradient(90deg, rgba(11, 60, 109, 0.74) 0%, rgba(11, 60, 109, 0.56) 52%, rgba(11, 60, 109, 0.4) 100%),
      linear-gradient(rgba(11, 60, 109, 0.14), rgba(11, 60, 109, 0.14)),
      url("brand-assets/photos/translational-office-cell-culture-hero.png") center center / cover no-repeat;
  }

  .trcs-overview,
  .trcs-summary,
  .trcs-references,
  .trcs-explore {
    padding: 64px 0;
  }

  .translational-office-functions .section-title,
  .translational-section-heading .section-title {
    margin-bottom: 26px;
  }

  .translational-entities-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .translational-entity-card {
    min-height: 0;
    padding: 32px 28px;
  }

  .translational-entity-card__logo {
    min-height: 160px;
    margin-bottom: 24px;
  }

  .translational-entity-card h3 {
    font-size: clamp(22px, 6.4vw, 26px);
  }

  .trcs-overview__copy {
    width: 100%;
    max-width: 100%;
    padding-left: 22px;
  }

  .trcs-overview h2,
  .trcs-references h2,
  .trcs-explore h2 {
    font-size: 36px;
  }

  .trcs-mechanism,
  .trcs-mechanism--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 72px 0;
  }

  .trcs-mechanism--reverse .trcs-mechanism__copy {
    order: 1;
  }

  .trcs-mechanism--reverse .trcs-mechanism__figure {
    order: 2;
  }

  .trcs-mechanism h2 {
    font-size: 38px;
  }

  .trcs-overview p,
  .trcs-mechanism p,
  .trcs-key-idea {
    font-size: 16px;
  }

  .trcs-key-idea {
    padding: 22px 20px;
  }

  .trcs-summary h2 {
    font-size: 36px;
  }

  .trcs-summary__flow {
    grid-template-columns: 1fr;
  }

  .trcs-summary__flow div {
    min-height: 0;
  }

  .trcs-summary__flow div:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -19px;
    left: 24px;
    transform: rotate(90deg);
  }

  .trcs-summary__flow div:nth-child(3)::after {
    display: block;
  }

  .home-page {
    overflow-x: hidden;
  }

  .home-page img {
    max-width: 100%;
  }

  .about-page,
  .trcs-page {
    --about-heading-gap: 32px;
    --about-grid-gap: 32px;
    --about-card-gap: 24px;
    overflow-x: hidden;
  }

  .publications-page,
  .papers-page {
    overflow-x: hidden;
  }

  .about-page main > .about-content-section,
  .trcs-page main > .about-content-section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-page main > .contact-information-section {
    padding-bottom: 32px;
  }

  .contact-page main > .contact-connect-section {
    padding-top: 32px;
  }

  .about-page-hero,
  .publication-hero {
    height: 520px;
    min-height: 520px;
  }

  .about-page-hero__network,
  .publication-hero__network {
    top: 84px;
    right: clamp(-180px, -28vw, -96px);
    width: min(560px, 118vw);
    opacity: 0.06;
  }

  .about-page-hero__content,
  .publication-hero__inner {
    top: 130px;
    padding: 0;
  }

  .about-page-hero h1,
  .publication-hero__title {
    font-size: clamp(2.5rem, 6vw, 3rem);
  }

  .about-page-hero__description,
  .publication-hero__subtitle {
    margin-top: 24px;
    font-size: 15px;
    line-height: 1.7;
  }

  .publication-hero__breadcrumb {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .publication-hero__breadcrumb a,
  .publication-hero__breadcrumb span {
    overflow-wrap: anywhere;
  }

  .about-page-subnav__inner {
    width: calc(100% - 40px);
    max-width: 100%;
  }

  .about-page-subnav__toggle {
    display: flex;
    width: 100%;
    min-height: 64px;
    padding: 0 20px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-align: left;
    cursor: pointer;
  }

  .about-page-subnav__toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform 200ms ease;
  }

  .about-page-subnav__toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
  }

  .about-page-subnav__links {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    display: grid;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(18, 31, 24, 0.98);
    box-shadow: 0 -12px 26px rgba(18, 19, 20, 0.12);
  }

  .about-page-subnav__links[hidden] {
    display: none;
  }

  .about-page-subnav__links a {
    min-height: 54px;
    padding: 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-page-subnav__links a:hover,
  .about-page-subnav__links a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    transform: none;
  }

  .about-page-subnav__links a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }

  .about-page .about-page-hero,
  .trcs-page .about-page-hero,
  .publication-hero--with-subnav {
    display: flex;
    height: auto;
    min-height: 0;
    overflow-x: clip;
    overflow-y: visible;
    flex-direction: column;
  }

  .about-page .about-page-subnav,
  .trcs-page .about-page-subnav {
    position: relative;
    inset: auto;
    margin-top: 520px;
    background: linear-gradient(135deg, rgba(18, 31, 24, 0.98), rgba(36, 72, 53, 0.98));
  }

  .about-page .about-page-subnav__links,
  .trcs-page .about-page-subnav__links {
    position: static;
    display: grid;
    width: 100%;
    max-width: 100%;
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    border-bottom: 0;
    box-shadow: none;
    transition: max-height 260ms ease, opacity 220ms ease, visibility 260ms;
  }

  .about-page .about-page-subnav__links.is-open,
  .trcs-page .about-page-subnav__links.is-open {
    max-height: 220px;
    visibility: visible;
    opacity: 1;
  }

  .about-page .about-page-subnav__links a,
  .trcs-page .about-page-subnav__links a {
    min-width: 0;
    width: 100%;
  }

  .about-page-prose p {
    font-size: 17px;
  }

  .about-approach-decoration-wrapper {
    display: none;
  }

  .about-approach-grid,
  .work-grid,
  .explore-further-grid,
  .governance-people-grid,
  .governance-people-grid--leadership,
  .governance-people-grid--advisory {
    grid-template-columns: 1fr;
  }

  .research-base-gallery {
    margin-top: 42px;
  }

  .research-base-gallery h3 {
    font-size: 28px;
    text-align: left;
  }

  .research-base-gallery__layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .research-base-gallery__featured,
  .research-base-gallery__thumbs,
  .research-base-gallery__caption {
    grid-column: 1;
  }

  .research-base-gallery__featured {
    grid-row: 1;
  }

  .research-base-gallery__featured img {
    min-height: 0;
    height: 100%;
  }

  .research-base-gallery__thumbs {
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 10px;
    height: auto;
  }

  .research-base-gallery__thumb img {
    aspect-ratio: 4 / 3;
  }

  .research-base-gallery__caption {
    grid-row: 3;
    max-width: none;
    margin-top: 4px;
  }

  .research-base-gallery__caption p {
    font-size: 15px;
  }

  .governance-people-grid,
  .governance-people-grid--leadership,
  .governance-people-grid--advisory {
    width: min(100%, 300px);
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    justify-items: center;
  }

  .governance-person {
    margin-inline: auto;
  }

  .governance-person__portrait img {
    object-position: center;
  }

  .governance-person__content {
    text-align: center;
  }

  .governance-page .section-title,
  .organization-page .section-title,
  .contact-page .section-title,
  .papers-page .section-title {
    font-size: 48px;
    line-height: 1.08;
  }

  .contact-detail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-details {
    gap: 38px;
  }

  .contact-socials {
    gap: 22px 32px;
  }

  .publication-entry {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 44px 0 48px;
    min-width: 0;
  }

  .book-chapter-entry {
    grid-template-columns: 1fr;
    gap: 30px;
    min-width: 0;
  }

  .institute-publication-entry {
    grid-template-columns: 1fr;
    gap: 30px;
    min-width: 0;
  }

  .publication-entry__content {
    min-width: 0;
    max-width: 100%;
  }

  .book-cover,
  .book-cover-placeholder,
  .publication-cover,
  .publication-cover-placeholder {
    width: min(100%, 230px);
  }

  .publication-entry__theme {
    margin-top: 0;
  }

  .home-page .founder-section__grid,
  .home-page .trcs-section__grid {
    min-width: 0;
    max-width: 100%;
  }

  .home-page .founder-copy > p:not(.section-eyebrow):not(.founder-copy__role),
  .home-page .trcs-section__copy > p:not(.section-eyebrow) {
    width: auto;
    max-width: 100%;
  }

  .home-page .home-section-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(18, 19, 20, 0.08);
  }

  .home-page .home-section-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }

  .governance-person__content {
    padding: 25px 26px 28px;
  }

  .organization-card {
    min-height: 152px;
    padding: 32px 28px;
  }

  .organization-diagram {
    padding-left: 26px;
  }

  .organization-diagram::before {
    top: 70px;
    bottom: 70px;
    left: 6px;
    transform: none;
  }

  .organization-diagram__leadership,
  .organization-diagram__support,
  .organization-diagram__divisions {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    margin-top: 34px;
  }

  .organization-diagram__leadership {
    margin-top: 0;
  }

  .organization-diagram__support::before {
    display: none;
  }

  .organization-diagram__divisions {
    padding-top: 0;
  }

  .organization-card--leadership,
  .organization-card--support {
    min-height: 136px;
  }

  .organization-diagram__divisions .organization-card {
    height: auto;
    min-height: 132px;
  }

  .governance-audit {
    padding: 30px;
  }

  .about-origin__content {
    max-width: 100%;
  }

  .about-origin__portrait {
    max-width: 100%;
  }

  .scientific-journey__header {
    margin-bottom: 48px;
    text-align: left;
  }

  .scientific-journey__header .section-eyebrow {
    text-align: left;
  }

  .scientific-journey__subtitle {
    margin-right: 0;
    margin-left: 0;
    font-size: 18px;
  }

  .scientific-journey__viewport {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-right: 0;
    scroll-snap-type: x proximity;
  }

  .scientific-journey__timeline {
    grid-template-columns: repeat(3, 210px);
    min-width: max-content;
  }

  .scientific-journey__timeline::before {
    right: 105px;
    left: 105px;
  }

  .scientific-journey__milestone {
    padding: 0 16px;
  }

  .about-lightbox {
    width: calc(100vw - 40px);
    max-height: calc(100vh - 64px);
  }

  .back-to-top {
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
  }

  .academic-footer {
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .footer-core {
    align-items: center;
  }

  .footer-main {
    width: 100%;
    gap: 46px;
    justify-items: center;
  }

  .footer-brand {
    width: min(100%, 520px);
    margin-inline: auto;
    text-align: center;
  }

  .footer-brand__logo {
    margin-inline: auto;
  }

  .footer-brand__description {
    margin-right: auto;
    margin-left: auto;
  }

  .footer-access {
    width: min(100%, 520px);
    gap: 38px;
    margin-inline: auto;
    padding-top: 0;
  }

  .footer-action,
  .footer-structure {
    min-height: 0;
    align-items: center;
    padding-top: 0;
    text-align: center;
  }

  .footer-structure__list {
    align-items: center;
  }

  .footer-action h3,
  .footer-structure h3 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .footer-brand__pathway {
    margin-right: auto;
    margin-left: auto;
  }

  .connect-icons {
    justify-content: center;
  }

  .academic-footer__copyright {
    margin-top: 56px;
    margin-bottom: 0;
    text-align: center;
  }

  .collaborations-section {
    padding: 24px 0 28px;
  }

  .collaborations-section__header {
    margin: 0;
    text-align: left;
  }

  .collaborations-section h2 {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    line-height: 1.2;
  }

  .collaborations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 520px);
    margin-top: 18px;
    gap: 18px 28px;
    align-items: center;
    justify-items: start;
  }

  .logo-wall__item {
    min-height: 58px;
  }

  .updates-section {
    min-height: auto;
    padding: 68px 0 92px;
  }

  .updates-section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 38px;
  }

  .updates-section .section-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.1;
  }

  .events-section {
    padding: 20px 0 96px;
  }

  .events-section__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 38px;
  }

  .events-section .section-title {
    font-size: 52px;
    letter-spacing: normal;
    line-height: 1;
  }

  .events-section__header .text-link {
    white-space: nowrap;
  }

  .events-editorial {
    gap: 46px;
  }

  .featured-event__visual {
    min-height: clamp(280px, 76vw, 340px);
  }

  .featured-event__body {
    padding: 28px 26px 32px;
  }

  .featured-event h3 {
    font-size: 27px;
  }

  .upcoming-events__label {
    font-size: 23px;
  }

  .upcoming-event {
    padding: 26px 0 28px;
  }

  .upcoming-event h3 {
    font-size: 22px;
  }

  .updates-section__header .text-link {
    white-space: nowrap;
  }

  .news-editorial {
    gap: 34px;
  }

  .news-featured {
    grid-template-rows: auto auto;
  }

  .news-featured .news-visual {
    min-height: clamp(300px, 82vw, 360px);
  }

  .news-featured__body {
    padding: 28px 26px 32px;
  }

  .news-featured h3 {
    font-size: 27px;
  }

  .news-secondary-list {
    gap: 28px;
  }

  .news-secondary {
    grid-template-rows: auto auto;
  }

  .news-secondary .news-visual {
    min-height: clamp(240px, 68vw, 310px);
  }

  .news-secondary__body {
    padding: 24px 24px 28px;
  }

  .news-secondary h3 {
    font-size: 21px;
  }

  .updates-grid {
    gap: 34px;
  }

  .update-card {
    min-height: 650px;
  }

  .card-visual {
    height: clamp(300px, 82vw, 360px);
  }

  .update-card__body {
    min-height: 250px;
    padding: 30px 26px 34px;
  }

  .update-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .donate-page .donate-hero {
    display: block;
    height: 480px;
    min-height: 480px;
    overflow: hidden;
  }

  .donate-page .donate-hero .about-page-hero__content {
    top: 130px;
    padding: 0;
  }

  .donate-page .donate-hero h1 {
    font-size: clamp(2.5rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .donate-page .donate-hero .about-page-hero__description {
    max-width: 100%;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.6;
  }

  .donate-page .donate-hero .about-page-hero__network {
    opacity: 0.045;
  }

  .donate-page .section-title {
    font-size: clamp(2.625rem, 11vw, 3rem);
    letter-spacing: -0.01em;
    line-height: 1.1;
  }

  .donate-prose,
  .donate-contact__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .donate-page .donate-support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .site-header__inner,
  .mobile-nav {
    width: min(100% - 28px, 1120px);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand-lockup img {
    width: 172px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero__copy h1 {
    font-size: clamp(2.5rem, 9vw, 3rem);
  }

  .about-page-hero h1,
  .publication-hero__title {
    font-size: clamp(2.5rem, 9vw, 3rem);
  }

  .about-page-hero__breadcrumb,
  .publication-hero__breadcrumb {
    margin-bottom: 22px;
  }

  .governance-page .section-title,
  .organization-page .section-title,
  .contact-page .section-title,
  .papers-page .section-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .governance-people-grid,
  .governance-people-grid--leadership,
  .governance-people-grid--advisory {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .governance-person__content h3 {
    font-size: 27px;
  }

  .organization-card h3 {
    font-size: 29px;
  }

  .work-location,
  .explore-further-card {
    padding-right: 26px;
    padding-left: 26px;
  }

  .about-approach-card {
    padding-left: 44px;
  }

  .institutional-values {
    padding: 88px 0 82px;
  }

  .institutional-values h2 {
    font-size: 42px;
  }

  .institutional-values__intro {
    margin: 26px auto 64px;
  }

  .institutional-values__intro-primary {
    font-size: 17px;
  }

  .institutional-values__list {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .institutional-value span {
    font-size: 26px;
  }

  .trcs-section .section-title {
    font-size: 42px;
    white-space: normal;
  }

  .institutional-value p {
    max-width: 520px;
    font-size: 13px;
  }

  .about-copy h2 {
    font-size: 42px;
  }

  .founder-copy h2 {
    font-size: 42px;
  }

  .trcs-section {
    padding: 0 0 40px;
  }

  .footer-action h3,
  .footer-structure h3 {
    font-size: 26px;
  }

  .academic-footer__copyright {
    margin-top: 56px;
    margin-bottom: 0;
  }

  .papers-themes__inner {
    display: none;
  }

  .papers-themes-mobile {
    display: block;
  }

  .papers-themes-mobile__toggle {
    display: flex;
    width: 100%;
    min-height: 62px;
    padding: 0;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: space-between;
    color: var(--primary-green);
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-align: left;
    text-transform: uppercase;
    cursor: pointer;
  }

  .papers-themes-mobile__icon {
    display: grid;
    width: 20px;
    height: 16px;
    align-content: space-between;
  }

  .papers-themes-mobile__icon span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #c76d7e;
    transform-origin: center;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .papers-themes-mobile__toggle[aria-expanded="true"] .papers-themes-mobile__icon span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .papers-themes-mobile__toggle[aria-expanded="true"] .papers-themes-mobile__icon span:nth-child(2) {
    opacity: 0;
  }

  .papers-themes-mobile__toggle[aria-expanded="true"] .papers-themes-mobile__icon span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .papers-themes-mobile__menu {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: max-height 260ms ease, opacity 220ms ease, visibility 260ms;
  }

  .papers-themes-mobile__menu.is-open {
    max-height: 280px;
    visibility: visible;
    opacity: 1;
  }

  .papers-themes-mobile__menu a {
    display: block;
    padding: 17px 0;
    border-top: 1px solid rgba(79, 127, 95, 0.22);
    font-size: 11px;
    white-space: normal;
  }

  .papers-themes-mobile__menu a::after {
    display: none;
  }

  .papers-themes-mobile__menu a:hover,
  .papers-themes-mobile__menu a:focus-visible {
    transform: translateX(3px);
  }

  .publication-entry__content h3 {
    font-size: 24px;
  }

}

@media (min-width: 1024px) {
  .home-page .institutional-values {
    overflow: visible;
  }

  .home-page .institutional-values__deco-wrapper {
    z-index: 1;
    top: -16px;
    right: auto;
    left: clamp(-48px, -2.5vw, -16px);
    display: block;
    width: min(32vw, 460px);
    transform: none;
  }

  .home-page .institutional-values .page-shell {
    position: relative;
    z-index: 10;
  }

  .home-page .founder-section__grid,
  .home-page .trcs-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, min(48%, 610px));
    gap: 32px;
  }

  .home-page .founder-photo,
  .home-page .trcs-section__figure {
    width: min(100%, 610px);
    max-width: 610px;
  }

  .home-page .founder-photo {
    order: 0;
    margin-left: auto;
  }

  .home-page .trcs-section__figure {
    margin: 0 0 0 auto;
  }

  .home-page .founder-photo img,
  .home-page .trcs-section__figure img {
    display: block;
    max-width: 100%;
    transform-origin: center center;
  }

  .home-page .founder-photo img {
    transform: scale(1.02);
  }

  .home-page .trcs-section__figure img {
    transform: scale(1.03);
  }
}

@media (max-width: 900px) {
  .paper-detail-content {
    padding: 64px 0 78px;
  }

  .paper-detail-content__inner {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .paper-detail-primary {
    max-width: 100%;
  }

  .paper-detail-authors__names {
    font-size: clamp(1.9rem, 7vw, 2.65rem);
  }

  .paper-detail-abstract p {
    max-width: 100%;
    font-size: 17px;
    line-height: 1.82;
  }

  .paper-detail-metadata {
    padding-top: 0;
  }

  .paper-detail-metadata dl {
    gap: 24px;
  }

  .paper-detail-back {
    margin-top: 58px;
  }
}

@media (max-width: 640px) {
  .paper-detail-content {
    padding: 56px 0 70px;
  }

  .paper-detail-metadata dd {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-donate::before {
    display: none;
    transition: none;
  }

  .nav-donate:hover,
  .nav-donate:focus-visible {
    transform: none;
  }

  .scientific-journey__node,
  .scientific-journey__milestone h3 {
    transition: none;
  }

  .scientific-journey__milestone:hover .scientific-journey__node {
    transform: none;
  }

  .about-media__trigger img,
  .about-media__expand,
  .about-video__poster::after,
  .about-video__play,
  .research-base-gallery__featured img,
  .research-base-gallery__thumb,
  .research-base-gallery__thumb::after,
  .research-base-gallery__thumb img {
    transition: none;
  }

  .about-video__poster:hover .about-video__play,
  .about-video__poster:focus-visible .about-video__play {
    transform: translate(-50%, -50%);
  }

  .about-media__trigger:hover img,
  .about-media__trigger:focus-visible img {
    transform: none;
  }

  .about-media__trigger:hover .about-media__expand,
  .about-media__trigger:focus-visible .about-media__expand {
    transform: translateY(0);
  }

  .papers-themes a,
  .papers-themes-mobile__icon span,
  .papers-themes-mobile__menu,
  .about-page .about-page-subnav__links,
  .trcs-page .about-page-subnav__links,
  .text-link,
  .publication-abstract-trigger,
  .upcoming-event h3 a {
    transition: none;
  }

  .papers-themes a:hover,
  .papers-themes a:focus-visible,
  .text-link:hover,
  .text-link:focus-visible,
  .publication-abstract-trigger:hover,
  .publication-abstract-trigger:focus-visible,
  .upcoming-event h3 a:hover,
  .upcoming-event h3 a:focus-visible,
  .upcoming-event h3 a:active {
    transform: none;
  }

  .back-to-top {
    transition: none;
  }

  .explore-further-card,
  .explore-further-card p {
    transition: none;
  }

  .explore-further-card:hover,
  .explore-further-card:focus-visible,
  .explore-further-card:active,
  .explore-further-card:hover p,
  .explore-further-card:focus-visible p {
    transform: none;
  }

  .news-featured,
  .news-secondary {
    transition: none;
  }

  .organization-card {
    transition: none;
  }

  .institutional-values__bougainvillea {
    animation: none;
  }

  .organization-card:hover {
    transform: none;
  }

  .contact-link,
  .contact-social {
    transition: none;
  }

  .contact-link:hover,
  .contact-link:focus-visible,
  .contact-social:hover,
  .contact-social:focus-visible {
    transform: none;
  }

}

/* Hybrid typography system: serif display titles, sans-serif content */
body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
  font-weight: 400;
}

h1,
h2,
.hero h1,
.about-page-hero h1,
.publication-hero__title,
.section-title,
.page-title,
.paper-title,
.publication-detail-title {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h3,
h4,
h5,
h6,
.card-title,
.publication-entry__title,
.trcs-publication-card h3,
.news-featured h3,
.news-secondary h3,
.featured-event h3,
.upcoming-events__label,
.upcoming-event h3,
.footer-action h3,
.footer-structure h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.section-eyebrow,
.about-page-hero__breadcrumb,
.publication-hero__breadcrumb,
.publication-entry__type,
.publication-entry__metadata dt,
.paper-detail-metadata dt,
.news-category,
.news-featured time,
.news-secondary time,
.featured-event__date,
.upcoming-event__date,
.upcoming-event__location,
.footer-brand__pathway {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link,
.publication-abstract-trigger,
.footer-action a,
.footer-structure__list span,
.footer-structure__list a,
.upcoming-event h3 a {
  font-family: var(--font-sans);
}

.home-page .hero h1,
.home-page .hero h1 span {
  font-weight: 600;
}

.home-page .hero h1 {
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.home-page .institutional-values h2 {
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.home-page .institutional-value span {
  font-weight: 600;
}

.home-page .collaborations-section h2 {
  font-weight: 900;
  text-shadow: 0 0 0 currentColor;
}

.home-page .updates-section .news-featured h3,
.home-page .updates-section .news-secondary h3,
.home-page .updates-section .update-card h3,
.home-page .events-section .featured-event h3,
.home-page .events-section .upcoming-events__label,
.home-page .events-section .upcoming-event h3 {
  color: var(--color-text-strong);
}

@media (min-width: 641px) {
  .home-page .about-section .section-title,
  .home-page .founder-section .section-title,
  .home-page .trcs-section .section-title,
  .home-page .updates-section .section-title,
  .home-page .events-section .section-title {
    font-size: 52px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
}

@media (max-width: 640px) {
  .home-page .about-section .section-title,
  .home-page .founder-section .section-title,
  .home-page .trcs-section .section-title,
  .home-page .updates-section .section-title,
  .home-page .events-section .section-title {
    font-size: 42px;
    letter-spacing: -0.02em;
    line-height: 1.1;
  }
}

/* Research Focus page */
.research-focus-page main {
  background: var(--paper);
}

.research-focus-page .research-focus-intro {
  padding-top: 72px;
  padding-bottom: 72px;
}

.research-focus-intro__copy {
  max-width: 940px;
}

.research-focus-intro__copy p {
  font-size: 20px;
  line-height: 1.75;
}

.research-focus-section-heading {
  max-width: 900px;
  margin-bottom: 48px;
}

.research-focus-section-heading--with-copy {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 72px;
  align-items: end;
}

.research-focus-section-heading--with-copy > p {
  max-width: 680px;
  margin: 0;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.75;
}

.research-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 48px;
}

.research-focus-item {
  min-width: 0;
}

.research-focus-item__media {
  width: 100%;
  margin: 0;
}

.research-focus-item__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.research-focus-item h3 {
  margin: 28px 0 0;
  color: var(--color-text-strong);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.research-focus-item > p {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--body-text);
  font-size: 16px;
  line-height: 1.75;
}

.research-strategy-architecture {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.research-strategy-layer {
  min-width: 0;
  padding: 4px 40px 2px;
}

.research-strategy-layer:first-child {
  padding-left: 0;
}

.research-strategy-layer:last-child {
  padding-right: 0;
}

.research-strategy-layer + .research-strategy-layer {
  border-left: 1px solid rgba(79, 127, 95, 0.24);
}

.research-strategy-layer h3 {
  margin: 0;
  color: var(--primary-green);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.research-strategy-layer p {
  margin: 18px 0 0;
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.7;
}

.research-strategy-layer ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.55;
  list-style: none;
}

.research-strategy-layer li {
  position: relative;
  padding-left: 18px;
}

.research-strategy-layer li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--interaction-rose);
}

.research-future__inner {
  max-width: 920px;
}

.research-future__inner > p:last-child {
  max-width: 800px;
  margin: 30px 0 0;
  color: var(--body-text);
  font-size: 18px;
  line-height: 1.75;
}

/* Donate page */
.donate-prose,
.donate-contact__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: start;
}

.donate-prose__body,
.donate-contact__content {
  max-width: 720px;
}

.donate-prose__body p,
.donate-contact__content > p {
  margin: 0;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.8;
}

.donate-prose__body p + p,
.donate-contact__content > p + p {
  margin-top: 22px;
}

.donate-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.donate-support-item {
  min-height: 228px;
  padding: 38px 36px;
  border: 1px solid rgba(79, 127, 95, 0.2);
  border-top: 2px solid rgba(79, 127, 95, 0.55);
  border-radius: var(--ri-radius-card);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(18, 19, 20, 0.025);
}

.donate-support-item h3 {
  max-width: 460px;
  margin: 0;
  color: var(--primary-green);
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.donate-support-item p {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--body-text);
  font-size: 15px;
  line-height: 1.75;
}

.donate-contact__identity {
  display: grid;
  gap: 5px;
  margin: 36px 0 0;
  color: var(--body-text);
  font-style: normal;
  font-size: 16px;
  line-height: 1.55;
}

.donate-contact__identity strong {
  margin-bottom: 3px;
  color: var(--primary-green);
  font-size: 21px;
  font-weight: 600;
}

.donate-contact__email {
  margin-top: 30px;
}

.donate-contact__label {
  margin: 0 0 8px;
  color: var(--caption-text);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.donate-contact__email a {
  display: inline-block;
  color: var(--color-cta-text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(63, 111, 82, 0.4);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.donate-contact__email a:hover,
.donate-contact__email a:focus-visible {
  color: var(--primary-green);
  text-decoration-color: currentColor;
}

.donate-thank-you {
  margin-top: 60px;
  text-align: left;
}

.donate-page main > .donate-contact {
  padding-bottom: 96px;
}

.donate-thank-you__signature {
  margin: 0;
  color: var(--footer-background);
  font-family: Allura, "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(2.75rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.donate-thank-you__message {
  margin: 24px 0 0;
  color: var(--caption-text);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .research-focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 36px;
  }

  .research-strategy-layer {
    padding-inline: 30px;
  }

}

@media (max-width: 900px) {
  .research-focus-section-heading--with-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .research-strategy-architecture {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .research-strategy-layer,
  .research-strategy-layer:first-child,
  .research-strategy-layer:last-child {
    padding: 34px 0;
  }

  .research-strategy-layer:first-child {
    padding-top: 0;
  }

  .research-strategy-layer:last-child {
    padding-bottom: 0;
  }

  .research-strategy-layer + .research-strategy-layer {
    border-top: 1px solid rgba(79, 127, 95, 0.24);
    border-left: 0;
  }

  .donate-prose,
  .donate-contact__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 640px) {
  .research-focus-page .research-focus-intro {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .research-focus-intro__copy p {
    font-size: 17px;
  }

  .research-focus-section-heading {
    margin-bottom: 34px;
  }

  .research-focus-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .research-focus-item h3 {
    margin-top: 24px;
    font-size: 22px;
  }

  .research-future__inner > p:last-child {
    font-size: 17px;
  }

  .donate-prose__body p,
  .donate-contact__content > p {
    font-size: 16px;
  }

  .donate-support-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .donate-support-item {
    min-height: 0;
    padding: 30px 26px 32px;
  }

  .donate-support-item h3 {
    font-size: 22px;
  }

  .donate-contact__email a {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .donate-thank-you {
    margin-top: 60px;
  }

  .donate-page main > .donate-contact {
    padding-bottom: 88px;
  }

  .donate-thank-you__message {
    max-width: 280px;
    margin-right: 0;
    margin-left: 0;
  }

}
