:root {
  --primary-green: #6FA97A;
  --hover-green: #6fa97a;
  --brand-green: #6FA97A;
  --teal-accent: #7fcfc5;
  --light-sage: #d8e6c5;
  --warm-accent: #e8c46a;
  --magenta-accent: #c70f5b;
  --interaction-rose: #c76d7e;
  --interaction-rose-hover: #d27d8e;
  --text: #121314;
  --muted: rgba(18, 19, 20, 0.68);
  --paper: #faf9f4;
  --footer-paper: #eef4ec;
  --line: rgba(18, 19, 20, 0.12);
  --shadow-card: 0 14px 34px rgba(18, 19, 20, 0.08);
  --font-display: Georgia, "Times New Roman", serif;
  --font-sans: Arial, Helvetica, sans-serif;
  --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(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  overflow-x: clip;
}

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;
  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 {
  width: min(100% - 68px, 1160px);
  min-height: 82px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #050505;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

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

.desktop-nav__trigger {
  position: relative;
  padding: 7px 0;
  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(--primary-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(250, 249, 244, 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: "IBM Plex Sans", Inter, system-ui, Arial, Helvetica, sans-serif;
  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: rgba(111, 169, 122, 0.62);
  transform: translateX(4px);
}

.nav-donate {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 999px;
  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: rgba(18, 19, 20, 0.45);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.language-switcher--desktop {
  margin-left: -10px;
}

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

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

.language-switcher__current {
  color: rgba(18, 19, 20, 0.88) !important;
  font-weight: 600;
}

.language-switcher__current:hover,
.language-switcher__current:focus-visible {
  color: var(--hover-green) !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(250, 249, 244, 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: rgba(18, 19, 20, 0.72);
  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);
}

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

.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: 72px;
  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: rgba(18, 19, 20, 0.78);
  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;
}

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

.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: 650px;
  margin: 29px auto 76px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.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(111, 169, 122, 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(111, 169, 122, 0.46);
  border-right: 1px solid rgba(111, 169, 122, 0.46);
  transform: rotate(45deg);
}

.institutional-value::before {
  content: "0" counter(philosophy);
  display: block;
  margin-bottom: 27px;
  color: rgba(111, 169, 122, 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-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.16;
}

.institutional-value p {
  max-width: 240px;
  margin: 27px 0 0;
  color: #111;
  font-size: 13px;
  line-height: 1.75;
}

.institutional-values__bougainvillea {
  pointer-events: none;
  position: absolute;
  z-index: 0;
  top: -24px;
  right: -2.5%;
  display: block;
  width: min(38vw, 540px);
  height: auto;
  opacity: 0.18;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-green);
  font-size: 12px;
  font-weight: 800;
  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: #111;
  font-size: 16px;
  line-height: 1.9;
}

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

.text-link:hover,
.text-link:focus-visible {
  color: var(--hover-green);
  transform: translateX(2px);
}

.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-display);
  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: #111;
  font-size: 16px;
  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: #111;
  font-size: 16px;
  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: 72px 0 108px;
}

.collaborations-section__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.collaborations-section .section-title {
  font-size: 48px;
  letter-spacing: 0.04em;
  line-height: 1.08;
}

.collaborations-section__header p {
  margin: 24px auto 0;
  color: #111;
  font-size: 16px;
  line-height: 1.9;
}

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

.collaboration-card {
  display: grid;
  min-height: 292px;
  padding: 34px 32px 36px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(111, 169, 122, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: 0 8px 20px rgba(18, 19, 20, 0.025);
  text-align: center;
}

.collaboration-card__logo {
  display: grid;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 16 / 9;
  place-items: center;
  border: 1px solid rgba(18, 19, 20, 0.06);
  border-radius: 6px;
  background: #f6f4ef;
  color: rgba(18, 19, 20, 0.42);
}

.collaboration-card__logo--image {
  border: 0;
  background: transparent;
  color: inherit;
}

.collaboration-card__logo span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collaboration-card__logo img {
  display: block;
  width: 78%;
  height: 70%;
  object-fit: contain;
}

.collaboration-card h3 {
  max-width: 300px;
  margin: 28px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.22;
}

.collaboration-card h3 a {
  display: inline-block;
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    text-decoration-color 0.25s ease;
}

.collaboration-card h3 a:hover,
.collaboration-card h3 a:focus-visible,
.collaboration-card h3 a:active {
  color: var(--hover-green);
  text-decoration-color: rgba(111, 169, 122, 0.62);
  transform: translateX(4px);
}

.collaborations-section__footer {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.collaborations-section__footer .text-link {
  margin-top: 0;
}

.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, 1.7fr) minmax(320px, 1fr);
  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);
}

.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;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 800;
  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: #6fa97a;
}

.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-display);
  font-weight: 400;
}

.news-featured time,
.news-secondary time {
  display: block;
  margin-bottom: 14px;
  color: rgba(18, 19, 20, 0.5);
  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 rgba(18, 19, 20, 0.12);
  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: 800;
  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: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-visual--event strong {
  display: block;
  margin-top: 10px;
  font-family: Georgia, "Times New Roman", serif;
  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: rgba(18, 19, 20, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.update-card h3 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.36;
}

.update-card p {
  margin: 12px 0 0;
  color: #111;
  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, 1.35fr) minmax(340px, 1fr);
  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: rgba(18, 19, 20, 0.52);
  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-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}

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

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

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

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

.upcoming-event {
  padding: 30px 0 32px;
  border-bottom: 1px solid rgba(18, 19, 20, 0.12);
}

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

.upcoming-event h3 a {
  display: inline-block;
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    text-decoration-color 0.25s ease;
}

.upcoming-event h3 a:hover,
.upcoming-event h3 a:focus-visible,
.upcoming-event h3 a:active {
  color: var(--hover-green);
  text-decoration-color: rgba(111, 169, 122, 0.62);
  transform: translateX(4px);
}

.academic-footer {
  position: relative;
  overflow: hidden;
  min-height: 0;
  background:
    radial-gradient(circle at 50% 8%, rgba(250, 249, 244, 0.1), transparent 46%),
    linear-gradient(180deg, rgba(250, 249, 244, 0.12), rgba(106, 150, 126, 0.96) 38%),
    #6a967e;
  padding: 54px 0 26px;
}

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

.footer-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  min-width: 0;
  padding-top: 16px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 64px;
  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: 270px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

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

.footer-action h3 {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 24px;
}

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

.footer-action a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font-weight: 600;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

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

.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.94);
  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: #6a967e;
}

.academic-footer__copyright {
  position: relative;
  z-index: 2;
  margin-top: 0;
  margin-bottom: 12px;
  color: rgba(250, 249, 244, 0.68);
  font-size: 13px;
}

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

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

.copyright-row span,
.copyright-row a {
  margin-inline: 10px;
}

.copyright-row a {
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font-weight: 600;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.copyright-row a:hover,
.copyright-row a:focus-visible,
.copyright-row a:active {
  color: #ffffff;
  opacity: 1;
  transform: translateX(1px);
}

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

/* 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) {
  background: var(--paper);
}

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

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

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

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

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

.about-page .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;
}

.papers-page .about-page-hero,
.publications-page .about-page-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;
}

.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-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(82px, 9vw, 128px);
  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;
}

.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-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: #315e45;
}

.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: #111;
}

.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: 16px;
  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: rgba(18, 19, 20, 0.62);
  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: rgba(18, 19, 20, 0.38);
}

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

.about-media__credit {
  color: rgba(18, 19, 20, 0.72);
  white-space: nowrap;
}

.about-media__credit a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-color: rgba(111, 169, 122, 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-header p,
.work-closing {
  max-width: 590px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.about-approach-header p {
  margin: 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(111, 169, 122, 0.34);
  counter-increment: about-principle;
}

.about-approach-card::before {
  content: "0" counter(about-principle);
  position: absolute;
  top: 29px;
  left: 0;
  color: rgba(111, 169, 122, 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-display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.2;
}

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

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

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

.about-origin p:not(.section-eyebrow) {
  margin: 30px 0 0;
  font-size: 15px;
  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: 15px;
  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: #111;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.scientific-journey__viewport {
  overflow-x: auto;
  padding: 4px 2px 16px;
  scrollbar-color: rgba(111, 169, 122, 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(111, 169, 122, 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-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(111, 169, 122, 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-display);
  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(111, 169, 122, 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(111, 169, 122, 0.48);
  background: rgba(250, 249, 244, 0.62);
}

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

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

.work-closing {
  max-width: 760px;
  margin: 32px 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(111, 169, 122, 0.2);
  border-top: 2px solid rgba(111, 169, 122, 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(111, 169, 122, 0.52);
  border-top-color: rgba(111, 169, 122, 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-display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.16;
}

.explore-further-card p {
  margin: 42px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.explore-further-card p span {
  display: inline-block;
  margin-left: 5px;
  color: var(--primary-green);
  transition: transform 220ms ease;
}

.explore-further-card:hover p span,
.explore-further-card:focus-visible p span {
  transform: translateX(6px);
}

/* 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: #111;
  font-size: 16px;
  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(280px, 300px));
  max-width: calc(600px + var(--about-card-gap));
}

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

@media (min-width: 1025px) {
  .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(111, 169, 122, 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__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__content {
  padding: 28px 30px 32px;
}

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

.governance-person__content p {
  margin: 12px 0 0;
  color: #111;
  font-size: 14px;
  line-height: 1.7;
}

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

.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-display);
  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(111, 169, 122, 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 strong {
  color: var(--text);
  font-family: var(--font-display);
  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-diagram {
  position: relative;
  margin-top: 40px;
  padding-top: 8px;
}

.organization-diagram::before {
  position: absolute;
  z-index: 0;
  top: 116px;
  bottom: 166px;
  left: 50%;
  width: 1px;
  background: rgba(111, 169, 122, 0.42);
  content: "";
  transform: translateX(-50%);
}

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

.organization-diagram__support {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  gap: 32px;
  margin: 62px auto 0;
  justify-content: space-between;
}

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

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

.organization-diagram__divisions::before {
  position: absolute;
  top: 0;
  right: 9%;
  left: 9%;
  border-top: 1px solid rgba(111, 169, 122, 0.4);
  content: "";
}

.organization-diagram__divisions .organization-card::before {
  position: absolute;
  top: -39px;
  left: 50%;
  width: 1px;
  height: 39px;
  background: rgba(111, 169, 122, 0.4);
  content: "";
}

.organization-card {
  position: relative;
  display: flex;
  min-height: 190px;
  padding: 38px 36px;
  border: 1px solid rgba(111, 169, 122, 0.22);
  border-top: 2px solid rgba(111, 169, 122, 0.54);
  border-radius: var(--about-media-radius);
  background: rgba(216, 230, 197, 0.2);
  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(111, 169, 122, 0.48);
  border-top-color: rgba(111, 169, 122, 0.82);
  background: rgba(216, 230, 197, 0.3);
  box-shadow: 0 14px 30px rgba(18, 19, 20, 0.06);
  transform: translateY(-4px);
}

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

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

.organization-card--support {
  min-height: 132px;
  border-top-style: dashed;
  background: rgba(216, 230, 197, 0.12);
  align-items: center;
}

.organization-diagram__divisions .organization-card {
  height: 160px;
  min-height: 160px;
  padding: 28px 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.organization-diagram__divisions .organization-card h3 {
  font-size: 25px;
}

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

/* 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(111, 169, 122, 0.38);
}

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

.contact-detail__content {
  margin: 0;
  color: #111;
  font-family: var(--font-sans);
  font-size: 16px;
  font-style: normal;
  line-height: 1.9;
}

.contact-link {
  display: block;
  width: fit-content;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease,
    transform 180ms ease;
}

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

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--hover-green);
  text-decoration-color: rgba(111, 169, 122, 0.62);
  transform: translateX(4px);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(111, 169, 122, 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: #111;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.65;
}

.papers-themes {
  border-top: 1px solid rgba(111, 169, 122, 0.22);
  border-bottom: 1px solid rgba(111, 169, 122, 0.22);
  background: rgba(216, 230, 197, 0.12);
}

.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: #81b184;
  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-display);
  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: #111;
  font-size: 15px;
  line-height: 1.65;
}

.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)),
    #eee8e2;
  box-shadow: 0 14px 32px rgba(18, 19, 20, 0.07);
  color: rgba(18, 19, 20, 0.52);
  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-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-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;
}

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

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

.publication-entry__metadata dd {
  margin: 0;
  color: #111;
  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(--primary-green);
  font-family: var(--font-display);
  font-size: 17px;
  cursor: pointer;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

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

.publication-abstract-trigger--disabled,
.publication-abstract-trigger--disabled:hover,
.publication-abstract-trigger--disabled:focus-visible {
  color: rgba(18, 19, 20, 0.48);
  cursor: default;
  transform: none;
}

@media (max-width: 1100px) {
  .page-shell,
  .site-header__inner {
    width: min(100% - 40px, 1120px);
  }

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

  .desktop-nav {
    gap: 18px;
  }

  .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: 57px;
  }

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

@media (max-width: 900px) {
  .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 {
    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__bougainvillea {
    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-actions {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100%, 520px);
  }

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

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

  .about-page .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,
  .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;
  }

  .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) {
  .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 (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%;
  }

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

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

  .about-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 {
    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 {
    height: 520px;
    min-height: 520px;
  }

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

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

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

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

  .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 {
    display: flex;
    height: auto;
    min-height: 0;
    overflow-x: clip;
    overflow-y: visible;
    flex-direction: column;
  }

  .about-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 {
    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 {
    max-height: 220px;
    visibility: visible;
    opacity: 1;
  }

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

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

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

  .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: 160px;
    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: var(--about-card-gap);
    width: 100%;
    margin-top: var(--about-card-gap);
  }

  .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: 138px;
  }

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

  .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: 46px;
  }

  .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-actions {
    width: min(100%, 520px);
    gap: 38px;
    margin-inline: auto;
    padding-top: 0;
  }

  .footer-action {
    min-height: 0;
    align-items: center;
    text-align: center;
  }

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

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

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

  .collaborations-section {
    padding: 64px 0 78px;
  }

  .collaborations-section__header {
    margin-bottom: 38px;
    text-align: left;
  }

  .collaborations-section .section-title {
    font-size: 36px;
    letter-spacing: 0.02em;
    line-height: 1.08;
  }

  .collaborations-section__header p {
    margin-top: 20px;
    font-size: 15px;
  }

  .collaborations-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .collaboration-card {
    min-height: 252px;
    padding: 30px 26px 32px;
  }

  .collaboration-card h3 {
    font-size: 24px;
  }

  .collaborations-section__footer {
    justify-content: flex-start;
    margin-top: 34px;
  }

  .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: 400;
    letter-spacing: normal;
    line-height: 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: 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: 42px;
  }

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

  .about-page-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: 20px auto 58px;
    font-size: 18px;
  }

  .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 {
    font-size: 26px;
  }

  .academic-footer__copyright {
    margin-top: 0;
    margin-bottom: 14px;
  }

  .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(111, 169, 122, 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 (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 {
    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,
  .publication-abstract-trigger {
    transition: none;
  }

  .papers-themes a:hover,
  .papers-themes a:focus-visible,
  .publication-abstract-trigger:hover,
  .publication-abstract-trigger:focus-visible {
    transform: none;
  }

  .back-to-top {
    transition: none;
  }

  .upcoming-event h3 a {
    transition: none;
  }

  .upcoming-event h3 a:hover,
  .upcoming-event h3 a:focus-visible,
  .upcoming-event h3 a:active {
    transform: none;
  }

  .explore-further-card,
  .explore-further-card p span {
    transition: none;
  }

  .explore-further-card:hover,
  .explore-further-card:focus-visible,
  .explore-further-card:active,
  .explore-further-card:hover p span,
  .explore-further-card:focus-visible p span {
    transform: none;
  }

  .news-featured,
  .news-secondary {
    transition: none;
  }

  .organization-card {
    transition: 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;
  }

}
