@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #ffffff;
  --color-text: #0b0b0b;
  --color-muted: #727272;
  --color-line: rgba(11, 11, 11, 0.08);
  --color-orange: #ff4800;
  --color-blue: #00b6ff;
  --color-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  --mobile-header-bar-height: 50px;
  --shell: min(1306px, calc(100vw - 60px));
  --shell-wide: min(100vw - 8px, 1960px);
  --shell-narrow: min(998px, calc(100vw - 60px));
  --header-height: 67px;
  --body-offset: var(--header-height);
  --header-logo-width: clamp(240px, 20vw, 375px);
  --header-logo-height: calc(var(--header-logo-width) * 0.159418);
  --header-signet-offset-x: calc(var(--header-logo-width) * 0.051351);
  --header-signet-offset-y: calc(var(--header-logo-width) * 0.026442);
  --header-signet-width: calc(var(--header-logo-width) * 0.067446);
  --header-signet-height: calc(var(--header-logo-width) * 0.106917);
  --icon-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='none'%3E%3Cpath d='M1 6H13' stroke='black' stroke-width='1.8' stroke-linecap='square'/%3E%3Cpath d='M8 1L13 6L8 11' stroke='black' stroke-width='1.8' stroke-linecap='square' stroke-linejoin='miter'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  padding-top: var(--body-offset);
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Martian Mono", monospace;
  font-size: 15px;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
}

body.has-search-open {
  overflow: hidden;
}

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

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

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

.page-main :where(p, li, .lead) a[href]:not(.button)::after,
.site-footer a[href]:not(.site-footer__logo-link):not(.button)::after {
  content: "";
  display: inline-block;
  width: 0.96rem;
  height: 0.82rem;
  margin-left: 0.34em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--icon-arrow) center / contain no-repeat;
  mask: var(--icon-arrow) center / contain no-repeat;
  transform: translateX(0);
  transition: transform 180ms ease;
}

p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

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

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

.shell--footer {
  width: var(--shell);
}

.shell--header {
  width: var(--shell-wide);
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 180ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-1 * var(--header-height)));
}

.site-header__signet {
  position: fixed;
  top: calc((var(--header-height) - var(--header-logo-height)) / 2 + var(--header-signet-offset-y));
  left: calc((100vw - var(--shell-wide)) / 2 + 2px + var(--header-signet-offset-x));
  z-index: 39;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header__signet img {
  display: block;
  width: var(--header-signet-width);
  height: auto;
}

.site-header.is-hidden + .site-header__signet {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.25rem;
  min-height: var(--header-height);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
}

.site-header__brand img {
  width: var(--header-logo-width);
  max-width: none;
}

.site-header__mobile-brand {
  display: none;
  align-items: center;
  gap: 0;
}

.site-header__mobile-brand img {
  width: 1.15rem;
  height: auto;
}

.site-header__mobile-brand-text {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  color: var(--color-text);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  white-space: nowrap;
  opacity: 0;
  transition: max-width 180ms ease, opacity 180ms ease, margin-left 180ms ease;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.9rem;
  margin-right: 0.85rem;
}

.site-header__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-orange);
  cursor: pointer;
}

.site-header__search svg {
  width: 1.58rem;
  height: 1.58rem;
}

.site-header__search circle,
.site-header__search path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.site-header__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--color-blue);
  box-shadow: 0 10px 18px rgba(0, 182, 255, 0.22);
  color: var(--color-orange);
  cursor: pointer;
}

.site-header__toggle-lines {
  position: relative;
  display: inline-flex;
  width: 1.42rem;
  height: 0.94rem;
}

.site-header__toggle-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.2px;
  background: var(--color-orange);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.site-header__toggle-lines span:nth-child(1) {
  top: 0;
}

.site-header__toggle-lines span:nth-child(2) {
  top: calc(50% - 0.5px);
}

.site-header__toggle-lines span:nth-child(3) {
  top: calc(100% - 1px);
}

.site-header.is-open .site-header__toggle-lines span:nth-child(1) {
  top: calc(50% - 0.5px);
  transform: rotate(45deg);
}

.site-header.is-open .site-header__toggle-lines span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-lines span:nth-child(3) {
  top: calc(50% - 0.5px);
  transform: rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__icon {
  position: relative;
  width: 32px;
  height: 54px;
  flex-shrink: 0;
}

.brand__dot {
  position: absolute;
  left: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.brand__dot--top {
  top: 0;
  background: var(--color-orange);
}

.brand__dot--bottom {
  top: 22px;
  background: var(--color-blue);
}

.brand__overlap {
  position: absolute;
  top: 16px;
  left: 0;
  width: 32px;
  height: 12px;
  background: currentColor;
  border-radius: 999px;
}

.brand__wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  line-height: 1;
}

.brand__name {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand__suffix {
  color: #6c6c6c;
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1rem;
}

.site-nav--header {
  justify-self: end;
  margin-right: calc((var(--shell-wide) - var(--shell)) / 2);
}

.site-nav__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 0.38rem 0.78rem;
  color: #2e2e2e;
  font-size: 0.84rem;
  line-height: 1.1;
  transition: border-color 180ms ease;
}

.site-nav__item:not(.is-active):hover,
.site-nav__item:not(.is-active):focus-visible {
  border-color: #000;
}

.site-nav__item.is-active {
  color: var(--color-orange);
  border-color: var(--color-orange);
}

.search-overlay {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 38;
  overflow-y: auto;
  background: linear-gradient(135deg, #ff4800 0%, #ff5d19 46%, #ff4800 100%);
  color: #fff;
}

.search-overlay__inner {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 100%;
  padding: 2.2rem 0 3rem;
}

.search-overlay__close {
  position: fixed;
  top: calc(var(--header-height) + 1rem);
  right: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: auto;
  padding: 0.56rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
}

.search-overlay__form {
  display: grid;
  justify-items: center;
  gap: 2rem;
  width: min(100%, 920px);
}

.search-overlay__input {
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  font: inherit;
  font-size: clamp(1.74rem, 3.72vw, 2.73rem);
  line-height: 1.04;
  text-align: center;
  caret-color: rgba(255, 255, 255, 0.96);
  -webkit-appearance: none;
  appearance: none;
}

.search-overlay__input::placeholder {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1em;
}

.search-overlay__input:focus {
  outline: none;
}

.search-overlay__input::-webkit-search-cancel-button,
.search-overlay__input::-webkit-search-decoration,
.search-overlay__input::-webkit-search-results-button,
.search-overlay__input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.search-overlay__submit {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  padding: 0.56rem 1rem;
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.button--ghost {
  border-color: var(--color-blue);
  background: var(--color-blue);
  color: #fff;
}

.home-page {
  background: #fff;
}

.home-hero {
  padding: 4.4rem 0 6.08rem;
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(420px, 0.94fr);
  gap: 4.1rem;
  align-items: start;
}

.home-hero__copy {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 2.45rem;
  padding-top: 5.8rem;
}

.home-hero__logo {
  width: min(360px, 100%);
  margin: 0;
}

.home-hero__headline {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.7rem);
  line-height: 1.42;
}

.home-hero__headline-line {
  display: block;
  white-space: nowrap;
}

.home-hero__copy .button {
  margin-top: 0;
}

.home-hero__visual {
  display: grid;
  gap: 1rem;
  align-content: start;
  justify-items: start;
}

.home-hero__visual--landscape {
  width: 110%;
  margin-left: -10%;
}

.home-hero__media {
  display: inline-grid;
  gap: 1rem;
  width: auto;
  max-width: 100%;
}

.home-hero__image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - var(--header-height) - 3.5rem);
  height: auto;
  box-shadow: var(--color-shadow);
}

.home-hero__more {
  color: var(--color-orange);
  font-size: 0.84rem;
  line-height: 1.46;
  font-weight: 400;
}

.home-hero__credit {
  color: rgba(11, 11, 11, 0.6);
  font-size: 0.84rem;
  line-height: 1.46;
  font-weight: 400;
}

.home-hero__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.home-hero__info-details {
  display: block;
  width: 100%;
  margin: 0;
}

.home-hero__info-details summary {
  list-style: none;
  width: 100%;
}

.home-hero__info-details summary::-webkit-details-marker {
  display: none;
}

.home-hero__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.home-hero__toggle-label--open,
.home-hero__toggle-icon--open {
  display: none;
}

.home-hero__info-details[open] .home-hero__toggle-label--closed,
.home-hero__info-details[open] .home-hero__toggle-icon--closed {
  display: none;
}

.home-hero__info-details[open] .home-hero__toggle-label--open,
.home-hero__info-details[open] .home-hero__toggle-icon--open {
  display: inline;
}

.home-hero__info {
  width: 100%;
  margin-top: 1.15rem;
  padding: 1.2rem 0 0;
  background: #fff;
}

.home-hero__info p {
  width: 100%;
  max-width: none;
  color: #1f1f1f;
  font-size: 0.84rem;
  line-height: 1.46;
  font-weight: 400;
}

.home-about,
.home-news,
.home-gallery {
  padding: 7.57rem 0;
}

.section-title {
  margin-bottom: 4.5rem;
  text-align: center;
}

.section-title__headline {
  margin: 0;
  color: var(--color-orange);
  font-size: clamp(1.93rem, 3.3vw, 2.43rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.section-title__subtitle {
  max-width: 96ch;
  margin: 2.25rem auto 0;
  color: var(--color-text);
  font-size: 0.96rem;
  line-height: 1.46;
  font-weight: 400;
}

.projects-news-page .page-hero {
  padding: 5.8rem 0 0;
}

.projects-news-page__heading {
  text-align: center;
}

.projects-news-page__filters {
  display: grid;
  justify-items: start;
  margin-top: 5.8rem;
  margin-bottom: 4.15rem;
}

.filter-list--archive {
  justify-content: flex-start;
  gap: 0.9rem 1.45rem;
}

.projects-news-page__archive {
  padding: 0 0 6.4rem;
}

.news-grid--archive {
  gap: 2.4rem 2.16rem;
  align-items: start;
}

.pagination--archive {
  justify-content: center;
  margin-top: 3.2rem;
  gap: 0.7rem;
}

.projects-news-page__empty {
  margin: 0;
  text-align: center;
}

.home-about__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  justify-items: center;
  align-items: start;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.home-about .section-title__subtitle {
  max-width: 78ch;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.home-about__text p {
  max-width: 78ch;
  color: #1f1f1f;
  text-align: center;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.16rem;
  align-items: start;
}

.news-card {
  background: #fff;
  box-shadow: var(--color-shadow);
}

.news-card__link {
  display: grid;
  align-content: start;
}

.news-card__media {
  background: #efefef;
}

.news-card__media img {
  width: 100%;
  height: auto;
}

.news-card__body {
  display: grid;
  gap: 0.82rem;
  padding: 1.1rem 1.1rem 1.2rem;
  align-content: start;
}

.news-card__body--textonly {
  align-content: start;
}

.news-card__date {
  color: var(--color-text);
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.34;
}

.news-card__eyebrow {
  color: var(--color-orange);
  font-size: 1.06rem;
  line-height: 1.34;
  font-weight: 400;
}

.news-card h3 {
  margin: 0;
  color: var(--color-text);
  font-size: 1.06rem;
  line-height: 1.46;
  font-weight: 400;
}

.news-card__excerpt {
  color: #232323;
  font-size: 1.02rem;
  line-height: 1.5;
}

.news-card__actions {
  display: grid;
  gap: 1.28rem;
  margin-top: 0.55rem;
}

.news-card__button,
.news-card__badge,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.46rem 0.82rem;
  font-size: 0.86rem;
  line-height: 1.1;
}

.news-card__button {
  gap: 0.72rem;
  text-transform: uppercase;
}

.news-card__button {
  background: var(--color-blue);
  color: #fff;
}

.news-card__badge {
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
}

.home-news__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1fr);
  gap: 2rem;
  align-items: stretch;
  padding: 0;
  background: #fff;
  box-shadow: var(--color-shadow);
}

.gallery-feature--reverse {
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.98fr);
  gap: 0;
}

.gallery-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  height: 100%;
  padding: 2rem 2.2rem 2.2rem;
}

.gallery-feature__eyebrow {
  color: var(--color-orange);
  font-size: clamp(1.3rem, 1.85vw, 1.82rem);
  line-height: 1.42;
  font-weight: 400;
}

.gallery-feature__subtitle {
  color: var(--color-text);
  font-size: clamp(1.3rem, 1.85vw, 1.82rem);
  line-height: 1.42;
  font-weight: 400;
}

.gallery-feature__dates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.38rem;
}

.gallery-feature__date-card {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  gap: 0.7rem;
  min-width: 7.1rem;
  min-height: 7.2rem;
  padding: 0.7rem 0.72rem;
  background: #fff;
  box-shadow: var(--color-shadow);
}

.gallery-feature__date-month,
.gallery-feature__date-year {
  color: var(--color-orange);
  font-size: 0.84rem;
  line-height: 1.02;
}

.gallery-feature__date-day {
  color: var(--color-orange);
  font-size: clamp(2.4rem, 3.25vw, 3.12rem);
  line-height: 0.9;
  font-weight: 400;
}

.gallery-feature__date-separator {
  color: var(--color-orange);
  display: inline-block;
  width: 1.06rem;
  height: 0.9rem;
  flex-shrink: 0;
  font-size: 0;
  line-height: 1;
  background-color: currentColor;
  -webkit-mask: var(--icon-arrow) center / contain no-repeat;
  mask: var(--icon-arrow) center / contain no-repeat;
  transform: translateY(-0.02rem);
}

.gallery-feature__button {
  margin-top: 0.35rem;
}

.gallery-feature__credit {
  color: rgba(11, 11, 11, 0.6);
  font-size: 0.84rem;
  line-height: 1.46;
  font-weight: 400;
  margin-top: auto;
}

.gallery-feature__media {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.gallery-feature__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  box-shadow: none;
}

.gallery-feature--reverse .gallery-feature__copy {
  order: 2;
  padding-left: 2.2rem;
}

.gallery-feature--reverse .gallery-feature__media {
  order: 1;
  justify-content: flex-end;
}

.page-main h2 {
  margin: 0 0 1rem;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 500;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-hero {
  padding: 2.4rem 0 1.5rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
  font-weight: 500;
}

.page-hero__kicker {
  margin: 0 0 0.95rem;
  color: var(--color-orange);
  font-size: clamp(1.93rem, 3.3vw, 2.43rem);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 400;
}

.about-page .page-hero {
  padding: 5.8rem 0 4.3rem;
}

.about-page .page-hero .narrow {
  text-align: center;
}

.projects-news-page .page-hero .narrow {
  text-align: center;
}

.about-page .page-hero__kicker {
  margin-bottom: 1.28rem;
}

.about-page .page-hero h1 {
  font-size: clamp(1.93rem, 3.3vw, 2.43rem);
  line-height: 1.38;
  font-weight: 400;
}

.projects-news-page .page-hero__kicker {
  margin-bottom: 1.28rem;
  text-align: center;
}

.projects-news-page .page-hero .narrow {
  text-align: center;
}

.projects-news-page .page-hero h1 {
  font-size: clamp(1.93rem, 3.3vw, 2.43rem);
  line-height: 1.38;
  font-weight: 400;
  text-align: center;
}

.about-page__intro-media {
  padding: 0 0 3rem;
}

.about-page__content {
  padding: 0 0 5.15rem;
}

.funding-page__intro-media {
  padding-bottom: 5.15rem;
}

.funding-page__content {
  padding-bottom: 2.58rem;
}

.gallery-page__content {
  padding-bottom: 5.15rem;
}

.gallery-page__feature-wrap {
  padding: 0 0 3rem;
}

.gallery-page__features {
  display: grid;
  gap: 2.4rem;
}

.gallery-page__footer {
  padding: 3rem 0 5.15rem;
}

.gallery-page__footer-inner {
  display: flex;
  justify-content: center;
}

.funding-form-section {
  padding: 0 0 5.15rem;
}

.funding-page__bottom-content {
  padding-top: 0;
}

.funding-form-disclosure {
  display: grid;
  width: 65%;
  max-width: 100%;
  margin-inline: auto;
  justify-items: start;
}

.funding-form-disclosure > summary {
  list-style: none;
}

.funding-form-disclosure > summary::-webkit-details-marker {
  display: none;
}

.funding-form__toggle {
  cursor: pointer;
}

.funding-form-disclosure[open] .funding-form {
  margin-top: 2.1rem;
}

.funding-form {
  display: grid;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  gap: 1.7rem;
}

.funding-form__headline {
  margin: 0;
  color: var(--color-orange);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.funding-form__intro > * + * {
  margin-top: 0.9rem;
}

.funding-form__fields {
  display: grid;
  gap: 1.45rem;
}

.funding-form__field,
.funding-form__field--options {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.funding-form__field label,
.funding-form__field--options legend,
.funding-form__check {
  font-size: 0.92rem;
  line-height: 1.4;
}

.funding-form__field input {
  width: 100%;
  min-height: 2rem;
  padding: 0.3rem 0.45rem;
  border: 1px solid #000;
  background: #fff;
  font: inherit;
  font-size: 0.92rem;
  line-height: 1.25;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.funding-form__field input:focus {
  outline: 0;
  border-color: #000;
  box-shadow: none;
}

.funding-form__choice,
.funding-form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.48rem;
}

.funding-form__choice input,
.funding-form__check input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  min-width: 1rem;
  max-width: 1rem;
  min-height: 1rem;
  max-height: 1rem;
  margin-top: 0.14rem;
}

.funding-form__choice input[type="checkbox"],
.funding-form__check input[type="checkbox"] {
  border: 1px solid #000;
  border-radius: 2px;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
}

.funding-form__choice input[type="checkbox"]::after,
.funding-form__check input[type="checkbox"]::after {
  content: "";
  width: 0.28rem;
  height: 0.56rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 120ms ease;
}

.funding-form__choice input[type="checkbox"]:checked,
.funding-form__check input[type="checkbox"]:checked {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.funding-form__choice input[type="checkbox"]:checked::after,
.funding-form__check input[type="checkbox"]:checked::after {
  transform: rotate(45deg) scale(1);
}

.funding-form__field--custom-amount {
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.funding-form__field--custom-amount input {
  width: 100%;
}

.funding-form__checks {
  display: grid;
  gap: 1rem;
  padding-top: 0.7rem;
}

.funding-form__check p {
  margin: 0;
}

.funding-form__check-text > * + * {
  margin-top: 0.35rem;
}

.funding-form__field--options legend {
  margin-bottom: 0.15rem;
  padding: 0;
  font-weight: 400;
}

.funding-form__choice span,
.funding-form__check-text {
  font-size: 0.92rem;
  line-height: 1.4;
}

.funding-form__submit {
  width: 100%;
  justify-content: center;
  min-height: 2.15rem;
  margin-top: 0.4rem;
  padding: 0.56rem 1rem;
  font-size: 0.82rem;
  line-height: 1.1;
  text-transform: none;
  letter-spacing: 0;
}

.about-page__blocks {
  display: grid;
  gap: 2.85rem;
}

.about-text-block {
  width: 65%;
  max-width: 100%;
  justify-self: center;
  text-align: left;
}

.about-page__blocks > * {
  margin: 0;
}

.about-page__blocks > p,
.about-page__blocks .text,
.about-page__blocks .text p,
.about-video__caption,
.about-video__link {
  font-size: 1.02rem;
  line-height: 1.82;
}

.about-page__blocks h2,
.about-page__blocks h3,
.about-page__blocks h4,
.about-page__blocks h5,
.about-page__blocks h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.about-page__blocks h2 {
  font-size: clamp(1.1rem, 1.68vw, 1.52rem);
}

.about-page__blocks h3 {
  font-size: clamp(0.94rem, 1.44vw, 1.24rem);
}

.about-page__blocks h4,
.about-page__blocks h5,
.about-page__blocks h6 {
  font-size: clamp(0.8rem, 1.16vw, 0.96rem);
}

.about-page__blocks blockquote {
  margin: 0;
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-left: 2px solid var(--color-orange);
}

.about-page__blocks blockquote p {
  font-size: clamp(1.24rem, 2vw, 1.58rem);
  line-height: 1.46;
}

.about-page__blocks blockquote footer {
  margin-top: 0.95rem;
  color: var(--color-orange);
  font-size: 0.84rem;
  line-height: 1.46;
}

.about-media {
  display: grid;
  gap: 0.95rem;
}

.about-block--image,
.about-block--gallery {
  display: grid;
  gap: 0.95rem;
  width: 100%;
  justify-self: center;
}

.about-media > img,
.about-gallery__item img {
  margin-inline: auto;
}

.about-block--image .about-media > img {
  width: auto;
  max-width: 100%;
  max-height: calc(100dvh - 2rem);
  height: auto;
  object-fit: contain;
}

.about-block--image > img {
  width: auto;
  max-width: 100%;
  max-height: 100dvh;
  object-fit: contain;
}

.about-media__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-media__caption,
.about-media__credit {
  color: rgba(11, 11, 11, 0.6);
  font-size: 0.84rem;
  line-height: 1.46;
}

.about-media__credit {
  text-align: right;
}

.about-page__intro-media .about-media__meta {
  justify-content: center;
  text-align: center;
}

.about-page__intro-media .about-media__credit {
  text-align: center;
}

.about-media__meta--left {
  justify-content: flex-start;
  text-align: left;
}

.about-media__meta--center {
  justify-content: center;
  text-align: center;
}

.about-media__meta--right {
  justify-content: flex-end;
  text-align: right;
}

.about-gallery {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 1.2rem;
}

.about-gallery--align-start {
  align-items: flex-start;
}

.about-gallery--align-center {
  align-items: center;
}

.about-gallery--align-end {
  align-items: flex-end;
}

.about-gallery--cols-2 {
  justify-content: space-between;
}

.about-gallery--cols-4 {
  justify-content: space-between;
}

.about-gallery__item {
  flex: 1 1 0;
  margin: 0;
  min-width: 0;
}

.about-gallery__meta {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.95rem;
}

.about-gallery__meta .about-media__credit {
  text-align: left;
}

.about-gallery--cols-2 .about-gallery__item {
  flex: 0 0 calc((100% - 1.2rem) / 2);
}

.about-gallery--cols-4 .about-gallery__item {
  flex: 0 0 calc((100% - (1.2rem * 3)) / 4);
}

.about-gallery__item img {
  width: 100%;
}

.about-video__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.about-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-video__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.about-video__caption {
  color: rgba(11, 11, 11, 0.6);
  margin-top: 0.95rem;
}

.about-video__link {
  margin-top: 0.8rem;
}

.about-media__caption p,
.about-media__credit p,
.about-video__caption p {
  margin: 0;
}

.page-main strong,
.page-main b {
  color: var(--color-orange);
  font-weight: 700;
}

@media (max-width: 640px) {
  .about-text-block,
  .funding-form-disclosure {
    width: 100%;
  }
}

.page-main .lead {
  max-width: 48rem;
  margin-top: 1rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 2rem;
  padding: 2.5rem 0;
}

.rich-text > * + *,
.lead > * + * {
  margin-top: 1rem;
}

.rich-text ul,
.rich-text ol {
  padding-left: 1.2rem;
}

.info-card,
.feature-panel {
  padding: 1.3rem;
  border: 1px solid var(--color-line);
}

.news-feed {
  display: grid;
}

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

.news-item:last-child {
  border-bottom: 1px solid var(--color-line);
}

.news-item__link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 2rem;
  padding: 1.3rem 0;
}

.news-item__date,
.news-item__type {
  color: var(--color-muted);
  font-size: 0.84rem;
}

.news-item h3 {
  margin: 0;
  color: var(--color-orange);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 500;
}

.news-item__excerpt {
  margin-top: 0.65rem;
}

.news-item__aside {
  display: grid;
  align-content: space-between;
  justify-items: start;
}

.news-item__more {
  color: var(--color-orange);
  text-transform: uppercase;
}

.button span[aria-hidden="true"],
.news-card__button span[aria-hidden="true"],
.news-item__more span[aria-hidden="true"] {
  display: inline-block;
  width: 0.62rem;
  height: 0.53rem;
  flex-shrink: 0;
  font-size: 0;
  line-height: 1;
  background-color: currentColor;
  -webkit-mask: var(--icon-arrow) center / contain no-repeat;
  mask: var(--icon-arrow) center / contain no-repeat;
}

.tag-list,
.filter-list,
.footer-links,
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
}

.tag-list {
  margin-top: 0.8rem;
}

.tag-list li,
.filter-list a,
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.72rem;
  font-size: 0.8rem;
}

.filter-list a {
  padding: 0.38rem 0.62rem;
  border: 1px solid transparent;
  font-size: 0.84rem;
  line-height: 1.1;
}

.pagination a {
  min-width: 2.24rem;
  min-height: 2.24rem;
  padding: 0.22rem 0.58rem;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-size: 0.9rem;
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.pagination a:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
  background: #fff;
}

.pagination a.is-active {
  background: #111;
  border-color: #111;
  color: #fff;
}

.filter-list--archive a.is-active {
  background: transparent;
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.search-page__content {
  padding: 0 0 5rem;
}

.search-page__hero {
  display: grid;
  justify-items: center;
  gap: 1.1rem;
  padding: 5.8rem 0 4.8rem;
  text-align: center;
}

.search-page__summary,
.search-page__empty {
  margin: 0;
}

.search-page__summary {
  color: var(--color-orange);
  font-size: clamp(1.93rem, 3.3vw, 2.43rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.search-page__term {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.93rem, 3.3vw, 2.43rem);
  line-height: 1;
  font-weight: 400;
}

.search-page__empty {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.search-results {
  display: grid;
  gap: 0;
}

.search-result {
  border-bottom: 1px solid rgba(11, 11, 11, 0.32);
}

.search-result__link {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.6rem;
  align-items: end;
  padding: 2rem 0 2.15rem;
}

.search-result__copy {
  display: grid;
  gap: 0.5rem;
}

.search-result__eyebrow {
  margin: 0;
  color: var(--color-orange);
  font-size: 1.05rem;
  line-height: 1.16;
}

.search-result h2 {
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.7rem);
  line-height: 1.42;
  font-weight: 400;
}

.search-result__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  color: #fff;
  font-size: 0;
  line-height: 1;
}

.search-result__arrow::before {
  content: "";
  display: inline-block;
  width: 0.78rem;
  height: 0.66rem;
  background-color: currentColor;
  -webkit-mask: var(--icon-arrow) center / contain no-repeat;
  mask: var(--icon-arrow) center / contain no-repeat;
}

.article-page__hero .narrow {
  text-align: center;
}

.article-page .article-page__hero h1 {
  line-height: 1.38;
}

.article-page__meta-wrap {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
}

.article-page__date {
  margin: 0;
  color: var(--color-text);
  font-size: 0.88rem;
  line-height: 1.46;
}

.article-page__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.article-page__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.62rem;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  font-size: 0.8rem;
  line-height: 1.1;
}

.article-page__intro-media {
  padding-bottom: 3rem;
}

.article-page__content {
  padding-bottom: 5.15rem;
}

.article-page__cta {
  margin-top: 1.5rem;
}

.article-page__recommendations {
  padding: 4.8rem 0 6.2rem;
}

.article-page__recommendations-title {
  margin-bottom: 4rem;
}

.news-grid--recommendations {
  align-items: start;
}

.site-footer {
  padding: 2.6rem 0 3.5rem;
  background: #000;
  color: #fff;
}

.site-footer__brand {
  margin-bottom: 3rem;
  padding-top: 0.15rem;
}

.site-footer__logo-link {
  display: inline-block;
}

.site-footer__logo {
  width: min(24rem, 100%);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(15rem, 0.9fr);
  gap: clamp(2.6rem, 4vw, 5.2rem);
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 1.7rem;
  font-size: clamp(1.18rem, 1.7vw, 1.7rem);
  line-height: 1.36;
  font-weight: 400;
}

.footer-block + .footer-block {
  margin-top: 2.1rem;
}

.site-footer h3 {
  margin: 0 0 0.72rem;
  color: #fff;
  font-size: 0.84rem;
  line-height: 1.46;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.site-footer p,
.site-footer a {
  font-size: clamp(1.18rem, 1.7vw, 1.7rem);
  line-height: 1.38;
  color: #fff;
}

.site-footer__column--links {
  padding-top: 0.15rem;
}

.site-footer a[href]:not(.site-footer__logo-link):not(.button) {
  transition: color 180ms ease;
}

.site-footer a[href]:not(.site-footer__logo-link):not(.button):hover {
  color: var(--color-orange);
}

.site-footer a[href]:not(.site-footer__logo-link):not(.button):hover::after {
  transform: translateX(0.18rem);
}

.footer-link--accent {
  color: var(--color-orange) !important;
}

@media (max-width: 1100px) {
  :root {
    --header-logo-width: min(360px, 100%);
    --body-offset: var(--mobile-header-bar-height);
  }

  .page-hero {
    padding: 1.9rem 0 1.35rem;
  }

  .about-page .page-hero,
  .projects-news-page .page-hero {
    padding: 4.35rem 0 3.15rem;
  }

  .search-page__hero {
    padding: 4.35rem 0 3.2rem;
  }

  .page-hero__kicker {
    margin-bottom: 1.02rem;
    font-size: clamp(1.58rem, 2.85vw, 1.9rem);
  }

  .page-hero h1,
  .about-page .page-hero h1,
  .projects-news-page .page-hero h1 {
    font-size: clamp(1.58rem, 2.85vw, 1.9rem);
    line-height: 1.34;
  }

  .article-page .article-page__hero h1 {
    line-height: 1.34;
  }

  .shell,
  .shell--header,
  .shell--footer,
  .narrow {
    width: min(100vw - 38px, 100%);
  }

  .site-header__inner,
  .home-hero__grid,
  .gallery-feature,
  .site-footer__grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    grid-template-columns: auto auto;
    min-height: var(--mobile-header-bar-height);
    gap: 0.95rem 1rem;
    padding: 0.55rem 0;
  }

  .site-header.is-open {
    transform: translateY(0);
  }

  .site-header {
    border-bottom: 0;
    box-shadow: 0 8px 18px rgba(14, 14, 14, 0.08);
  }

  .site-header::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 12px;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 8px 18px rgba(14, 14, 14, 0.08);
    transition: opacity 180ms ease;
  }

  .site-header.is-open::after {
    opacity: 1;
  }

  .site-header.is-open {
    border-bottom-color: transparent;
  }

  .site-header__brand {
    display: none;
  }

  .site-header__mobile-brand {
    display: inline-flex;
    justify-self: start;
  }

  .site-header__mobile-brand-text {
    display: none;
  }

  .site-header__toggle {
    display: inline-flex;
    justify-self: end;
    width: 2.06rem;
    height: 2.06rem;
  }

  .site-header__actions {
    gap: 0.7rem;
    margin-right: 0;
  }

  .site-header__search {
    width: 1.8rem;
    height: 1.8rem;
  }

  .site-header__search svg {
    width: 1.38rem;
    height: 1.38rem;
  }

  .site-header__signet {
    display: none;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .site-nav--header {
    position: fixed;
    top: var(--mobile-header-bar-height);
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: start;
    gap: 1.72rem;
    width: 100%;
    height: calc(100dvh - var(--mobile-header-bar-height));
    margin-right: 0;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    padding: 2.16rem 19px 1rem;
    background: rgba(255, 255, 255, 0.985);
    border-top: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .search-overlay {
    inset: var(--mobile-header-bar-height) 0 0;
  }

  .search-overlay__inner {
    padding: 1.6rem 0 2rem;
  }

  .search-overlay__close {
    top: calc(var(--mobile-header-bar-height) + 0.75rem);
    right: 19px;
    padding: 0.56rem 1rem;
    font-size: 0.8rem;
  }

  .search-overlay__form {
    width: min(100%, calc(100vw - 38px));
    gap: 1.5rem;
  }

  .search-overlay__input {
    font-size: clamp(1.74rem, 7vw, 2.18rem);
    text-align: center;
  }

  .site-header.is-open .site-nav--header {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__item {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    width: fit-content;
    padding: 0;
    border: 0;
    color: var(--color-text);
    font-size: clamp(1.85rem, 3.92vw, 2.49rem);
    line-height: 1.03;
  }

  .site-nav__item::before {
    content: "";
    position: static;
    display: inline-block;
    width: 0.96rem;
    height: 0.82rem;
    flex-shrink: 0;
    color: currentColor;
    background-color: currentColor;
    -webkit-mask: var(--icon-arrow) center / contain no-repeat;
    mask: var(--icon-arrow) center / contain no-repeat;
    transform: none;
  }

  .site-nav__item.is-active {
    border: 0;
    color: var(--color-orange);
  }

  .site-nav__item:not(.is-active):hover,
  .site-nav__item:not(.is-active):focus-visible {
    border-color: transparent;
  }

  .home-hero__copy {
    justify-items: center;
    text-align: center;
    gap: 4.4rem;
    padding-top: 0.6rem;
  }

  .home-hero__logo {
    margin-inline: auto;
  }

  .home-hero__headline {
    text-align: center;
  }

  .home-hero__copy .button {
    justify-self: center;
  }

  .home-hero__visual {
    justify-items: center;
  }

  .home-hero__visual--landscape {
    width: 100%;
    margin-left: 0;
  }

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

  .home-about__box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-logo-width: min(290px, 100%);
    --mobile-header-bar-height: 45px;
    --body-offset: var(--mobile-header-bar-height);
  }

  .page-hero {
    padding: 1.55rem 0 1.15rem;
  }

  .about-page .page-hero,
  .projects-news-page .page-hero {
    padding: 3.35rem 0 2.5rem;
  }

  .page-hero__kicker {
    margin-bottom: 0.86rem;
    font-size: clamp(1.34rem, 6.2vw, 1.62rem);
  }

  .page-hero h1,
  .about-page .page-hero h1,
  .projects-news-page .page-hero h1 {
    font-size: clamp(1.34rem, 6.2vw, 1.62rem);
    line-height: 1.3;
  }

  .article-page .article-page__hero h1 {
    line-height: 1.3;
  }

  body {
    font-size: 14px;
  }

  .home-hero__copy {
    gap: 4rem;
  }

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

  .home-hero__visual--landscape {
    width: 100%;
    margin-left: 0;
  }

  .projects-news-page__filters {
    margin-top: 2.5rem;
  }

  .site-nav__item {
    padding-left: 0;
    font-size: 1.43rem;
    line-height: 1.03;
  }

  .site-nav--header {
    gap: 1.72rem;
    padding-inline: 19px;
  }

  .home-hero__logo {
    width: min(360px, 100%);
  }

  .section-title__headline {
    font-size: clamp(2.13rem, 9.8vw, 2.53rem);
  }

  .section-title__subtitle {
    font-size: 1rem;
  }

  .search-page__form,
  .news-item__link,
  .search-result__link {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .search-page__hero {
    gap: 0.8rem;
    padding: 3.35rem 0 3.2rem;
  }

  .search-page__summary {
    font-size: clamp(1.34rem, 6.2vw, 1.62rem);
    line-height: 1.03;
  }

  .search-page__term {
    font-size: clamp(1.34rem, 6.2vw, 1.62rem);
    line-height: 1.03;
  }

  .search-result__link {
    align-items: start;
    gap: 1rem;
  }

  .search-result h2 {
    font-size: clamp(1.18rem, 1.7vw, 1.7rem);
  }
}

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

  .site-header {
    transition: none;
  }
}

.about-team {
  padding: 0 0 5.15rem;
  background: #fff;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.35rem;
  padding-top: 1.65rem;
  padding-bottom: 1.65rem;
}

.about-team__card {
  display: grid;
  gap: 1.4rem;
  align-content: start;
}

.about-team__image-wrap {
  background: transparent;
}

.about-team__image {
  display: block;
  width: 100%;
  height: auto;
}

.about-team__copy {
  display: grid;
  gap: 1.05rem;
}

.about-team__name,
.about-team__role {
  font-size: clamp(1.08rem, 1.4vw, 1.42rem);
  line-height: 1.24;
  font-weight: 400;
}

.about-team__name {
  margin: 0;
  color: var(--color-orange);
}

.about-team__role {
  margin: -0.48rem 0 0;
  color: var(--color-text);
}

.about-team__email {
  margin: 0;
  color: rgba(11, 11, 11, 0.6);
  font-size: 0.92rem;
  line-height: 1.72;
}

.about-team__email a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

@media (max-width: 1100px) {
  .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .about-team {
    padding: 0 0 4.2rem;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1.15rem;
    padding-bottom: 1.15rem;
  }

  .about-team__name,
  .about-team__role {
    font-size: clamp(1rem, 4.7vw, 1.28rem);
  }

  .about-team__email {
    font-size: 0.92rem;
  }
}

.about-team__copy {
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  line-height: 1.24;
  font-weight: 400;
}

.about-team__name,
.about-team__role {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

@media (max-width: 760px) {
  .about-team__copy {
    font-size: clamp(0.72rem, 3.4vw, 0.82rem);
  }
}

.about-team__copy {
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  line-height: 1.24;
  font-weight: 400;
}

@media (max-width: 760px) {
  .about-team__copy {
    font-size: clamp(0.72rem, 3.4vw, 0.82rem);
  }
}

.about-team__copy {
  font-size: 1.02rem;
  line-height: 1.82;
  font-weight: 400;
}

.about-team__name,
.about-team__role {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.about-team__email {
  font-size: 0.87rem;
  line-height: 1.82;
  font-weight: 400;
}

@media (max-width: 760px) {
  .about-team__copy {
    font-size: 1.02rem;
  }
}

.about-video__frame--external {
  display: grid;
  place-items: center;
  background: #f4f4f4;
}

.about-video__fallback {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.6rem;
  text-align: center;
}

.about-video__fallback-text {
  margin: 0;
  color: rgba(11, 11, 11, 0.6);
}

.about-video__button {
  justify-self: center;
}

@media (min-width: 1800px) {
  :root {
    --shell: min(1480px, calc(100vw - 76px));
    --shell-wide: min(calc(100vw - 12px), 2280px);
    --shell-narrow: min(1120px, calc(100vw - 76px));
    --header-height: 72px;
    --header-logo-width: clamp(270px, 18vw, 410px);
  }

  body {
    font-size: 16px;
  }
}

@media (min-width: 2560px) {
  :root {
    --shell: min(1720px, calc(100vw - 96px));
    --shell-wide: min(calc(100vw - 18px), 3020px);
    --shell-narrow: min(1320px, calc(100vw - 96px));
    --header-height: 78px;
    --header-logo-width: clamp(300px, 16vw, 460px);
  }

  body {
    font-size: 17px;
  }
}

@media (min-width: 3440px) {
  :root {
    --shell: min(1960px, calc(100vw - 126px));
    --shell-wide: min(calc(100vw - 24px), 3600px);
    --shell-narrow: min(1500px, calc(100vw - 126px));
    --header-height: 84px;
    --header-logo-width: clamp(340px, 15vw, 520px);
  }

  body {
    font-size: 18px;
  }
}

.has-cookie-settings-open {
  overflow: hidden;
}

.site-footer__button-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.cookie-consent {
  position: relative;
  z-index: 90;
}

.cookie-consent__banner[hidden],
.cookie-consent__overlay[hidden],
.cookie-consent__option-details[hidden] {
  display: none !important;
}

.cookie-consent__banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(23.5rem, calc(100vw - 2.5rem));
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.cookie-consent__banner-inner {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

.cookie-consent__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(1.22rem, 1.82vw, 1.7rem);
  line-height: 1.18;
  font-weight: 400;
}

.cookie-consent__banner .cookie-consent__title {
  font-size: clamp(0.96rem, 1.28vw, 1.2rem);
  line-height: 1.16;
}

.cookie-consent__text {
  color: var(--color-text);
  font-size: clamp(0.85rem, 1.17vw, 1.04rem);
  line-height: 1.48;
}

.cookie-consent__banner .cookie-consent__text {
  font-size: clamp(0.78rem, 0.88vw, 0.88rem);
  line-height: 1.42;
}

.cookie-consent__text--banner {
  max-height: clamp(10rem, 27vh, 15rem);
  overflow: auto;
  padding-right: 0.35rem;
}

.cookie-consent__actions {
  display: grid;
  gap: 0.8rem;
}

.cookie-consent__actions--banner {
  gap: 0.55rem;
}

.cookie-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.46rem 0.9rem;
  border: 1px solid var(--color-text);
  background: #fff;
  color: var(--color-text);
  font: inherit;
  font-size: 0.8rem;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
  background: #000;
  color: #fff;
}

.cookie-consent__overlay {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.58);
}

.cookie-consent__panel {
  position: relative;
  width: min(46rem, calc(100vw - 3rem));
  max-height: calc(100dvh - 3rem);
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.16);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.cookie-consent__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.2rem 0.95rem;
  border-bottom: 1px solid rgba(11, 11, 11, 0.16);
}

.cookie-consent__close {
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent__panel-body {
  overflow: auto;
  padding: 1rem 1.2rem;
  display: grid;
  gap: 1.15rem;
}

.cookie-consent__privacy {
  margin: 0;
  color: var(--color-text);
  font-size: 0.85rem;
  line-height: 1.42;
}

.cookie-consent__privacy a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.cookie-consent__options {
  display: grid;
  gap: 0.75rem;
}

.cookie-consent__option-group {
  border: 1px solid rgba(11, 11, 11, 0.24);
  background: #fff;
}

.cookie-consent__option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-consent__option-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  flex: 1 1 auto;
  min-height: 4.2rem;
  padding: 0.9rem 1rem;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.cookie-consent__option-indicator {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: #000;
  position: relative;
  flex: 0 0 auto;
}

.cookie-consent__option-indicator::after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.45rem;
  width: 0.34rem;
  height: 0.34rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.18s ease, top 0.18s ease;
}

.cookie-consent__option-group.is-open .cookie-consent__option-indicator::after {
  top: 0.5rem;
  transform: rotate(225deg);
}

.cookie-consent__option-title {
  color: var(--color-text);
  font-size: 0.85rem;
  line-height: 1.18;
}

.cookie-consent__option-details {
  border-top: 1px solid rgba(11, 11, 11, 0.24);
  display: grid;
}

.cookie-consent__service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
}

.cookie-consent__service-row--stacked {
  display: grid;
  gap: 0;
  padding: 0;
}

.cookie-consent__service-row-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
}

.cookie-consent__service-row-item + .cookie-consent__service-row-item {
  border-top: 1px solid rgba(11, 11, 11, 0.24);
}

.cookie-consent__service-title-row {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.cookie-consent__service-bullet {
  display: inline-flex;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(11, 11, 11, 0.9);
  flex: 0 0 auto;
}

.cookie-consent__service-title {
  color: var(--color-text);
  font-size: 0.85rem;
  line-height: 1.18;
}

.cookie-consent__service-copy {
  border-top: 1px solid rgba(11, 11, 11, 0.24);
  padding: 1rem;
  display: grid;
  gap: 1.2rem;
}

.cookie-consent__service-copy p {
  margin: 0;
  color: var(--color-text);
  font-size: 0.83rem;
  line-height: 1.38;
}

.cookie-consent__service-copy em {
  font-style: italic;
}

.cookie-consent__toggle {
  position: relative;
  flex: 0 0 auto;
  margin: 0.95rem 1rem 0.95rem 0;
}

.cookie-consent__toggle--mirror {
  margin: 0;
}

.cookie-consent__toggle input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.cookie-consent__toggle input[disabled] {
  cursor: default;
}

.cookie-consent__toggle-ui {
  display: inline-flex;
  width: 4.2rem;
  height: 1.95rem;
  border: 1px solid rgba(11, 11, 11, 0.32);
  background: #fff;
  position: relative;
}

.cookie-consent__toggle-ui::before {
  content: "×";
  position: absolute;
  top: 50%;
  left: 0.62rem;
  transform: translateY(-50%);
  color: #000;
  font-size: 1.35rem;
  line-height: 1;
}

.cookie-consent__toggle input:checked + .cookie-consent__toggle-ui::before {
  content: "✓";
  left: auto;
  right: 0.6rem;
}

.cookie-consent__toggle input:checked + .cookie-consent__toggle-ui {
  background: #000;
  color: #fff;
}

.cookie-consent__toggle input:checked + .cookie-consent__toggle-ui::before {
  color: #fff;
}

.cookie-consent__panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.2rem;
  border-top: 1px solid rgba(11, 11, 11, 0.16);
}

.cookie-consent__panel-actions {
  display: flex;
  gap: 0.8rem;
}

@media (max-width: 760px) {
  .cookie-consent__banner {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .cookie-consent__banner-inner {
    gap: 0.9rem;
    padding: 0.95rem;
  }

  .cookie-consent__banner .cookie-consent__title {
    font-size: 0.94rem;
  }

  .cookie-consent__banner .cookie-consent__text {
    font-size: 0.82rem;
  }

  .cookie-consent__text--banner {
    max-height: 36dvh;
    overflow: auto;
    padding-right: 0.45rem;
  }

  .cookie-consent__overlay {
    padding: 0;
    align-items: stretch;
  }

  .cookie-consent__panel {
    width: min(calc(100vw - 0.5rem), 48rem);
    max-height: calc(100dvh - 0.5rem);
    margin: 0.25rem;
  }

  .cookie-consent__panel-header,
  .cookie-consent__panel-body,
  .cookie-consent__panel-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .cookie-consent__panel-footer,
  .cookie-consent__panel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    width: 100%;
    min-height: 2.55rem;
  }

  .cookie-consent__option-trigger {
    min-height: 3.85rem;
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .cookie-consent__service-row,
  .cookie-consent__service-row-item,
  .cookie-consent__service-copy {
    padding-right: 0.85rem;
    padding-left: 0.85rem;
  }

  .cookie-consent__option-header,
  .cookie-consent__service-row,
  .cookie-consent__service-row-item {
    align-items: flex-start;
  }

  .cookie-consent__toggle {
    margin-right: 0.85rem;
  }
}

.about-video__frame--consent {
  display: grid;
  place-items: center;
  background: #f4f4f4;
}

.about-video__consent-placeholder {
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.6rem;
  text-align: center;
}

.about-video__consent-text {
  margin: 0;
  color: rgba(11, 11, 11, 0.6);
}

@media (max-width: 760px) {
  .cookie-consent__banner {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    width: auto;
  }

  .cookie-consent__banner-inner {
    gap: 0.9rem;
    padding: 0.95rem;
  }

  .cookie-consent__banner .cookie-consent__title {
    font-size: 0.94rem;
  }

  .cookie-consent__banner .cookie-consent__text {
    font-size: 0.82rem;
  }

  .cookie-consent__text--banner {
    max-height: 36dvh;
    overflow: auto;
    padding-right: 0.45rem;
  }

  .cookie-consent__overlay {
    padding: 0;
    align-items: stretch;
  }

  .cookie-consent__panel {
    width: min(calc(100vw - 0.5rem), 48rem);
    max-height: calc(100dvh - 0.5rem);
    margin: 0.25rem;
  }

  .cookie-consent__panel-header,
  .cookie-consent__panel-body,
  .cookie-consent__panel-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .cookie-consent__panel-footer,
  .cookie-consent__panel-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-consent__button {
    width: 100%;
    min-height: 2.65rem;
  }

  .cookie-consent__option {
    align-items: flex-start;
  }

  .cookie-consent__toggle {
    margin-top: 0.12rem;
  }
}
