.main {
  overflow: hidden;
}

.hero {
  padding: 0rem 4rem 5rem 4rem;
  background-color: #fefef4;
}

.hero__container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  align-items: center;
}

.hero__content {
  padding: 4rem;
  background-color: #edebdf;
  border-radius: 4rem;
  height: 100%;
  max-width: 66.8rem;
  word-break: break-word;
}

.hero__title {
  font-size: 7.4rem;
  font-weight: 600;
  color: #221f1f;
  line-height: 9rem;
  margin-bottom: 3.2rem;
  letter-spacing: -0.02em;
}

.hero__highlight {
  background-color: #d4c4a8;
  padding: 0.1em 0.3em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
}

.hero__subtitle {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #221f1f;
  margin-bottom: 4rem;
  max-width: 48rem;
  font-weight: 500;
}

.hero__buttons {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.hero__image {
  border-radius: 4rem;
  overflow: hidden;
  height: 100%;
  min-height: 56rem;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn--primary {
  background-color: #221f1f;
  color: #fefef4;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
}

.btn--primary:hover {
  background-color: #221f1f;
}

.btn--primary svg {
  width: 4rem;
  height: 4rem;
  transition: transform 0.3s;
}

.btn--primary:hover svg {
  transform: rotate(37.5deg);
}

.btn--secondary {
  background-color: transparent;
  color: #221f1f;
  border: 0.15rem solid #221f1f;
  padding: 0.4rem 2.4rem;
}

.btn--secondary:hover {
  background-color: #221f1f;
  color: #fefef4;
  transform: translateY(-0.1rem);
}

.experience-section {
  padding: 5rem 4rem;
  background-color: #fefef4;
}

.experience-header {
  margin-bottom: 4rem;
  max-width: 70rem;
}

.experience-header h2 {
  margin-bottom: 1.6rem;
  font-size: 4.8rem;
  font-weight: 600;
  color: #221f1f;
}

.experience-header p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #221f1f;
  font-weight: 500;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.exp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 33.9rem;
  transition: transform 0.3s ease;
}

.exp-card:hover {
  transform: translateY(-0.8rem);
}

.exp-card__image {
  display: flex;
  flex-direction: column;
  border-radius: 4rem;
}

.exp-card__image-border {
  width: 100%;
  height: 100%;
  background-color: #221f1f;
  border-radius: 4rem 2rem 0rem 0rem;
  padding: 3rem 2.4rem;
  min-height: 11rem;
  max-width: 20.8rem;
  bottom: -0.1rem;
  position: relative;
}

.exp-card__image-inner {
  border-radius: 19rem 19rem 23rem 0rem;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  width: 12.1rem;
  height: 12rem;
  padding: 0;
  background-color: #221f1f;
}

.exp-card__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2rem;
  background-color: #fefef4;
  padding: 1rem;
  position: relative;
  bottom: 0.85rem;
  right: -1.1rem;
}

.exp-card__content {
  position: relative;
  z-index: 1;
  background-color: #221f1f;
  border-radius: 0rem 4rem 4rem;
  padding: 3rem 2.4rem;
  min-height: 22.9rem;
  align-content: flex-end;
}

.exp-card__content h3 {
  color: #fefef4;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.exp-card__content p {
  color: #fefef4;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
}

.services-section {
  padding: 5rem 4rem;
  background-color: #fefef4;
}

.services-header {
  margin-bottom: 6rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.section-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.header-section_content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.services-header h2 {
  font-size: 4.8rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 0rem;
  line-height: 7.2rem;
}

.services-header p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #221f1f;
  font-weight: 500;
  margin-bottom: 0;
}

.services-link {
  display: inline-flex;
  gap: 0.8rem;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border: 0.15rem solid #221f1f;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  transition: all 0.3s;
  width: 100%;
  max-width: 26.1rem;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.services-link:hover {
  background-color: #221f1f;
  color: #fefef4;
}

.services-link svg {
  width: 4rem;
  height: 4rem;
  transition: transform 0.3s;
}

.services-link:hover svg {
  transform: rotate(37.5deg);
}

.services-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
  max-height: 87.2rem;
  height: 100%;
  overflow: hidden;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  max-height: 67.6rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-list::-webkit-scrollbar {
  display: none;
}

.services-list::before,
.services-list::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 14rem;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-list::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    #fefef4 0%,
    rgba(254, 254, 244, 0.8) 40%,
    transparent 100%
  );
}

.services-list::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    #fefef4 0%,
    rgba(254, 254, 244, 0.8) 40%,
    transparent 100%
  );
}

.services-list.show-top-gradient::before {
  opacity: 1;
}

.services-list.show-bottom-gradient::after {
  opacity: 1;
}

.service-card {
  background-color: #edebdf;
  padding: 2.4rem;
  border-radius: 2.4rem;
  transition: all 0.3s;
  flex-shrink: 0;
  transition: background-color 0.3s;
}

.service-card:hover {
  background-color: #d8d5c1;
}

.service-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.service-card p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #545454;
  margin-bottom: 0;
}

.services-slider-wrapper {
  position: relative;
  height: 100%;
  max-width: 66.8rem;
  max-height: 67.6rem;
}

.services-swiper {
  width: 100%;
  height: 100%;
  border-radius: 3.2rem;
  overflow: hidden;
  max-width: 66.8rem;
  max-height: 67.6rem;
}

.services-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-slider-pagination {
  position: relative;
  bottom: 2.4rem !important;
  left: 50%;
  display: flex;
  gap: 0.8rem;
  z-index: 10;
  align-items: center;
  align-self: center;
  justify-content: center;
}

.services-slider-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.services-slider-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 2.4rem;
  border-radius: 0.4rem;
}

.projects-section {
  padding: 5rem 4rem;
  background-color: #fefef4;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6rem;
  gap: 2rem;
}

.projects-header__text {
  max-width: 45rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.projects-header h2 {
  font-size: 4.8rem;
  font-weight: 600;
  color: #221f1f;
  line-height: 7.2rem;
  margin-bottom: 0;
}

.projects-header p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #221f1f;
  font-weight: 500;
}

.projects-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border: 0.15rem solid #221f1f;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  transition: all 0.3s;
  white-space: nowrap;
  width: 100%;
  max-width: 24.1rem;
  justify-content: space-between;
}
.projects-link svg {
  transition: rotate 0.3s;
}
.projects-link:hover {
  background-color: #221f1f;
  color: #fefef4;
}
.projects-link:hover svg {
  rotate: 38deg;
}

.projects-link svg {
  width: 4rem;
}

.project-detail {
  background-color: #221f1f;
  border-radius: 5.2rem 3.2rem 4rem 4rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3.2rem;
  color: #fefef4;
  position: relative;
  min-height: 67.6rem;
}

.project-detail__slider {
  position: relative;
  border-radius: 4rem;
  overflow: hidden;
  height: 100%;
  min-height: 32rem;
  user-select: none;
  cursor: ew-resize;
}

.project-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.project-detail__img--before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.project-detail__img--after {
  z-index: 1;
}

.project-detail__slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.2rem;
  background: #fff;
  z-index: 3;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.project-detail__handle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6.4rem;
  height: 6.4rem;
  background: #edebdf33;
  color: #221f1f;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(4px);
}

.project-detail__handle-icon {
  width: 4.8rem;
  height: 4.8rem;
}

.project-detail__label {
  position: absolute;
  top: 1.6rem;
  padding: 0.8rem 1.6rem;
  background: #edebdf;
  border-radius: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 4;
  pointer-events: none;
  color: #221f1f;
  width: 100%;
  max-width: 10.1rem;
  text-align: center;
  font-size: 1.6rem;
}

.project-detail__label--before {
  left: 1.6rem;
}
.project-detail__label--after {
  right: 1.6rem;
}

.project-detail__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.6rem 1.6rem;
}

.project-detail__location {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  color: #92918c;
}

.project-detail__title {
  font-size: 4rem;
  line-height: 4.8rem;
  margin-bottom: 2.4rem;
  color: #fefef4;
  font-weight: 600;
}

.project-detail__stats {
  display: flex;
  gap: 2.4rem;
  margin-bottom: 2.4rem;
  flex-wrap: wrap;
}

.project-detail__stat {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fefef4;
}

.project-detail__desc {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
  color: #fefef4;
}

.project-detail__divider {
  width: 100%;
  max-width: 8rem;
  background-color: #575451;
  height: 0.1rem;
}
.project-detail__rooms {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.2rem;
  margin-top: 2.4rem;
}

.project-detail__room {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 1.2rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
  gap: 0.8rem;
}

.project-detail__room-name {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  width: 100%;
  max-width: 30rem;
  padding-right: 0.8rem;
  line-height: 2.4rem;
}
.project-detail__room-divider {
  width: 0.2rem;
  height: 2.4rem;
  background-color: #575451;
}
span.project-detail__room-meta {
  font-size: 1.6rem;
  color: #938d86;
  line-height: 2.4rem;
}

.project-detail__room-icon {
  width: 2rem;
  height: 2rem;
  opacity: 0.8;
}

.project-detail__room-meta {
  opacity: 0.7;
}

.project-detail__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.project-detail__btn {
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.4rem;
  border: 0.15rem solid rgba(255, 255, 255, 0.3);
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fefef4;
  transition: all 0.3s;
  text-decoration: none;
  width: 100%;
  max-width: 20rem;
  display: flex;
  justify-content: center;
}

.project-detail__btn:hover {
  background: #fefef4;
  color: #221f1f;
  border-color: #fefef4;
}

.project-detail__nav {
  display: flex;
  gap: 1.2rem;
}

.project-detail__nav-btn {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: transparent;
  background: transparent;
  color: #fefef4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
button#next-project {
  rotate: 180deg;
}

.project-detail__nav-btn svg {
  stroke: #9d9a8c;
  transition: stroke 0.3s;
}

.project-detail__nav-btn:hover:not(:disabled) {
  background: #fefef4;
  color: #221f1f;
  border-color: #fefef4;
}

.project-detail__nav-btn:hover:not(:disabled) svg {
  stroke: #000000;
}

.project-detail__nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.projects-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}

.project-card {
  background-color: #edebdf;
  border-radius: 2.4rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  border: 0.2rem solid transparent;
  max-height: 67.6rem;
  border-radius: 4rem;
}

.project-card:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.08);
}

.project-card.active {
  border-color: #d4c4a8;
  background-color: #e8e6d9;
  height: 67.6rem;
  max-height: 67.6rem;
}

.project-card__img-wrap {
  position: relative;
  height: 67.6rem;
  overflow: hidden;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.project-card:hover .project-card__img {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  background: #fefef4;
  padding: 0.8rem 1.6rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #221f1f;
  width: 100%;
  max-width: 11.8rem;
  align-items: center;
  align-self: center;
  justify-content: center;
  display: flex;
  text-align: center;
  line-height: 2.4rem;
  gap: 0.8rem;
}

.project-card__content {
  padding: 2.4rem;
  position: relative;
  bottom: 46.59rem;
  height: 46.2rem;
  align-content: flex-end;
  border-radius: 4rem;
  overflow: hidden;
  z-index: 1;
}

.project-card__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    185.02deg,
    rgba(34, 31, 31, 0) 44.81%,
    rgba(34, 31, 31, 0.8) 95.96%
  );
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-mask-image: linear-gradient(
    185.02deg,
    transparent 37.45%,
    black 96.54%
  );
  mask-image: linear-gradient(180deg, transparent 35.45%, black 67.54%);
  border-radius: inherit;
}

.project-card__title {
  font-size: 2rem;
  font-weight: 600;
  color: #fefef4;
  margin-bottom: 0.8rem;
  line-height: 3.2rem;
}

.project-card__desc {
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #fefef4;
  margin-bottom: 0;
}

.estimate-section {
  padding: 5rem 4rem;
  height: 100%;
}

.estimate-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54.4rem;
  border-radius: 4rem;
  overflow: hidden;
}

.estimate-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.estimate__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.estimate__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.estimate__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 75.4rem;
  padding: 2rem;
}

.estimate__title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #fefef4;
  text-transform: uppercase;
  line-height: 6.4rem;
  margin-bottom: 2.4rem;
}

.estimate__subtitle {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fefef4;
  margin-bottom: 6rem;
  font-weight: 400;
}

.estimate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fefef4;
  color: #221f1f;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.4rem;
  white-space: nowrap;
  width: 100%;
  max-width: 19.8rem;
  line-height: 2.4rem;
}

.estimate__btn:hover {
  background-color: #fff;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.25);
}

.estimate__btn-icon {
  width: 4.8rem;
  height: 4.8rem;
  background-color: #221f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
}

.estimate__btn:hover .estimate__btn-icon {
  transform: rotate(45deg);
}

.estimate__btn-icon svg {
  width: 2.4rem;
  height: 2.4rem;
}

.process-section {
  padding: 5rem 4rem;
  background-color: #fefef4;
}

.process-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
}

.process-header__text {
  max-width: 55rem;
}

.process-header__text h2 {
  font-size: 4.8rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 1.6rem;
  line-height: 7.2rem;
}

.process-header__text p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #221f1f;
  font-weight: 500;
  margin-bottom: 0;
}

.process-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border: 0.15rem solid #221f1f;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  transition: all 0.3s;
  white-space: nowrap;
  width: 100%;
  max-width: 24.5rem;
  justify-content: space-between;
}

.process-header__btn:hover {
  background-color: #221f1f;
  color: #fefef4;
}

.process-header__btn svg {
  transition: all 0.3s;
}

.process-header__btn:hover svg {
  transform: rotate(38deg);
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 2.4rem;
  max-height: 56.8rem;
}

.process-item {
  background-color: #edebdf;
  padding: 1.6rem;
  border-radius: 2.4rem;
  display: flex;
  gap: 2rem;
  align-items: center;
  height: 17.2rem;
}

.process-item__number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #221f1f;
  line-height: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #d8d4c18a;
  border-radius: 3.2rem;
  align-items: center;
  height: 100%;
  width: 100%;
  max-width: 11.6rem;
}

.process-item__content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.process-item__content p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #545454;
  margin-bottom: 0;
}

.process-image {
  border-radius: 2.4rem;
  overflow: hidden;
  height: 100%;
}

.process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.process-item:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}
.process-item:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}
.process-item:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}
.process-item:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}
.process-image {
  grid-column: 1;
  grid-row: 3;
}

.achievements-section {
  padding: 4rem 4rem;
  background-color: #fefef4;
}

.achievements-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  gap: 2rem;
}

.achievements-header__text {
  max-width: 55rem;
}

.achievements-header__text h2 {
  font-size: 4.8rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 1.6rem;
  line-height: 4.2rem;
}

.achievements-header__text p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #221f1f;
  font-weight: 500;
  margin-bottom: 0;
}

.achievements-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border: 0.15rem solid #221f1f;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #221f1f;
  transition: all 0.3s;
  white-space: nowrap;
  width: 100%;
  max-width: 24.5rem;
  justify-content: space-between;
}

.achievements-header__btn:hover {
  background-color: #221f1f;
  color: #fefef4;
}

.achievements-header__btn svg {
  transition: all 0.3s;
}
.achievements-header__btn:hover svg {
  transform: rotate(38deg);
}

.certificates-slider {
  position: relative;
  margin-bottom: 4rem;
  padding: 0;
}

.certificates-swiper {
  overflow: hidden;
}

.certificates-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #221f1f;
  z-index: 10;
}

.certificates-nav:hover {
  aspect-ratio: 1.1;
}

.certificates-nav--prev {
  left: -3rem;
}

.certificates-nav--next {
  right: -3rem;
}

.partners-marquee {
  position: relative;
  width: 100%;
}

.partners-track {
  display: flex;
  gap: 2.4rem;
  animation: marquee 30s linear infinite;
  width: max-content;
  cursor: pointer;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

.partners-logo {
  flex-shrink: 0;
  background-color: #221f1f;
  color: #fefef4;
  padding: 1.6rem 3.2rem;
  border-radius: 1.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  min-width: 20rem;
}

.certificate-card img {
  object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
}

.certificate-card {
  overflow: hidden;
  object-fit: contain;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.reviews-section {
  padding: 4rem;
  background-color: #fefef4;
}

.reviews-title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #221f1f;
  margin-bottom: 6rem;
}

.reviews-slider-wrapper {
  position: relative;
  padding: 0;
}

.reviews-slider-wrapper .swiper {
  border-radius: 4rem 4rem 0 0;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card__image {
  position: relative;
  border-radius: 4rem;
  overflow: hidden;
  margin-bottom: 2.4rem;
  height: 100%;
  max-height: 24rem;
}

.review-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-card__pagination {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 2;
}

.review-card__pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.review-card__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 2.4rem;
  border-radius: 0.4rem;
}

.review-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.review-card__avatar {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #221f1f;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.review-card__date {
  font-size: 1.4rem;
  color: #999;
}

.review-card__rating {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #221f1f;
  margin-bottom: 0;
  flex-grow: 1;
  padding-left: 7rem;
  padding-right: 12rem;
}

.reviews-nav {
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 100%;
  background: transparent;
  color: #221f1f;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  border: none;
  padding: 0;
}

.reviews-nav--prev {
  left: -3rem;
}

.reviews-nav--next {
  right: -3rem;
}

.consultation-section {
  padding: 4rem;
  background-color: #fefef4;
}

.consultation-container {
  position: relative;
  border-radius: 4rem;
  overflow: hidden;
  min-height: 53.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.consultation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  backdrop-filter: blur(8px);
  background-color: #292929;
}

.consultation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.consultation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
  pointer-events: none;
}

.consultation-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 72rem;
  padding: 4rem;
}

.consultation-title {
  font-size: 4.8rem;
  font-weight: 600;
  color: #fefef4;
  margin-bottom: 2.4rem;
  line-height: 1.2;
}

.consultation-subtitle {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #fefef4;
  margin-bottom: 3.2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Form */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

.consultation-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  width: 100%;
  max-width: 64rem;
}

.consultation-form__input {
  width: 32.2rem;
  padding: 1.4rem 2.4rem;
  border: none;
  border-radius: 5rem;
  background-color: #fff;
  font-size: 1.6rem;
  font-family: "Montserrat", sans-serif;
  color: #221f1f;
  transition: all 0.3s;
}

.consultation-form__input::placeholder {
  color: #999;
}

.consultation-form__input:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(212, 196, 168, 0.5);
  background-color: #fefef4;
}

.consultation-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #fefef4;
  color: #221f1f;
  padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.consultation-form__btn:hover {
  background-color: #fff;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
}

.consultation-form__btn-icon {
  width: 4rem;
  height: 4rem;
  background-color: #221f1f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.consultation-form__btn:hover .consultation-form__btn-icon {
  transform: rotate(37.5deg);
}

@media (max-width: 1023px) {
  .hero {
    padding: 2.4rem 1.6rem 4rem;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-bottom: -9rem;
  }

  .btn--primary {
    padding: 0.4rem;
  }
  a.btn.btn--secondary {
    justify-content: center;
    padding: 1.2rem;
  }

  .hero__content {
    padding: 3.2rem 2.4rem;
    border-radius: 2.4rem;
    order: -1;
  }

  .hero__title {
    font-size: 4rem;
    margin-bottom: 2.4rem;
    line-height: 4.8rem;
  }

  .hero__highlight {
    padding: 0 0.6rem;
  }

  .hero__subtitle {
    font-size: 1.6rem;
    margin-bottom: 8rem;
    max-width: 100%;
    color: #221f1f;
    line-height: 2.4rem;
    font-weight: 500;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 1.2rem;
  }

  .btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  }

  .hero__image {
    border-radius: 2.4rem;
    min-height: 32rem;
    order: 1;
    position: relative;
    top: -9rem;
  }

  .projects-section {
    padding: 4rem 1.6rem;
  }

  .projects-header {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }

  .projects-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }

  .project-detail {
    grid-template-columns: 1fr;
    padding: 2.4rem;
    gap: 0;
    min-height: auto;
  }

  .project-detail__slider {
    min-height: 28rem;
    border-radius: 2rem;
  }
  .project-detail__info {
    padding: 4rem 1.6rem 1.6rem;
  }

  .project-detail__title {
    font-size: 2.8rem;
  }

  .project-detail__stats {
    gap: 1.6rem;
  }

  .projects-list {
    display: flex;
    overflow-x: auto;
    gap: 1.6rem;
    padding-bottom: 1.6rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .project-card {
    width: 28rem;
    scroll-snap-align: start;
    flex-shrink: 0;
    height: 48rem;
  }
  .project-card.active {
    height: 48rem;
    border-radius: 2rem;
    max-height: 48rem;
  }
  .project-card__img-wrap {
    height: 48rem;
  }
  .project-card__content {
    padding: 1.6rem;
    position: relative;
    bottom: 39.65rem;
    height: 39.6rem;
    border-radius: 2rem;
    overflow: hidden;
    z-index: 1;
  }

  .project-card__img-wrap {
    height: 48rem;
  }
  .project-card__badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
  }

  .experience-section {
    padding: 4rem 1.6rem;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .exp-card {
    padding: 0;
    flex-direction: column;
    align-items: center;
    min-height: 16.8rem;
  }
  .exp-card__content {
    min-height: min-content;
    border-radius: 0rem 2rem 2rem 2rem;
  }
  .exp-card__image {
    width: 100%;
    height: 100%;
    flex-direction: row;
    max-height: 8rem;
  }

  .exp-card__image-border {
    border-radius: 2rem 1.4rem 0 0;
    min-height: 8rem;
    min-width: 28.1rem;
  }

  .exp-card__image-inner {
    border-radius: 19rem 19rem 23rem 0rem;
    z-index: 2;
    position: absolute;
    top: 0;
    right: 0;
    width: 9.1rem;
    height: 9rem;
    padding: 0;
    background-color: #221f1f;
  }

  .exp-card__image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 2rem;
    background-color: #fefef4;
    padding: 1rem;
    position: relative;
    bottom: 0.95rem;
    right: -0.9rem;
  }

  .exp-card__content h3 {
    font-size: 1.6rem;
  }

  .exp-card__content p {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .experience-header h2 {
    font-size: 3.2rem;
  }
  p.section-subtitle {
    margin-bottom: 0;
  }

  .projects-link {
    max-width: 100%;
    width: 100%;
  }

  .services-list {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    position: relative;
    max-height: 53.8rem;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;
    will-change: transform;
    transform: translateZ(0);
  }
  .services-list::before,
  .services-list::after {
    content: "";
    position: sticky;
    left: 0;
    right: 0;
    height: 0;
    pointer-events: none;
    z-index: 2;
    flex-shrink: 0;
    transition: height 0.3s ease;
  }
  .services-list.show-top-gradient::before {
    height: 5rem;
  }
  .services-list.show-bottom-gradient::after {
    height: 5rem;
  }

  .services-list::before {
    top: 0;
    background: linear-gradient(
      to bottom,
      #fefef4 0%,
      rgba(254, 254, 244, 0.8) 40%,
      transparent 100%
    );
  }
  .services-list::after {
    bottom: 0;
    background: linear-gradient(
      to top,
      #fefef4 0%,
      rgba(254, 254, 244, 0.8) 40%,
      transparent 100%
    );
  }

  .services-list::-webkit-scrollbar {
    width: 0.4rem;
  }

  .services-list::-webkit-scrollbar-track {
    background: transparent;
  }

  .services-list::-webkit-scrollbar-thumb {
    background-color: #7c7c7c;
    border-radius: 0.2rem;
    height: 15.8rem;
  }

  .services-list {
    scrollbar-width: thin;
    scrollbar-color: #7c7c7c transparent;
  }
  .services-section {
    padding: 4rem 1.6rem;
  }

  .services-swiper {
    max-width: 36.1rem;
    max-height: 28rem;
  }

  .services-header {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }

  .services-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
  }

  .services-header p {
    max-width: 100%;
    font-size: 1.6rem;
  }

  .services-link {
    align-self: flex-start;
    width: 100%;
    max-width: 100%;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 107.8rem;
  }

  .services-list {
    order: 1;
    padding-right: 0.4rem;
  }

  .service-card {
    padding: 2rem;
    border-radius: 2rem;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }

  .service-card p {
    font-size: 1.4rem;
  }

  .services-slider-wrapper {
    order: 2;
    min-height: 28rem;
    border-radius: 2.4rem;
  }

  .services-swiper {
    border-radius: 2.4rem;
  }

  .project-detail__label {
    top: 0.8rem;
  }

  .project-detail__label--before {
    left: 0.8rem;
  }
  .project-detail__label--after {
    right: 0.8rem;
  }

  .project-detail__desc {
    margin-bottom: 1.6rem;
  }
  .project-detail__rooms {
    margin-bottom: 4rem;
    margin-top: 1.6rem;
  }

  .project-detail__footer {
    flex-direction: column;
    align-items: end;
  }
  .project-detail__btn {
    border: 0.15rem solid #fefef4;
    max-width: 100%;
    margin-bottom: 4rem;
  }

  .projects-header h2 {
    font-size: 3.2rem;
  }

  .project-detail {
    padding: 0;
    border-radius: 10rem 10rem 2rem 2rem;
  }

  .project-detail__title {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .project-detail__room {
    font-size: 1.4rem;
  }

  .project-card {
    max-width: 23.8rem;
    max-height: 48rem;
  }
  .hero__title {
    font-size: 4rem;
    word-break: break-word;
  }

  .hero__content {
    padding: 2.4rem 1.6rem;
    background-color: #edebdf;
    position: relative;
    z-index: 1;
  }
  .project-detail__nav-btn:not(:disabled) {
    background: #fefef4;
    color: #221f1f;
    border-color: #fefef4;
  }
  .project-detail__nav-btn:not(:disabled) svg {
    stroke: #000000;
  }

  .estimate-section {
    padding: 4rem 1.6rem;
  }

  .estimate-container {
    flex-direction: column;
    height: 58.1rem;
    border-radius: 2.4rem;
  }

  .estimate__content {
    text-align: left;
    padding: 3.2rem 2.4rem 0;
    width: 100%;
    position: absolute;
    top: 0;
  }

  .estimate__title {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    line-height: 4rem;
  }

  .estimate__subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
    line-height: 2.4rem;
  }

  .estimate__btn {
    width: 100%;
    align-self: stretch;
    margin: auto;
    justify-content: space-between;
    padding: 0.4rem 0.4rem 0.4rem 2.4rem;
    max-width: 100%;
  }

  .estimate__bg {
    position: absolute;
    height: 58.1rem;
    width: 100%;
    border-radius: 0 0 2.4rem 2.4rem;
  }

  .process-section {
    padding: 4rem 1.6rem;
  }

  .process-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    margin-bottom: 3.2rem;
  }

  .process-header h2 {
    font-size: 3.2rem;
  }

  .process-header__btn {
    width: 100%;
    justify-content: center;
  }

  .process-grid {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-height: 100%;
  }

  .process-item {
    padding: 0.8rem;
    gap: 1.6rem;
    height: 100%;
    border-radius: 2rem;
  }

  .process-item__number {
    font-size: 2.4rem;
    max-width: 6.3rem;
    width: 100%;
    height: 11.4rem;
    border-radius: 1.6rem;
    font-weight: 500;
  }

  .process-item__content h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 600;
  }

  .process-item__content p {
    font-size: 1.4rem;
    line-height: 2.4rem;
  }

  .process-image {
    order: 99;
    height: 12rem;
    width: 100%;
    margin-top: 0rem;
  }

  .achievements-section {
    padding: 4rem 1.6rem;
  }

  .achievements-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }

  .achievements-header h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }

  .achievements-header__btn {
    width: 100%;
    justify-content: space-between;
    max-width: 100%;
  }

  .certificates-slider {
    padding: 0 4rem;
  }

  .certificate-card {
    padding: 2.4rem;
  }

  .partners-logo {
    padding: 1.4rem 2.4rem;
    font-size: 1.5rem;
    min-width: 18rem;
  }

  .achievements-section {
    padding: 4rem 1.6rem;
    overflow: hidden;
  }

  .certificates-nav--prev {
    left: -1rem;
  }

  .certificates-nav--next {
    right: -1rem;
  }

  .certificates-slider {
    padding: 0;
  }

  .certificate-card {
    padding: 2rem;
  }

  .certificate-card__content h3 {
    font-size: 1.8rem;
  }

  .certificate-card__desc {
    font-size: 1.2rem;
  }

  .partners-logo {
    padding: 1.2rem 2rem;
    font-size: 1, 6куь;
    min-width: 16rem;
  }

  .reviews-section {
    padding: 4rem 1.6rem;
  }

  .reviews-title {
    font-size: 3.2rem;
    margin-bottom: 3.2rem;
  }

  .reviews-slider-wrapper {
    padding: 0 4rem;
  }

  .review-card__image {
    border-radius: 2rem;
    margin-bottom: 1.6rem;
  }

  .review-card__avatar {
    width: 4rem;
    height: 4rem;
  }

  .review-card__name {
    font-size: 1.6rem;
  }

  .review-card__date {
    font-size: 1.3rem;
  }

  .review-card__text {
    font-size: 1.5rem;
  }

  .reviews-nav {
    width: 4rem;
    height: 4rem;
    display: none;
  }

  .reviews-section {
    padding: 3.2rem 1.2rem;
  }

  .reviews-title {
    font-size: 2.8rem;
  }

  .reviews-slider-wrapper {
    padding: 0;
  }

  .reviews-slider-wrapper .swiper {
    border-radius: 2rem 2rem 0 0;
  }

  .review-card__image {
    border-radius: 2rem;
    margin-bottom: 1.6rem;
    width: 100%;
    height: 100%;
    max-height: 23.8rem;
  }

  .review-card__image img {
    width: 100%;
    height: 100%;
    min-height: 23.8rem;
  }

  .review-card__pagination {
    bottom: 1.2rem;
  }

  .review-card__header {
    flex-direction: column;
    gap: 1.2rem;
  }

  .review-card__author {
    width: 100%;
  }

  .review-card__rating {
    align-self: flex-end;
  }

  .review-card__text {
    font-size: 1.4rem;
    padding: 0;
  }

  .consultation-section {
    padding: 2.4rem 1.6rem;
  }

  .consultation-container {
    border-radius: 2.4rem;
    min-height: auto;
  }

  .consultation-content {
    padding: 3.2rem 2.4rem;
  }

  .consultation-title {
    font-size: 3.2rem;
  }

  .consultation-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.4rem;
  }

  .consultation-form__row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .consultation-form__input {
    padding: 1rem 1.6rem;
    width: 100%;
  }

  .consultation-form__btn {
    width: 100%;
    justify-content: space-between;
    padding: 0.4rem 0.4rem 0.4rem 2.4rem;
  }

  .consultation-content {
    padding: 2.4rem 1.6rem;
  }

  .consultation-title {
    font-size: 3.2rem;
    text-align: left;
  }

  .consultation-subtitle {
    font-size: 1.4rem;
    text-align: left;
  }

  .consultation-form__btn-icon {
    width: 3.6rem;
    height: 3.6rem;
  }

  .project-detail__room-name {
    max-width: 17rem;
    word-break: break-all;
  }
}
