@font-face {
  font-family: "AGAvalancheC";
  src: url("fonts/AGAvalancheC.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ManropeRegular";
  src: url("fonts/ManropeRegular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "ManropeBold";
  src: url("fonts/ManropeBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #fff;
  --line: rgba(255, 255, 255, .16);
  --gold: #e8caa0;
  --hover: rgba(238, 207, 178, 1);
  --star: #f3b571;
  --black: #050404;
  --container: 1680px;
  --side-x: clamp(32px, 6.25vw, 120px);
  --grid-gap: clamp(18px, 1.5625vw, 30px);
  --header-height: clamp(94px, 6.145833vw, 118px);
  --font-title: "AGAvalancheC", Arial, sans-serif;
  --font-ui: "ManropeRegular", Arial, sans-serif;
  --font-bold: "ManropeBold", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-ui);
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  border: 0;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.page {
  min-height: 100vh;
  overflow-x: clip;
}

.site-grid {
  width: calc(100% - var(--side-x) * 2);
  max-width: var(--container);
  margin-inline: auto;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(680px, 100svh, 1080px);
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: #070605;
  isolation: isolate;
}

.hero__media,
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
}

.hero__media img {
  object-fit: cover;
  object-position: center center;
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .6) 34%, rgba(0, 0, 0, .14) 66%, rgba(0, 0, 0, .03) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .04) 45%, rgba(0, 0, 0, .82) 100%);
}

.hero::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05) 0, transparent var(--header-height));
}

.site-header {
  position: relative;
  z-index: 20;
  min-height: var(--header-height);
  border-bottom: 0;
  background: rgba(18, 14, 14, .2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: grid;
  width: calc(100% - var(--side-x) * 2);
  max-width: var(--container);
  min-height: var(--header-height);
  grid-template-columns: minmax(92px, 150px) minmax(0, 1fr) minmax(0, max-content);
  column-gap: var(--grid-gap);
  align-items: center;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
}

.brand img {
  display: block;
  width: 133px;
  height: auto;
}

.nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: clamp(24px, 2.291666vw, 44px);
  color: rgba(255, 255, 255, .88);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 1.5625vw, 30px);
  font-family: var(--font-bold);
}

.lang-select {
  position: relative;
  z-index: 30;
}

.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lang-select__menu {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  display: grid;
  min-width: 64px;
  padding: 8px 0;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(18, 14, 14, .72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .2s ease, transform .2s ease;
}

.lang-select.is-open .lang-select__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.lang-select__menu button {
  padding: 9px 14px;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  cursor: pointer;
  font-family: var(--font-bold);
  font-size: 13px;
  line-height: 1;
  text-align: center;
  transition: color .2s ease;
}

.lang span {
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.phone {
  font-size: 17px;
  white-space: nowrap;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 2px solid currentColor;
  font-family: var(--font-bold);
  font-size: 14px;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

.arrow-link::after {
  width: 12px;
  height: 12px;
  margin-left: .35em;
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.00391' width='11' height='2' fill='white'/%3E%3Crect x='12' width='11' height='2' transform='rotate(90 12 0)' fill='white'/%3E%3Crect x='10.8711' y='2.61719' width='13.2141' height='2.15999' transform='rotate(135 10.8711 2.61719)' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='1.00391' width='11' height='2' fill='white'/%3E%3Crect x='12' width='11' height='2' transform='rotate(90 12 0)' fill='white'/%3E%3Crect x='10.8711' y='2.61719' width='13.2141' height='2.15999' transform='rotate(135 10.8711 2.61719)' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
}

.socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.socials svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.socials a:first-child svg,
.socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.burger,
.mobile-menu {
  display: none;
}

.hero__inner {
  position: relative;
  z-index: 5;
  display: grid;
  width: calc(100% - var(--side-x) * 2);
  max-width: var(--container);
  min-height: 0;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  row-gap: clamp(32px, 4vh, 58px);
  margin-inline: auto;
  padding-block: clamp(155px, 18vh, 282px) clamp(58px, 8vh, 92px);
}

.hero__content {
  align-self: start;
  width: min(100%, 1286px);
}

.eyebrow {
  margin-bottom: 34px;
  width: fit-content;
  background: linear-gradient(90deg, #E6C8AC 20.67%, #EECFB2 50.96%, #CAB098 71.99%);
  color: transparent;
  font-family: var(--font-title);
  font-size: 26px;
  line-height: 1;
  letter-spacing: .1em;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero h1 {
  max-width: 1286px;
  font-family: var(--font-title);
  font-size: 90px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.lead {
  max-width: 650px;
  margin-top: 34px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.5;
}

.hero__footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, max-content);
  column-gap: var(--grid-gap);
  align-items: end;
}

.hero-cta {
  min-width: 0;
}

.rating {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-bold);
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.rating__stars {
  color: var(--star);
  font-size: 18px;
  letter-spacing: 0;
  white-space: nowrap;
}

.rating__years {
  color: #fff;
  white-space: nowrap;
}

.about {
  position: relative;
  overflow: hidden;
  background: #050404;
  color: #fff;
  isolation: isolate;
}

.about::before {
  position: absolute;
  top: 140px;
  left: -120px;
  z-index: -1;
  width: 640px;
  height: 980px;
  border-radius: 44% 56% 52% 48%;
  background: rgba(173, 159, 145, .25);
  content: "";
  filter: blur(200px);
  pointer-events: none;
  transform: rotate(37deg);
}

.about::after {
  position: absolute;
  top: 560px;
  right: -240px;
  z-index: -1;
  width: 560px;
  height: 780px;
  border-radius: 54% 46% 48% 52%;
  background: rgba(173, 159, 145, .25);
  content: "";
  filter: blur(200px);
  pointer-events: none;
  transform: rotate(-22deg);
}

.about__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: calc(100% - var(--side-x) * 2);
  max-width: var(--container);
  grid-template-columns: minmax(0, 1fr);
  margin-inline: auto;
  padding-block: clamp(78px, 5.572916vw, 107px) clamp(88px, 6.5625vw, 126px);
}

.section-kicker {
  display: flex;
  align-items: center;
  margin-bottom: clamp(20px, 1.666666vw, 32px);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.section-kicker::before {
  content: none;
}

.about__head {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  column-gap: var(--grid-gap);
  align-items: end;
}

.about h2 {
  max-width: 680px;
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  column-gap: clamp(72px, 9vw, 220px);
  align-items: end;
}

.about-stat {
  width: max-content;
  max-width: 100%;
}

.about-stat strong {
  display: block;
  font-family: var(--font-title);
  font-size: 96px;
  font-weight: 400;
  line-height: .95;
  letter-spacing: 0;
}

.about-stat span {
  display: block;
  margin-top: 8px;
  padding-left: clamp(6px, .52vw, 10px);
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}

.about__line {
  height: 1px;
  margin-block: clamp(36px, 2.916666vw, 56px) clamp(46px, 3.75vw, 72px);
  background: rgba(255, 255, 255, .22);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 744fr) minmax(0, 825fr);
  gap: clamp(52px, 5.78125vw, 111px);
  align-items: start;
}

.about__photo {
  display: block;
  width: 100%;
  overflow: hidden;
  background: #15110d;
}

.about__photo img {
  display: block;
  width: 100%;
  height: clamp(620px, 44.791666vw, 860px);
  object-fit: cover;
  object-position: 50% 50%;
}

.about__copy {
  min-width: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
  line-height: 1.52;
}

.about__copy p + p {
  margin-top: 24px;
}

.about__lead {
  color: rgba(255, 255, 255, .9);
  font-size: 22px;
  line-height: 1.38;
}

.about-features {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.about-feature {
  padding-block: 22px 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.about-feature:last-child {
  border: 0;
  padding-bottom: 0;
}

.about-feature h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-feature p {
  max-width: 640px;
}

.about__quote {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid #e6c99f;
  color: rgba(255, 255, 255, .92);
  font-family: var(--font-bold);
  font-size: 15px;
  line-height: 1.55;
  text-transform: uppercase;
}

.cases {
  position: relative;
  overflow: hidden;
  background: #050404;
  color: #fff;
  isolation: isolate;
}

.cases::before {
  position: absolute;
  top: 150px;
  left: -180px;
  z-index: -1;
  width: 620px;
  height: 760px;
  border-radius: 52% 48% 46% 54%;
  background: rgba(173, 159, 145, .25);
  content: "";
  filter: blur(200px);
  pointer-events: none;
  transform: rotate(31deg);
}

.cases::after {
  position: absolute;
  right: -250px;
  bottom: 180px;
  z-index: -1;
  width: 520px;
  height: 700px;
  border-radius: 48% 52% 56% 44%;
  background: rgba(173, 159, 145, .25);
  content: "";
  filter: blur(200px);
  pointer-events: none;
  transform: rotate(-24deg);
}

.cases__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: calc(100% - var(--side-x) * 2);
  max-width: var(--container);
  margin-inline: auto;
  padding-block: clamp(82px, 6.35vw, 122px) clamp(92px, 7.2vw, 138px);
}

.cases__kicker {
  margin-bottom: clamp(18px, 1.45vw, 28px);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.cases h2 {
  max-width: 760px;
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.cases__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 1.5625vw, 30px);
  margin-top: clamp(42px, 4.0625vw, 78px);
}

.case-card {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .01);
}

.case-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 793 / 505;
  margin: clamp(10px, .833vw, 16px) clamp(10px, .833vw, 16px) 0;
  background: #15110d;
}

.case-card__slides {
  position: absolute;
  inset: 0;
}

.case-card__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .28s ease;
}

.case-card__media img.is-active {
  opacity: 1;
}

.case-card__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 42px;
  height: 54px;
  place-items: center;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, opacity .2s ease;
}

.case-card__arrow::before {
  width: 20px;
  height: 20px;
  border-top: 3px solid currentColor;
  border-left: 3px solid currentColor;
  content: "";
}

.case-card__arrow--prev {
  left: 18px;
}

.case-card__arrow--prev::before {
  transform: rotate(-45deg);
}

.case-card__arrow--next {
  right: 18px;
}

.case-card__arrow--next::before {
  transform: rotate(135deg);
}

.case-card__dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.case-card__dot {
  display: block;
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  cursor: pointer;
  transition: width .2s ease, background-color .2s ease;
}

.case-card__dot.is-active {
  width: 22px;
  background: #fff;
}

.case-card__body {
  display: grid;
  align-content: start;
  padding: clamp(28px, 2.1vw, 40px) clamp(16px, 1.25vw, 24px) clamp(30px, 2.2vw, 42px);
}

.case-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(28px, 2.2vw, 42px);
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.35;
}

.case-card__location span {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background: url("image/map-icon.svg") center / contain no-repeat;
}

.case-card__body > p:last-child {
  max-width: 760px;
  color: rgba(255, 255, 255, .58);
  font-size: 16px;
  line-height: 1.55;
}

.faq {
  position: relative;
  overflow: hidden;
  background: #050404;
  color: #fff;
  isolation: isolate;
}

.faq::before {
  position: absolute;
  top: 170px;
  right: -210px;
  z-index: -1;
  width: 620px;
  height: 780px;
  border-radius: 46% 54% 52% 48%;
  background: rgba(173, 159, 145, .25);
  content: "";
  filter: blur(200px);
  pointer-events: none;
  transform: rotate(-29deg);
}

.faq::after {
  position: absolute;
  bottom: 160px;
  left: -180px;
  z-index: -1;
  width: 540px;
  height: 720px;
  border-radius: 54% 46% 48% 52%;
  background: rgba(173, 159, 145, .25);
  content: "";
  filter: blur(200px);
  pointer-events: none;
  transform: rotate(28deg);
}

.faq__inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: calc(100% - var(--side-x) * 2);
  max-width: var(--container);
  grid-template-columns: minmax(0, 744fr) minmax(0, 825fr);
  column-gap: clamp(52px, 5.78125vw, 111px);
  row-gap: clamp(48px, 3.75vw, 72px);
  margin-inline: auto;
  padding-block: clamp(86px, 6.927083vw, 133px) clamp(100px, 7.5vw, 144px);
}

.faq__intro {
  grid-column: 1;
}

.faq__kicker {
  margin-bottom: clamp(18px, 1.45vw, 28px);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.faq h2 {
  max-width: 760px;
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq__photo {
  display: block;
  width: 100%;
  grid-column: 1;
  grid-row: 2;
  overflow: hidden;
  aspect-ratio: 762 / 849;
  background: #15110d;
}

.faq__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.faq__list {
  grid-column: 2;
  grid-row: 2;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.faq-item__button {
  display: grid;
  width: 100%;
  grid-template-columns: 44px minmax(0, 1fr) 54px;
  column-gap: 18px;
  align-items: center;
  padding: 34px 0;
  background: transparent;
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.faq-item__num {
  align-self: start;
  padding-top: 4px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1;
}

.faq-item__question {
  font-family: var(--font-title);
  font-size: 23px;
  line-height: 1.24;
  letter-spacing: 0;
}

.faq-item__icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  justify-self: end;
  place-items: center;
  border-radius: 50%;
}

.faq-item__icon::before {
  width: 13px;
  height: 13px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-3px) rotate(45deg);
}

.faq-item.is-open .faq-item__icon {
  background: rgba(255, 255, 255, .11);
}

.faq-item.is-open .faq-item__icon::before {
  transform: translateY(3px) rotate(225deg);
}

.faq-item__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease, padding-bottom .24s ease;
}

.faq-item__answer-inner {
  max-width: 720px;
  overflow: hidden;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  line-height: 1.55;
}

.faq-item.is-open .faq-item__answer {
  grid-template-rows: 1fr;
  padding: 0 68px 34px 62px;
}

.site-footer {
  background: #050404;
  color: #fff;
}

.site-footer__inner {
  width: calc(100% - var(--side-x) * 2);
  max-width: var(--container);
  margin-inline: auto;
  padding-block: clamp(54px, 4.635416vw, 89px) 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, max-content);
  column-gap: var(--grid-gap);
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  width: fit-content;
}

.footer-logo img {
  display: block;
  width: 133px;
  height: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: clamp(32px, 2.8125vw, 54px);
  color: rgba(255, 255, 255, .78);
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__middle {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) minmax(0, .7fr) minmax(280px, max-content);
  column-gap: var(--grid-gap);
  align-items: end;
  margin-top: clamp(24px, 2.083333vw, 40px);
  padding-block: clamp(22px, 1.822916vw, 35px) clamp(30px, 2.395833vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, .11);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-contact,
.footer-socials {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-contact span,
.footer-socials > span {
  color: rgba(255, 255, 255, .36);
  font-size: 14px;
  line-height: 1.35;
}

.footer-contact a {
  width: fit-content;
  color: #fff;
  font-family: var(--font-title);
  font-size: 22px;
  line-height: 1.08;
  text-transform: uppercase;
}

.footer-socials__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-socials__links a {
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
}

.footer-socials__links svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-socials__links a:first-child svg,
.footer-socials__links a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.footer-cta {
  justify-self: end;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, max-content);
  column-gap: var(--grid-gap);
  align-items: center;
  padding-top: 28px;
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
  line-height: 1.35;
}

.footer-copy {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-copy span + span {
  position: relative;
  padding-left: 16px;
}

.footer-copy span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .28);
  content: "";
  transform: translateY(-50%);
}

.footer-policy {
  justify-self: end;
}

.consult-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5.729166vw, 55px);
  overflow-y: auto;
  background: rgba(5, 4, 4, .92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.consult-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.consult-modal__dialog {
  position: relative;
  width: min(100%, 860px);
  min-height: min(660px, calc(100svh - 110px));
  background: #050404;
  color: #fff;
}

.consult-modal__close {
  position: absolute;
  top: 36px;
  right: 32px;
  display: inline-flex;
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.consult-modal__close span,
.consult-modal__close span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: center;
}

.consult-modal__close span {
  transform: translate(-50%, -50%) rotate(45deg);
}

.consult-modal__close span::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.consult-form {
  display: grid;
  width: min(100% - 144px, 594px);
  margin-inline: auto;
  padding-block: 128px 70px;
}

.consult-form h2 {
  margin: 0 0 58px;
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.consult-field {
  display: grid;
  gap: 12px;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, .62);
  font-size: 17px;
  line-height: 1.2;
}

.consult-field span {
  transition: color .18s ease;
}

.consult-field input {
  width: 100%;
  height: 28px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1.2;
}

.consult-field:focus-within span {
  color: #fff;
}

.consult-field:focus-within input {
  border-bottom-color: #fff;
}

.consult-form__submit {
  width: 100%;
  min-height: 61px;
  margin-top: -6px;
  padding: 18px 24px;
  background: #efd4b8;
  color: #161412;
  font-family: var(--font-bold);
  font-size: 14px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.privacy-modal__dialog {
  width: min(100%, 1080px);
  min-height: min(620px, calc(100svh - 110px));
}

.privacy-content {
  width: min(100% - 144px, 820px);
  margin-inline: auto;
  padding-block: 116px 78px;
  color: rgba(255, 255, 255, .68);
}

.privacy-content h2 {
  margin: 0 0 42px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.privacy-content p {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.62;
}

.privacy-content p + p {
  margin-top: 18px;
}

@media (hover: hover) and (pointer: fine) {
  .nav a,
  .phone,
  .arrow-link,
  .socials a,
  .footer-nav a,
  .footer-contact a,
  .footer-socials__links a,
  .footer-policy,
  .case-card__arrow,
  .faq-item__button,
  .consult-modal__close,
  .mobile-menu__nav a,
  .mobile-menu__phone,
  .mobile-menu__cta,
  .mobile-menu__socials a,
  .mobile-menu__lang,
  .lang-select__menu button,
  .mobile-lang-select__menu button,
  .burger {
    transition: color .22s ease;
  }

  .nav a:hover,
  .phone:hover,
  .arrow-link:hover,
  .socials a:hover,
  .footer-nav a:hover,
  .footer-contact a:hover,
  .footer-socials__links a:hover,
  .footer-policy:hover,
  .case-card__arrow:hover,
  .faq-item__button:hover,
  .consult-modal__close:hover,
  .mobile-menu__nav a:hover,
  .mobile-menu__phone:hover,
  .mobile-menu__cta:hover,
  .mobile-menu__socials a:hover,
  .mobile-menu__lang:hover,
  .lang-select__menu button:hover,
  .mobile-lang-select__menu button:hover,
  .burger:hover {
    color: var(--hover);
  }

  .consult-form__submit:hover {
    background: var(--hover);
  }

  .case-card__dot:hover {
    background: var(--hover);
  }
}

@media (max-width: 1500px) {
  :root {
    --side-x: clamp(40px, 6.25vw, 120px);
    --header-height: 94px;
  }

  .nav {
    gap: 34px;
    font-size: 13px;
  }

  .header-actions {
    gap: 20px;
  }

  .header-cta {
    font-size: 13px;
  }

  .socials {
    gap: 16px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .about h2 {
    max-width: 620px;
    font-size: 58px;
  }

  .about-stat strong {
    font-size: 76px;
  }

  .cases h2 {
    max-width: 620px;
    font-size: 58px;
  }

  .case-card__body > p:last-child {
    font-size: 15px;
  }

  .faq h2 {
    max-width: 620px;
    font-size: 58px;
  }

  .faq-item__question {
    font-size: 21px;
  }

  .footer-contact a {
    font-size: 20px;
  }

  .site-footer__middle {
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr) minmax(0, .7fr) minmax(250px, max-content);
  }
}

@media (max-width: 1280px) {
  :root {
    --side-x: 32px;
    --grid-gap: 22px;
  }

  .site-header__inner {
    grid-template-columns: minmax(90px, 140px) minmax(0, 1fr) auto;
  }

  .header-cta,
  .socials {
    display: none;
  }

  .hero h1 {
    font-size: 64px;
  }

  .about__head {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 30px;
  }

  .about h2 {
    max-width: 760px;
    font-size: 42px;
  }

  .about__stats {
    width: min(460px, 100%);
  }

  .about-stat strong {
    font-size: 64px;
  }

  .about__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 42px;
  }

  .cases h2 {
    font-size: 44px;
  }

  .case-card h3 {
    font-size: 28px;
  }

  .faq h2 {
    font-size: 44px;
  }

  .faq__inner {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 42px;
  }

  .faq-item__button {
    grid-template-columns: 36px minmax(0, 1fr) 44px;
    column-gap: 14px;
  }

  .faq-item__question {
    font-size: 19px;
  }

  .site-footer__middle {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
  }

  .footer-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 960px) {
  :root {
    --side-x: 15px;
    --grid-gap: 12px;
    --header-height: 82px;
  }

  .hero {
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .hero__media {
    inset: 0 0 auto;
    height: min(151vw, 640px);
  }

  .hero__media img {
    object-fit: cover;
    object-position: 78% top;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .03) 0%, rgba(0, 0, 0, .03) 31%, rgba(0, 0, 0, .42) 52%, rgba(0, 0, 0, .88) 72%, rgba(0, 0, 0, .96) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .06) 60%, rgba(0, 0, 0, .03) 100%);
  }

  .hero::after {
    display: block;
    background: linear-gradient(180deg, rgba(255, 255, 255, .04) 0, transparent var(--header-height));
  }

  .site-header {
    border-bottom: 0;
    background: rgba(18, 14, 14, .2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .site-header__inner {
    display: flex;
    width: calc(100% - 50px);
    min-height: var(--header-height);
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 13px;
  }

  .brand img {
    width: 92px;
  }

  .nav,
  .header-actions {
    display: none;
  }

  .burger {
    position: relative;
    z-index: 40;
    display: inline-flex;
    width: 34px;
    height: 30px;
    margin-top: 17px;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: color .22s ease;
  }

  .burger span,
  .burger span::before,
  .burger span::after {
    position: absolute;
    right: 0;
    width: 27px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transition: transform .22s ease, opacity .22s ease;
  }

  .burger span {
    top: 14px;
  }

  .burger span::before {
    top: -7px;
  }

  .burger span::after {
    top: 7px;
  }

  .burger.is-open span {
    transform: rotate(45deg);
  }

  .burger.is-open span::before {
    transform: translateY(7px) rotate(90deg);
  }

  .burger.is-open span::after {
    opacity: 0;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: grid;
    min-height: 100svh;
    grid-template-rows: auto 1fr auto;
    padding: 14px 21px 45px;
    background: rgba(18, 14, 14, .2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease;
  }

  .mobile-menu::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, .55);
    content: "";
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu__bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .mobile-menu__logo {
    display: inline-flex;
    width: fit-content;
  }

  .mobile-menu__logo img {
    display: block;
    width: 92px;
    height: auto;
  }

  .mobile-menu__close {
    position: relative;
    display: inline-flex;
    width: 28px;
    height: 28px;
    margin-top: 10px;
    padding: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu__close span,
  .mobile-menu__close span::before {
    position: absolute;
    top: 13px;
    left: 0;
    width: 28px;
    height: 1.5px;
    background: currentColor;
    content: "";
  }

  .mobile-menu__close span {
    transform: rotate(45deg);
  }

  .mobile-menu__close span::before {
    top: 0;
    transform: rotate(90deg);
  }

  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: start;
    padding-top: 38px;
  }

  .mobile-menu__nav a {
    font-family: var(--font-ui);
    font-size: 18px;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu__bottom {
    display: grid;
    justify-items: center;
    gap: 27px;
  }

  .mobile-lang-select {
    position: relative;
    display: grid;
    justify-items: center;
  }

  .mobile-menu__lang {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    background: transparent;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-lang-select__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    display: grid;
    min-width: 70px;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(18, 14, 14, .72);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .mobile-lang-select.is-open .mobile-lang-select__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .mobile-lang-select__menu button {
    padding: 10px 16px;
    background: transparent;
    color: rgba(255, 255, 255, .78);
    font-family: var(--font-bold);
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu__lang span {
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
  }

  .mobile-menu__phone {
    font-family: var(--font-bold);
    font-size: 18px;
    line-height: 1;
  }

  .mobile-menu__cta {
    max-width: 100%;
    font-size: 14px;
  }

  .mobile-menu__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
    padding-top: 16px;
  }

  .mobile-menu__socials a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu__socials svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

  .mobile-menu__socials a:first-child svg,
  .mobile-menu__socials a:last-child svg {
    fill: currentColor;
    stroke: none;
  }

  .hero__inner {
    grid-template-rows: auto auto;
    padding-block: min(110vw, 464px) 78px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 34px;
    line-height: 1.2;
  }

  .eyebrow {
    margin-bottom: 18px;
  }

  .lead {
    max-width: 300px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero__footer {
    display: block;
  }

  .hero-cta {
    max-width: 100%;
    font-size: 13px;
    white-space: normal;
  }

  .rating {
    grid-template-columns: auto 1fr;
    max-width: 285px;
    margin-top: 48px;
    gap: 6px;
    font-size: 14px;
    line-height: 1.35;
  }

  .rating__text {
    grid-column: 1 / -1;
    max-width: 260px;
  }

  .about {
    background: #050404;
  }

  .about::before {
    top: 120px;
    left: -260px;
    width: 520px;
    height: 780px;
    filter: blur(160px);
  }

  .about::after {
    top: 520px;
    right: -300px;
    width: 480px;
    height: 700px;
    filter: blur(160px);
  }

  .cases::before,
  .cases::after,
  .faq::before,
  .faq::after {
    filter: blur(160px);
  }

  .cases::before {
    top: 120px;
    left: -300px;
  }

  .cases::after {
    right: -300px;
    bottom: 130px;
  }

  .faq::before {
    top: 130px;
    right: -300px;
  }

  .faq::after {
    bottom: 120px;
    left: -280px;
  }

  .about__inner {
    padding-block: 30px 56px;
  }

  .section-kicker {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .about h2 {
    max-width: 345px;
    font-size: 32px;
    line-height: 1.18;
  }

  .about__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 28px;
    margin-top: 31px;
  }

  .about-stat {
    width: auto;
  }

  .about-stat strong {
    font-size: 56px;
  }

  .about-stat span {
    margin-top: 5px;
    padding-left: 6px;
    font-size: 11px;
  }

  .about__line {
    margin-block: 20px 24px;
    background: rgba(255, 255, 255, .17);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__photo img {
    height: auto;
  }

  .about__copy {
    font-size: 17px;
    line-height: 1.58;
  }

  .about__lead {
    font-size: 21px;
    line-height: 1.44;
  }

  .about-features {
    margin-top: 34px;
  }

  .about-feature {
    padding-block: 24px 25px;
  }

  .about-feature h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .about__quote {
    margin-top: 28px;
    padding-top: 25px;
    font-size: 18px;
  }

  .cases__inner {
    padding-block: 54px 70px;
  }

  .cases__kicker {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .cases h2 {
    max-width: 345px;
    font-size: 32px;
    line-height: 1.18;
  }

  .cases__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 32px;
  }

  .case-card__media {
    aspect-ratio: 330 / 210;
    margin: 8px 8px 0;
  }

  .case-card__body {
    padding: 22px 14px 28px;
  }

  .case-card h3 {
    font-size: 28px;
    line-height: 1.22;
  }

  .case-card__location {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .case-card__body > p:last-child {
    font-size: 14px;
    line-height: 1.5;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 56px 70px;
  }

  .faq__intro,
  .faq__photo,
  .faq__list {
    grid-column: 1;
    grid-row: auto;
  }

  .faq__kicker {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .faq h2 {
    max-width: 345px;
    font-size: 32px;
    line-height: 1.18;
  }

  .faq__photo {
    margin-top: 36px;
    aspect-ratio: 345 / 396;
  }

  .faq__photo img {
    object-position: 58% center;
  }

  .faq__list {
    margin-top: 0;
    border-top-color: rgba(255, 255, 255, .24);
  }

  .faq-item {
    border-bottom-color: rgba(255, 255, 255, .24);
  }

  .faq-item__button {
    grid-template-columns: 30px minmax(0, 1fr) 44px;
    column-gap: 0;
    padding: 25px 0;
  }

  .faq-item__num {
    font-size: 14px;
  }

  .faq-item__question {
    font-size: 18px;
    line-height: 1.45;
  }

  .faq-item__icon {
    width: 38px;
    height: 38px;
  }

  .faq-item.is-open .faq-item__answer {
    padding: 0 54px 26px 30px;
  }

  .faq-item__answer-inner {
    font-size: 14px;
    line-height: 1.55;
  }

  .site-footer__inner {
    padding-block: 48px 30px;
    text-align: center;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 38px;
  }

  .footer-logo img {
    width: 133px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 28px;
    font-size: 15px;
  }

  .site-footer__middle {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 28px;
    margin-top: 30px;
    padding-block: 32px 34px;
  }

  .footer-contact,
  .footer-socials {
    justify-items: center;
    gap: 8px;
  }

  .footer-contact span,
  .footer-socials > span {
    font-size: 14px;
  }

  .footer-contact a {
    font-size: 24px;
  }

  .footer-socials__links {
    gap: 24px;
  }

  .footer-cta {
    grid-column: auto;
    justify-self: center;
    margin-top: 4px;
    font-size: 14px;
  }

  .site-footer__bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 28px;
    padding-top: 28px;
    font-size: 13px;
  }

  .footer-policy {
    grid-row: 1;
    justify-self: center;
  }

  .footer-copy {
    justify-content: center;
  }

  .consult-modal {
    padding: 30px 15px;
    align-items: start;
    background: rgba(5, 4, 4, .94);
  }

  .consult-modal__dialog {
    width: 100%;
    min-height: 0;
  }

  .consult-modal__close {
    top: 32px;
    right: 24px;
    width: 28px;
    height: 28px;
  }

  .consult-modal__close span,
  .consult-modal__close span::before {
    width: 28px;
  }

  .consult-form {
    width: calc(100% - 48px);
    padding-block: 105px 60px;
  }

  .consult-form h2 {
    margin-bottom: 46px;
    font-size: 33px;
    line-height: 1.12;
  }

  .consult-field {
    gap: 10px;
    margin-bottom: 45px;
    font-size: 16px;
  }

  .consult-form__submit {
    min-height: 61px;
    margin-top: 0;
  }

  .privacy-modal__dialog {
    min-height: 0;
  }

  .privacy-content {
    width: calc(100% - 48px);
    padding-block: 92px 56px;
  }

  .privacy-content h2 {
    margin-bottom: 32px;
    font-size: 33px;
    line-height: 1.12;
  }

  .privacy-content p {
    font-size: 14px;
    line-height: 1.58;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 32px;
  }

  .lead {
    font-size: 15px;
  }
}

@media (max-width: 960px) and (max-height: 700px) {
  .mobile-menu {
    padding-bottom: 26px;
    overflow-y: auto;
  }

  .mobile-menu__nav {
    gap: 24px;
    padding-top: 24px;
  }

  .mobile-menu__bottom {
    gap: 20px;
  }
}
