@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fffefc;
  color: #404040;
  min-width: 320px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

.btn-300 {
  max-width: 300px !important;
  width: unset !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.22px;
  border-radius: 40px;
  padding: 14px 34px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
  box-shadow: none;
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}
.btn--primary {
  background-color: #D5B38C;
  color: #0a0a0a;
  border: none;
}
.btn--outline {
  background: transparent;
  border: 2px solid rgba(139, 101, 53, 0.5);
  color: #0a0a0a;
}
.btn--outline:hover {
  background: rgba(201, 168, 112, 0.12);
}
.btn--white {
  background: #ffffff;
  color: #41290d;
  border: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fffefc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(4px);
}
.header__inner {
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 130px;
}
@media (max-width: 1100px) {
  .header__inner {
    padding-inline: 60px;
  }
}
@media (max-width: 768px) {
  .header__inner {
    padding-inline: 20px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100px;
}
@media (max-width: 1100px) {
  .header__inner {
    gap: 24px;
    height: 80px;
  }
}
.header__logo-link {
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.header__logo-link:hover {
  opacity: 0.8;
}
.header__logo {
  height: 60px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1100px) {
  .header__logo {
    height: 48px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
@media (max-width: 1100px) {
  .header__nav {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #fffefc;
    padding: 20px 20px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  .header__nav--open {
    display: flex;
  }
}
.header__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #404040;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: #D5B38C;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.header__nav-link:hover {
  color: #D5B38C;
}
.header__nav-link:hover::after {
  transform: scaleX(1);
}
.header__nav-link--active {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1400px) {
  .header__nav-link {
    font-size: 16px;
  }
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 29px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__contacts {
    display: none;
  }
}
.header__imgs {
  display: flex;
  gap: 30px;
}
.header__imgs img {
  height: 40px;
}
.header__social-icons {
  height: 44px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1100px) {
  .header__social-icons {
    height: 36px;
  }
}
.header__phone {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #333333;
  white-space: nowrap;
  transition: color 0.2s;
}
.header__phone:hover {
  color: #D5B38C;
}
@media (max-width: 1400px) {
  .header__phone {
    font-size: 20px;
  }
}
@media (max-width: 1100px) {
  .header__phone {
    font-size: 17px;
  }
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__burger {
    display: flex;
  }
}
.header__burger--open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger--open .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger--open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #000000;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease;
}

.categories {
  padding-block: 60px 80px;
}
.categories__inner {
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 130px;
}
@media (max-width: 1100px) {
  .categories__inner {
    padding-inline: 60px;
  }
}
@media (max-width: 768px) {
  .categories__inner {
    padding-inline: 20px;
  }
}
.categories__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.categories__title {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #000000;
}
.categories__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.23fr);
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 1100px) {
  .categories__grid {
    grid-template-columns: 1fr;
  }
}
.categories__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 48px;
}
.categories__right-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 480px) {
  .categories__right-row {
    grid-template-columns: 1fr;
  }
}
.categories__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
@media (max-width: 1100px) {
  .categories__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .categories__row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #000000;
}
.category-card__image {
  width: 100%;
  border-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.category-card:hover .category-card__image {
  transform: scale(1.025);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.category-card__label {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #000000;
  transition: color 0.2s;
}
@media (max-width: 1100px) {
  .category-card__label {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .category-card__label {
    font-size: 15px;
  }
}
.category-card:hover .category-card__label {
  color: black;
}
.category-card--hero {
  overflow: hidden;
  border-radius: 24px;
}
.category-card--hero .category-card__image {
  height: 100%;
  min-height: 480px;
  border-radius: 24px;
  flex: 1;
}

.categories__right-row .category-card__image {
  aspect-ratio: 420/508;
}
@media (max-width: 1100px) {
  .categories__right-row .category-card__image {
    aspect-ratio: 4/3;
  }
}

.categories__row .category-card__image {
  aspect-ratio: 380/369;
}
@media (max-width: 1100px) {
  .categories__row .category-card__image {
    aspect-ratio: 4/3;
  }
}

.promo-banner {
  background-color: #f2e8dc;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  .promo-banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.promo-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  padding: 80px 130px;
}
@media (max-width: 1100px) {
  .promo-banner__content {
    padding: 60px 60px;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .promo-banner__content {
    padding: 48px 20px;
    gap: 32px;
  }
}
.promo-banner__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.promo-banner__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #404040;
  line-height: 1.2;
}
@media (max-width: 1100px) {
  .promo-banner__title {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .promo-banner__title {
    font-size: 24px;
  }
}
.promo-banner__description {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #404040;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .promo-banner__description {
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .promo-banner__description {
    font-size: 15px;
  }
}
.promo-banner__cta {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.promo-banner__subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #404040;
}
@media (max-width: 768px) {
  .promo-banner__subtitle {
    font-size: 15px;
  }
}
.promo-banner__buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-banner__image-wrap {
  overflow: hidden;
}
@media (max-width: 1100px) {
  .promo-banner__image-wrap {
    display: none;
  }
}
.promo-banner__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 6s ease;
}
.promo-banner__image:hover {
  transform: scale(1.03);
}

.products {
  padding-block: 90px;
}
.products__inner {
  max-width: 1480px;
  margin-inline: auto;
  padding-inline: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .products__inner {
    padding-inline: 20px;
  }
}
.products__carousel {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.products__overflow {
  flex: 1;
  overflow: hidden;
}
.products__track {
  display: flex;
  gap: 60px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
@media (max-width: 1100px) {
  .products__track {
    gap: 24px;
  }
}
.products__arrow {
  flex-shrink: 0;
  width: 56px;
  height: 152px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  transition: background-color 0.2s, border-color 0.2s;
}
.products__arrow:hover {
  background-color: rgba(0, 0, 0, 0.04);
  border-color: #000000;
}
@media (max-width: 768px) {
  .products__arrow {
    width: 40px;
    height: 100px;
  }
}
.products__disclaimer {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #404040;
  text-align: center;
}
@media (max-width: 768px) {
  .products__disclaimer {
    font-size: 14px;
  }
}
.products__catalog-btn {
  min-width: 220px;
  padding-block: 16px;
}

.product-card {
  flex: 0 0 calc((100% - 180px) / 4);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  cursor: pointer;
  transition: transform 0.2s;
}
.product-card:hover {
  transform: translateY(-4px);
}
@media (max-width: 1100px) {
  .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 768px) {
  .product-card {
    flex: 0 0 100%;
  }
}
.product-card__image {
  width: 100%;
  height: 322px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: box-shadow 0.25s;
}
@media (max-width: 1100px) {
  .product-card__image {
    height: 220px;
  }
}
.product-card:hover .product-card__image {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-card__name {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #000000;
  line-height: 1.3;
}
.product-card__code {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18px;
  color: #6e6e6e;
}
.product-card__price {
  font-family: "Inter", sans-serif;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: 0.29px;
  color: #000000;
}

.approach {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(107, 83, 56, 0.96) 0%, rgba(107, 83, 56, 0.95) 38%, rgba(107, 83, 56, 0.55) 58%, rgba(107, 83, 56, 0.05) 78%, transparent 90%), url("/src/imgs/back.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 1100px) {
  .approach {
    min-height: auto;
    background-image: linear-gradient(rgba(107, 83, 56, 0.92), rgba(107, 83, 56, 0.92)), url("/src/imgs/back.png");
    background-position: center;
  }
}
.approach__inner {
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 130px;
}
@media (max-width: 1100px) {
  .approach__inner {
    padding-inline: 60px;
  }
}
@media (max-width: 768px) {
  .approach__inner {
    padding-inline: 20px;
  }
}
.approach__inner {
  padding-block: 80px;
  width: 100%;
}
@media (max-width: 768px) {
  .approach__inner {
    padding-block: 56px;
  }
}
.approach__content {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 38px;
}
.approach__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 768px) {
  .approach__title {
    font-size: 28px;
  }
}
.approach__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.approach__list-item {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  padding-left: 22px;
  position: relative;
  line-height: 1.4;
}
.approach__list-item::before {
  content: "·";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 30px;
  line-height: 1;
  top: 4px;
}
@media (max-width: 768px) {
  .approach__list-item {
    font-size: 18px;
  }
}
.approach__btn {
  align-self: flex-start;
}

.results {
  padding-block: 90px;
}
.results__inner {
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 130px;
}
@media (max-width: 1100px) {
  .results__inner {
    padding-inline: 60px;
  }
}
@media (max-width: 768px) {
  .results__inner {
    padding-inline: 20px;
  }
}
.results__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}
@media (max-width: 1100px) {
  .results__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.results__media {
  position: relative;
}
.results__slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.results__slides {
  position: relative;
  aspect-ratio: 830/654;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 24px;
}
.results__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.results__slide--active {
  opacity: 1;
}
.results__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.results__dot {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.35s ease, width 0.35s ease;
}
.results__dot--active {
  background: #ffffff;
  width: 70px;
}
.results__dot:hover:not(.results__dot--active) {
  background: rgba(255, 255, 255, 0.65);
}
@media (max-width: 768px) {
  .results__dot {
    width: 30px;
  }
  .results__dot--active {
    width: 44px;
  }
}
.results__content {
  display: flex;
  flex-direction: column;
  gap: 59px;
}
@media (max-width: 1100px) {
  .results__content {
    gap: 36px;
  }
}
.results__text-group {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.results__title {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #404040;
}
@media (max-width: 768px) {
  .results__title {
    font-size: 28px;
  }
}
.results__description {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #404040;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .results__description {
    font-size: 17px;
  }
}

.footer {
  background-color: #222222;
  padding-block: 56px 72px;
}
.footer .footer__imgs {
  margin-top: 36px;
  margin-bottom: 36px;
}
.footer__inner {
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 130px;
}
@media (max-width: 1100px) {
  .footer__inner {
    padding-inline: 60px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    padding-inline: 20px;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 1100px) {
  .footer__inner {
    flex-wrap: wrap;
    gap: 48px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 220px;
}
.footer__name {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
}
@media (max-width: 1100px) {
  .footer__name {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .footer__name {
    font-size: 32px;
  }
}
.footer__social-icons {
  width: 230px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__contact-link {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  transition: opacity 0.2s;
}
.footer__contact-link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer__contact-link {
    font-size: 17px;
  }
}
.footer__schedule-wrap {
  display: flex;
  gap: 29px;
  align-items: flex-start;
  padding-top: 8px;
}
.footer__dots {
  width: 23px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.footer__schedule {
  display: flex;
  flex-direction: column;
  gap: 88px;
  padding-top: 4px;
}
.footer__schedule-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__schedule-day, .footer__schedule-time {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer__schedule-day, .footer__schedule-time {
    font-size: 16px;
  }
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
  min-width: 200px;
}
.footer__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  transition: opacity 0.2s;
}
.footer__nav-link:hover {
  opacity: 0.65;
}
@media (max-width: 768px) {
  .footer__nav-link {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */