:root {
  --accent: #0d16c7;
  --accent-active: #001aff;
  --hover-overlay: #001aff;
  --hover-text: #ffffff;
  --text: #050505;
  --white: #ffffff;
  --soft: #fafafa;
  --muted: #666666;
  --logo-color: #0d16c7;
  --max: 1395px;
  --edge: 20px;
  font-family: "Apercu", Calibri, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0;
}

body.theme-dark {
  --text: #ffffff;
  --white: #0d16c7;
  --soft: #111fd8;
  --muted: rgba(255, 255, 255, 0.74);
  --accent: #ffffff;
  --accent-active: #dce2ff;
  --hover-overlay: #001aff;
  --hover-text: #ffffff;
  --logo-color: #ffffff;
  background-color: #0d16c7;
}

body.menu-open {
  height: 100vh;
  overflow: hidden;
}

body:not(.is-ready) .page-container,
body:not(.is-ready) .footer {
  opacity: 0;
  transform: translateY(18px);
}

body.is-leaving .page-container,
body.is-leaving .footer {
  opacity: 0;
  transform: translateY(-10px);
}

.page-container,
.footer {
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

img,
video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  user-select: none;
  -webkit-user-drag: none;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1100ms ease, transform 1200ms cubic-bezier(0.22, 1, 0.36, 1);
}

img.is-loaded,
video.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 860ms ease, transform 960ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

::selection {
  color: var(--white);
  background: var(--accent);
}

a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 180ms ease;
}

a:hover,
a:focus,
a:active {
  color: var(--accent-active);
  outline: none;
}

p {
  margin: 0 0 2em;
}

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

h1,
h2,
h3,
h4,
h5,
figure {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-bottom: 0.5em;
  font-weight: 600;
}

h1,
.h1 {
  font-size: 60px;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 40px;
  line-height: 1.3;
}

h3,
.h3 {
  font-size: 34px;
  line-height: 1.3;
}

h4,
.h4 {
  font-size: 22px;
  line-height: 1.3;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  body:not(.is-ready) .page-container,
  body:not(.is-ready) .footer,
  body.is-leaving .page-container,
  body.is-leaving .footer,
  .reveal-item,
  img,
  video {
    opacity: 1;
    transform: none;
  }
}


.container {
  padding-left: var(--edge);
  padding-right: var(--edge);
}

.container--wide {
  padding-left: 0;
  padding-right: 0;
}

.container__wrapper {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.site-shell {
  min-height: 45vh;
}

.page-container {
  min-height: 45vh;
  margin-top: 0;
}

section,
.section {
  padding-top: 82px;
  padding-bottom: 82px;
}

body:not(.is-home) .page-container > section:first-child {
  padding-top: 56px;
}

.section--grey {
  background: var(--soft);
  position: relative;
}

.section--grey::before,
.section--grey::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 50vw;
  height: 100%;
  background: var(--soft);
}

.section--grey::before {
  left: 50%;
}

.section--grey::after {
  right: 50%;
}

.header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 32px 20px;
  color: var(--accent);
  background: var(--white);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navigation__header {
  width: 20%;
}

.logo {
  display: block;
  height: 2.35em;
}

.logo__link {
  display: inline-flex;
  align-items: center;
  height: inherit;
  font-weight: 700;
}

.logo__image {
  width: 124px;
  height: 52px;
  display: block;
}

.logo__image--mask,
.footer__logo--mask {
  background: var(--logo-color);
  -webkit-mask: url("/media/brand/logo.svg") center / contain no-repeat;
  mask: url("/media/brand/logo.svg") center / contain no-repeat;
}

.menu__mobile {
  display: none;
}

.menu__button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
}

.menu__container {
  width: 80%;
}

.menu__list {
  display: block;
  list-style: none;
  min-height: 0;
  margin: 0;
  padding: 0;
  text-align: right;
}

.menu-item {
  display: inline-block;
  margin-right: 2em;
}

.menu-item:last-child,
.menu__language {
  margin-right: 0;
}

.menu__language + .menu__language {
  margin-left: 0.85em;
}

.menu__language a {
  display: inline;
  color: var(--accent);
  font-weight: 400;
}

.menu__language--current a {
  font-weight: 700;
  pointer-events: none;
}

.footer {
  position: relative;
  background: var(--soft);
  color: var(--accent);
  padding: 64px 20px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
  text-align: left;
}

.footer__grid--minimal {
  align-items: start;
}

.footer__legal {
  align-self: start;
  text-align: left;
}

.footer__brand {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 12px;
}

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

.footer__logo {
  width: 124px;
  height: 52px;
  display: block;
}

.theme-toggle {
  display: inline;
  min-height: 0;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  line-height: 1.3;
}

.theme-toggle:hover,
.theme-toggle:focus {
  color: var(--accent-active);
}

@media (max-width: 1024px) {
  .header {
    padding: 20px;
  }

  .navigation {
    display: table;
    height: 100%;
    width: 100%;
  }

  .navigation__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .menu__mobile {
    display: block;
  }

  .menu__button--open {
    display: inline-grid;
    gap: 6px;
    width: 32px;
  }

  .menu__button--open span {
    display: block;
    height: 2px;
    background: currentColor;
  }

  .menu__container {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
    padding: 96px 20px 20px;
    background: var(--white);
    transform: translateY(-100%);
    transition: transform 260ms ease;
  }

  body.menu-open .menu__container {
    transform: translateY(0);
  }

  .menu__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: 28px;
  }

  .menu-item {
    display: block;
    margin: 0;
    font-size: 34px;
    line-height: 1.3;
  }

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

@media (max-width: 768px) {
  section,
  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


.hero {
  position: relative;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 56px;
}

.hero__wrapper {
  overflow: hidden;
}

.hero__slider {
  position: relative;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: max-content;
  transition: transform 420ms ease;
}

.hero__slide {
  position: relative;
  width: 85vw;
  max-width: var(--max);
  flex: 0 0 85vw;
  overflow: hidden;
}

.hero__link {
  display: block;
  padding: 0;
  margin-top: 1.25em;
}

.image--hero {
  width: 100%;
  height: 70vh;
  max-height: 670px;
  object-fit: cover;
}

.hero__content-container {
  margin-top: 1em;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__title {
  color: var(--accent);
  margin-bottom: 0.1em;
}

.hero__category {
  color: var(--accent);
}

.hero__button-prev,
.hero__button-next {
  position: absolute;
  top: 0;
  z-index: 2;
  width: calc(7.5% - 20px);
  height: 100%;
  cursor: pointer;
}

.hero__button-prev {
  left: 0;
}

.hero__button-next {
  right: 0;
}

.hero__button-prev span,
.hero__button-next span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.swiper-pagination button {
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: color-mix(in srgb, var(--accent) 8%, white);
  cursor: pointer;
}

.swiper-pagination button:focus {
  outline: none;
}

.swiper-pagination button.is-active {
  background: var(--accent-active);
}

.intro-text__text {
  color: var(--accent);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 200;
}

.container-double {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.container-double > div {
  flex: 1 1 50%;
}

.container-double:not(.container-double--reversed) > div:nth-child(odd) {
  padding-right: 45px;
}

.container-double:not(.container-double--reversed) > div:nth-child(2n) {
  padding-left: 45px;
}

.container-double--reversed {
  flex-direction: row-reverse;
}

.container-double--reversed > div:nth-child(odd) {
  padding-left: 45px;
}

.container-double--reversed > div:nth-child(2n) {
  padding-right: 45px;
}

.image-text {
  color: var(--accent);
}

.image-text__image {
  max-height: 75vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.image-text__heading {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
}

.image-text__content--m {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 200;
}

.image-text__cta {
  margin-top: 32px;
  font-weight: 700;
}

.chevron-right {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  color: var(--accent);
  font-weight: 700;
}

.chevron-right::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.chevron-right:hover::after {
  transform: translate(8px, -50%);
}

.text-toggle__side,
.references {
  color: var(--accent);
}

.text-toggle__heading:not(:first-child) {
  margin-top: 48px;
}

.text-toggle__content {
  display: inline;
  font-size: 22px;
  line-height: 1.3;
}

.text-rows {
  padding-top: 54px;
  padding-bottom: 54px;
  color: var(--accent);
}

.text-rows__wrapper {
  display: grid;
  gap: 42px;
}

.text-row {
  max-width: 1180px;
}

.text-row__heading {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.text-row__content {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 400;
}

.call-to-action {
  text-align: center;
}

.call-to-action__link {
  color: var(--accent);
  font-size: 60px;
  line-height: 1.2;
  font-weight: 200;
}

.page-hero {
  color: var(--accent);
}

.page-hero h1 {
  display: none;
}

.page-hero__intro {
  max-width: 920px;
  font-size: 34px;
  line-height: 1.3;
  font-weight: 200;
}

.workFilters {
  margin-bottom: 4rem;
}

.workFilters__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 700px;
}

.workFilters__filter {
  position: relative;
}

.workFilters__filter__expand {
  width: 100%;
  min-width: 150px;
  border: 2px solid color-mix(in srgb, var(--accent) 14%, white);
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--accent);
  padding: 0.5rem;
  text-align: left;
  line-height: 1;
  cursor: pointer;
  transition: border-color 220ms ease, color 220ms ease;
}

.workFilters__filter:hover .workFilters__filter__expand,
.workFilters__filter__expand:hover,
.workFilters__filter__expand.is-active {
  border-color: var(--accent);
}

.workFilters__filter__options {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  z-index: 20;
  width: 100%;
  min-width: 350px;
  border: 2px solid var(--accent);
  border-radius: 0.5rem;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.workFilters__filter:hover .workFilters__filter__options,
.workFilters__filter__expand.is-active + .workFilters__filter__options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.workFilters__filter__options__option {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 0.5rem 1rem;
  text-align: left;
  cursor: pointer;
}

.workFilters__filter__options__option:hover,
.workFilters__filter__options__option:focus,
.workFilters__filter__options__option--active {
  color: var(--accent-active);
}

.workFilters__active {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
  margin-top: 12px;
}

.workFilters__active-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  padding: 0 10px;
  cursor: pointer;
}

.grid.overview-grid,
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1em;
  color: var(--accent);
}

.listWork .singleWork--notfound {
  display: none;
  grid-column: 1 / -1;
  color: var(--accent);
  text-align: center;
  font-size: 34px;
  line-height: 1.3;
}

.listWork.listWork--notfound .singleWork--notfound {
  display: block;
}

.overview-grid__item {
  display: block;
  position: relative;
  color: var(--accent);
  overflow: hidden;
}

.overview-grid__image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  background: var(--soft);
}

.ratio--2-3 {
  aspect-ratio: 2 / 3;
}

.overview-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colored-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: var(--hover-overlay);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 220ms ease, background 220ms ease;
}

.overview-grid__item:hover .colored-image-overlay,
.overview-grid__item:focus .colored-image-overlay,
.overview-grid__item:focus-within .colored-image-overlay {
  opacity: 1;
}

.overview-grid__item:hover,
.overview-grid__item:focus {
  color: var(--hover-text);
}

.overview-grid__name {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 54px;
  z-index: 3;
  margin-bottom: 0;
  color: inherit;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  opacity: 0;
  transition: opacity 160ms ease;
}

.overview-grid__subline {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  color: inherit;
  padding: 0.25rem 0;
  font-size: 18px;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 160ms ease;
}

.overview-grid__item:hover .overview-grid__name,
.overview-grid__item:focus .overview-grid__name,
.overview-grid__item:hover .overview-grid__subline,
.overview-grid__item:focus .overview-grid__subline {
  opacity: 1;
}

.service-list {
  color: var(--accent);
}

.service-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(280px, 1fr);
  gap: 45px;
  padding: 40px 0;
  border-top: 2px solid var(--accent);
}

.service-item:last-child {
  border-bottom: 2px solid var(--accent);
}

.service-item h2 {
  font-size: 34px;
  line-height: 1.3;
}

.service-item p {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 200;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 45px;
  color: var(--accent);
}

.service-columns h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
}

.service-columns p {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 400;
}

.contact-panel {
  min-height: auto;
  padding: 72px 20px 88px;
  color: var(--accent);
  background: var(--white);
}

.contact-panel__wrapper {
  width: 100%;
  max-width: var(--max);
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  align-items: start;
}

.contact-directory {
  padding-top: 64px;
  padding-bottom: 96px;
  color: var(--accent);
  background: var(--white);
}

.contact-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px 140px;
  align-items: start;
}

.contact-directory__block {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-directory__heading {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
}

.contact-directory__text {
  margin: 0;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 200;
}

.contact-directory__text a {
  color: inherit;
}

.static-form {
  display: grid;
  gap: 18px;
}

.form-field label {
  display: grid;
  gap: 8px;
}

.static-form input,
.static-form textarea,
.static-form select {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-bottom: 2px solid var(--accent);
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  padding: 12px 0;
}

.static-form textarea {
  min-height: 150px;
  resize: vertical;
}

.static-form input::placeholder,
.static-form textarea::placeholder {
  color: color-mix(in srgb, var(--accent) 58%, white);
}

.static-form .btn {
  justify-self: start;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  min-height: 50px;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 1681px) {
  .container--wide {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero__slide {
    flex-basis: var(--max);
    width: var(--max);
  }
}

@media (min-width: 769px) {
  .hero__content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 2.5em;
    margin-top: 0;
  }

  .hero__content-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hover-overlay);
    mix-blend-mode: multiply;
    opacity: 0;
    transition: opacity 260ms ease;
  }

  .hero__content {
    opacity: 0;
    transition: opacity 260ms ease;
  }

  .hero__slide:hover .hero__content,
  .hero__slide:focus-within .hero__content,
  .hero__slide:hover .hero__content-container::before,
  .hero__slide:focus-within .hero__content-container::before {
    opacity: 1;
  }

  .hero__title,
  .hero__category {
    color: var(--hover-text);
  }
}

@media (max-width: 1024px) {
  .container-double,
  .container-double--reversed {
    display: flex;
    flex-direction: column;
  }

  .container-double > div,
  .container-double--reversed > div,
  .container-double:not(.container-double--reversed) > div:nth-child(odd),
  .container-double:not(.container-double--reversed) > div:nth-child(2n),
  .container-double--reversed > div:nth-child(odd),
  .container-double--reversed > div:nth-child(2n) {
    flex-basis: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .image-text .container-double > div:first-child {
    margin-bottom: 32px;
  }

  .overview-grid,
  .grid.overview-grid,
  .service-item,
  .contact-panel__wrapper,
  .contact-directory__grid,
  .service-columns {
    grid-template-columns: 1fr;
  }

  .contact-directory__grid {
    gap: 46px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 18px;
  }

  h1,
  .h1 {
    font-size: 34px;
  }

  h2,
  .h2,
  h3,
  .h3,
  .page-hero__intro,
  .image-text__content--m,
  .intro-text__text {
    font-size: 25px;
  }

  .image--hero {
    height: 80vw;
  }

  .hero__button-next,
  .hero__button-prev {
    display: none;
  }

  .call-to-action__link {
    display: block;
    border: 2px solid var(--accent);
    padding: 0.75rem 1rem;
    font-size: 14px;
    font-weight: 700;
  }

  .workFilters {
    margin-bottom: 1.5rem;
  }

  .workFilters__container {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .workFilters__filter__options {
    min-width: 0;
  }

  .text-rows {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .text-rows__wrapper {
    gap: 30px;
  }

  .text-row__content {
    font-size: 18px;
  }

  .contact-directory {
    padding-top: 38px;
    padding-bottom: 64px;
  }

  .contact-directory__heading,
  .contact-directory__text {
    font-size: 25px;
  }
}


.legal-content {
  color: var(--accent);
}

.legal-content .container__wrapper {
  max-width: 980px;
}

.legal-content p,
.legal-content li {
  font-size: 22px;
  line-height: 1.45;
  font-weight: 200;
}

.project-detail-hero {
  padding-top: 32px;
  padding-bottom: 72px;
}

.project-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: 68px;
  align-items: end;
}

.project-detail-hero__copy {
  color: var(--accent);
}

.project-detail-hero__kicker {
  max-width: 360px;
  margin-bottom: 28px;
  font-size: 34px;
  line-height: 1.22;
  font-weight: 200;
}

.project-detail-hero h1 {
  margin-bottom: 18px;
  color: var(--accent);
}

.project-detail-hero__meta {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.project-detail-hero__grid > div:last-child img,
.project-detail-hero__grid > div:last-child video {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
}

.project-detail-intro {
  padding-top: 12px;
}

.project-detail-intro p {
  max-width: 980px;
  margin-left: 8%;
  color: var(--accent);
  font-size: 34px;
  line-height: 1.24;
  font-weight: 200;
}

.project-detail-full {
  padding-top: 44px;
}

.project-detail-full img,
.project-detail-full video {
  width: min(1150px, 100%);
  margin: 0 auto;
  object-fit: cover;
}

.project-detail-strip {
  overflow: hidden;
}

.project-detail-strip__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  gap: 72px;
  align-items: end;
}

.project-detail-strip__text {
  color: var(--accent);
  font-size: 25px;
  line-height: 1.25;
  font-weight: 200;
}

.project-detail-strip__images {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 20px;
}

.project-detail-strip__images img,
.project-detail-strip__images video {
  aspect-ratio: 0.75 / 1;
  object-fit: cover;
}

.project-detail-pair__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 100px;
}

.project-detail-pair img,
.project-detail-pair video {
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.project-detail-summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(280px, 0.34fr);
  gap: 42px;
  align-items: start;
}

.project-detail-summary__text {
  color: var(--accent);
  font-size: 18px;
  line-height: 1.35;
}

.project-detail-facts {
  width: 100%;
  margin-top: 28px;
  border-collapse: collapse;
  color: var(--accent);
  font-size: 13px;
}

.project-detail-facts th,
.project-detail-facts td {
  border: 1px solid var(--accent);
  padding: 8px 10px;
  text-align: left;
  font-weight: 400;
}

.intro-text__text strong {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .project-detail-hero__grid,
  .project-detail-strip__grid,
  .project-detail-pair__grid,
  .project-detail-summary__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-detail-strip__images {
    grid-template-columns: 1fr;
  }

  .project-detail-intro p {
    margin-left: 0;
  }
}
