@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Manrope:wght@200..800&display=swap");
body, html {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  overflow-x: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background: #fff;
  padding-top: 51px;
  padding-bottom: 43px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header .wrapper {
  max-width: 1444px;
  position: relative;
  z-index: 1201;
}
.site-header .wrapper > a img {
  transition: filter 0.25s ease;
}
.site-header .wrapper .site-header__nav {
  gap: 42px;
}
.site-header .wrapper .site-header__nav li a {
  font-size: 16px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.5);
  line-height: 22px;
}
.site-header .wrapper .site-header__nav li a.phone-number {
  font-size: 18px;
  font-weight: 900;
  color: #000;
}
.site-header .wrapper .site-header__nav li a:hover {
  color: #000;
}
.site-header .wrapper .site-header__nav li a.active {
  color: #000;
}
.site-header .site-header__menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: rgba(0, 0, 0, 0.84);
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.site-header .site-header__menu-toggle span,
.site-header .site-header__menu-toggle span::before,
.site-header .site-header__menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
  content: "";
}
.site-header .site-header__menu-toggle span {
  position: relative;
}
.site-header .site-header__menu-toggle span::before {
  position: absolute;
  left: 0;
  top: -6px;
}
.site-header .site-header__menu-toggle span::after {
  position: absolute;
  left: 0;
  top: 6px;
}
.site-header.is-mobile-open .site-header__menu-toggle span {
  background: transparent;
}
.site-header.is-mobile-open .site-header__menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.is-mobile-open .site-header__menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}
.site-header .site-header__mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1100;
  display: block;
  visibility: hidden;
  pointer-events: none;
}
.site-header .site-header__mobile-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.44);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.site-header .site-header__mobile-panel {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: #fff;
  padding: 110px 24px 28px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.16);
}
.site-header .site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-header .site-header__mobile-nav li a {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.74);
}
.site-header .site-header__mobile-nav li a.phone-number {
  font-size: 19px;
  color: #000;
}
.site-header .site-header__mobile-overlay.is-visible {
  visibility: visible;
  pointer-events: auto;
}
.site-header .site-header__mobile-overlay.is-open .site-header__mobile-backdrop {
  opacity: 1;
}
.site-header .site-header__mobile-overlay.is-open .site-header__mobile-panel {
  transform: translateY(0);
  opacity: 1;
}

body.page-inner {
  padding-top: 136px;
}

body.page-home .site-header {
  background: transparent;
  box-shadow: none;
}
body.page-home .site-header .wrapper > a img {
  filter: brightness(0) invert(1);
}
body.page-home .site-header .wrapper .site-header__nav li a {
  color: rgba(255, 255, 255, 0.78);
}
body.page-home .site-header .wrapper .site-header__nav li a.phone-number {
  color: #fff;
}
body.page-home .site-header .wrapper .site-header__nav li a:hover, body.page-home .site-header .wrapper .site-header__nav li a.active {
  color: #fff;
}
body.page-home .site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
body.page-home .site-header.is-scrolled .wrapper > a img {
  filter: none;
}
body.page-home .site-header.is-scrolled .wrapper .site-header__nav li a {
  color: rgba(0, 0, 0, 0.5);
}
body.page-home .site-header.is-scrolled .wrapper .site-header__nav li a.phone-number {
  color: #000;
}
body.page-home .site-header.is-scrolled .wrapper .site-header__nav li a:hover, body.page-home .site-header.is-scrolled .wrapper .site-header__nav li a.active {
  color: #000;
}
body.page-home .site-header.is-scrolled .wrapper .site-header__menu-toggle {
  color: rgba(0, 0, 0, 0.84);
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.96);
}
body.page-home .site-header .site-header__menu-toggle {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}
body.page-home .site-header.is-mobile-open .wrapper > a img {
  filter: none;
}
body.page-home .site-header.is-mobile-open .site-header__menu-toggle {
  color: rgba(0, 0, 0, 0.84);
  border-color: rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.96);
}

.site-footer {
  background: linear-gradient(180deg, #141414 0%, #101010 100%);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}
.site-footer a {
  transition: color 0.25s ease, opacity 0.25s ease;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer .site-footer__top {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .site-footer__wrapper {
  max-width: 1444px;
  min-height: 702px;
}
.site-footer .site-footer__brand {
  width: 100%;
  max-width: 64.6%;
  position: relative;
  padding: 108px 72px 0 52px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .site-footer__logo {
  display: inline-flex;
  width: fit-content;
}
.site-footer .site-footer__logo img {
  width: 250px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.site-footer .site-footer__description {
  max-width: 560px;
  margin-top: 72px;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer .site-footer__phone-box {
  margin-top: 88px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .site-footer__phone-box span {
  font-size: 20px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .site-footer__phone-box a {
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
}
.site-footer .site-footer__art {
  position: absolute;
  right: 34px;
  bottom: 0;
  width: 540px;
  height: 390px;
  pointer-events: none;
  isolation: isolate;
}
.site-footer .site-footer__art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom right;
  mix-blend-mode: lighten;
}
.site-footer .site-footer__side {
  width: 100%;
  max-width: 35.4%;
}
.site-footer .site-footer__catalog,
.site-footer .site-footer__menus,
.site-footer .site-footer__contact {
  padding-left: 72px;
  padding-right: 56px;
}
.site-footer .site-footer__catalog {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 170px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  font-weight: 500;
}
.site-footer .site-footer__catalog-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.site-footer .site-footer__catalog-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.site-footer .site-footer__menus {
  padding-top: 58px;
  padding-bottom: 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 38px;
}
.site-footer .site-footer__menu h3 {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.38);
}
.site-footer .site-footer__menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .site-footer__menu ul li a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.62);
}
.site-footer .site-footer__contact {
  padding-top: 36px;
  padding-bottom: 42px;
}
.site-footer .site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .site-footer__contact-item:not(:first-child) {
  margin-top: 26px;
}
.site-footer .site-footer__contact-item span {
  font-size: 15px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.42);
}
.site-footer .site-footer__contact-item p,
.site-footer .site-footer__contact-item a {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.site-footer .site-footer__bottom {
  background: rgba(255, 255, 255, 0.03);
}
.site-footer .site-footer__bottom-wrapper {
  max-width: 1444px;
  min-height: 138px;
  padding: 36px 52px 34px;
}
.site-footer .site-footer__copyright p {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.34);
}
.site-footer .site-footer__copyright p:not(:first-child) {
  margin-top: 4px;
}
.site-footer .site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer .site-footer__legal a {
  position: relative;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .site-footer__legal a:not(:last-child) {
  padding-right: 12px;
}
.site-footer .site-footer__legal a:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 0;
  color: rgba(255, 255, 255, 0.28);
}

.projects-page__insights {
  padding: 56px 0 58px;
  background: #262626;
}
.projects-page__insights .projects-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 52px;
}

.projects-page__insights-head {
  align-items: start;
}
.projects-page__insights-head p {
  font-weight: 300;
  font-size: 30px;
  line-height: 57px;
  color: #999999;
  text-align: right;
}

.projects-page__insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.projects-page__insights-eyebrow span:last-child {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #999999;
}

.projects-page__insights-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}

.projects-page__insight-grid {
  margin-top: 108px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.projects-page__insight-card {
  display: block;
  border-radius: 18px;
  background: #1b1b1b;
  overflow: hidden;
}

.projects-page__insight-media {
  height: 188px;
  margin: 6px 6px 0;
  position: relative;
}
.projects-page__insight-media .cover {
  overflow: hidden;
  border-radius: 12px;
}
.projects-page__insight-media img {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: center;
}

.projects-page__insight-arrow {
  position: absolute;
  right: 47px;
  bottom: -20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #9E7C5A;
  border: 1px solid #927456;
  box-shadow: -12px 4px 33.2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}

.projects-page__insight-number {
  font-family: "Cinzel", serif;
  position: absolute;
  left: 47px;
  bottom: -25px;
  font-weight: 400;
  font-size: 32px;
  color: #DADADA;
}

.projects-page__insight-body {
  padding: 31px 48px 33px;
}
.projects-page__insight-body h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  color: #FFFFFF;
}

@media (max-width: 1439px) {
  .site-footer .site-footer__wrapper {
    min-height: auto;
  }
  .site-footer .site-footer__brand {
    max-width: 60%;
    padding-right: 44px;
  }
  .site-footer .site-footer__side {
    max-width: 40%;
  }
  .site-footer .site-footer__catalog,
  .site-footer .site-footer__menus,
  .site-footer .site-footer__contact {
    padding-left: 44px;
    padding-right: 36px;
  }
  .site-footer .site-footer__art {
    width: 440px;
    height: 330px;
    right: 6px;
  }
}
@media (max-width: 1199px) {
  body.page-inner {
    padding-top: 98px;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
  .site-header {
    padding-top: 24px;
    padding-bottom: 22px;
  }
  .site-header .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .site-header .wrapper > .site-header__logo img {
    width: 170px;
    height: auto;
  }
  .site-header .wrapper .site-header__nav {
    display: none;
  }
  .site-header .site-header__menu-toggle {
    display: inline-flex;
  }
  .site-footer .site-footer__brand,
  .site-footer .site-footer__side {
    max-width: 100%;
  }
  .site-footer .site-footer__brand {
    padding: 64px 32px 300px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .site-footer .site-footer__description {
    margin-top: 48px;
    max-width: 100%;
    font-size: 22px;
  }
  .site-footer .site-footer__phone-box {
    margin-top: 52px;
  }
  .site-footer .site-footer__art {
    right: 32px;
    bottom: -42px;
  }
  .site-footer .site-footer__catalog {
    min-height: 110px;
    padding: 34px 32px;
  }
  .site-footer .site-footer__menus {
    padding: 42px 32px;
  }
  .site-footer .site-footer__contact {
    padding: 32px;
  }
  .site-footer .site-footer__bottom-wrapper {
    min-height: auto;
    padding: 28px 32px;
  }
}
@media (max-width: 767px) {
  .site-header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .site-header .site-header__mobile-panel {
    width: 100%;
    max-width: 100%;
    padding: 96px 16px 20px;
  }
  .site-header .site-header__mobile-nav li a {
    font-size: 17px;
  }
  .site-header .site-header__mobile-nav li a.phone-number {
    font-size: 18px;
  }
  .site-footer .site-footer__brand {
    padding: 48px 20px 248px;
  }
  .site-footer .site-footer__logo img {
    width: 190px;
  }
  .site-footer .site-footer__description {
    margin-top: 34px;
    font-size: 18px;
    line-height: 1.5;
  }
  .site-footer .site-footer__phone-box {
    margin-top: 38px;
  }
  .site-footer .site-footer__phone-box span {
    font-size: 16px;
  }
  .site-footer .site-footer__phone-box a {
    font-size: 19px;
  }
  .site-footer .site-footer__art {
    width: 280px;
    height: 220px;
    right: 12px;
    bottom: -24px;
  }
  .site-footer .site-footer__catalog,
  .site-footer .site-footer__menus,
  .site-footer .site-footer__contact {
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-footer .site-footer__catalog {
    min-height: 92px;
    padding-top: 26px;
    padding-bottom: 26px;
    font-size: 14px;
  }
  .site-footer .site-footer__menus {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .site-footer .site-footer__menu h3 {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .site-footer .site-footer__menu ul {
    gap: 6px;
  }
  .site-footer .site-footer__menu ul li a {
    font-size: 16px;
  }
  .site-footer .site-footer__contact {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .site-footer .site-footer__contact-item span {
    font-size: 14px;
  }
  .site-footer .site-footer__contact-item p,
  .site-footer .site-footer__contact-item a {
    font-size: 14px;
  }
  .site-footer .site-footer__bottom-wrapper {
    padding: 24px 20px;
  }
  .site-footer .site-footer__copyright p {
    font-size: 13px;
  }
  .site-footer .site-footer__legal {
    gap: 4px;
  }
  .site-footer .site-footer__legal a {
    font-size: 13px;
  }
  .site-footer .site-footer__legal a:not(:last-child) {
    padding-right: 10px;
  }
}
.contact-page {
  background: #F6F6F6;
}
.contact-page .contact-page__hero {
  padding-top: 98px;
  padding-bottom: 132px;
}
.contact-page .contact-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
}
.contact-page .contact-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}
.contact-page .contact-page__eyebrow span {
  font-size: 18px;
  line-height: 30px;
  color: #666;
}
.contact-page .contact-page__eyebrow-dot {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  position: relative;
}
.contact-page .contact-page__eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
}
.contact-page .contact-page__hero-main {
  max-width: 100%;
}
.contact-page .contact-page__hero-main h1 {
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  color: #454545;
}
.contact-page .contact-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
}
.contact-page .contact-page__button {
  min-width: 217px;
  height: 70px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(275.19deg, #B4906C 2.8%, #7B6147 95.13%);
  border: 1px solid #9A7F63;
  box-shadow: 0px 14px 54.5px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  text-shadow: 0px 0px 22.7px #FFBC78;
}
.contact-page .contact-page__button-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9E7C5A;
  border: 1px solid #927456;
  box-shadow: -12px 4px 33.2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.contact-page .contact-page__info {
  margin-top: 62px;
}
.contact-page .contact-page__card {
  border: 1px solid #F6E5D4;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.03);
}
.contact-page .contact-page__card-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 18px 26px;
  font-weight: 500;
  font-size: 16px;
  line-height: auto;
  color: #9E7C5A;
  border-bottom: 1px solid #F6E5D4;
}
.contact-page .contact-page__tax-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-page .contact-page__tax-item {
  min-height: 88px;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-page .contact-page__tax-item:nth-child(odd) {
  border-right: 1px solid #F6E5D4;
}
.contact-page .contact-page__tax-item:nth-child(-n+2) {
  border-bottom: 1px solid #F6E5D4;
}
.contact-page .contact-page__tax-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #949494;
}
.contact-page .contact-page__tax-item strong {
  color: #000;
  font-weight: 400;
}
.contact-page .contact-page__office-head {
  min-height: 62px;
  padding: 18px 26px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #F6E5D4;
}
.contact-page .contact-page__office-head img {
  width: 150px;
  height: auto;
  display: block;
}
.contact-page .contact-page__office-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-page .contact-page__office-address,
.contact-page .contact-page__office-phone {
  min-height: 176px;
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-page .contact-page__office-address {
  border-right: 1px solid #F6E5D4;
}
.contact-page .contact-page__office-address span {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #949494;
}
.contact-page .contact-page__office-address span:not(:first-child) {
  margin-top: 12px;
}
.contact-page .contact-page__office-address p,
.contact-page .contact-page__office-address a {
  color: #000;
  font-weight: 400;
}
.contact-page .contact-page__office-phone {
  align-items: center;
  text-align: center;
}
.contact-page .contact-page__office-phone span {
  font-weight: 300;
  font-size: 21.1944px;
  line-height: 36px;
  color: #8E8E8E;
}
.contact-page .contact-page__office-phone a {
  font-weight: 900;
  font-size: 27.25px;
  line-height: 33px;
  color: #000000;
}
.contact-page .contact-page__form-section {
  margin-top: 64px;
  min-width: 0;
}
.contact-page .contact-page__form-wrap {
  width: 100%;
  max-width: 100%;
}
.contact-page .contact-page__form-text {
  font-weight: 300;
  font-size: 26px;
  line-height: 46px;
  color: #454545;
}
.contact-page .contact-page__form {
  margin-top: 42px;
}
.contact-page .contact-page__form input,
.contact-page .contact-page__form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(151, 111, 63, 0.58);
  background: rgba(255, 255, 255, 0.56);
  padding: 0 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.72);
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-page .contact-page__form input::placeholder,
.contact-page .contact-page__form textarea::placeholder {
  color: rgba(129, 96, 56, 0.5);
}
.contact-page .contact-page__form input:focus,
.contact-page .contact-page__form textarea:focus {
  border-color: rgba(151, 111, 63, 0.9);
  box-shadow: 0 0 0 3px rgba(201, 163, 111, 0.12);
}
.contact-page .contact-page__form input {
  height: 62px;
}
.contact-page .contact-page__form textarea {
  min-height: 86px;
  padding-top: 19px;
}
.contact-page .contact-page__form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.contact-page .contact-page__field {
  display: block;
}
.contact-page .contact-page__form-row + .contact-page__field,
.contact-page .contact-page__field + .contact-page__field {
  margin-top: 14px;
}
.contact-page .contact-page__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  cursor: pointer;
}
.contact-page .contact-page__checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.contact-page .contact-page__checkbox span:last-child {
  min-width: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.42);
}
.contact-page .contact-page__checkbox-mark {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1px solid rgba(151, 111, 63, 0.62);
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}
.contact-page .contact-page__checkbox-mark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #9b754b;
  border-bottom: 2px solid #9b754b;
  transform: rotate(45deg);
  opacity: 0;
}
.contact-page .contact-page__checkbox input:checked + .contact-page__checkbox-mark::after {
  opacity: 1;
}
.contact-page .contact-page__submit {
  min-width: 228px;
  height: 74px;
  margin-top: 24px;
  padding: 0 34px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, #987349 0%, #caa36f 100%);
  box-shadow: 0 18px 30px rgba(188, 153, 111, 0.18);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
}
.contact-page .contact-page__closing {
  margin-top: 116px;
  max-width: 950px;
  margin-left: auto;
}
.contact-page .contact-page__closing p {
  font-weight: 300;
  font-size: 30px;
  line-height: 46px;
  color: #454545;
}

@media (max-width: 1439px) {
  .contact-page .contact-page__wrapper {
    padding: 0 32px;
  }
  .contact-page .contact-page__hero-main,
  .contact-page .contact-page__form-wrap,
  .contact-page .contact-page__closing {
    max-width: 100%;
  }
  .contact-page .contact-page__hero-main h1 {
    font-size: 48px;
  }
  .contact-page .contact-page__form-text {
    font-size: 26px;
  }
  .contact-page .contact-page__closing p {
    font-size: 38px;
  }
}
@media (max-width: 1199px) {
  .contact-page .contact-page__hero {
    padding-top: 72px;
    padding-bottom: 96px;
  }
  .contact-page .contact-page__wrapper {
    padding: 0 24px;
  }
  .contact-page .contact-page__eyebrow {
    padding-top: 0;
  }
  .contact-page .contact-page__hero-main h1 {
    font-size: 38px;
    line-height: 1.18;
  }
  .contact-page .contact-page__actions {
    margin-top: 32px;
  }
  .contact-page .contact-page__button {
    min-width: 210px;
    height: 64px;
    font-size: 16px;
  }
  .contact-page .contact-page__office-body {
    grid-template-columns: 1fr;
  }
  .contact-page .contact-page__office-address {
    border-right: 0;
    border-bottom: 1px solid #ebe5dc;
  }
  .contact-page .contact-page__office-address,
  .contact-page .contact-page__office-phone {
    min-height: auto;
  }
  .contact-page .contact-page__form-text {
    font-size: 24px;
  }
  .contact-page .contact-page__closing {
    margin-top: 80px;
    margin-left: 0;
  }
  .contact-page .contact-page__closing p {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .contact-page .contact-page__hero {
    padding-top: 48px;
    padding-bottom: 72px;
  }
  .contact-page .contact-page__wrapper {
    padding: 0 16px;
  }
  .contact-page .contact-page__eyebrow {
    gap: 10px;
  }
  .contact-page .contact-page__eyebrow span {
    font-size: 13px;
  }
  .contact-page .contact-page__hero-main h1 {
    font-size: 28px;
    line-height: 1.24;
  }
  .contact-page .contact-page__actions {
    gap: 12px;
    margin-top: 24px;
  }
  .contact-page .contact-page__button,
  .contact-page .contact-page__submit {
    width: 100%;
    min-width: 0;
    height: 58px;
    font-size: 15px;
  }
  .contact-page .contact-page__info {
    margin-top: 36px;
  }
  .contact-page .contact-page__card {
    border-radius: 16px;
  }
  .contact-page .contact-page__card-head,
  .contact-page .contact-page__office-head {
    min-height: 54px;
    padding: 16px 18px;
  }
  .contact-page .contact-page__tax-grid {
    grid-template-columns: 1fr;
  }
  .contact-page .contact-page__tax-item {
    min-height: auto;
    padding: 14px 18px;
    border-right: 0 !important;
    border-bottom: 1px solid #ebe5dc;
  }
  .contact-page .contact-page__tax-item:last-child {
    border-bottom: 0;
  }
  .contact-page .contact-page__tax-item strong {
    font-size: 14px;
    word-break: break-word;
  }
  .contact-page .contact-page__office-address,
  .contact-page .contact-page__office-phone {
    padding: 18px;
  }
  .contact-page .contact-page__office-address p,
  .contact-page .contact-page__office-address a {
    font-size: 14px;
  }
  .contact-page .contact-page__office-phone span {
    font-size: 16px;
  }
  .contact-page .contact-page__office-phone a {
    font-size: 22px;
  }
  .contact-page .contact-page__form-section {
    margin-top: 40px;
  }
  .contact-page .contact-page__form-text {
    font-size: 20px;
    line-height: 1.35;
  }
  .contact-page .contact-page__form {
    margin-top: 24px;
  }
  .contact-page .contact-page__form input,
  .contact-page .contact-page__form textarea {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 14px;
  }
  .contact-page .contact-page__form input {
    height: 54px;
  }
  .contact-page .contact-page__form textarea {
    min-height: 112px;
    padding-top: 16px;
  }
  .contact-page .contact-page__form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .contact-page .contact-page__form-row + .contact-page__field,
  .contact-page .contact-page__field + .contact-page__field {
    margin-top: 12px;
  }
  .contact-page .contact-page__checkbox {
    gap: 10px;
    margin-top: 16px;
  }
  .contact-page .contact-page__checkbox span:last-child {
    font-size: 12px;
  }
  .contact-page .contact-page__closing {
    margin-top: 56px;
  }
  .contact-page .contact-page__closing p {
    font-size: 25px;
    line-height: 1.28;
  }
}
.blog-detail-page {
  background: #f6f6f6;
}
.blog-detail-page .blog-detail-page__section {
  padding-top: 64px;
  padding-bottom: 96px;
}
.blog-detail-page .blog-detail-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 52px;
}
.blog-detail-page .blog-detail-page__title-row {
  display: flex;
  align-items: end;
  gap: 18px;
  max-width: 1120px;
}
.blog-detail-page .blog-detail-page__line {
  width: 160px;
  height: 1px;
  flex-shrink: 0;
  background: rgba(162, 133, 93, 0.7);
}
.blog-detail-page .blog-detail-page__hero h1 {
  max-width: 874px;
  font-weight: 300;
  font-size: 64px;
  line-height: 68px;
  color: #9A7F63;
}
.blog-detail-page .blog-detail-page__hero-visual {
  margin-top: 55px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.blog-detail-page .blog-detail-page__sky,
.blog-detail-page .blog-detail-page__ground,
.blog-detail-page .blog-detail-page__path,
.blog-detail-page .blog-detail-page__trees,
.blog-detail-page .blog-detail-page__building {
  position: absolute;
  display: block;
}
.blog-detail-page .blog-detail-page__sky {
  inset: 0 0 34% 0;
  background: radial-gradient(circle at 12% 22%, rgba(255, 248, 218, 0.8) 0%, rgba(255, 248, 218, 0) 16%), linear-gradient(180deg, #e9eef2 0%, #d7e5ef 55%, #d8e1e8 100%);
}
.blog-detail-page .blog-detail-page__ground {
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background: radial-gradient(circle at 14% 22%, rgba(112, 150, 58, 0.34) 0%, rgba(112, 150, 58, 0) 28%), linear-gradient(180deg, #a8bc6c 0%, #7e9b47 100%);
}
.blog-detail-page .blog-detail-page__path {
  left: 0;
  bottom: 0;
  width: 33%;
  height: 52%;
  background: linear-gradient(120deg, rgba(210, 196, 160, 0) 0%, rgba(210, 196, 160, 0) 29%, #e7dcc2 30%, #c7b083 48%, #99835f 62%, rgba(141, 117, 81, 0) 63%);
  clip-path: polygon(0 100%, 22% 100%, 56% 58%, 38% 38%, 0 68%);
  opacity: 0.95;
}
.blog-detail-page .blog-detail-page__trees {
  left: 0;
  top: 0;
  width: 27%;
  height: 100%;
  background: radial-gradient(circle at 22% 38%, rgba(214, 127, 34, 0.92) 0%, rgba(214, 127, 34, 0.56) 12%, rgba(214, 127, 34, 0) 28%), radial-gradient(circle at 14% 28%, rgba(109, 91, 33, 0.9) 0%, rgba(109, 91, 33, 0.42) 16%, rgba(109, 91, 33, 0) 32%), linear-gradient(90deg, rgba(104, 87, 67, 0.5) 0 1%, transparent 1% 100%), linear-gradient(90deg, transparent 0 14%, rgba(70, 64, 55, 0.44) 14% 15%, transparent 15% 100%), linear-gradient(90deg, transparent 0 28%, rgba(76, 68, 58, 0.4) 28% 29%, transparent 29% 100%), linear-gradient(180deg, rgba(245, 240, 232, 0.22) 0%, rgba(245, 240, 232, 0) 100%);
  opacity: 0.92;
}
.blog-detail-page .blog-detail-page__building {
  bottom: 16%;
  border-radius: 14px 14px 0 0;
  background: repeating-linear-gradient(90deg, rgba(93, 58, 33, 0.26) 0 6px, rgba(218, 182, 154, 0.18) 6px 12px, rgba(96, 64, 41, 0.24) 12px 18px), repeating-linear-gradient(0deg, rgba(212, 139, 97, 0.9) 0 18px, rgba(145, 84, 49, 0.96) 18px 26px, rgba(35, 27, 20, 0.92) 26px 31px, rgba(187, 123, 82, 0.94) 31px 49px);
  box-shadow: inset 0 0 0 1px rgba(45, 28, 18, 0.18);
}
.blog-detail-page .blog-detail-page__building::before {
  content: "";
  position: absolute;
  inset: 10% 12% 8% 14%;
  background: repeating-linear-gradient(90deg, rgba(34, 33, 31, 0.88) 0 16px, rgba(213, 177, 148, 0) 16px 40px), repeating-linear-gradient(0deg, rgba(22, 21, 20, 0.72) 0 48px, rgba(213, 177, 148, 0) 48px 76px);
  opacity: 0.9;
}
.blog-detail-page .blog-detail-page__building--left {
  left: 36%;
  width: 26%;
  height: 44%;
}
.blog-detail-page .blog-detail-page__building--right {
  right: 4%;
  width: 34%;
  height: 54%;
}
.blog-detail-page .blog-detail-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 36px;
  margin-left: 178px;
}
.blog-detail-page .blog-detail-page__meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 46px;
  text-transform: uppercase;
  color: #B9B9B9;
}
.blog-detail-page .blog-detail-page__meta strong {
  color: #000;
}
.blog-detail-page .blog-detail-page__content {
  max-width: 888px;
  margin-top: 58px;
  margin-left: 178px;
}
.blog-detail-page .blog-detail-page__content h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: -0.035em;
  color: rgba(0, 0, 0, 0.84);
}
.blog-detail-page .blog-detail-page__content p {
  margin-top: 28px;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #000000;
}
.blog-detail-page .blog-detail-page__content blockquote {
  margin-top: 44px;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: -0.03em;
  color: rgba(0, 0, 0, 0.6);
}
.blog-detail-page .blog-detail-page__related {
  margin-top: 70px;
}
.blog-detail-page .blog-detail-page__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-detail-page .blog-detail-page__card {
  display: block;
  border: 1px solid rgba(224, 218, 208, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.03);
}
.blog-detail-page .blog-detail-page__card-media {
  height: 312px;
  position: relative;
  border-radius: 14px;
  margin: 6px 6px 0;
  overflow: hidden;
  background-color: #eef1f3;
}
.blog-detail-page .blog-detail-page__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-detail-page .blog-detail-page__card-arrow {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(160, 122, 78, 0.88);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(160, 122, 78, 0.18);
}
.blog-detail-page .blog-detail-page__card-body {
  padding: 20px 24px 24px;
}
.blog-detail-page .blog-detail-page__card-body h3 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.8);
}
.blog-detail-page .blog-detail-page__card-body span {
  display: block;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

@media (max-width: 1439px) {
  .blog-detail-page .blog-detail-page__wrapper {
    padding: 0 32px;
  }
  .blog-detail-page .blog-detail-page__hero h1 {
    font-size: 52px;
  }
  .blog-detail-page .blog-detail-page__hero-visual {
    height: 460px;
  }
  .blog-detail-page .blog-detail-page__meta,
  .blog-detail-page .blog-detail-page__content {
    margin-left: 0;
  }
  .blog-detail-page .blog-detail-page__content {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .blog-detail-page .blog-detail-page__section {
    padding-top: 48px;
    padding-bottom: 80px;
  }
  .blog-detail-page .blog-detail-page__wrapper {
    padding: 0 24px;
  }
  .blog-detail-page .blog-detail-page__title-row {
    gap: 14px;
  }
  .blog-detail-page .blog-detail-page__line {
    width: 112px;
  }
  .blog-detail-page .blog-detail-page__hero h1 {
    font-size: 40px;
    line-height: 1.14;
  }
  .blog-detail-page .blog-detail-page__hero-visual {
    margin-top: 30px;
    height: 360px;
  }
  .blog-detail-page .blog-detail-page__meta {
    gap: 22px;
  }
  .blog-detail-page .blog-detail-page__content {
    margin-top: 42px;
  }
  .blog-detail-page .blog-detail-page__content h2 {
    font-size: 34px;
  }
  .blog-detail-page .blog-detail-page__content p {
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.72;
  }
  .blog-detail-page .blog-detail-page__content blockquote {
    margin-top: 34px;
    font-size: 22px;
  }
  .blog-detail-page .blog-detail-page__related {
    margin-top: 52px;
  }
  .blog-detail-page .blog-detail-page__related-grid {
    grid-template-columns: 1fr;
  }
  .blog-detail-page .blog-detail-page__card-media {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-detail-page .blog-detail-page__section {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .blog-detail-page .blog-detail-page__wrapper {
    padding: 0 16px;
  }
  .blog-detail-page .blog-detail-page__title-row {
    align-items: flex-start;
    gap: 12px;
  }
  .blog-detail-page .blog-detail-page__line {
    width: 56px;
    margin-top: 16px;
  }
  .blog-detail-page .blog-detail-page__hero h1 {
    font-size: 28px;
    line-height: 1.18;
  }
  .blog-detail-page .blog-detail-page__hero-visual {
    margin-top: 22px;
    height: 220px;
    border-radius: 14px;
  }
  .blog-detail-page .blog-detail-page__building--left {
    left: 34%;
  }
  .blog-detail-page .blog-detail-page__building--right {
    width: 38%;
  }
  .blog-detail-page .blog-detail-page__meta {
    gap: 10px 18px;
    margin-top: 22px;
  }
  .blog-detail-page .blog-detail-page__meta span {
    font-size: 11px;
  }
  .blog-detail-page .blog-detail-page__content {
    margin-top: 30px;
  }
  .blog-detail-page .blog-detail-page__content h2 {
    font-size: 26px;
    line-height: 1.2;
  }
  .blog-detail-page .blog-detail-page__content p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }
  .blog-detail-page .blog-detail-page__content blockquote {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.58;
  }
  .blog-detail-page .blog-detail-page__related {
    margin-top: 36px;
  }
  .blog-detail-page .blog-detail-page__card {
    border-radius: 14px;
  }
  .blog-detail-page .blog-detail-page__card-media {
    height: 210px;
    border-radius: 10px;
  }
  .blog-detail-page .blog-detail-page__card-arrow {
    left: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .blog-detail-page .blog-detail-page__card-body {
    padding: 16px 16px 18px;
  }
  .blog-detail-page .blog-detail-page__card-body h3 {
    font-size: 16px;
  }
  .blog-detail-page .blog-detail-page__card-body span {
    margin-top: 12px;
    font-size: 11px;
  }
}
.blog-page {
  background: #f6f6f6;
}
.blog-page .blog-page__section {
  padding-top: 88px;
  padding-bottom: 84px;
}
.blog-page .blog-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-page .blog-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}
.blog-page .blog-page__eyebrow span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.42);
}
.blog-page .blog-page__eyebrow-dot {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  position: relative;
}
.blog-page .blog-page__eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
}
.blog-page .blog-page__headline {
  max-width: 100%;
}
.blog-page .blog-page__headline h1 {
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  color: #454545;
}
.blog-page .blog-page__featured {
  margin-top: 84px;
}
.blog-page .blog-page__featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  background: linear-gradient(262.31deg, #FFFFFF 12.41%, #FFF3E6 65.45%);
  border: 1px solid #F6E5D4;
  border-radius: 20px;
  overflow: hidden;
  padding: 9px;
}
.blog-page .blog-page__featured-media {
  overflow: hidden;
  position: relative;
}
.blog-page .blog-page__featured-media img {
  display: block;
  width: 100%;
  height: 383px;
  object-fit: cover;
  border-radius: 16px;
}
.blog-page .blog-page__featured-content {
  padding: 44px 40px 36px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-page .blog-page__featured-content h2 {
  max-width: 520px;
  font-size: 26px;
  line-height: 22px;
  color: #000000;
}
.blog-page .blog-page__featured-content p {
  max-width: 520px;
  margin-top: 34px;
  font-weight: 300;
  font-size: 18px;
  line-height: 24px;
  color: #454545;
}
.blog-page .blog-page__featured-footer {
  margin-top: 58px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.blog-page .blog-page__featured-footer span:first-child {
  font-size: 14px;
  line-height: 24px;
  color: #454545;
  text-transform: uppercase;
}
.blog-page .blog-page__featured-arrow {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  background: #9E7C5A;
  border: 1px solid #927456;
  box-shadow: -12px 4px 33.2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.blog-page .blog-page__grid-section {
  margin-top: 35px;
}
.blog-page .blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.blog-page .blog-page__card {
  display: block;
  border: 1px solid rgba(224, 218, 208, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(28, 28, 28, 0.03);
}
.blog-page .blog-page__card-media {
  height: 312px;
  position: relative;
  border-radius: 14px;
  margin: 6px 6px 0;
  overflow: hidden;
  background-color: #eef1f3;
}
.blog-page .blog-page__card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-page .blog-page__card-arrow {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9E7C5A;
  border: 1px solid #927456;
  box-shadow: -12px 4px 33.2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.blog-page .blog-page__card-body {
  padding: 20px 24px 24px;
}
.blog-page .blog-page__card-body h3 {
  font-size: 20px;
  line-height: 26px;
  color: #000000;
}
.blog-page .blog-page__card-body span {
  display: block;
  margin-top: 23px;
  font-size: 14px;
  line-height: 24px;
  color: #454545;
  text-transform: uppercase;
}

@media (max-width: 1439px) {
  .blog-page .blog-page__wrapper {
    padding: 0 32px;
  }
  .blog-page .blog-page__headline {
    max-width: 100%;
  }
  .blog-page .blog-page__headline h1 {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .blog-page .blog-page__section {
    padding-top: 64px;
    padding-bottom: 72px;
  }
  .blog-page .blog-page__wrapper {
    padding: 0 24px;
  }
  .blog-page .blog-page__eyebrow {
    padding-top: 0;
  }
  .blog-page .blog-page__headline h1 {
    font-size: 38px;
    line-height: 1.18;
  }
  .blog-page .blog-page__featured {
    margin-top: 42px;
  }
  .blog-page .blog-page__featured-card {
    grid-template-columns: 1fr;
  }
  .blog-page .blog-page__featured-content {
    padding: 30px 24px 26px;
  }
  .blog-page .blog-page__featured-footer {
    margin-top: 34px;
  }
  .blog-page .blog-page__grid {
    grid-template-columns: 1fr;
  }
  .blog-page .blog-page__card-media {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .blog-page .blog-page__section {
    padding-top: 44px;
    padding-bottom: 56px;
  }
  .blog-page .blog-page__wrapper {
    padding: 0 16px;
  }
  .blog-page .blog-page__eyebrow {
    gap: 10px;
  }
  .blog-page .blog-page__eyebrow span {
    font-size: 13px;
  }
  .blog-page .blog-page__headline h1 {
    font-size: 28px;
    line-height: 1.22;
  }
  .blog-page .blog-page__featured {
    margin-top: 28px;
  }
  .blog-page .blog-page__featured-card {
    border-radius: 16px;
  }
  .blog-page .blog-page__featured-content {
    padding: 20px 16px 18px;
  }
  .blog-page .blog-page__featured-content h2 {
    font-size: 22px;
    line-height: 1.28;
  }
  .blog-page .blog-page__featured-content p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
  }
  .blog-page .blog-page__featured-footer {
    margin-top: 20px;
    align-items: center;
  }
  .blog-page .blog-page__featured-footer span:first-child {
    font-size: 11px;
  }
  .blog-page .blog-page__featured-arrow {
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .blog-page .blog-page__grid-section {
    margin-top: 14px;
  }
  .blog-page .blog-page__card {
    border-radius: 14px;
  }
  .blog-page .blog-page__card-media {
    height: 210px;
    border-radius: 10px;
  }
  .blog-page .blog-page__card-arrow {
    left: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
  .blog-page .blog-page__card-body {
    padding: 16px 16px 18px;
  }
  .blog-page .blog-page__card-body h3 {
    font-size: 16px;
  }
  .blog-page .blog-page__card-body span {
    margin-top: 12px;
    font-size: 11px;
  }
}
.project-detail-page {
  background: #f6f4f1;
}
.project-detail-page .project-detail-page__hero-section {
  padding-bottom: 84px;
}
.project-detail-page .project-detail-page__hero {
  position: relative;
  background: #d8d0c4;
  overflow: hidden;
}
.project-detail-page .project-detail-page__hero-image {
  position: relative;
}
.project-detail-page .project-detail-page__hero-image img {
  display: block;
  width: 100%;
  height: auto;
}
.project-detail-page .project-detail-page__hero-panel-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.project-detail-page .project-detail-page__hero-panel-inner {
  position: relative;
  height: 100%;
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 52px;
}
.project-detail-page .project-detail-page__hero-panel {
  position: absolute;
  left: 0;
  width: 216px;
  padding: 34px 28px 0;
  background: #fff;
  border: 0;
  box-shadow: none;
  pointer-events: auto;
  top: 0;
}
.project-detail-page .project-detail-page__hero-logo {
  display: none;
}
.project-detail-page .project-detail-page__hero-logo img {
  width: 110px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.project-detail-page .project-detail-page__hero-copy {
  margin-top: 0;
}
.project-detail-page .project-detail-page__hero-copy h1 {
  font-weight: 400;
  font-size: 27.8261px;
  line-height: 29px;
  color: #9A7F63;
}
.project-detail-page .project-detail-page__hero-copy p {
  margin-top: 11px;
  font-weight: 300;
  font-size: 20px;
  line-height: 23px;
  color: #9A7F63;
}
.project-detail-page .project-detail-page__hero-location {
  margin-top: 40px;
}
.project-detail-page .project-detail-page__hero-location span:last-child {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #ACACAC;
  margin-top: 2px;
}
.project-detail-page .project-detail-page__hero-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.22);
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
}
.project-detail-page .project-detail-page__hero-bullet::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
}
.project-detail-page .project-detail-page__hero-progress {
  margin: 42px -28px 0;
  padding: 28px 28px 30px;
  min-height: 162px;
  background: radial-gradient(circle at 22% 34%, rgba(186, 140, 70, 0.34) 0%, rgba(186, 140, 70, 0) 34%), radial-gradient(circle at 82% 88%, rgba(56, 50, 17, 0.82) 0%, rgba(56, 50, 17, 0) 34%), linear-gradient(135deg, #7a6548 0%, #292811 100%);
}
.project-detail-page .project-detail-page__hero-progress span {
  display: block;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.project-detail-page .project-detail-page__hero-progress small {
  display: block;
  margin-top: 22px;
  max-width: 128px;
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.6);
}
.project-detail-page .project-detail-page__progress-bar {
  margin-top: 18px;
  height: 9px;
  border-radius: 999px;
  background: rgba(34, 30, 18, 0.56);
  overflow: hidden;
}
.project-detail-page .project-detail-page__progress-bar span {
  width: 18%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #35ea3b 0%, #7dfd93 100%);
  box-shadow: 0 0 12px rgba(94, 255, 122, 0.55);
}
.project-detail-page .project-detail-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 52px;
}
.project-detail-page .project-detail-page__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(221, 214, 203, 0.92);
  border-bottom: 1px solid rgba(221, 214, 203, 0.92);
}
.project-detail-page .project-detail-page__stat {
  min-height: 136px;
  padding: 24px 34px;
}
.project-detail-page .project-detail-page__stat:not(:last-child) {
  border-right: 1px solid rgba(221, 214, 203, 0.92);
}
.project-detail-page .project-detail-page__stat small {
  display: block;
  margin-top: 14px;
  font-weight: 500;
  font-size: 18.0745px;
  line-height: 19px;
  color: #9E7C5A;
}
.project-detail-page .project-detail-page__stat strong {
  font-family: "Cinzel", serif;
  display: block;
  margin-top: 8px;
  font-weight: 400;
  font-size: 35.5191px;
  line-height: 34px;
  color: #9E7C5A;
}
.project-detail-page .project-detail-page__stat p {
  margin-top: 8px;
  max-width: 339px;
  font-weight: 300;
  font-size: 16px;
  line-height: 18px;
  color: #9E7C5A;
}
.project-detail-page .project-detail-page__stat-icon {
  width: 61px;
  height: 61px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.12966px solid #E9D8C7;
  border-radius: 18.0745px;
  background: transparent;
  color: #a98960;
  font-size: 16px;
}
.project-detail-page .project-detail-page__features {
  padding-top: 56px;
}
.project-detail-page .project-detail-page__section-head {
  text-align: center;
}
.project-detail-page .project-detail-page__section-head h2 {
  margin-top: 10px;
  font-weight: 300;
  font-size: 48px;
  line-height: 105px;
  text-align: center;
  color: #9E7C5A;
}
.project-detail-page .project-detail-page__feature-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}
.project-detail-page .project-detail-page__feature-stack {
  display: grid;
  gap: 18px;
}
.project-detail-page .project-detail-page__feature-card {
  background: linear-gradient(332.38deg, #FFFFFF 60.86%, #FFEEDE 97.59%);
  border-radius: 20px;
  overflow: hidden;
}
.project-detail-page .project-detail-page__feature-card--tall {
  min-height: 460px;
}
.project-detail-page .project-detail-page__feature-head {
  min-height: 72px;
  padding: 18px 66px 45px;
  border-bottom: 1px solid #F0E8DF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
}
.project-detail-page .project-detail-page__feature-head h3 {
  font-weight: 300;
  font-size: 32px;
  color: #9E7C5A;
}
.project-detail-page .project-detail-page__feature-icon {
  position: absolute;
  left: 66px;
  bottom: -32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  width: 62px;
  height: 64px;
  background: linear-gradient(275.19deg, #B4906C 2.8%, #7B6147 95.13%);
  border: 1px solid #9A7F63;
  border-radius: 12px;
  z-index: 1;
}
.project-detail-page .project-detail-page__feature-card ul {
  padding: 54px 66px 24px;
  display: grid;
  gap: 9px;
}
.project-detail-page .project-detail-page__feature-card ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 31px;
  color: #9E7C5A;
}
.project-detail-page .project-detail-page__gallery-section {
  padding-top: 62px;
}
.project-detail-page .project-detail-page__gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.project-detail-page .project-detail-page__gallery-tabs button {
  min-width: 174px;
  height: 52px;
  border: 0;
  background: transparent;
  font-weight: 300;
  font-size: 25.0167px;
  color: #CCBEB0;
  position: relative;
  cursor: pointer;
}
.project-detail-page .project-detail-page__gallery-tabs button:not(:last-child) {
  border-right: 1px solid rgba(221, 214, 203, 0.92);
}
.project-detail-page .project-detail-page__gallery-tabs button.is-active {
  color: #9A7F63;
}
.project-detail-page .project-detail-page__gallery-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.project-detail-page .project-detail-page__gallery-panel {
  display: none;
}
.project-detail-page .project-detail-page__gallery-panel.is-active {
  display: block;
}
.project-detail-page .project-detail-page__gallery-item {
  height: 415px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}
.project-detail-page .project-detail-page__gallery-item img {
  display: block;
  width: 100%;
  height: 415px;
  object-fit: cover;
  object-position: center;
}
.project-detail-page .project-detail-page__summary {
  max-width: 100%;
  margin-top: 105px;
  font-weight: 300;
  font-size: 30px;
  line-height: 45px;
  color: #454545;
}
.project-detail-page .project-detail-page__insights {
  padding: 52px 0 58px;
  background: linear-gradient(180deg, #181818 0%, #151515 100%);
}
.project-detail-page .project-detail-page__insights-head {
  align-items: start;
}
.project-detail-page .project-detail-page__insights-head p {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.62);
}
.project-detail-page .project-detail-page__insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.project-detail-page .project-detail-page__insights-eyebrow span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.44);
}
.project-detail-page .project-detail-page__insights-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.project-detail-page .project-detail-page__insight-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.project-detail-page .project-detail-page__insight-card {
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.project-detail-page .project-detail-page__insight-media {
  height: 168px;
  margin: 6px 6px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #7e8a92;
}
.project-detail-page .project-detail-page__insight-media--one {
  background: linear-gradient(180deg, #d7d0cb 0%, #b8c4c8 40%, #656d73 40%, #3f4247 100%);
}
.project-detail-page .project-detail-page__insight-media--one::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 16%;
  height: 46%;
  background: repeating-linear-gradient(90deg, rgba(94, 71, 52, 0.18) 0 6px, rgba(222, 184, 150, 0.12) 6px 12px), repeating-linear-gradient(0deg, rgba(188, 126, 83, 0.92) 0 18px, rgba(130, 79, 50, 0.96) 18px 26px, rgba(35, 27, 22, 0.92) 26px 31px, rgba(176, 116, 74, 0.96) 31px 49px);
}
.project-detail-page .project-detail-page__insight-media--two {
  background: linear-gradient(180deg, #b5d3e6 0%, #7dc3e4 52%, #324f66 52%, #223341 100%);
}
.project-detail-page .project-detail-page__insight-media--two::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 7px;
  left: -20%;
  top: 54%;
  transform: rotate(36deg);
  background: rgba(231, 240, 248, 0.84);
  box-shadow: 0 -16px 0 rgba(231, 240, 248, 0.42), 0 16px 0 rgba(231, 240, 248, 0.42);
}
.project-detail-page .project-detail-page__insight-media--three {
  background: linear-gradient(180deg, #ecf0f2 0%, #dce3e7 62%, #cacfd3 62%, #abb7bf 100%);
}
.project-detail-page .project-detail-page__insight-media--three::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 24%;
  bottom: 18%;
  background: linear-gradient(180deg, #ffffff 0%, #dce3e7 100%);
}
.project-detail-page .project-detail-page__insight-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(174, 131, 82, 0.9);
  color: #fff;
  font-size: 18px;
}
.project-detail-page .project-detail-page__insight-body {
  padding: 14px 16px 16px;
}
.project-detail-page .project-detail-page__insight-body h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1439px) {
  .project-detail-page .project-detail-page__hero-panel-inner {
    padding: 0 32px;
  }
  .project-detail-page .project-detail-page__wrapper {
    padding: 0 32px;
  }
  .project-detail-page .project-detail-page__summary {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .project-detail-page .project-detail-page__hero-panel-inner {
    padding: 0 24px;
  }
  .project-detail-page .project-detail-page__hero-panel {
    width: 220px;
    top: 24px;
    padding: 18px 16px;
  }
  .project-detail-page .project-detail-page__hero-copy h1 {
    font-size: 28px;
  }
  .project-detail-page .project-detail-page__wrapper {
    padding: 0 24px;
  }
  .project-detail-page .project-detail-page__stats {
    grid-template-columns: 1fr;
  }
  .project-detail-page .project-detail-page__stat:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(221, 214, 203, 0.92);
  }
  .project-detail-page .project-detail-page__section-head h2 {
    font-size: 38px;
  }
  .project-detail-page .project-detail-page__feature-grid {
    grid-template-columns: 1fr;
  }
  .project-detail-page .project-detail-page__gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .project-detail-page .project-detail-page__summary {
    font-size: 20px;
  }
  .project-detail-page .project-detail-page__insights-head p {
    font-size: 28px;
  }
  .project-detail-page .project-detail-page__insight-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .project-detail-page .project-detail-page__hero-panel-inner {
    padding: 0;
  }
  .project-detail-page .project-detail-page__hero-section {
    padding-bottom: 56px;
  }
  .project-detail-page .project-detail-page__hero-panel-wrap {
    position: static;
    pointer-events: auto;
  }
  .project-detail-page .project-detail-page__hero-panel-inner {
    height: auto;
  }
  .project-detail-page .project-detail-page__hero-panel {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 32px);
    margin: 16px;
  }
  .project-detail-page .project-detail-page__hero-logo img {
    width: 96px;
  }
  .project-detail-page .project-detail-page__hero-copy {
    margin-top: 16px;
  }
  .project-detail-page .project-detail-page__hero-copy h1 {
    font-size: 24px;
  }
  .project-detail-page .project-detail-page__hero-copy p {
    font-size: 14px;
  }
  .project-detail-page .project-detail-page__wrapper {
    padding: 0 16px;
  }
  .project-detail-page .project-detail-page__stat {
    min-height: auto;
    padding: 18px 18px 20px;
  }
  .project-detail-page .project-detail-page__stat strong {
    font-size: 30px;
  }
  .project-detail-page .project-detail-page__features {
    padding-top: 40px;
  }
  .project-detail-page .project-detail-page__section-head h2 {
    font-size: 28px;
  }
  .project-detail-page .project-detail-page__feature-grid {
    margin-top: 24px;
    gap: 14px;
  }
  .project-detail-page .project-detail-page__feature-stack {
    gap: 14px;
  }
  .project-detail-page .project-detail-page__feature-card,
  .project-detail-page .project-detail-page__feature-card--tall {
    min-height: auto;
  }
  .project-detail-page .project-detail-page__feature-head {
    min-height: 64px;
    padding: 16px 16px 16px 92px;
  }
  .project-detail-page .project-detail-page__feature-head h3 {
    font-size: 16px;
  }
  .project-detail-page .project-detail-page__feature-icon {
    left: 16px;
    bottom: -24px;
    width: 46px;
    height: 48px;
    font-size: 14px;
  }
  .project-detail-page .project-detail-page__feature-card ul {
    padding: 42px 16px 18px;
  }
  .project-detail-page .project-detail-page__feature-card ul li {
    font-size: 13px;
  }
  .project-detail-page .project-detail-page__gallery-section {
    padding-top: 42px;
  }
  .project-detail-page .project-detail-page__gallery-tabs button {
    min-width: 0;
    width: 50%;
    font-size: 14px;
  }
  .project-detail-page .project-detail-page__gallery-grid {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
  .project-detail-page .project-detail-page__gallery-item {
    height: 415px;
  }
  .project-detail-page .project-detail-page__gallery-item img {
    height: 415px;
  }
  .project-detail-page .project-detail-page__summary {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
  }
  .project-detail-page .project-detail-page__insights {
    padding: 40px 0 44px;
  }
  .project-detail-page .project-detail-page__insights-head p {
    font-size: 22px;
    line-height: 1.3;
  }
  .project-detail-page .project-detail-page__insight-grid {
    margin-top: 24px;
    gap: 14px;
  }
  .project-detail-page .project-detail-page__insight-card {
    border-radius: 14px;
  }
  .project-detail-page .project-detail-page__insight-media {
    height: 144px;
    border-radius: 10px;
  }
  .project-detail-page .project-detail-page__insight-body {
    padding: 12px 14px 14px;
  }
  .project-detail-page .project-detail-page__insight-body h3 {
    font-size: 14px;
  }
}
.projects-page {
  background: #f6f6f6;
}
.projects-page .projects-page__section {
  padding-top: 62px;
  padding-bottom: 88px;
}
.projects-page .projects-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 20px;
}
.projects-page .projects-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.28);
}
.projects-page .projects-page__breadcrumb a {
  color: inherit;
}
.projects-page .projects-page__hero {
  margin-top: 46px;
  max-width: 1306px;
}
.projects-page .projects-page__hero h1 {
  font-weight: 250;
  font-size: 86.8768px;
  line-height: 88px;
  color: #9A7F63;
}
.projects-page .projects-page__tabs {
  margin-top: 63px;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.projects-page .projects-page__tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 50px;
  padding: 0 34px;
  font-weight: 500;
  font-size: 20px;
  line-height: 88px;
  color: #CCBEB0;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.projects-page .projects-page__tabs a:not(:last-child) {
  border-right: 1px solid rgba(221, 214, 203, 0.9);
}
.projects-page .projects-page__tabs a:hover {
  color: #9A7F63;
}
.projects-page .projects-page__tabs a.is-active {
  color: #9A7F63;
}
.projects-page .projects-page__cards {
  margin-top: 42px;
}
.projects-page .projects-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.projects-page .projects-page__card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(138.84deg, #FFFFFF 57.14%, #FFEEDE 97.82%);
  border-radius: 20px;
}
.projects-page .projects-page__card-media {
  height: 410px;
  margin: 8px 8px 0;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background-color: #d8d8d8;
}
.projects-page .projects-page__card-media img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center;
}
.projects-page .projects-page__status {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFFFFF 0%, #FFCC99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(50px);
  border-radius: 300px;
}
.projects-page .projects-page__card-content {
  padding: 18px 18px 20px;
}
.projects-page .projects-page__card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.projects-page .projects-page__card-topline h3 {
  font-weight: 300;
  font-size: 20px;
  color: #000000;
}
.projects-page .projects-page__card-topline span {
  font-weight: 300;
  font-size: 16px;
  color: #ACACAC;
}
.projects-page .projects-page__card-content p {
  margin-top: 15px;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  color: #666666;
}
.projects-page .projects-page__card-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(236, 228, 215, 0.94);
}
.projects-page .projects-page__meta-item {
  min-height: 94px;
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.projects-page .projects-page__meta-item:not(:last-child) {
  border-right: 1px solid rgba(236, 228, 215, 0.94);
}
.projects-page .projects-page__meta-item span {
  font-size: 16px;
  line-height: 1;
  color: #a98960;
}
.projects-page .projects-page__meta-item small {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #9E7C5A;
}
.projects-page .projects-page__closing {
  margin-top: 92px;
  max-width: 100%;
}
.projects-page .projects-page__closing p {
  font-weight: 300;
  font-size: 40px;
  line-height: 53px;
  color: #454545;
}
.projects-page .projects-page__insights {
  padding: 56px 0 58px;
  background: #262626;
}
.projects-page .projects-page__insights-head {
  align-items: start;
}
.projects-page .projects-page__insights-head p {
  font-weight: 300;
  font-size: 30px;
  line-height: 57px;
  color: #999999;
  text-align: right;
}
.projects-page .projects-page__insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.projects-page .projects-page__insights-eyebrow span:last-child {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #999999;
}
.projects-page .projects-page__insights-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.projects-page .projects-page__insight-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.projects-page .projects-page__insight-card {
  display: block;
  border-radius: 18px;
  background: #1b1b1b;
  overflow: hidden;
}
.projects-page .projects-page__insight-media {
  height: 188px;
  margin: 6px 6px 0;
  position: relative;
}
.projects-page .projects-page__insight-media .cover {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.projects-page .projects-page__insight-media img {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: center;
}
.projects-page .projects-page__insight-arrow {
  position: absolute;
  right: 47px;
  bottom: -20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #9E7C5A;
  border: 1px solid #927456;
  box-shadow: -12px 4px 33.2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.projects-page .projects-page__insight-number {
  font-family: "Cinzel", serif;
  position: absolute;
  left: 47px;
  bottom: -25px;
  font-weight: 400;
  font-size: 32px;
  color: #DADADA;
}
.projects-page .projects-page__insight-body {
  padding: 31px 48px 33px;
}
.projects-page .projects-page__insight-body h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  color: #FFFFFF;
}

@media (max-width: 1439px) {
  .projects-page .projects-page__wrapper {
    padding: 0 32px;
  }
  .projects-page .projects-page__hero {
    max-width: 100%;
  }
  .projects-page .projects-page__hero h1 {
    font-size: 62px;
  }
  .projects-page .projects-page__closing {
    max-width: 100%;
  }
  .projects-page .projects-page__closing p {
    font-size: 46px;
  }
  .projects-page__insights .projects-page__wrapper {
    padding: 0 32px;
  }
}
@media (max-width: 1199px) {
  .projects-page .projects-page__section {
    padding-top: 48px;
    padding-bottom: 72px;
  }
  .projects-page .projects-page__wrapper {
    padding: 0 24px;
  }
  .projects-page .projects-page__hero {
    margin-top: 30px;
  }
  .projects-page .projects-page__hero h1 {
    font-size: 44px;
    line-height: 1.06;
  }
  .projects-page .projects-page__tabs {
    margin-top: 28px;
  }
  .projects-page .projects-page__tabs a {
    min-width: 0;
    flex: 1 1 50%;
    padding: 0 18px;
  }
  .projects-page .projects-page__cards {
    margin-top: 28px;
  }
  .projects-page .projects-page__grid {
    grid-template-columns: 1fr;
  }
  .projects-page .projects-page__card-media {
    height: 410px;
  }
  .projects-page .projects-page__closing {
    margin-top: 68px;
  }
  .projects-page .projects-page__closing p {
    font-size: 38px;
  }
  .projects-page .projects-page__insights-head p {
    font-size: 28px;
  }
  .projects-page .projects-page__insight-grid {
    grid-template-columns: 1fr;
  }
  .projects-page__insights .projects-page__wrapper {
    padding: 0 24px;
  }
  .projects-page__insights-head p {
    font-size: 28px;
  }
  .projects-page__insight-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .projects-page .projects-page__section {
    padding-top: 36px;
    padding-bottom: 56px;
  }
  .projects-page .projects-page__wrapper {
    padding: 0 16px;
  }
  .projects-page .projects-page__breadcrumb {
    font-size: 12px;
  }
  .projects-page .projects-page__hero {
    margin-top: 20px;
  }
  .projects-page .projects-page__hero h1 {
    font-size: 30px;
    line-height: 1.08;
  }
  .projects-page .projects-page__tabs {
    margin-top: 20px;
  }
  .projects-page .projects-page__tabs a {
    display: flex;
    justify-content: flex-start;
    flex: 1 1 100%;
    width: 100%;
    height: 44px;
    text-align: left;
    padding: 0 0 0 4px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(221, 214, 203, 0.9);
    font-size: 14px;
  }
  .projects-page .projects-page__card {
    border-radius: 14px;
  }
  .projects-page .projects-page__card-media {
    height: 410px;
    margin: 6px 6px 0;
    border-radius: 10px;
  }
  .projects-page .projects-page__card-media img {
    height: 410px;
  }
  .projects-page .projects-page__status {
    left: 10px;
    bottom: 10px;
    min-height: 24px;
    padding: 0 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 26px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFCC99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.06);
  }
  .projects-page .projects-page__card-content {
    padding: 14px 14px 16px;
  }
  .projects-page .projects-page__card-content p {
    margin-top: 10px;
    font-size: 14px;
  }
  .projects-page .projects-page__card-topline h3 {
    font-size: 16px;
  }
  .projects-page .projects-page__card-topline span {
    font-size: 12px;
  }
  .projects-page .projects-page__card-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .projects-page .projects-page__meta-item {
    min-height: 74px;
  }
  .projects-page .projects-page__meta-item:nth-child(odd) {
    border-right: 1px solid rgba(236, 228, 215, 0.94);
  }
  .projects-page .projects-page__meta-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(236, 228, 215, 0.94);
  }
  .projects-page .projects-page__meta-item:nth-child(2) {
    border-right: 0;
  }
  .projects-page .projects-page__meta-item small {
    font-size: 11px;
  }
  .projects-page .projects-page__closing {
    margin-top: 44px;
  }
  .projects-page .projects-page__closing p {
    font-size: 26px;
    line-height: 1.18;
  }
  .projects-page .projects-page__insights {
    padding: 40px 0 44px;
  }
  .projects-page .projects-page__insights-head p {
    font-size: 22px;
    line-height: 1.3;
  }
  .projects-page .projects-page__insight-grid {
    margin-top: 24px;
    gap: 14px;
  }
  .projects-page .projects-page__insight-card {
    border-radius: 14px;
  }
  .projects-page .projects-page__insight-number {
    left: 14px;
    bottom: -12px;
    font-size: 24px;
    line-height: 48px;
  }
  .projects-page .projects-page__insight-media {
    height: 188px;
    border-radius: 10px;
  }
  .projects-page .projects-page__insight-media img {
    height: 188px;
  }
  .projects-page .projects-page__insight-body {
    padding: 12px 14px 14px;
  }
  .projects-page .projects-page__insight-body h3 {
    font-size: 14px;
  }
  .projects-page__insights {
    padding: 40px 0 44px;
  }
  .projects-page__insights .projects-page__wrapper {
    padding: 0 16px;
  }
  .projects-page__insights-head p {
    font-size: 22px;
    line-height: 1.3;
  }
  .projects-page__insight-grid {
    margin-top: 24px;
    gap: 14px;
  }
  .projects-page__insight-card {
    border-radius: 14px;
  }
  .projects-page__insight-number {
    left: 14px;
    bottom: -12px;
    font-size: 24px;
    line-height: 48px;
  }
  .projects-page__insight-media {
    height: 188px;
    border-radius: 10px;
  }
  .projects-page__insight-media img {
    height: 188px;
  }
  .projects-page__insight-body {
    padding: 12px 14px 14px;
  }
  .projects-page__insight-body h3 {
    font-size: 14px;
  }
}
.about-page {
  background: #f6f4f1;
}
.about-page .about-page__section {
  padding-top: 62px;
  padding-bottom: 72px;
}
.about-page .about-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 20px;
}
.about-page .about-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.28);
}
.about-page .about-page__breadcrumb a {
  color: inherit;
}
.about-page .about-page__hero {
  margin-top: 34px;
}
.about-page .about-page__hero-grid {
  position: relative;
  min-height: 760px;
}
.about-page .about-page__hero-copy {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 770px;
  padding-top: 0;
}
.about-page .about-page__hero-copy h1 {
  font-weight: 200;
  font-size: 86.8768px;
  line-height: 88px;
  color: #9A7F63;
}
.about-page .about-page__hero-visuals {
  position: relative;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding-top: 0;
}
.about-page .about-page__hero-visuals p {
  position: absolute;
  right: 0;
  bottom: 26px;
  max-width: 680px;
  margin: 0;
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}
.about-page .about-page__hero-cards {
  overflow: hidden;
}
.about-page .about-page__hero-cards img {
  display: block;
  width: 100%;
  height: auto;
}
.about-page .about-page__vision {
  margin-top: 76px;
}
.about-page .about-page__split {
  align-items: start;
}
.about-page .about-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.about-page .about-page__eyebrow span:last-child {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
.about-page .about-page__eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}
.about-page .about-page__text {
  max-width: auto;
}
.about-page .about-page__text p {
  font-weight: 300;
  font-size: 40px;
  line-height: 53px;
  color: #454545;
}
.about-page .about-page__process {
  margin-top: 54px;
}
.about-page .about-page__process-strip-wrap {
  width: calc(100vw + 160px);
  margin-left: calc(50% - 50vw - 80px);
}
.about-page .about-page__process-strip .owl-stage {
  display: flex;
}
.about-page .about-page__process-strip .owl-item {
  display: flex;
}
.about-page .about-page__process-image {
  height: 280px;
  overflow: hidden;
}
.about-page .about-page__process-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.about-page .about-page__process-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .about-page__process .about-page__split {
  margin-top: 56px;
}
.about-page .about-page__text--secondary p {
  font-size: 44px;
  line-height: 1.16;
}
.about-page .about-page__text--secondary small {
  display: block;
  max-width: 840px;
  margin-top: 87px;
  font-weight: 300;
  font-size: 24px;
  line-height: 37px;
  color: #454545;
}
.about-page .about-page__insights {
  padding: 56px 0 58px;
  background: linear-gradient(180deg, #181818 0%, #151515 100%);
}
.about-page .about-page__insights-head {
  align-items: start;
}
.about-page .about-page__insights-head p {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.62);
}
.about-page .about-page__insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.about-page .about-page__insights-eyebrow span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.44);
}
.about-page .about-page__insights-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.about-page .about-page__insight-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-page .about-page__insight-card {
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.about-page .about-page__insight-media {
  height: 168px;
  margin: 6px 6px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #7e8a92;
}
.about-page .about-page__insight-media--one {
  background: linear-gradient(180deg, #b9cde2 0%, #86b2d7 42%, #6f6b6b 42%, #494341 100%);
}
.about-page .about-page__insight-media--one::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 64%;
  background: linear-gradient(90deg, rgba(149, 120, 88, 0.18) 0 8%, rgba(214, 174, 138, 0.12) 8% 16%, rgba(149, 120, 88, 0.18) 16% 24%, rgba(214, 174, 138, 0.12) 24% 32%, rgba(149, 120, 88, 0.18) 32% 40%, rgba(214, 174, 138, 0.12) 40% 48%, rgba(149, 120, 88, 0.18) 48% 56%, rgba(214, 174, 138, 0.12) 56% 64%, rgba(149, 120, 88, 0.18) 64% 72%, rgba(214, 174, 138, 0.12) 72% 80%, rgba(149, 120, 88, 0.18) 80% 88%, rgba(214, 174, 138, 0.12) 88% 100%), linear-gradient(180deg, rgba(229, 215, 194, 0.92) 0%, rgba(151, 122, 87, 0.94) 100%);
}
.about-page .about-page__insight-media--two {
  background: linear-gradient(180deg, #e0edf5 0%, #a0d0df 48%, #6ca0ac 48%, #4e676e 100%);
}
.about-page .about-page__insight-media--two::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 14%;
  bottom: 12%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(212, 229, 236, 0.84) 100%);
}
.about-page .about-page__insight-media--three {
  background: linear-gradient(180deg, #f0f3f4 0%, #e4e8ea 56%, #d2d8db 56%, #bec7cc 100%);
}
.about-page .about-page__insight-media--three::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 20%;
  bottom: 18%;
  background: linear-gradient(180deg, #ffffff 0%, #e4e8ea 100%);
}
.about-page .about-page__insight-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(174, 131, 82, 0.9);
  color: #fff;
  font-size: 18px;
}
.about-page .about-page__insight-body {
  padding: 14px 16px 16px;
}
.about-page .about-page__insight-body h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1439px) {
  .about-page .about-page__wrapper {
    padding: 0 32px;
  }
  .about-page .about-page__hero-grid {
    min-height: 680px;
  }
  .about-page .about-page__hero-copy h1 {
    font-size: 62px;
  }
  .about-page .about-page__hero-visuals {
    max-width: 100%;
    width: 100%;
    padding-top: 96px;
  }
  .about-page .about-page__hero-visuals p {
    max-width: 320px;
    bottom: 18px;
    font-size: 17px;
  }
  .about-page .about-page__process-strip-wrap {
    width: calc(100vw + 120px);
    margin-left: calc(50% - 50vw - 60px);
  }
  .about-page .about-page__text p {
    font-size: 40px;
  }
  .about-page .about-page__text--secondary p {
    font-size: 36px;
  }
}
@media (max-width: 1199px) {
  .about-page .about-page__section {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .about-page .about-page__wrapper {
    padding: 0 24px;
  }
  .about-page .about-page__hero-grid {
    min-height: auto;
  }
  .about-page .about-page__hero-copy {
    position: relative;
    top: auto;
    left: auto;
    max-width: 100%;
    padding-top: 0;
  }
  .about-page .about-page__hero-copy h1 {
    font-size: 48px;
  }
  .about-page .about-page__hero-cards {
    min-height: auto;
  }
  .about-page .about-page__hero-visuals {
    max-width: 100%;
    margin: 20px 0 0;
    padding-top: 0;
  }
  .about-page .about-page__hero-visuals p {
    position: static;
    max-width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
  .about-page .about-page__vision {
    margin-top: 56px;
  }
  .about-page .about-page__text p {
    font-size: 32px;
    line-height: 1.22;
  }
  .about-page .about-page__process-image {
    height: 220px;
  }
  .about-page .about-page__process .about-page__split {
    margin-top: 36px;
  }
  .about-page .about-page__text--secondary p {
    font-size: 30px;
  }
  .about-page .about-page__text--secondary small {
    margin-top: 28px;
    font-size: 18px;
  }
  .about-page .about-page__insights-head p {
    font-size: 28px;
  }
  .about-page .about-page__insight-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .about-page .about-page__section {
    padding-top: 36px;
    padding-bottom: 44px;
  }
  .about-page .about-page__wrapper {
    padding: 0 16px;
  }
  .about-page .about-page__breadcrumb {
    font-size: 12px;
  }
  .about-page .about-page__hero {
    margin-top: 18px;
  }
  .about-page .about-page__hero-copy h1 {
    font-size: 34px;
    line-height: 1.08;
  }
  .about-page .about-page__hero-cards {
    width: 100%;
  }
  .about-page .about-page__hero-visuals {
    padding-top: 0;
  }
  .about-page .about-page__hero-visuals p {
    position: static;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }
  .about-page .about-page__vision {
    margin-top: 40px;
  }
  .about-page .about-page__eyebrow span:last-child {
    font-size: 13px;
  }
  .about-page .about-page__text p {
    font-size: 24px;
    line-height: 1.24;
  }
  .about-page .about-page__process {
    margin-top: 32px;
  }
  .about-page .about-page__process-strip-wrap {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .about-page .about-page__process-image {
    height: 160px;
  }
  .about-page .about-page__process .about-page__split {
    margin-top: 24px;
  }
  .about-page .about-page__text--secondary p {
    font-size: 22px;
  }
  .about-page .about-page__text--secondary small {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
  }
  .about-page .about-page__insights {
    padding: 40px 0 44px;
  }
  .about-page .about-page__insights-head p {
    font-size: 22px;
    line-height: 1.3;
  }
  .about-page .about-page__insight-grid {
    margin-top: 24px;
    gap: 14px;
  }
  .about-page .about-page__insight-card {
    border-radius: 14px;
  }
  .about-page .about-page__insight-media {
    height: 144px;
    border-radius: 10px;
  }
  .about-page .about-page__insight-body {
    padding: 12px 14px 14px;
  }
  .about-page .about-page__insight-body h3 {
    font-size: 14px;
  }
}
.home-page {
  background: #f6f6f6;
}
.home-page .home-page__hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  background: #d5ccc0;
}
.home-page .home-page__hero-scene {
  position: absolute;
  inset: 0;
  height: 100vh;
}
.home-page .home-page__hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.245) 0%, rgba(0, 0, 0, 0.315) 100%);
  pointer-events: none;
  z-index: 1;
}
.home-page .home-page__hero-scene img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-page .home-page__wrapper {
  max-width: 1444px;
  margin: 0 auto;
  padding: 0 20px;
}
.home-page .home-page__hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 0;
}
.home-page .home-page__hero-title {
  display: block;
}
.home-page .home-page__hero-word {
  position: absolute;
  left: 0;
  top: 42%;
  transform: translateY(-50%);
  margin: 0;
  font-family: "Cinzel", serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(128px, 13.4vw, 257.977px);
  line-height: 0.92;
  background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.5;
}
.home-page .home-page__hero-copy {
  position: absolute;
  right: 0;
  top: 43%;
  transform: translateY(-50%);
  max-width: 476px;
}
.home-page .home-page__hero-copy h1 {
  max-width: 476px;
  font-family: "Cinzel", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 67.9219px;
  line-height: 66px;
  color: #FFFFFF;
  text-shadow: 0 0 23.242px rgba(0, 0, 0, 0.53);
}
.home-page .home-page__hero-copy p {
  position: absolute;
  left: calc((min(1444px, 100vw - 40px) - 476px) * -1);
  top: calc(100% + 20px);
  max-width: 989px;
  width: min(989px, 74vw);
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
}
.home-page .home-page__hero-actions {
  position: absolute;
  left: 0;
  bottom: 170px;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.home-page .home-page__hero-button {
  min-width: 217px;
  height: 70px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #9A7F63;
  background: linear-gradient(275.19deg, #B4906C 2.8%, #7B6147 95.13%);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-shadow: 0px 0px 22.7px #FFBC78;
  box-shadow: 0px 14px 54.5px rgba(0, 0, 0, 0.25);
}
.home-page .home-page__hero-button-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #9E7C5A;
  border: 1px solid #927456;
  box-shadow: -12px 4px 33.2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.home-page .home-page__hero-button-icon svg {
  width: 41px;
  height: 41px;
  display: inline-flex;
}
.home-page .home-page__hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 54px;
  margin-top: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.home-page .home-page__hero-catalog {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}
.home-page .home-page__hero-mini-cards {
  display: flex;
  gap: 14px;
  margin-left: auto;
}
.home-page .home-page__hero-mini-card {
  width: 286px;
  min-height: 160px;
  padding: 20px 22px 22px;
  background: rgba(66, 66, 63, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}
.home-page .home-page__hero-mini-card small {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.42);
}
.home-page .home-page__hero-mini-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.home-page .home-page__hero-mini-card p {
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.56);
}
.home-page .home-page__hero-progress {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.home-page .home-page__hero-progress span {
  display: block;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, #48c173 0%, #8ce6ab 100%);
}
.home-page .home-page__vision,
.home-page .home-page__metrics,
.home-page .home-page__projects {
  padding-top: 150px;
}
.home-page .home-page__projects {
  margin-bottom: 108px;
}
.home-page .home-page__split {
  align-items: start;
}
.home-page .home-page__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.home-page .home-page__eyebrow span:last-child {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
.home-page .home-page__eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
}
.home-page .home-page__headline h2 {
  font-weight: 300;
  font-size: 48px;
  line-height: 57px;
  color: #000000;
}
.home-page .home-page__headline p {
  margin-top: 18px;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #666666;
}
.home-page .home-page__value-cards {
  margin-top: 101px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.home-page .home-page__value-card {
  min-height: 184px;
  padding: 22px 24px;
  border: 1px solid rgba(233, 225, 214, 0.94);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  position: relative;
}
.home-page .home-page__value-card.is-active {
  border-color: rgba(169, 137, 96, 0.74);
}
.home-page .home-page__value-card h3 {
  margin-top: 34px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.78);
}
.home-page .home-page__value-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.44);
}
.home-page .home-page__value-index {
  font-size: 28px;
  line-height: 1;
  color: rgba(169, 137, 96, 0.62);
}
.home-page .home-page__value-icon {
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: 0;
  background: none;
  border-radius: 0;
}
.home-page .home-page__showcase {
  padding-top: 110px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
.home-page .home-page__showcase-carousel {
  margin-left: -318px;
  width: calc(100% + 318px);
}
.home-page .home-page__showcase-carousel .owl-stage-outer {
  overflow: visible;
}
.home-page .home-page__showcase-carousel .owl-stage {
  display: flex;
  align-items: center;
}
.home-page .home-page__showcase-carousel .owl-item {
  opacity: 0.86;
  transition: opacity 0.3s ease;
  overflow: visible;
}
.home-page .home-page__showcase-carousel .owl-item.is-primary {
  opacity: 1;
}
.home-page .home-page__showcase-track {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 0 56px;
  width: 1640px;
  min-width: 1640px;
}
.home-page .home-page__showcase-panel {
  box-sizing: border-box;
  flex: 0 0 792px;
  width: 792px;
  min-width: 792px;
  max-width: 792px;
  height: 466px;
  min-height: 466px;
  padding: 72px 96px;
  border: 1px solid #DADADA;
  border-radius: 20px;
  background: #FFFFFF;
  position: relative;
  z-index: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-page .home-page__showcase-word {
  position: absolute;
  left: 152px;
  top: 52px;
  font-family: "Cinzel", serif;
  font-size: 221.521px;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: #E3E3E3;
  pointer-events: none;
  z-index: 5;
  white-space: nowrap;
}
.home-page .home-page__showcase-cta {
  position: relative;
  z-index: 6;
  margin-top: 10px;
  box-sizing: border-box;
  width: 217px;
  height: 70px;
  padding: 0 16px 0 24px;
  border-radius: 2px;
  background: linear-gradient(275.19deg, #B4906C 2.8%, #7B6147 95.13%);
  border: 1px solid #9A7F63;
  box-shadow: 0 14px 54.5px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 600;
}
.home-page .home-page__showcase-cta span:first-child {
  width: 115px;
  height: 30px;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
  text-shadow: 0 0 22.7px #FFBC78;
}
.home-page .home-page__showcase-cta span:last-child {
  width: 39px;
  height: 39px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(183, 145, 104, 0.9);
  font-size: 24px;
}
.home-page .home-page__showcase-panel p {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  max-width: 420px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 23px;
  color: #000000;
}
.home-page .home-page__showcase-features {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 20px;
  max-width: 520px;
}
.home-page .home-page__showcase-features li {
  font-family: "Manrope", sans-serif;
  font-size: 12.6482px;
  line-height: 18px;
  color: #907254;
}
.home-page .home-page__showcase-features li::before {
  content: "• ";
}
.home-page .home-page__showcase-panel small {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 24px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 23px;
  color: #ADADAD;
}
.home-page .home-page__showcase-image {
  flex: 0 0 930px;
  height: 422px;
  width: 930px;
  min-width: 930px;
  max-width: 930px;
  margin-left: -84px;
  border-radius: 26px;
  display: block;
  background: radial-gradient(circle at 16% 18%, rgba(245, 224, 198, 0.8) 0%, rgba(245, 224, 198, 0) 16%), linear-gradient(180deg, #c7b3a0 0%, #b6afb1 26%, #7f7a82 46%, #59626b 46%, #2c3236 100%);
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.home-page .home-page__showcase-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.home-page .home-page__showcase-image::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 50%;
  border-radius: 12px 12px 0 0;
  background: repeating-linear-gradient(90deg, rgba(73, 52, 36, 0.22) 0 7px, rgba(213, 180, 145, 0.18) 7px 14px, rgba(84, 59, 41, 0.22) 14px 21px), repeating-linear-gradient(0deg, rgba(174, 139, 94, 0.96) 0 22px, rgba(118, 87, 58, 0.95) 22px 31px, rgba(41, 34, 29, 0.92) 31px 37px, rgba(168, 134, 92, 0.94) 37px 58px);
}
.home-page .home-page__showcase-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.245) 0%, rgba(0, 0, 0, 0.315) 100%);
  z-index: 2;
  pointer-events: none;
}
.home-page .home-page__showcase-image.has-image::before {
  display: none;
}
.home-page .home-page__metrics .home-page__headline h2 {
  max-width: 100%;
}
.home-page .home-page__metric-grid {
  --metric-gap: 72px;
  margin-top: 116px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--metric-gap);
}
.home-page .home-page__metric {
  min-height: 118px;
  padding-right: 0;
  position: relative;
}
.home-page .home-page__metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: calc(var(--metric-gap) / -2);
  top: 58%;
  width: 103.48px;
  height: 0;
  border: 1px solid #D7D7D7;
  transform: translate(50%, -50%) rotate(131.08deg);
}
.home-page .home-page__metric strong {
  display: block;
  font-weight: 400;
  font-size: 51.0352px;
  line-height: 49px;
  color: #000000;
}
.home-page .home-page__metric span {
  display: block;
  margin-top: 15px;
  font-weight: 300;
  font-size: 20px;
  color: #666666;
}
.home-page .home-page__project-strip {
  margin-top: 91px;
  width: calc(100% + max(0px, 50vw - 50%));
  margin-right: calc(50% - 50vw);
}
.home-page .home-page__project-carousel .owl-stage {
  display: flex;
}
.home-page .home-page__project-carousel .owl-item {
  display: flex;
}
.home-page .home-page__project-card {
  width: 100%;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(138.84deg, #FFFFFF 57.14%, #FFEEDE 97.82%);
  border-radius: 20px;
}
.home-page .home-page__project-media {
  height: 410px;
  margin: 10px 10px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #d8d8d8;
}
.home-page .home-page__project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-page .home-page__project-media::before {
  content: "";
  position: absolute;
}
.home-page .home-page__project-media--one {
  background: radial-gradient(circle at 16% 18%, rgba(245, 224, 198, 0.8) 0%, rgba(245, 224, 198, 0) 16%), linear-gradient(180deg, #c7b3a0 0%, #b6afb1 26%, #7f7a82 46%, #59626b 46%, #2c3236 100%);
}
.home-page .home-page__project-media--one::before {
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 50%;
  background: repeating-linear-gradient(90deg, rgba(73, 52, 36, 0.22) 0 7px, rgba(213, 180, 145, 0.18) 7px 14px, rgba(84, 59, 41, 0.22) 14px 21px), repeating-linear-gradient(0deg, rgba(174, 139, 94, 0.96) 0 22px, rgba(118, 87, 58, 0.95) 22px 31px, rgba(41, 34, 29, 0.92) 31px 37px, rgba(168, 134, 92, 0.94) 37px 58px);
}
.home-page .home-page__project-media--two {
  background: linear-gradient(180deg, #dfe8eb 0%, #ccd7da 54%, #7a8c51 54%, #4d5f33 100%);
}
.home-page .home-page__project-media--two::before {
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 46%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(217, 226, 230, 0.9) 100%);
}
.home-page .home-page__project-media--three {
  background: radial-gradient(circle at 68% 16%, rgba(255, 176, 126, 0.44) 0%, rgba(255, 176, 126, 0) 14%), linear-gradient(180deg, #6f5d8d 0%, #856e9e 24%, #ae6d53 48%, #704a35 48%, #312824 100%);
}
.home-page .home-page__project-media--three::before {
  left: 12%;
  right: 12%;
  bottom: 18%;
  height: 52%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0 12%, rgba(74, 58, 51, 0.8) 12% 18%, rgba(255, 255, 255, 0.84) 18% 30%, rgba(74, 58, 51, 0.8) 30% 36%, rgba(255, 255, 255, 0.84) 36% 48%, rgba(74, 58, 51, 0.8) 48% 54%, rgba(255, 255, 255, 0.84) 54% 66%, rgba(74, 58, 51, 0.8) 66% 72%, rgba(255, 255, 255, 0.84) 72% 84%, rgba(74, 58, 51, 0.8) 84% 90%, rgba(255, 255, 255, 0.84) 90% 100%), linear-gradient(180deg, rgba(246, 239, 227, 0.94) 0%, rgba(221, 194, 147, 0.9) 100%);
}
.home-page .home-page__project-media--four {
  background: linear-gradient(180deg, #ddd8d4 0%, #d0cbc7 100%);
}
.home-page .home-page__project-media--four::before {
  left: 12%;
  right: 12%;
  top: 14%;
  bottom: 14%;
  background: radial-gradient(circle at 50% 40%, rgba(188, 177, 164, 0.64) 0%, rgba(188, 177, 164, 0) 22%), linear-gradient(180deg, rgba(246, 239, 230, 0.94) 0%, rgba(221, 209, 193, 0.9) 100%);
}
.home-page .home-page__project-status {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(40, 37, 34, 0.54);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}
.home-page .home-page__project-body {
  padding: 24px 54px 62px;
  position: relative;
}
.home-page .home-page__project-body h3 {
  font-weight: 300;
  font-size: 20px;
  color: #000000;
}
.home-page .home-page__project-body p {
  margin-top: 10px;
  padding-right: 36px;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
  color: #666666;
}
.home-page .home-page__project-body span {
  position: absolute;
  right: 46px;
  bottom: 67px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  background: #9E7C5A;
  border: 1px solid #927456;
  box-shadow: -12px 4px 33.2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.home-page .home-page__closing {
  margin-top: 108px;
}
.home-page .home-page__closing p:first-child {
  font-weight: 300;
  font-size: 46px;
  line-height: 58px;
  color: #454545;
}
.home-page .home-page__closing p:last-child {
  font-weight: 300;
  font-size: 46px;
  line-height: 58px;
  color: #949494;
}
.home-page .home-page__insights {
  margin-top: 62px;
  padding: 56px 0 58px;
  background: linear-gradient(180deg, #181818 0%, #151515 100%);
}
.home-page .home-page__insights-head {
  align-items: start;
}
.home-page .home-page__insights-head p {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.62);
}
.home-page .home-page__insights-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}
.home-page .home-page__insights-eyebrow span:last-child {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.44);
}
.home-page .home-page__insights-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
}
.home-page .home-page__insight-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.home-page .home-page__insight-card {
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.home-page .home-page__insight-media {
  height: 168px;
  margin: 6px 6px 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: #7e8a92;
}
.home-page .home-page__insight-media--one {
  background: linear-gradient(180deg, #b9cde2 0%, #86b2d7 42%, #6f6b6b 42%, #494341 100%);
}
.home-page .home-page__insight-media--one::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 64%;
  background: linear-gradient(90deg, rgba(149, 120, 88, 0.18) 0 8%, rgba(214, 174, 138, 0.12) 8% 16%, rgba(149, 120, 88, 0.18) 16% 24%, rgba(214, 174, 138, 0.12) 24% 32%, rgba(149, 120, 88, 0.18) 32% 40%, rgba(214, 174, 138, 0.12) 40% 48%, rgba(149, 120, 88, 0.18) 48% 56%, rgba(214, 174, 138, 0.12) 56% 64%, rgba(149, 120, 88, 0.18) 64% 72%, rgba(214, 174, 138, 0.12) 72% 80%, rgba(149, 120, 88, 0.18) 80% 88%, rgba(214, 174, 138, 0.12) 88% 100%), linear-gradient(180deg, rgba(229, 215, 194, 0.92) 0%, rgba(151, 122, 87, 0.94) 100%);
}
.home-page .home-page__insight-media--two {
  background: linear-gradient(180deg, #e0edf5 0%, #a0d0df 48%, #6ca0ac 48%, #4e676e 100%);
}
.home-page .home-page__insight-media--two::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  top: 14%;
  bottom: 12%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(212, 229, 236, 0.84) 100%);
}
.home-page .home-page__insight-media--three {
  background: linear-gradient(180deg, #f0f3f4 0%, #e4e8ea 56%, #d2d8db 56%, #bec7cc 100%);
}
.home-page .home-page__insight-media--three::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 20%;
  bottom: 18%;
  background: linear-gradient(180deg, #ffffff 0%, #e4e8ea 100%);
}
.home-page .home-page__insight-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(174, 131, 82, 0.9);
  color: #fff;
  font-size: 18px;
}
.home-page .home-page__insight-body {
  padding: 14px 16px 16px;
}
.home-page .home-page__insight-body h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1439px) {
  .home-page .home-page__wrapper {
    padding: 0 32px;
  }
  .home-page .home-page__hero-word {
    font-size: clamp(108px, 12vw, 210px);
    top: 40%;
  }
  .home-page .home-page__hero-copy {
    top: 42%;
  }
  .home-page .home-page__hero-copy h1 {
    font-size: 56px;
    line-height: 1;
  }
  .home-page .home-page__hero-copy p {
    font-size: 21px;
    line-height: 1.35;
  }
  .home-page .home-page__headline h2 {
    font-size: 46px;
  }
  .home-page .home-page__closing p:first-child {
    font-size: 38px;
  }
  .home-page .home-page__closing p:last-child {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .home-page .home-page__hero {
    height: 100vh;
    min-height: 100vh;
  }
  .home-page .home-page__wrapper {
    padding: 0 24px;
  }
  .home-page .home-page__hero-content {
    min-height: 100vh;
    padding: 88px 0 52px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .home-page .home-page__hero-title {
    display: block;
  }
  .home-page .home-page__hero-word {
    position: static;
    transform: none;
    font-size: 96px;
  }
  .home-page .home-page__hero-copy {
    position: static;
    transform: none;
    max-width: 520px;
  }
  .home-page .home-page__hero-copy h1 {
    max-width: 520px;
    font-size: 46px;
    line-height: 1.02;
  }
  .home-page .home-page__hero-copy p {
    position: static;
    max-width: 100%;
    width: 100%;
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.45;
  }
  .home-page .home-page__hero-actions {
    position: static;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
  }
  .home-page .home-page__hero-footer {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
  }
  .home-page .home-page__hero-mini-cards {
    width: 100%;
  }
  .home-page .home-page__hero-mini-card {
    flex: 1 1 0;
    width: auto;
  }
  .home-page .home-page__headline h2 {
    font-size: 36px;
    line-height: 1.14;
  }
  .home-page .home-page__value-cards {
    grid-template-columns: 1fr;
  }
  .home-page .home-page__showcase-track {
    min-height: 360px;
    padding: 0 24px;
    width: 100%;
    min-width: 100%;
  }
  .home-page .home-page__showcase-carousel {
    margin-left: -160px;
    width: calc(100% + 160px);
  }
  .home-page .home-page__showcase-panel {
    width: 60%;
    min-height: 360px;
    padding: 56px 36px 48px;
  }
  .home-page .home-page__showcase-word {
    left: 36px;
    top: 42px;
    font-size: 88px;
  }
  .home-page .home-page__showcase-cta {
    min-height: 58px;
    padding: 0 20px 0 24px;
    font-size: 30px;
    line-height: 1.1;
    gap: 12px;
  }
  .home-page .home-page__showcase-cta span:last-child {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
  .home-page .home-page__showcase-features {
    margin-top: 14px;
  }
  .home-page .home-page__showcase-features li {
    font-size: 13px;
  }
  .home-page .home-page__showcase-image {
    height: 320px;
    width: 54%;
    margin-left: -48px;
  }
  .home-page .home-page__metric-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .home-page .home-page__metric {
    padding: 20px 0;
    border-right: 0 !important;
  }
  .home-page .home-page__metric::after {
    display: none;
  }
  .home-page .home-page__metric {
    border-bottom: 1px solid rgba(230, 223, 213, 0.94);
  }
  .home-page .home-page__metric:last-child {
    border-bottom: 0;
  }
  .home-page .home-page__insights-head p {
    font-size: 28px;
  }
  .home-page .home-page__insight-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .home-page .home-page__hero {
    height: 100vh;
    min-height: 100vh;
  }
  .home-page .home-page__wrapper {
    padding: 0 16px;
  }
  .home-page .home-page__hero-content {
    min-height: 100vh;
    padding: 64px 0 34px;
  }
  .home-page .home-page__hero-word {
    font-size: 62px;
    line-height: 0.92;
  }
  .home-page .home-page__hero-copy {
    max-width: 100%;
  }
  .home-page .home-page__hero-copy h1 {
    font-size: 30px;
    line-height: 1.04;
  }
  .home-page .home-page__hero-copy p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
  }
  .home-page .home-page__hero-actions {
    margin-top: 20px;
    gap: 10px;
  }
  .home-page .home-page__hero-button {
    width: 100%;
    min-width: 0;
    height: 50px;
    font-size: 14px;
  }
  .home-page .home-page__hero-button-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .home-page .home-page__hero-button-icon svg {
    width: 28px;
    height: 28px;
  }
  .home-page .home-page__hero-footer {
    margin-top: 24px;
    gap: 16px;
  }
  .home-page .home-page__hero-catalog {
    font-size: 12px;
  }
  .home-page .home-page__hero-mini-cards {
    flex-direction: column;
  }
  .home-page .home-page__hero-mini-card {
    min-height: 96px;
  }
  .home-page .home-page__hero-mini-card strong {
    font-size: 22px;
  }
  .home-page .home-page__vision,
  .home-page .home-page__metrics,
  .home-page .home-page__projects {
    padding-top: 40px;
  }
  .home-page .home-page__eyebrow span:last-child {
    font-size: 13px;
  }
  .home-page .home-page__headline h2 {
    font-size: 26px;
    line-height: 1.18;
  }
  .home-page .home-page__headline p {
    margin-top: 12px;
    font-size: 14px;
  }
  .home-page .home-page__value-cards {
    margin-top: 20px;
    gap: 10px;
  }
  .home-page .home-page__value-card {
    min-height: auto;
    padding: 18px 16px;
  }
  .home-page .home-page__value-card h3 {
    margin-top: 24px;
    font-size: 16px;
  }
  .home-page .home-page__value-card p {
    margin-top: 10px;
    font-size: 13px;
  }
  .home-page .home-page__value-index {
    font-size: 22px;
  }
  .home-page .home-page__showcase {
    padding-top: 34px;
  }
  .home-page .home-page__showcase-carousel {
    margin-left: 0;
    width: 100%;
  }
  .home-page .home-page__showcase-track {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 10px;
    padding: 0 8px;
    width: 100%;
    min-width: 100%;
  }
  .home-page .home-page__showcase-word {
    left: 16px;
    top: 18px;
    font-size: 64px;
  }
  .home-page .home-page__showcase-panel {
    position: relative;
    left: auto;
    right: auto;
    min-height: auto;
    padding: 34px 16px 20px;
    border-radius: 16px;
  }
  .home-page .home-page__showcase-panel p {
    margin-top: 16px;
    font-size: 13px;
  }
  .home-page .home-page__showcase-panel small {
    margin-top: 14px;
    font-size: 14px;
  }
  .home-page .home-page__showcase-features {
    margin-top: 12px;
    grid-template-columns: 1fr;
  }
  .home-page .home-page__showcase-features li {
    font-size: 13px;
  }
  .home-page .home-page__showcase-cta {
    min-height: 44px;
    padding: 0 14px 0 16px;
    font-size: 18px;
    gap: 8px;
  }
  .home-page .home-page__showcase-cta span:last-child {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    font-size: 15px;
  }
  .home-page .home-page__showcase-image {
    height: 188px;
    width: 100%;
    margin-left: 0;
    border-radius: 14px;
  }
  .home-page .home-page__metric strong {
    font-size: 36px;
  }
  .home-page .home-page__metric span {
    font-size: 13px;
  }
  .home-page .home-page__project-strip {
    margin-top: 20px;
    width: 100%;
    margin-right: 0;
  }
  .home-page .home-page__project-card {
    border-radius: 14px;
  }
  .home-page .home-page__project-media {
    height: 210px;
    border-radius: 10px;
  }
  .home-page .home-page__project-body h3 {
    font-size: 16px;
  }
  .home-page .home-page__project-body p {
    font-size: 13px;
  }
  .home-page .home-page__closing {
    margin-top: 30px;
  }
  .home-page .home-page__closing p:first-child {
    font-size: 26px;
  }
  .home-page .home-page__closing p:last-child {
    font-size: 20px;
    margin-top: 6px;
  }
  .home-page .home-page__insights {
    margin-top: 44px;
    padding: 40px 0 44px;
  }
  .home-page .home-page__insights-head p {
    font-size: 22px;
    line-height: 1.3;
  }
  .home-page .home-page__insight-grid {
    margin-top: 24px;
    gap: 14px;
  }
  .home-page .home-page__insight-card {
    border-radius: 14px;
  }
  .home-page .home-page__insight-media {
    height: 144px;
    border-radius: 10px;
  }
  .home-page .home-page__insight-body {
    padding: 12px 14px 14px;
  }
  .home-page .home-page__insight-body h3 {
    font-size: 14px;
  }
}