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

* {
  margin: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

ul, ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
}

/*==============================FONTS==============================*/
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.woff2") format("woff2"), url("../fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Prata";
  src: url("../fonts/Prata-Regular.woff2") format("woff2"), url("../fonts/Prata-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*==============================GENERAL==============================*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  min-width: 320px;
  min-height: 100vh;
  line-height: 1;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: 100%;
  min-height: 100%;
}

.center-wrapper {
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  line-height: 1.2;
}

p {
  margin-bottom: 20px;
}

a {
  outline: none;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

img {
  height: auto;
}

:root {
  --color-dark: #000;
  --color-text: #454545;
  --color-muted: #3f3f3f;
  --color-accent: #9a8f84;
  --color-bg: #f5f3ee;
  --color-heading-bg: #f0ebe5;
  --color-white: #fff;
  --color-border: #2c2c2c;
  --font-accent: "Prata", serif;
  --font-ui: "Gilroy", sans-serif;
  --font-body: "Roboto", sans-serif;
  --container: 1230px;
  --bp-nav: 1100px;
}

body.is-menu-open {
  overflow: hidden;
}

/*==============================FORM ELEMENTS==============================*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.btn--outline {
  height: 42px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: var(--color-white);
  font-size: 14px;
}
.btn--outline:hover, .btn--outline:active {
  background-color: rgba(255, 255, 255, 0.12);
}

.btn--outline-accent {
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  color: var(--color-accent);
  font-size: 14px;
}
.btn--outline-accent:hover, .btn--outline-accent:active {
  background-color: rgba(154, 143, 132, 0.1);
}

.input,
.textarea {
  width: 100%;
  padding: 10px 15px;
  background: #fff;
}
.input:focus,
.textarea:focus {
  outline: none;
}
.input::placeholder,
.textarea::placeholder {
  opacity: 0.6;
}

.checkbox input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.checkbox input[type=checkbox]:checked + .checkbox__title:before {
  background-image: url(../img/icons/icon-check.svg);
}
.checkbox__title {
  position: relative;
  display: block;
  padding-left: 26px;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}
.checkbox__title:before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #C4C4C4;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: 1;
}

.radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.radio input[type=radio]:checked + .radio__title:after {
  display: block;
}
.radio__title {
  position: relative;
  display: inline-block;
  font-size: 14px;
  padding-left: 26px;
  line-height: 22px;
  cursor: pointer;
}
.radio__title:before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: 1px solid #C4C4C4;
  border-radius: 50%;
  z-index: 1;
}
.radio__title:after {
  content: "";
  display: none;
  position: absolute;
  left: 5px;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  z-index: 5;
}

select {
  appearance: none;
  background-color: #fff;
}

/*==============================MODALS==============================*/
/*==============================INDEX==============================*/
/*-------------------------header-------------------------*/
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 58px 0;
  z-index: 50;
}
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 65px 0 32px;
}
.header__burger {
  display: none;
  position: relative;
  z-index: 70;
  width: 32px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 10px;
}
.header__burger::before, .header__burger::after,
.header__burger span {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-dark);
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.header__burger::before {
  top: 0;
}
.header__burger span {
  top: 11px;
}
.header__burger::after {
  bottom: 0;
}
.header__burger[aria-expanded=true] span {
  opacity: 0;
}
.header__burger[aria-expanded=true]::before {
  top: 11px;
  transform: rotate(45deg);
}
.header__burger[aria-expanded=true]::after {
  bottom: 11px;
  transform: rotate(-45deg);
}
.header__burger:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 4px;
}

.header-logo {
  display: flex;
  align-items: flex-start;
  font-family: var(--font-accent);
  gap: 20px;
  color: var(--color-dark);
  z-index: 70;
}
.header-logo__icon {
  width: 94px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.header-logo__content {
  display: flex;
  flex-direction: column;
  padding-top: 2px;
}
.header-logo__title {
  font-size: 32px;
  line-height: 1;
}
.header-logo__text {
  font-size: 16px;
  line-height: 1.4;
}
.header-logo:hover, .header-logo:focus-visible {
  opacity: 0.7;
}
.header-logo:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 4px;
}

.header-nav {
  position: relative;
  padding-top: 8px;
}
.header-nav__list {
  display: flex;
  gap: 54px;
}
.header-nav__link {
  color: var(--color-dark);
  font-family: var(--font-ui);
  font-size: 16px;
}
.header-nav__link:hover, .header-nav__link:active {
  opacity: 0.55;
}
.header-nav__link:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 4px;
}
.header-nav__social {
  position: absolute;
  right: -5px;
  top: 37px;
  display: flex;
  gap: 16px;
}
.header-nav__social-btn {
  color: rgba(255, 255, 255, 0.8);
}
.header-nav__social-btn:hover, .header-nav__social-btn:active {
  color: var(--color-white);
}
.header-nav__social-btn:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

@media (max-width: 1200px) {
  .header__body {
    padding: 0;
  }
  .header-nav__list {
    gap: 28px;
  }
}
@media (max-width: 1100px) {
  .header {
    padding: 24px 0;
  }
  .header__burger {
    display: block;
  }
  .header-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    padding: 120px 32px 40px;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    gap: 40px;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
  }
  .header-nav.is-open {
    transform: none;
    visibility: visible;
  }
  .header-nav__list {
    flex-direction: column;
    gap: 22px;
  }
  .header-nav__link {
    font-size: 22px;
  }
  .header-nav__social {
    position: static;
  }
  .header-nav__social-btn {
    color: var(--color-dark);
  }
  .header-nav__social-btn:focus-visible {
    outline-color: var(--color-dark);
  }
}
@media (max-width: 600px) {
  .header-logo {
    gap: 12px;
  }
  .header-logo__icon {
    width: 72px;
    height: 32px;
  }
  .header-logo__title {
    font-size: 22px;
  }
  .header-logo__text {
    font-size: 12px;
  }
}
/*-------------------------promo-------------------------*/
.promo {
  position: relative;
}
.promo .promo-slider__buttons {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 7px;
  top: 45.5%;
  right: 20px;
  left: auto;
  bottom: auto;
  width: auto;
  z-index: 20;
  transform: translateY(-50%);
}
.promo .promo-slider__buttons .swiper-pagination-bullet {
  display: inline-block;
  opacity: 1;
  width: auto;
  height: auto;
  padding: 4px 5px 4px 0;
  border-radius: 0;
  background: transparent;
  border-right: 2px solid var(--color-white);
  font-family: var(--font-ui);
  font-size: 22px;
  color: var(--color-white);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.promo .promo-slider__buttons .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.promo .promo-slider__buttons .swiper-pagination-bullet:hover {
  opacity: 0.75;
}
.promo .promo-slider__buttons .swiper-pagination-bullet:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

.promo-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.promo-slider .swiper-wrapper,
.promo-slider .swiper-slide {
  height: 100%;
}
.promo-slider__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-content {
  height: 812px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 145px;
}
.promo-content__title {
  margin-bottom: 0;
  font-family: var(--font-accent);
  font-weight: normal;
  font-size: 58px;
  line-height: 1.3;
}
.promo-content__title span {
  display: block;
  font-size: 74px;
}
.promo-content__subtitle {
  margin-bottom: 22px;
  padding-left: 5px;
  font-family: var(--font-ui);
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--color-muted);
}

.form-promo {
  border-radius: 5px;
  font-family: var(--font-body);
}
.form-promo__body {
  display: flex;
}
.form-promo__inputwrap {
  position: relative;
}
.form-promo__inputcode {
  position: absolute;
  padding-right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-right: 1px solid rgba(209, 179, 157, 0.5);
  left: 15px;
}
.form-promo__input {
  flex: 0 0 225px;
  padding: 0 20px 0 65px;
  width: 225px;
  border: 0.5px solid var(--color-border);
  outline: none;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  color: var(--color-dark);
  height: 46px;
  background: #efeae4;
}
.form-promo__input::placeholder {
  font-size: 12px;
  color: rgba(144, 143, 142, 0.7);
}
.form-promo__input:focus {
  border-color: var(--color-accent);
}
.form-promo__input:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 2px;
}
.form-promo__btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #2c2c2c 0%, #040404 100%);
  padding: 0 24px;
  border-radius: 0 5px 5px 0;
  color: var(--color-white);
  text-transform: uppercase;
  justify-content: center;
  height: 46px;
}
.form-promo__btn:hover, .form-promo__btn:active {
  background: linear-gradient(90deg, #3a3a3a 0%, #1a1a1a 100%);
}
.form-promo__btn:focus-visible {
  outline: 2px solid var(--color-dark);
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .promo-content {
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .promo-content {
    height: 100svh;
    min-height: 620px;
    padding: 110px 0 48px;
    justify-content: flex-end;
  }
  .promo-content__title {
    font-size: 32px;
  }
  .promo-content__title span {
    font-size: 40px;
  }
  .promo-content__subtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .promo .promo-slider__buttons {
    right: 12px;
  }
  .promo .promo-slider__buttons .swiper-pagination-bullet {
    font-size: 16px;
  }
  .form-promo {
    width: 100%;
  }
  .form-promo__body {
    flex-direction: column;
  }
  .form-promo__input {
    width: 100%;
    flex: none;
    border-right: 0.5px solid var(--color-border);
    border-radius: 5px 5px 0 0;
  }
  .form-promo__btn {
    width: 100%;
    border-radius: 0 0 5px 5px;
  }
}
/*-------------------------section heading-------------------------*/
.section-heading {
  position: relative;
  background: var(--color-heading-bg);
  overflow: hidden;
}
.section-heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/everest-pattern-2.webp") center/100% 100% no-repeat;
  opacity: 0.75;
  pointer-events: none;
}
.section-heading__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 398px) 150px;
  align-items: center;
  gap: 40px;
  min-height: 181px;
}
.section-heading__title {
  margin: 0;
  font-family: var(--font-accent);
  font-weight: normal;
  font-size: 44px;
  color: var(--color-text);
  text-transform: uppercase;
}
.section-heading__text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-text);
}
.section-heading__note {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: 14px;
  line-height: 1.29;
  text-align: right;
  color: var(--color-text);
}
.section-heading__note::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin: 0 0 8px auto;
  background: var(--color-accent);
}

@media (max-width: 900px) {
  .section-heading__body {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 36px 0;
  }
  .section-heading__title {
    font-size: 32px;
  }
  .section-heading__text {
    font-size: 16px;
  }
  .section-heading__note {
    text-align: left;
  }
  .section-heading__note::before {
    margin-left: 0;
  }
}
/*-------------------------projects-------------------------*/
.projects {
  overflow-x: hidden;
  background: var(--color-bg);
}
.projects__list {
  padding: 7px 0 0;
}
.projects__group {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 0 0 80px;
}

.projects-intro {
  position: relative;
  overflow: hidden;
  background: var(--color-heading-bg);
  padding: 70px 0 88px;
  min-height: 367px;
  text-align: center;
}
.projects-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/everest-pattern-3.webp") center/100% 100% no-repeat;
  opacity: 0.75;
  pointer-events: none;
}
.projects-intro .center-wrapper {
  position: relative;
  z-index: 1;
}
.projects-intro__label {
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: #978c82;
}
.projects-intro__title {
  margin: 0 0 22px;
  font-family: var(--font-accent);
  font-weight: normal;
  font-size: 54px;
  line-height: 1.15;
  color: #40403f;
  text-transform: uppercase;
}
.projects-intro__text {
  margin: 0 auto;
  max-width: 568px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.3;
  color: #403f3e;
}

.project-card {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.project-card .project-card__title,
.project-card .project-card__location {
  text-transform: uppercase;
}

.project-card__unit {
  font-size: 16px;
  font-weight: 300;
}
.project-card__unit sup {
  position: relative;
  top: -0.45em;
  font-size: 10px;
  line-height: 1;
  vertical-align: baseline;
}

.project-card__progress {
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 5;
}
.project-card__progress .swiper-pagination-bullet {
  display: block;
  flex: 0 0 30px;
  width: 30px;
  height: 3px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  opacity: 1;
  background: #d9d9d9;
  overflow: hidden;
  cursor: pointer;
}
.project-card__progress .swiper-pagination-bullet span {
  display: block;
  width: 0;
  height: 100%;
  background: #3f3f3e;
}
.project-card__progress .swiper-pagination-bullet-active span {
  animation: project-progress 5s linear forwards;
}
.project-card__progress .swiper-pagination-bullet:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 2px;
}

.project-card--overlay {
  height: 546px;
  overflow: hidden;
  color: var(--color-white);
}
.project-card--overlay .project-card__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
}
.project-card--overlay .project-card__slider .swiper-wrapper,
.project-card--overlay .project-card__slider .swiper-slide {
  height: 100%;
}
.project-card--overlay .project-card__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card--overlay .project-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  padding: 48px 50px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
.project-card--overlay .project-card__cta {
  flex-shrink: 0;
}
.project-card--overlay .project-card__main {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: end;
  gap: 28px 36px;
  width: 100%;
}
.project-card--overlay .project-card__identity {
  position: relative;
  padding-right: 24px;
}
.project-card--overlay .project-card__identity::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
  height: 90px;
  background: var(--color-white);
}
.project-card--overlay .project-card__title {
  margin: 0 0 6px;
  font-family: var(--font-accent);
  font-weight: normal;
  font-size: 54px;
  line-height: 1;
  color: #fbfbfb;
}
.project-card--overlay .project-card__location {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}
.project-card--overlay .project-card__desc {
  margin: 0;
  max-width: 370px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.1;
  align-self: center;
}
.project-card--overlay .project-card__stats {
  display: flex;
  gap: 28px;
}
.project-card--overlay .project-card__stat {
  min-width: 72px;
}
.project-card--overlay .project-card__stat dt {
  order: 2;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}
.project-card--overlay .project-card__stat dd {
  order: 1;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.17;
}
.project-card--overlay .project-card__stat {
  display: flex;
  flex-direction: column;
}
.project-card--overlay .project-card__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
}

@keyframes project-progress {
  to {
    width: 100%;
  }
}
@media (max-width: 1100px) {
  .project-card--overlay {
    height: auto;
    min-height: 480px;
  }
  .project-card--overlay .project-card__slider {
    position: relative;
    height: 420px;
  }
  .project-card--overlay .project-card__content {
    position: relative;
    padding: 24px 20px 36px;
    align-items: stretch;
  }
  .project-card--overlay .project-card__main {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .project-card--overlay .project-card__identity::after {
    display: none;
  }
  .project-card--overlay .project-card__title {
    font-size: 40px;
  }
  .project-card--overlay .project-card__stats {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .project-card--overlay .project-card__progress {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 12px 0 0;
  }
  .project-card--overlay .project-card__cta {
    align-self: flex-end;
  }
}
@media (max-width: 600px) {
  .project-card--overlay .project-card__slider {
    height: 280px;
  }
  .project-card--overlay .project-card__title {
    font-size: 32px;
  }
  .project-card--overlay .project-card__desc,
  .project-card--overlay .project-card__location {
    font-size: 16px;
  }
  .project-card--overlay .project-card__stat dd {
    font-size: 20px;
  }
}
.project-card--stack {
  height: 613px;
  background: #000;
}
.project-card--stack .project-card__slider {
  inset: 0 0 67px;
}
.project-card--stack .project-card__content {
  padding: 40px 50px 56px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 45%, #000 100%);
}
.project-card--stack .project-card__main {
  grid-template-columns: minmax(240px, 1fr) auto;
  align-items: end;
  gap: 24px 40px;
}
.project-card--stack .project-card__identity {
  padding-right: 0;
}
.project-card--stack .project-card__identity::after {
  display: none;
}
.project-card--stack .project-card__location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 18px;
}
.project-card--stack .project-card__location svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.project-card--stack .project-card__title {
  margin-bottom: 12px;
}
.project-card--stack .project-card__title::after {
  content: "";
  display: block;
  width: 71px;
  height: 1px;
  margin-top: 14px;
  background: var(--color-white);
}
.project-card--stack .project-card__desc {
  max-width: 309px;
  align-self: start;
}
.project-card--stack .project-card__aside {
  display: flex;
  align-items: center;
  gap: 28px;
}
.project-card--stack .project-card__progress {
  bottom: 22px;
}

.project-card--split {
  display: grid;
  grid-template-columns: minmax(280px, 599px) 1fr;
  min-height: 546px;
  background: var(--color-bg);
  color: var(--color-text);
}
.project-card--split .project-card__media {
  position: relative;
  overflow: hidden;
  min-height: 546px;
}
.project-card--split .project-card__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100%;
}
.project-card--split .project-card__slider .swiper-wrapper,
.project-card--split .project-card__slider .swiper-slide {
  height: 100%;
}
.project-card--split .project-card__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card--split .project-card__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  z-index: 2;
  width: 100%;
  transform: none;
}
.project-card--split .project-card__content {
  display: flex;
  flex-direction: column;
  padding: 76px 20px 40px 80px;
}
.project-card--split .project-card__title {
  margin: 0 0 14px;
  font-family: var(--font-accent);
  font-weight: normal;
  font-size: 38px;
  line-height: 1;
  color: var(--color-text);
}
.project-card--split .project-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}
.project-card--split .project-card__location svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.project-card--split .project-card__desc {
  margin: 0;
  max-width: 370px;
  padding-top: 16px;
  border-top: 1px solid var(--color-accent);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
}
.project-card--split .project-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: auto;
  padding-top: 48px;
}
.project-card--split .project-card__stat {
  min-width: 72px;
  display: flex;
  flex-direction: column;
}
.project-card--split .project-card__stat dt {
  order: 2;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}
.project-card--split .project-card__stat dd {
  order: 1;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.17;
}
.project-card--split .project-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
}
.project-card--split .project-card__deadline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: #988d83;
}
.project-card--split .project-card__deadline svg {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .project-card--stack {
    height: auto;
  }
  .project-card--stack .project-card__slider {
    inset: auto;
    height: 420px;
  }
  .project-card--stack .project-card__main {
    grid-template-columns: 1fr;
  }
  .project-card--stack .project-card__aside {
    flex-wrap: wrap;
  }
  .project-card--split {
    grid-template-columns: 1fr;
  }
  .project-card--split .project-card__media {
    min-height: 360px;
  }
  .project-card--split .project-card__content {
    padding: 28px 0 8px;
  }
  .projects-intro {
    padding: 48px 0 60px;
  }
  .projects-intro__title {
    font-size: 36px;
  }
  .projects-intro__text {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .project-card--stack .project-card__slider,
  .project-card--split .project-card__media {
    min-height: 0;
    height: 280px;
  }
  .project-card--split .project-card__title {
    font-size: 28px;
  }
  .project-card--split .project-card__desc,
  .project-card--split .project-card__location {
    font-size: 16px;
  }
  .project-card--split .project-card__stat dd {
    font-size: 20px;
  }
  .project-card--split .project-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .project-card--split .project-card__stats {
    gap: 16px 24px;
    padding-top: 24px;
  }
  .projects-intro__title {
    font-size: 28px;
  }
}
/*-------------------------history-------------------------*/
.history {
  background: var(--color-bg);
}

.history-scene {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1920/800;
}
.history-scene__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  pointer-events: none;
}
.history-scene__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(180deg, rgba(239, 234, 229, 0) 0%, var(--color-bg) 100%);
  pointer-events: none;
}
.history-scene .center-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
}
.history-scene__intro {
  max-width: 550px;
  padding-top: 80px;
}
.history-scene__title {
  margin: 0 0 14px;
  font-family: var(--font-accent);
  font-weight: normal;
  font-size: 58px;
  line-height: 1.15;
  color: var(--color-dark);
}
.history-scene__title span {
  display: block;
}
.history-scene__text {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 24px;
  line-height: 1.17;
  color: var(--color-text);
}
.history-scene__text span {
  display: block;
}

.history-caps {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.history-caps__item {
  position: absolute;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 6px;
  align-items: end;
}
.history-caps__item:nth-child(1) {
  left: 38%;
  top: 330px;
}
.history-caps__item:nth-child(2) {
  left: 55.9%;
  top: 31.5%;
}
.history-caps__item:nth-child(3) {
  left: 69.6%;
  top: 21.1%;
}
.history-caps__item:nth-child(4) {
  left: 81.4%;
  top: 3.3%;
}
.history-caps__value {
  grid-column: 1;
  grid-row: 1;
  font-family: var(--font-accent);
  font-size: 24px;
  line-height: 1.16;
  color: var(--color-muted);
}
.history-caps__unit {
  grid-column: 2;
  grid-row: 1;
  padding-bottom: 2px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: var(--color-text);
}
.history-caps__label {
  grid-column: 1/-1;
  grid-row: 2;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-text);
  white-space: pre-line;
}

.history-timeline {
  position: relative;
  z-index: 1;
  padding: 0 0 80px;
  margin-top: -40px;
}
.history-timeline__list {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 72px;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.history-timeline__list::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 1px;
  background: #bababa;
  pointer-events: none;
}
.history-timeline__item {
  position: relative;
  padding-top: 36px;
}
.history-timeline__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #3f3f3e;
  border-radius: 50%;
  background: #3f3f3e;
  box-shadow: inset 0 0 0 2px var(--color-bg);
  z-index: 1;
}
.history-timeline__item--future .history-timeline__dot {
  background: #a4a4a4;
  border-color: #b1b1b1;
  box-shadow: inset 0 0 0 2px var(--color-bg);
}
.history-timeline__year {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-accent);
  font-size: 38px;
  line-height: 1;
  color: var(--color-muted);
}
.history-timeline__title {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 24px;
  color: #4a4a4a;
}
.history-timeline__text {
  margin: 0;
  max-width: 262px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.4;
  color: #4a4a4a;
}

.history-scene__title span,
.history-scene__text span,
.history-caps__item,
.history-timeline__item {
  opacity: 0;
  transform: translateX(-24px);
}

.history.is-inview .history-scene__title span,
.history.is-inview .history-scene__text span,
.history.is-inview .history-caps__item,
.history.is-inview .history-timeline__item {
  animation: history-reveal 0.7s ease forwards;
}
.history.is-inview .history-scene__title span:nth-child(1) {
  animation-delay: 0.05s;
}
.history.is-inview .history-scene__title span:nth-child(2) {
  animation-delay: 0.18s;
}
.history.is-inview .history-scene__text span:nth-child(1) {
  animation-delay: 0.32s;
}
.history.is-inview .history-scene__text span:nth-child(2) {
  animation-delay: 0.44s;
}
.history.is-inview .history-caps__item:nth-child(1) {
  animation-delay: 0.6s;
}
.history.is-inview .history-caps__item:nth-child(2) {
  animation-delay: 0.78s;
}
.history.is-inview .history-caps__item:nth-child(3) {
  animation-delay: 0.96s;
}
.history.is-inview .history-caps__item:nth-child(4) {
  animation-delay: 1.14s;
}
.history.is-inview .history-timeline__item:nth-child(1) {
  animation-delay: 1.2s;
}
.history.is-inview .history-timeline__item:nth-child(2) {
  animation-delay: 1.34s;
}
.history.is-inview .history-timeline__item:nth-child(3) {
  animation-delay: 1.48s;
}
.history.is-inview .history-timeline__item:nth-child(4) {
  animation-delay: 1.6s;
}

@keyframes history-reveal {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .history-scene__title span,
  .history-scene__text span,
  .history-caps__item,
  .history-timeline__item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
@media (max-width: 1100px) {
  .history-scene {
    aspect-ratio: auto;
    height: auto;
    min-height: 480px;
    padding: 48px 0 0;
  }
  .history-scene .center-wrapper {
    height: auto;
  }
  .history-scene__title {
    font-size: 36px;
  }
  .history-scene__text {
    font-size: 18px;
  }
  .history-caps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
    margin: 36px 0 20px;
    inset: auto;
  }
  .history-caps__item {
    position: static;
  }
  .history-timeline {
    margin-top: 0;
  }
  .history-timeline__list {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 28px;
  }
  .history-timeline__list::before {
    top: 10px;
    bottom: 10px;
    left: 9px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .history-timeline__item--future {
    display: none;
  }
}
@media (max-width: 600px) {
  .history-scene__title {
    font-size: 28px;
  }
  .history-timeline__year {
    font-size: 28px;
  }
  .history-timeline__title {
    font-size: 20px;
  }
}
