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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 300;
  color: #3d3530;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition-property: color, opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  outline: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 7rem 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 5rem 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.section__header {
  text-align: left;
  margin-bottom: 3rem;
}

.section__label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b89b6e;
  display: block;
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #1a1714;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .section__title {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .section__title {
    font-size: 1.375rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition-property: background-color, color, border-color, opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  white-space: nowrap;
}
.btn--primary {
  background-color: #1a1714;
  color: #ffffff;
  border: 1px solid #1a1714;
}
.btn--primary:hover {
  background-color: #b89b6e;
  border-color: #b89b6e;
}
.btn--outline {
  background-color: transparent;
  color: #1a1714;
  border: 1px solid #1a1714;
}
.btn--outline:hover {
  background-color: #1a1714;
  color: #ffffff;
}
.btn--ghost {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}
.btn--full {
  width: 100%;
}

.route-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

a:hover .route-arrow {
  transform: rotate(-45deg);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background-color: transparent;
  transition-property: background-color, padding, box-shadow;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.header.is-scrolled {
  background-color: rgba(26, 23, 20, 0.97);
  padding: 0.875rem 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
.header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2rem;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.header__logo-img {
  height: 38px;
  width: auto;
  display: block;
  filter: brightness(1.6) contrast(0.88);
  transition-property: filter, opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.header__logo-img:hover {
  filter: brightness(2) contrast(0.85);
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 2rem;
}
.header__nav-link {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.header__nav-link:hover {
  color: #d4bc96;
}
.header__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}
@media (max-width: 1024px) {
  .header__actions {
    display: none;
  }
}
.header__cta {
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}
.header__cta:hover {
  background-color: #b89b6e;
  border-color: #b89b6e;
}
.header__tg {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.header__tg:hover {
  color: #d4bc96;
}
.header__tg-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}
@media (max-width: 1024px) {
  .header__burger {
    display: flex;
  }
}
.header__burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #ffffff;
  transform-origin: center;
  transition-property: transform, opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.header__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 23, 20, 0.65);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition-property: opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background-color: #1a1714;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition-property: transform;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  overflow-y: auto;
}
.nav-drawer.is-open {
  transform: translateX(0);
}
.nav-drawer__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-drawer__logo {
  display: inline-flex;
  line-height: 0;
}
.nav-drawer__logo img {
  height: 30px;
  width: auto;
  filter: brightness(1.6) contrast(0.88);
}
.nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 4px;
  transition-property: color, background-color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.nav-drawer__close:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}
.nav-drawer__nav {
  flex: 1;
}
.nav-drawer__nav ul {
  list-style: none;
}
.nav-drawer__nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.nav-drawer__nav a {
  display: block;
  padding: 1rem 0.25rem;
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.04em;
  transition-property: color, padding-left;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.nav-drawer__nav a:hover {
  color: #d4bc96;
  padding-left: 0.5rem;
}
.nav-drawer__cta {
  margin-top: 3rem;
  text-align: center;
  background-color: #b89b6e;
  border-color: #b89b6e;
  color: #ffffff;
  width: 100%;
}
.nav-drawer__cta:hover {
  background-color: #1a1714;
  border-color: #b89b6e;
  color: #b89b6e;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow: hidden;
  padding: 144px 0 76px;
}
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 56px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 23, 20, 0.82) 0%, rgba(26, 23, 20, 0.55) 55%, rgba(26, 23, 20, 0.25) 100%), url("../../assets/images/hero-bg.png") center/cover no-repeat;
  z-index: -1;
}
.hero .container {
  width: 100%;
}
.hero__content {
  max-width: 680px;
  color: #ffffff;
}
.hero__subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #d4bc96;
  margin-bottom: 12px;
  opacity: 0.9;
}
.hero__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 1.75rem;
  }
}
.hero__price {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: #d4bc96;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .hero__price {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .hero__price {
    font-size: 1.125rem;
  }
}
.hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero__actions .btn {
  width: 300px;
}
.hero__actions .btn--primary {
  background-color: #d4bc96;
  border-color: #d4bc96;
  color: #1a1714;
}
.hero__actions .btn--primary:hover {
  background-color: #1a1714;
  border-color: #1a1714;
  color: #ffffff;
}
.hero__stats {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 3rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 576px) {
  .hero__stats {
    gap: 2rem;
  }
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #d4bc96;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about {
  background-color: #f5f0ea;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.about__image-wrap {
  position: relative;
}
.about__content .section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.about__content .section__label {
  text-align: left;
}
.about__text {
  color: #7a6e66;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.about__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about__list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #3d3530;
  font-weight: 500;
}
.about__list-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #b89b6e;
}
.about__route-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b89b6e;
  letter-spacing: 0.03em;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.about__route-link:hover {
  color: #1a1714;
}

.about__slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.about__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.about__slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(26, 23, 20, 0.7));
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(26, 23, 20, 0.45);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  font-size: 1.125rem;
  transition-property: background-color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.about__slider-btn:hover {
  background: rgba(26, 23, 20, 0.75);
}
.about__slider-btn--prev {
  left: 12px;
}
.about__slider-btn--next {
  right: 12px;
}

.about__slider-dots {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  z-index: 2;
}

.about__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  transition-property: background-color, width;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  cursor: pointer;
}
.about__slider-dot.is-active {
  width: 20px;
  background: #d4bc96;
}

.portfolio {
  background-color: #ffffff;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px 280px;
  gap: 1rem;
}
@media (max-width: 1024px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 260px 260px 260px 260px;
  }
}
@media (max-width: 576px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
.portfolio__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 576px) {
  .portfolio__item {
    height: 240px;
  }
}
.portfolio__item--tall {
  grid-row: span 2;
}
@media (max-width: 1024px) {
  .portfolio__item--tall {
    grid-row: span 1;
    grid-column: span 2;
    height: 260px;
  }
}
@media (max-width: 576px) {
  .portfolio__item--tall {
    grid-row: span 1;
    grid-column: span 1;
    height: 260px;
  }
}
.portfolio__item--wide {
  grid-column: span 2;
}
@media (max-width: 1024px) {
  .portfolio__item--wide {
    grid-column: span 2;
  }
}
@media (max-width: 576px) {
  .portfolio__item--wide {
    grid-column: span 1;
  }
}
.portfolio__item:hover .portfolio__img {
  transform: scale(1.06);
}
.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}
.portfolio__img {
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  transition-duration: 0.55s;
}
.portfolio__img--photo {
  object-fit: cover;
  object-position: center;
  display: block;
}
.portfolio__img--1 {
  background: linear-gradient(135deg, #e8e0d8 0%, #d4cbc2 30%, #c2b8ae 60%, #b0a598 100%);
}
.portfolio__img--2 {
  background: linear-gradient(160deg, #3d3530 0%, #5c4d43 35%, #4a4038 65%, #2e2520 100%);
}
.portfolio__img--3 {
  background: linear-gradient(120deg, #6b5e52 0%, #7d6e60 40%, #8f7e6e 70%, #6a5c4e 100%);
}
.portfolio__img--4 {
  background: linear-gradient(150deg, #c8b89a 0%, #d4c4a8 30%, #bfae94 60%, #c9b89c 100%);
}
.portfolio__img--5 {
  background: linear-gradient(135deg, #1e1c1a 0%, #2a2724 35%, #343028 65%, #1a1816 100%);
}
.portfolio__img--6 {
  background: linear-gradient(110deg, #b09880 0%, #c4ac92 35%, #a8907a 65%, #bda48c 100%);
}
.portfolio__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: nowrap;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent 30%, rgba(26, 23, 20, 0.78) 100%);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
@media (max-width: 768px) {
  .portfolio__overlay {
    opacity: 1;
  }
}
.portfolio__category {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4bc96;
  margin-bottom: 0.4rem;
}
.portfolio__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 0.5rem;
}
.portfolio__item--tall .portfolio__title, .portfolio__item--wide .portfolio__title {
  font-size: 1.375rem;
}
.portfolio__price {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d4bc96;
  letter-spacing: 0.04em;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio__cta {
  margin-top: 3rem;
  text-align: center;
}
.portfolio__material {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.25rem 0.6rem;
  background-color: rgba(26, 23, 20, 0.65);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(184, 155, 110, 0.4);
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d4bc96;
}

.catalog {
  background-color: #ffffff;
}
.catalog__tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 2px solid #e0d8d0;
}
.catalog__tab {
  padding: 0.75rem 2rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #7a6e66;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  transition-property: color, border-color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.catalog__tab:hover {
  color: #1a1714;
}
.catalog__tab.is-active {
  color: #1a1714;
  border-bottom-color: #b89b6e;
}
@media (max-width: 576px) {
  .catalog__tab {
    padding: 0.625rem 1rem;
    white-space: normal;
    text-align: center;
    flex: 1;
  }
}
.catalog__tab-count {
  font-size: 0.75rem;
  font-weight: 400;
  color: #8b7d6b;
  letter-spacing: 0.02em;
  margin-left: 0.2rem;
}
.catalog__tab.is-active .catalog__tab-count {
  color: #b89b6e;
}
@media (max-width: 576px) {
  .catalog__tab-count {
    display: block;
    margin-left: 0;
  }
}
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  transition-property: opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
@media (max-width: 1024px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .catalog__grid {
    grid-template-columns: 1fr;
  }
}
.catalog__grid--hidden {
  display: none !important;
}
.catalog__card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #e0d8d0;
  transition-property: box-shadow, transform;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.catalog__card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.catalog__card:hover .catalog__card-img img {
  transform: scale(1.04);
}
.catalog__card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.catalog__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition-property: transform;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.catalog__card-body {
  padding: 1.5rem;
}
.catalog__card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  color: #1a1714;
  margin-bottom: 0.5rem;
}
.catalog__card-desc {
  font-size: 0.875rem;
  color: #7a6e66;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.catalog__card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #b89b6e;
  letter-spacing: 0.03em;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.catalog__card-link:hover {
  color: #1a1714;
}
.catalog__stats {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 3rem;
  margin-bottom: 2rem;
  padding: 1.5rem 2rem;
  background: #f5f0ea;
  border-radius: 8px;
  border: 1px solid #e0d8d0;
}
@media (max-width: 768px) {
  .catalog__stats {
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .catalog__stats {
    gap: 1rem;
    justify-content: space-between;
  }
}
.catalog__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.2rem;
  text-align: center;
}
@media (max-width: 576px) {
  .catalog__stat {
    width: calc(50% - 1rem);
  }
}
.catalog__stat-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 300;
  color: #b89b6e;
  line-height: 1;
}
.catalog__stat-label {
  font-size: 0.75rem;
  color: #7a6e66;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.catalog__strip {
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
  border-radius: 8px;
}
.catalog__strip--hidden {
  display: none !important;
}
.catalog__strip::before, .catalog__strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.catalog__strip::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.catalog__strip::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}
.catalog__strip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: catalog-marquee 30s linear infinite;
}
.catalog__strip-track:hover {
  animation-play-state: paused;
}
.catalog__strip-action {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  margin-top: 2rem;
}
.catalog__strip-item {
  width: 200px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}
.catalog__strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@keyframes catalog-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.compare {
  background-color: #f5f0ea;
}
.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .compare__grid {
    grid-template-columns: 1fr;
  }
}
.compare__card {
  background-color: #ffffff;
  border: 1px solid #e0d8d0;
  border-radius: 8px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 1rem;
}
.compare__icon {
  font-size: 2rem;
  color: #b89b6e;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.compare__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #1a1714;
}
.compare__sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b89b6e;
  margin-bottom: 0.5rem;
}
.compare__list {
  list-style: none;
  width: 100%;
  margin-bottom: 1.5rem;
}
.compare__item {
  font-size: 0.875rem;
  color: #3d3530;
  line-height: 1.6;
  padding: 0.4rem 0;
  border-bottom: 1px solid #e0d8d0;
  padding-left: 1.5rem;
  position: relative;
}
.compare__item::before {
  position: absolute;
  left: 0;
  font-weight: 600;
}
.compare__item--plus::before {
  content: "+";
  color: #7a9e7e;
}
.compare__item--minus::before {
  content: "−";
  color: #7a6e66;
}
.compare__hint {
  text-align: center;
  font-size: 0.875rem;
  color: #7a6e66;
}
.compare__hint a {
  color: #b89b6e;
  font-weight: 500;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.compare__hint a:hover {
  color: #1a1714;
}

.advantages {
  background-color: #1a1714;
  color: #ffffff;
}
.advantages .section__label {
  color: #d4bc96;
}
.advantages .section__title {
  color: #ffffff;
}
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .advantages__grid {
    grid-template-columns: 1fr;
  }
}
.advantages__item {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  transition-property: border-color, background-color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.advantages__item:hover {
  border-color: rgba(184, 155, 110, 0.4);
  background-color: rgba(184, 155, 110, 0.04);
}
.advantages__icon {
  display: flex;
  align-items: center;
  color: #b89b6e;
  margin-bottom: 1rem;
}
.advantages__icon svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.advantages__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.advantages__desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.production {
  background-color: #ffffff;
}
.production__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .production__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.production__content .section__title {
  text-align: left;
  margin-bottom: 1.5rem;
}
.production__content .section__label {
  text-align: left;
}
.production__text {
  color: #7a6e66;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.production__list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.production__list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #3d3530;
  font-weight: 500;
}
.production__list-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #b89b6e;
}
.production__route-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b89b6e;
  letter-spacing: 0.03em;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.production__route-link:hover {
  color: #1a1714;
}
.production__image-wrap {
  position: relative;
}

.production__slider {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.production__slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.production__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.production__slide-img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}
.production__slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.production__slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(26, 23, 20, 0.7));
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(26, 23, 20, 0.45);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  font-size: 1.125rem;
  transition-property: background-color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.production__slider-btn:hover {
  background: rgba(26, 23, 20, 0.75);
}
.production__slider-btn--prev {
  left: 12px;
}
.production__slider-btn--next {
  right: 12px;
}

.production__slider-dots {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  z-index: 2;
}

.production__slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  padding: 0;
  transition-property: background-color, width;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  cursor: pointer;
}
.production__slider-dot.is-active {
  width: 20px;
  background: #d4bc96;
}

.contact {
  background-color: #f5f0ea;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact__content .section__title {
  text-align: left;
  margin-bottom: 1rem;
}
.contact__content .section__label {
  text-align: left;
}
.contact__desc {
  color: #7a6e66;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact__info li {
  font-size: 0.875rem;
  color: #3d3530;
  line-height: 1.6;
}
.contact__info li strong {
  font-weight: 500;
  color: #1a1714;
  margin-right: 0.375rem;
}
.contact__tg {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b89b6e;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.contact__tg:hover {
  color: #1a1714;
}
.contact__tg-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.contact__route-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #b89b6e;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.contact__route-link:hover {
  color: #1a1714;
}
.contact__route-link:hover .contact__route-text {
  text-decoration-color: rgba(26, 23, 20, 0.45);
}
.contact__route-text {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(184, 155, 110, 0.45);
  transition-property: text-decoration-color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.contact__form {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}
@media (max-width: 576px) {
  .contact__form {
    padding: 2rem;
  }
}

.form__group {
  margin-bottom: 1.5rem;
}
.form__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a6e66;
  margin-bottom: 0.5rem;
}
.form__input, .form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #f5f0ea;
  border: 1px solid #e0d8d0;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #3d3530;
  transition-property: border-color, box-shadow;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  resize: none;
}
.form__input::placeholder, .form__textarea::placeholder {
  color: rgba(122, 110, 102, 0.6);
}
.form__input:focus, .form__textarea:focus {
  border-color: #b89b6e;
  box-shadow: 0 0 0 3px rgba(184, 155, 110, 0.12);
}
.form__policy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #7a6e66;
  text-align: center;
}
.form__policy a {
  color: #b89b6e;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form__policy a:hover {
  color: #1a1714;
}

.footer {
  background-color: #2c2825;
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 2fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.footer__logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: brightness(1.6) contrast(0.88);
  transition-property: filter, opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.footer__logo-img:hover {
  filter: brightness(2) contrast(0.85);
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__nav a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition-property: color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.footer__nav a:hover {
  color: #d4bc96;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__contacts p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer__showrooms-title {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.875rem;
}
.footer__showrooms-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__showrooms-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.footer__showroom-name {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.footer__showroom-hours {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.01em;
}
.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  pointer-events: none;
}
.modal.is-open {
  visibility: visible;
  pointer-events: all;
}
.modal.is-open .modal__overlay {
  opacity: 1;
}
.modal.is-open .modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 23, 20, 0.72);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
  cursor: pointer;
}
.modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition-property: opacity, transform;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
@media (max-width: 768px) {
  .modal__dialog {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 9999px;
  color: #1a1714;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: 0.3s ease;
  transition-timing-function: ease;
}
.modal__close:hover {
  background-color: #1a1714;
  color: #ffffff;
}
.modal__image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .modal__image {
    display: none;
  }
}
.modal__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__content {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 576px) {
  .modal__content {
    padding: 2rem 1.5rem;
  }
}
.modal__label {
  text-align: left;
  margin-bottom: 0.75rem;
}
.modal__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 300;
  color: #1a1714;
  line-height: 1.35;
  margin-bottom: 2rem;
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.modal__form .form__group {
  margin-bottom: 1rem;
}
.modal__submit {
  width: 100%;
  background-color: #b89b6e;
  border-color: #b89b6e;
  color: #ffffff;
  margin-top: 1rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
}
.modal__submit:hover {
  background-color: #1a1714;
  border-color: #1a1714;
  color: #ffffff;
}
.modal__submit:disabled {
  background-color: #8b7d6b;
  border-color: #8b7d6b;
  cursor: default;
}
