:root {
  --site-bg: #ffffff;
  --site-text: #222;
  --site-muted: #ababab;
  --site-line: rgba(5, 5, 5, 0.1);
  --site-shell-gutter: 5vw;
  --site-max-width: 1800px;
  --site-logo-mark-offset: 0.95rem;
}

html,
body {
  background: var(--site-bg);
  color: var(--site-text);
}

body {
  font-family: "Lexend", "Open Sans", Arial, sans-serif;
}

body.site-shell {
  min-height: 100vh;
  font-family: "Lexend", "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.2;
}

body.site-shell h1,
body.site-shell h2,
body.site-shell h3,
body.site-shell h4,
body.site-shell h5,
body.site-shell h6,
body.site-shell p,
body.site-shell li,
body.site-shell a,
body.site-shell span,
body.site-shell label {
  line-height: 120% !important;
}

body.site-shell h1,
body.site-shell .projects-page__title,
body.site-shell .project-detail__title,
body.site-shell .page-static__title,
body.site-shell .heading-15 {
  font-size: 2rem !important;
}

body.site-shell.is-menu-open {
  overflow: hidden;
}

body.site-shell a,
body.site-shell a:visited,
body.site-shell a:hover,
body.site-shell a:active {
  color: inherit;
  text-decoration: none;
}

iframe[src*="tabnav"],
iframe[src*="limited-widget"],
[id*="tabnav"],
[class*="tabnav-widget"] {
  right: var(--site-shell-gutter) !important;
  left: auto !important;
  transform: none !important;
}

.clickable-off {
  pointer-events: none;
}

.clickable-on {
  pointer-events: auto;
}

.site-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.38s ease 0.2s;
}

body.site-shell.is-page-ready .site-frame {
  opacity: 1;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.55s ease 0.2s, transform 0.55s ease 0.2s;
  will-change: opacity, transform;
}

.scroll-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-frame,
  .scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header__inner,
.site-footer__inner,
.home-projects,
.projects-page,
.project-detail,
.page-static__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.site-header {
  position: relative;
  background: #fff;
  z-index: 120;

}

.site-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: auto;
  padding: 1.5rem var(--site-shell-gutter) 1.6rem;
  padding-top: 0px;

}

.site-header__brand,
.site-drawer__brand,
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__brand {
  justify-self: start;
  align-self: center;
  flex: 0 0 auto;
}

.site-header__brand img,
.site-drawer__brand img,
.site-footer__brand img {
  display: block;
  width: auto;
  max-width: 100%;
}

.site-header__brand img {
  height: 8.45rem;
}

.site-nav--desktop {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
}

.site-footer__brand img {
  width: auto;
  max-width: none;
  height: 4.9rem;
}

.home-projects {
  padding: 1.25rem var(--site-shell-gutter) 0;
}

.home-projects__inner {
  display: flex;
  flex-direction: column;
  gap: 15rem;
}

.home-projects__item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.4rem);
  align-items: end;
}

@media (max-width: 767px) {
  .projects-page .projects-grid .project-grid-card .project-grid-card__meta {
    position: relative;
  }

  .projects-page .projects-grid .project-grid-card .project-grid-card__meta-row {
    position: relative;
    align-items: flex-start;
    padding-right: 1.9rem;
    min-height: 1.4rem;
  }

  .projects-page .projects-grid .project-grid-card .project-grid-card__corner {
    position: absolute;
    right: 0;
    bottom: 0.05rem;
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    margin-top: 0;
    margin-bottom: 0;
    align-self: auto;
  }

  .projects-page .projects-grid .project-grid-card .project-grid-card__corner::before {
    right: 0;
    top: auto;
    bottom: 0;
    height: 100%;
  }

  .projects-page .projects-grid .project-grid-card .project-grid-card__corner::after {
    right: 0;
    left: auto;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 2px;
  }
}

.home-projects__item.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
}

.home-projects__item.is-reversed .home-projects__media {
  order: 2;
}

.home-projects__item.is-reversed .home-projects__meta {
  order: 1;
}

.home-projects__media,
.home-projects__title-link {
  color: inherit;
  text-decoration: none;
}


.home-projects__title-link {
  display: block;
  font-size: 1.71rem;
  line-height: inherit;
}

.home-projects__media {
  position: relative;
  display: block;
  background: #f3f3f3;
  overflow: hidden;
}

.home-projects__media img {
  display: block;
  width: 100%;
  aspect-ratio: 1.6 / 1;
  object-fit: cover;

}

.home-projects__placeholder {
  display: block;
  aspect-ratio: 1.6 / 1;
}

.home-projects__meta {
  position: relative;
  z-index: 2;
  max-width: 100%;

}

.home-projects__group {
 
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.55rem;
  font-size: 1.00rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.home-projects__group-link {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.home-projects__group-link:hover {
  color: #111;
}

.home-projects__group-separator {
  color: rgba(5, 5, 5, 0.38);
}

.home-projects__title {
  margin: 0;
  font-size: 1.71rem;
  line-height: 120%;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.home-projects__item:not(.is-reversed) .home-projects__meta,
.home-projects__item:not(.is-reversed) .home-projects__group,
.home-projects__item:not(.is-reversed) .home-projects__title,
.home-projects__item:not(.is-reversed) .home-projects__title-link {
  text-align: right;
}

.home-projects__item.is-reversed .home-projects__meta,
.home-projects__item.is-reversed .home-projects__group,
.home-projects__item.is-reversed .home-projects__title,
.home-projects__item.is-reversed .home-projects__title-link {
  text-align: left;
}

.home-projects__corner {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  pointer-events: none;
}

.home-projects__corner::before,
.home-projects__corner::after {
  content: "";
  position: absolute;
  background: #000;
}

.home-projects__corner::before {
  width: 2px;
  height: 100%;
}

.home-projects__corner::after {
  width: 100%;
  height: 2px;
}

.home-projects__item:not(.is-reversed) .home-projects__corner {
  right: -1.1rem;
  top: -1.1rem;
}

.home-projects__item:not(.is-reversed) .home-projects__corner::before {
  right: 0;
  top: 0;
}

.home-projects__item:not(.is-reversed) .home-projects__corner::after {
  right: 0;
  top: 0;
}

.home-projects__item.is-reversed .home-projects__corner {
  left: -1.1rem;
  top: 0;
}

.home-projects__item.is-reversed .home-projects__corner::before {
  left: 0;
  top: 0;
}

.home-projects__item.is-reversed .home-projects__corner::after {
  left: 0;
  top: 0;
}

.site-drawer__brand img {
  height: 5.2rem;
}

.site-nav__list,
.site-nav__dropdown-list,
.site-nav__mobile-list,
.site-nav__mobile-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.5rem, 3.3vw, 7.425rem);
  flex-wrap: nowrap;
  width: 100%;

}

.site-nav__item {
  position: relative;
}

.site-nav__link,
.site-nav__dropdown-link,
.site-nav__mobile-link,
.site-nav__mobile-sublink,
.site-footer__social a,
.site-footer__contact a,
.projects-page__back,
.projects-filter,
.project-card__title a,
.project-detail__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0rem;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__item--lang {
  margin-left: 0.15rem;
  padding-left: 0;
}

.site-nav__link:focus,
.site-nav__mobile-link:focus,
.site-nav__mobile-sublink:focus {
  color: inherit;
  text-decoration: none;
}

.site-nav__dropdown {
  display: none;
}

.site-nav__dropdown-link {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-header__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 1rem;
  padding-top: 0;
}

.site-lang-dropdown {
  position: relative;
}

.site-lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: auto;
  min-height: 1.2rem;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-lang-dropdown__toggle span {
  display: inline-block;
}

.site-lang-dropdown__toggle::-webkit-details-marker {
  display: none;
}

.site-lang-dropdown__toggle::after {
  content: "";
  width: 0.72rem;
  height: 0.45rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M5 6 0 0h10L5 6Z' fill='%23111'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.58;
  transform: none;
  transform-origin: center;
}

.site-lang-dropdown[open] .site-lang-dropdown__toggle::after {
  transform: rotate(180deg);
}

.site-lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.2rem 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-lang-dropdown[open] .site-lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-lang-dropdown__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.2rem;
  opacity: 1;
  margin-right: 0;
  font-size: 1rem;
  line-height: 120%;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-lang-dropdown__link.is-active,
.site-lang-dropdown__toggle,
.site-lang-dropdown__link:focus {
  opacity: 1;
}

.site-menu-toggle,
.site-drawer__close {
  border: 0;
  background: transparent;
  color: #111;
  padding: 0;
}

.site-menu-toggle {
  display: none;
  width: 2.9rem;
  height: 2.3rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.52rem;
}

.site-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: #111;
}

.site-accessibility-trigger {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 500100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  width: 2.52rem;
  min-height: 3.84rem;
  padding: 0.66rem 0.36rem;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-right: 0;
  border-radius: 0.96rem 0 0 0.96rem;
  background: #fff;
  box-shadow: 0 14px 32px rgba(5, 5, 5, 0.12);
  color: #111;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.site-accessibility-trigger svg {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.site-accessibility-trigger:not(.is-open) {
  background: #fff;
  color: #111;
}

.site-accessibility-trigger span {
  display: none;
}

.site-accessibility-trigger.is-open {
  background: #fff;
  color: #111;
}

body.is-gallery-open .site-accessibility-trigger {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.asw-container .asw-menu-btn {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(5, 5, 5, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.site-drawer__inner {
  margin-left: auto;
  width: min(100%, 28rem);
  min-height: 100%;
  background: #fff;
  padding: 1.5rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

body.is-menu-open .site-drawer {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-menu-open .site-drawer__inner {
  transform: translateX(0);
}

.site-drawer__header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.site-drawer__close {
  font-size: 2.8rem;
  line-height: 1;
}

.site-drawer__brand {
  display: none;
}

.site-nav__mobile-item {
  border-bottom: 1px solid var(--site-line);
}

.site-nav__mobile-link {
  display: block;
  padding: 1rem 0;
  font-size: 1.45rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav__mobile-sublist {
  padding: 0 0 0.5rem;
}

.site-nav__mobile-sublist li {
  border-top: 1px solid var(--site-line);
}

.site-nav__mobile-sublink {
  display: block;
  padding: 0.7rem 0;
  color: rgba(5, 5, 5, 0.64);
  text-transform: uppercase;
}

.site-nav__mobile-lang {
  display: none;
}

.site-main {
  flex: 1;
  padding: 0;
}

.site-main__breadcrumbs {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 1.25rem var(--site-shell-gutter) 0;
}

.site-footer {
  padding: 10rem 0 2.4rem;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  padding: 0 var(--site-shell-gutter);
}

.site-footer__contact {
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: 0;
}

.site-footer__contact p {
  margin: 0 0 0.18rem;
}

.site-footer__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex: 0 0 auto;
  margin-left: auto;
  white-space: nowrap;
}

.site-footer__social {
  font-size: 0.95rem;
  font-weight: 700;
}

.site-footer__social a {
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  vertical-align: middle;
}

.site-footer__social a + a {
  margin-left: 1.1rem;
}

.site-footer__social svg {
  display: block;
  width: 100%;
  height: 100%;
}

.site-footer__eu,
.site-footer__brand {
  display: inline-block;
  vertical-align: middle;
}

.site-footer__eu img {
  display: block;
  width: auto;
  max-width: min(12rem);
  height: auto;
}

.site-footer__brand {
  flex: 0 0 auto;
}

.projects-page,
.project-detail,
.page-static {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 1.25rem var(--site-shell-gutter) 0;
}

.projects-page__heading {
  max-width: 34rem;
  margin-bottom: 5.2rem;
}

.projects-page__title {
  margin: 0 0 2rem;
  font-size: clamp(2.97rem, 4.5vw, 4.41rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.projects-page__description {
  max-width: 30rem;
  margin: 0 0 1.8rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(5, 5, 5, 0.62);
}

.projects-toolbar {
  margin-bottom: 3rem;
}

.projects-toolbar__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 2rem;
}

.projects-page__back {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.projects-page__filters {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.projects-filter {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0.18rem 0.72rem 0.48rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--site-muted) !important;
  white-space: nowrap;
  transition: color 0.2s ease;
}

 .projects-filter.is-active.w--current {
    color: #111 !important;
 }

.projects-filter::before,
.projects-filter::after {
  content: "";
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.projects-filter::before {
  top: 0;
  left: 0;
  border-top: 2px solid #111;
  border-left: 2px solid #111;
}

.projects-filter::after {
  right: 0;
  bottom: 0;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
}

.projects-filter:hover {
  color: #111;
}

.projects-filter.is-active {
  color: #111;
}

.projects-filter.is-active::before,
.projects-filter.is-active::after {
  opacity: 1;
}

.site-breadcrumbs {
  margin: 0 0 1.35rem;
  padding: 0;
}

.site-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(5, 5, 5, 0.58);
}

.site-breadcrumbs__item + .site-breadcrumbs__item::before {
  content: "/";
  color: rgba(5, 5, 5, 0.32);
}

.site-breadcrumbs__link,
.site-breadcrumbs__text {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-breadcrumbs__link.is-home {
  width: auto;
  height: auto;
  justify-content: center;
}

.site-breadcrumbs__link.is-home svg {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
}

.site-breadcrumbs__item.is-current .site-breadcrumbs__text {
  color: #111;
}

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.1rem 4.8rem;
}

.project-grid-card {
  min-width: 0;
}

.project-grid-card__media {
  display: block;
  background: #f3f3f3;
  overflow: hidden;
}

.project-grid-card__media img,
.project-grid-card__placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
}

.project-grid-card__meta {
  margin-top: 1rem;
}

.project-grid-card__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.project-grid-card__group-link {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.project-grid-card__group-link:hover {
  color: #111;
}

.project-grid-card__group-separator {
  color: rgba(5, 5, 5, 0.38);
}

.project-grid-card__meta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.project-grid-card__title {
  margin: 0;
  min-width: 0;
  font-size: 1.71rem;
  line-height: 120%;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.project-grid-card__title-link {
  display: block;
  font-size: 1.71rem;
  line-height: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.project-grid-card__corner {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  align-self: flex-end;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0;
  margin-bottom: 0.05rem;
}

.project-grid-card__corner::before,
.project-grid-card__corner::after {
  content: "";
  position: absolute;
  background: #111;
}

.project-grid-card__corner::before {
  right: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
}

.project-grid-card__corner::after {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: end;
}

.project-card.is-reversed {
  grid-template-columns: minmax(0, 1fr) minmax(0, 4fr);
}

.project-card__media img,
.project-detail__hero img,
.project-detail__gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.project-detail__head {
  margin-bottom: 2.8rem;
}

.project-detail__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}


.project-detail__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--site-muted);
}

.project-detail__eyebrow-link {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.project-detail__eyebrow-link:hover {
  color: #111;
}

.project-detail__eyebrow-separator {
  color: rgba(5, 5, 5, 0.38);
}

.project-detail__title {
  margin: 0 0 0.85rem;
  font-size: 1.71rem !important;
  line-height: 120% !important;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.project-detail__subtitle {
  margin: 0;
  max-width: 30rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(5, 5, 5, 0.68);
}

.project-detail__hero {
  margin-bottom: 1.6rem;
  max-width: 72rem;
}

.project-detail__hero img {
 
  object-fit: cover;
}

.project-detail__body {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: 100%;
  max-width: 72rem;
  margin: 0;
}



.project-detail__main {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 800px;
  margin: 0;
  padding-left: 0;
}

.project-detail__intro {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.project-detail__intro p {
  margin: 0;
}

.project-detail__content {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  line-height: 1.72;
}

.project-detail__intro a,
.project-detail__content a {
  color: var(--site-muted) !important;
  text-decoration: underline;
  text-underline-offset: 0.16em;
  transition: color 0.2s ease;
}

.project-detail__intro a:hover,
.project-detail__content a:hover {
  color: #111;
}

.project-detail__content > :first-child {
  margin-top: 0;
}

.project-detail__content > :last-child {
  margin-bottom: 0;
}

.project-detail__facts {
  flex: 0 0 14rem;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  padding-top: 0.1rem;
  padding-right: 0;
  width: 14rem;
  max-width: 100%;

}

.project-detail__fact {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.15rem;
}

.project-detail__fact-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(5, 5, 5, 0.55);
}

.project-detail__fact-value {
  font-size: 0.96rem;
  line-height: 1.45;
}

.project-detail__gallery-block {
  width: 100%;
  max-width: none;
  margin-top: 3.2rem;
}

.project-detail__gallery-label {
  display: inline-block;
  margin-bottom: 0.95rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-detail__gallery-main {
  width: 100%;
  max-width: none;
  min-height: 18rem;
  overflow: visible;
  position: relative;
}

.project-detail__gallery-main .swiper-wrapper {
  align-items: center;
}

.project-detail__gallery-main .swiper-slide {
  width: auto;
  height: auto;
}

.project-detail__gallery-main .swiper-slide.is-horizontal {
  width: 74%;
}

.project-detail__gallery-main .swiper-slide.is-vertical {
  width: 32%;
}

.project-detail__gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.8rem 1.8rem rgba(17, 17, 17, 0.12);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.project-detail__gallery-arrow:hover {
  background: #fff;
  border-color: rgba(17, 17, 17, 0.28);
}

.project-detail__gallery-arrow:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.project-detail__gallery-arrow span {
  display: inline-flex;
}

.project-detail__gallery-arrow svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-detail__gallery-arrow--prev {
  left: 1rem;
}

.project-detail__gallery-arrow--next {
  right: 1rem;
}

.project-detail__gallery-block.is-single-slide .project-detail__gallery-arrow {
  display: none;
}

.project-detail__gallery-item {
  appearance: none;
  border: 0;
  margin: 0;
  background: #f3f3f3;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: inherit;
  cursor: zoom-in;
}

.project-detail__gallery-item img {
  object-fit: cover;
  width: 100%;
  display: block;
}

.project-detail__gallery-main .swiper-slide.is-horizontal .project-detail__gallery-item img {
  aspect-ratio: 1.75 / 1;
}

.project-detail__gallery-main .swiper-slide.is-vertical .project-detail__gallery-item img {
  aspect-ratio: 0.82 / 1.08;
}

.project-detail__gallery-thumbs {
  width: 100%;
  margin-top: 1rem;
  overflow: visible;
}

.project-detail__gallery-thumbs .swiper-slide {
  width: 7rem;
  opacity: 0.58;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.project-detail__gallery-thumbs .swiper-slide:hover {
  opacity: 0.82;
}

.project-detail__gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.project-detail__gallery-thumb {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #f3f3f3;
}

.project-detail__gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.project-detail__gallery-thumbs .swiper-slide-thumb-active .project-detail__gallery-thumb {
  border-color: #111;
}

body.is-gallery-open {
  overflow: hidden;
}

.project-detail__lightbox {
  position: fixed;
  inset: 0;
  z-index: 240;
}

.project-detail__lightbox[hidden] {
  display: none;
}

.project-detail__lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 8, 8, 0.92);
  padding: 0;
}

.project-detail__lightbox-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(100%, 96rem);
  height: 100%;
  margin: 0 auto;
  padding: 1rem var(--site-shell-gutter) 1.4rem;
}

.project-detail__lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

.project-detail__lightbox-counter {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-detail__lightbox-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.2rem 0;
  cursor: pointer;
}

.project-detail__lightbox-main {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-detail__lightbox-figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: min(72vh, calc(100vh - 12rem));
  margin: 0;
}

.project-detail__lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.project-detail__lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.project-detail__lightbox-arrow svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-detail__lightbox-arrow--prev {
  left: 1rem;
}

.project-detail__lightbox-arrow--next {
  right: 1rem;
}

.project-detail__lightbox-thumbs {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.2rem;
  scrollbar-width: none;
}

.project-detail__lightbox-thumbs::-webkit-scrollbar {
  display: none;
}

.project-detail__lightbox-thumb {
  width: 5.8rem;
  opacity: 0.55;
  cursor: pointer;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  overflow: hidden;
}

.project-detail__lightbox-thumb.is-active {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.88);
}

.project-detail__lightbox-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.project-detail__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4.8rem;
  padding-top: 1.35rem;
  align-items: start;
}

.project-detail__nav-item {
  min-width: 0;
  display: flex;
  align-items: flex-start;
}

.project-detail__nav-item.is-next {
  justify-content: flex-end;
  text-align: right;
}

.project-detail__nav-link {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  min-width: 0;
  max-width: 100%;
  padding-left: 1.1rem;
}

.project-detail__nav-item.is-next .project-detail__nav-link {
  padding-left: 0;
  padding-right: 1.1rem;
}

.project-detail__nav-label {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.project-detail__nav-corner {
  position: absolute;
  display: block;
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  top: -0.94rem;
  margin-top: 0;
}

.project-detail__nav-corner::before,
.project-detail__nav-corner::after {
  content: "";
  position: absolute;
  background: #111;
}

.project-detail__nav-item.is-previous .project-detail__nav-corner::before {
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
}

.project-detail__nav-item.is-previous .project-detail__nav-corner {
  left: 0;
}

.project-detail__nav-item.is-previous .project-detail__nav-corner::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
}

.project-detail__nav-item.is-next .project-detail__nav-corner::before {
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
}

.project-detail__nav-item.is-next .project-detail__nav-corner {
  right: 0;
}

.project-detail__nav-item.is-next .project-detail__nav-corner::after {
  right: 0;
  top: 0;
  width: 100%;
  height: 2px;
}

@media (min-width: 1200px) {
  .site-header__inner {
    min-height: auto;
  }

  .home-projects__item:first-child {
    min-height: 70vh;
    align-items: stretch;
  }

  .home-projects__item:first-child .home-projects__media {
    height: 70vh;
  }

  .home-projects__item:first-child .home-projects__media img,
  .home-projects__item:first-child .home-projects__placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .project-detail__hero {
    max-width: 100%;
    margin-bottom: 1.35rem;
  }

  .project-detail__hero img {
    width: auto;
    height: auto;
  }

  .project-detail__body {
    max-width: 100%;
    gap: 8rem;
    padding-top: 2rem;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .site-header__inner {
    align-items: center;
  }

  .home-projects__title,
  .home-projects__title-link,
  .project-grid-card__title,
  .project-grid-card__title-link,
  body.site-shell .project-detail__title,
  .page-static__title {
    font-size: 2.0rem !important;
  }

  .home-projects__item:not(.is-reversed) .home-projects__meta {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
    justify-self: end;
  }

  .home-projects__item:not(.is-reversed) .home-projects__corner {
    display: block;
  }
}

@media (max-width: 1199px) {
  .site-nav__list {
    gap: clamp(0.55rem, 2vw, 1rem);
  }

  .home-projects__item {
    grid-template-columns: minmax(0, 1fr) 9rem;
  }

  .home-projects__item.is-reversed {
    grid-template-columns: 9rem minmax(0, 1fr);
  }

  .home-projects__title {
    font-size: 1.71rem !important;
    white-space: normal !important;
  }

  .projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.7rem 2rem;
  }

  .projects-toolbar__filters {
    gap: 0.65rem;
  }

  .project-card,
  .project-card.is-reversed {
    grid-template-columns: 1fr 10rem;
  }

  .project-detail__body {
  
    gap: 2.4rem;
  }
}

@media (max-width: 767px) {
  .site-accessibility-trigger {
    width: 2.16rem;
    min-height: 3.36rem;
    padding: 0.54rem 0.24rem;
    border-radius: 0.84rem 0 0 0.84rem;
  }

  .site-accessibility-trigger svg {
    width: 1.08rem;
    height: 1.08rem;
  }

  .site-accessibility-trigger span {
    display: none;
  }

  .site-header__brand img {
    height: 8.45rem;
  }

  .site-nav--desktop {
    display: none;
  }

  .site-header__inner {
    min-height: auto;
    align-items: center;
    

  }

  .site-header__brand {
    align-self: center;
  }

  .site-header__actions {
    min-height: auto;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    align-self: center;
  }

  .site-menu-toggle {
    display: inline-flex;
    width: 2.4rem;
    height: 1.9rem;
    gap: 0.38rem;
    margin-top: 0;
  }

  .site-menu-toggle span {
    height: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  body.is-menu-open .site-menu-toggle {
    justify-content: center;
  }

  body.is-menu-open .site-menu-toggle span:nth-child(1),
  body.is-menu-open .site-menu-toggle span:nth-child(2),
  body.is-menu-open .site-menu-toggle span:nth-child(3) {
    transform: none;
    opacity: 1;
  }

  iframe[src*="tabnav"],
  iframe[src*="limited-widget"],
  [id*="tabnav"],
  [class*="tabnav-widget"] {
    right: var(--site-shell-gutter) !important;
    left: auto !important;
    transform: none !important;
  }

  .site-drawer__inner {
    width: 100%;
    max-width: 100%;
    padding: calc(var(--site-mobile-header-height, 0px) + 0.8rem) var(--site-shell-gutter) 2rem;
  }

  .site-drawer__header {
    display: none;
  }

  .site-drawer__brand {
    display: none;
    position: relative;
    z-index: 2;
  }

  .site-drawer__brand img {
    height: 8.45rem;
  }

  .site-drawer__close {
    position: relative;
    width: 2.4rem;
    height: 1.9rem;
    font-size: 0;
    line-height: 0;
  }

  .site-drawer__close::before,
  .site-drawer__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82%;
    height: 2px;
    background: #111;
    transform: translate(-50%, -50%);
    transform-origin: center;
  }

  .site-drawer__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-drawer__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav__mobile-item {
    border-bottom: 1px solid rgba(5, 5, 5, 0.2);
  }

  .site-nav__mobile-link {
    padding: 1.05rem 0;
  }

  .site-nav__mobile-sublist {
    padding: 0 0 0.2rem;
  }

  .site-nav__mobile-sublist li {
    border-top: 0;
    border-bottom: 1px solid rgba(5, 5, 5, 0.14);
  }

  .site-nav__mobile-lang {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.3rem;
  }

  .site-nav__mobile-lang-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 1;
  }

  .site-nav__mobile-lang-link.is-active {
    opacity: 1;
  }

  .site-nav__mobile-lang-link img {
    display: block;
    width: 1.45rem;
    height: 1rem;
    object-fit: cover;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .projects-toolbar {
    margin-bottom: 2rem;
  }

  .projects-toolbar__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.25rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .projects-toolbar__filters::-webkit-scrollbar {
    display: none;
  }

  .projects-filter {
    order: 3;
  }

  .projects-filter--all {
    order: 1;
  }

  .projects-filter--active-group {
    order: 2;
  }

  .project-grid-card__meta {
    margin-top: 0.9rem;
  }

  .project-grid-card__group {
    font-size: 1rem;
  }

  .project-grid-card__corner {
    align-self: center;
    width: 1.1rem;
    height: 1.1rem;
  }

  .home-projects {
    padding-top: 0;
  }

.home-projects__inner {
  gap: 4.5rem;
}

  .home-projects__item,
  .home-projects__item.is-reversed {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .home-projects__item.is-reversed .home-projects__media,
  .home-projects__item.is-reversed .home-projects__meta {
    order: initial;
  }

  .home-projects__media {
    width: 80%;
  }

  .home-projects__item:not(.is-reversed) .home-projects__media {
    margin-right: auto;
  }

  .home-projects__item.is-reversed .home-projects__media {
    margin-left: auto;
  }

 .home-projects__media img,
.home-projects__placeholder {
  aspect-ratio: 1 / 1;
 
}

  .home-projects__meta {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .home-projects__item:not(.is-reversed) .home-projects__meta {
    margin-right: auto;
    text-align: left;
  }

  .home-projects__item.is-reversed .home-projects__meta {
    margin-left: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
  }

  .home-projects__item.is-reversed .home-projects__title {
    position: relative;
    display: inline-block;
    max-width: 100%;
    padding-left: 0;
  }

  .home-projects__item.is-reversed .home-projects__title::before,
  .home-projects__item.is-reversed .home-projects__title::after {
    content: none;
    position: absolute;
    left: 0;
    bottom: 0.08em;
    background: #000;
    pointer-events: none;
  }

  .home-projects__item.is-reversed .home-projects__title::before {
    width: 2px;
    height: 1.35rem;
  }

  .home-projects__item.is-reversed .home-projects__title::after {
    width: 1.35rem;
    height: 2px;
  }

  .home-projects__title,
  .home-projects__title-link {
    max-width: 100%;
  }

  .project-grid-card__title,
  .project-grid-card__title-link,
  body.site-shell .project-detail__title {
    font-size: 1.71rem !important;
    line-height: 120% !important;
    max-width: 100%;
    font-weight: 400;
  }

  .home-projects__group {
    margin-bottom: 0.45rem;
    font-size: 1.0rem;
    letter-spacing: 0.05em;
  }

  .home-projects__corner {
    width: 1.35rem;
    height: 1.35rem;
  }

  .home-projects__item:not(.is-reversed) .home-projects__corner {
    left: auto;
    right: 0;
    top: 0.0rem;
  }

  .home-projects__item.is-reversed .home-projects__corner {
    display: block;
    left: 0;
    right: auto;
    top: auto;
    bottom: 0.5rem;
  }

  .home-projects__item.is-reversed .home-projects__corner::before {
    right: auto;
    top: auto;
    bottom: 0;
    left: 0;
  }

  .home-projects__item.is-reversed .home-projects__corner::after {
    top: auto;
    bottom: 0;
    left: 0;
  }

  .site-footer {
    padding-top: 5rem;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.3rem;
  }

  .site-footer__contact {
    width: 100%;
  }

  .site-footer__contact p {
    white-space: nowrap;
  }

  .site-footer__right {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "social social"
      "eu brand";
    width: 100%;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
  }

  .site-footer__social {
    grid-area: social;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
  }

  .site-footer__eu {
    grid-area: eu;
    justify-self: start;
  }

  .site-footer__brand {
    grid-area: brand;
    justify-self: end;
  }

  .home-projects__item:not(.is-reversed) .home-projects__meta,
.home-projects__item:not(.is-reversed) .home-projects__group,
.home-projects__item:not(.is-reversed) .home-projects__title,
.home-projects__item:not(.is-reversed) .home-projects__title-link {
  text-align: left;
}


}



.page-static__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
}

.page-static__layout {
  box-sizing: border-box;
  width: 100%;
  max-width: 76rem;
  margin: 0;
}

.page-static__header {
  min-width: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.page-static__eu-brand {
  width: min(58%, 18rem);
  margin-top: 0;
  margin-top: clamp(1.6rem, 4vw, 2.5rem);
  margin-left: 20%;
  margin-right: auto;
}

.page-static__eu-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.page-static__title {
  margin: 0;
  font-size: 1.71rem !important;
  line-height: 120% !important;
  font-weight: 400;
  letter-spacing: -0.05em;
  color: #111;
}

.page-static__media {
  width: 100%;
  max-width: none;
  margin: clamp(2rem, 4vw, 3.6rem) 0 0;
}

.page-static--with-media .page-static__media {
  max-width: 78%;
}

.page-static__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-static__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 58%;
  max-width: none;
  margin: 0;
  margin-left: 20%;
  margin-right: auto;
}

.page-static__intro {
  width: 100%;
  margin: 0;
  font-size: 1.3rem;
  line-height: 120%;
  color: #111;
  font-weight: 700;
  margin-top: clamp(2rem, 5vw, 3.8rem);
}

.page-static--with-media .page-static__body {
  margin-top: clamp(2rem, 5vw, 4rem);
}

.page-static--with-media .page-static__intro {
  margin-top: 0;
}

.page-static--featured .page-static__intro {
  padding-left: 1.2rem;
  border-left: 3px solid #111;
  font-size: 1.08rem;
  font-weight: 600;
}

.page-static__content {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 3.8rem);
  font-size: 1rem;
  line-height: 1.6;
  color: #111;
}

.page-static--with-media .page-static__body > .page-static__content:first-child {
  margin-top: 0;
}

.page-static__content > *:first-child {
  margin-top: 0;
}

.page-static__content > *:last-child {
  margin-bottom: 0;
}

.page-static__content p,
.page-static__content ul,
.page-static__content ol,
.page-static__content blockquote,
.page-static__content figure {
  margin: 0 0 1.2rem;
}

.page-static__content p,
.page-static__content li,
.page-static__content div,
.page-static__content span {
  font-size: 1rem;
  line-height: 1.6;
}

.page-static__content h2,
.page-static__content h3,
.page-static__content h4 {
  margin: 2.4rem 0 0.85rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.page-static__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.page-static__content h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}

.page-static__content a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.page-static__content ul,
.page-static__content ol {
  padding-left: 1.4rem;
}

.page-static__content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page-static--eu-project .page-static__content .eu-project > p:last-child {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.18);
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(17, 17, 17, 0.72);
}

@media (max-width: 900px) {
  .page-static__inner {
    max-width: var(--site-max-width);
  }

  .page-static__layout {
    max-width: none;
    padding-left: 0;
  }

  .page-static__header,
  .page-static__media {
    max-width: none;
  }

  .page-static--with-media .page-static__media {
    max-width: none;
  }

  .page-static__title {
    max-width: none;
    font-size: 1.71rem !important;
  }

  .page-static__body {
    width: 100%;
    max-width: none;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
  }

  .page-static--with-media .page-static__body {
    margin-top: 2rem;
  }

  .page-static__media {
    margin-top: 1.5rem;
  }

  .page-static__eu-brand {
    width: min(100%, 14rem);
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.4rem;
  }

  .page-static__intro {
    width: 100%;
  }

  .page-static__body > .page-static__intro:first-child,
  .page-static__body > .page-static__content:first-child {
    margin-top: 0;
  }

  .page-static--featured .page-static__intro {
    padding-left: 1rem;
  }

  .page-static__content {
    width: 100%;
    margin-top: 2.4rem;
  }

  .project-detail__hero {
    margin-bottom: 1.7rem;
    max-width: none;
  }

  .project-detail__body {
    flex-direction: column;
    gap: 1.5rem;
  }

  .project-detail__intro,
  .project-detail__content,
  .project-detail__gallery-block,
  .project-detail__heading {
    max-width: none;
  }

  .project-detail__facts {
    gap: 0.8rem;
  }

  .project-detail__gallery-main {
    width: 100%;
    min-height: 0;
    overflow: hidden;
  }

  .project-detail__gallery-main .swiper-wrapper {
    align-items: flex-start;
  }

  .project-detail__gallery-label {
    font-size: 1.05rem;
  }


  .project-detail__gallery-main .swiper-slide.is-horizontal,
  .project-detail__gallery-main .swiper-slide.is-vertical {
    width: 100%;
  }

  .project-detail__gallery-main .swiper-slide.is-horizontal .project-detail__gallery-item img {
    aspect-ratio:  1.75 / 1;
  }

  .project-detail__gallery-main .swiper-slide.is-vertical .project-detail__gallery-item {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1.75 / 1;
    background: #f3f3f3;
  }

  .project-detail__gallery-main .swiper-slide.is-vertical .project-detail__gallery-item img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    margin: 0 auto;
  }

  .project-detail__gallery-arrow {
    display: none;
  }

  .project-detail__lightbox-dialog {
    padding-top: 0.75rem;
    padding-bottom: 1rem;
  }

  .project-detail__lightbox-arrow {
    display: none;
  }

  .project-detail__lightbox-figure {
    height: min(68vh, calc(100vh - 10rem));
  }

  .project-detail__lightbox-thumb {
    width: 4.8rem;
  }

  .project-detail__gallery-thumbs .swiper-slide {
    width: 5.1rem;
  }

  .project-detail__nav {
    gap: 1rem;
    margin-top: 2.8rem;
  }

  .project-grid-card__corner {
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
    align-self: center;
    width: 0.95rem;
    height: 1.2rem;
    margin-top: 0;
  }

}


