/* ========= RESET / BASE ========= */
.main-wrapper * {
  box-sizing: border-box;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.main-wrapper {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  color: rgb(64, 32, 22);
  background-color: rgb(253, 246, 240);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

/* ========= COMMON CONTAINERS ========= */
.header__container,
.hero__container,
.services__container,
.uslugi__container,
.process-short__container,
.protsess__container,
.tseny__container,
.advantages__container,
.materials__container,
.works__container,
.otzyvy__container,
.faq__container,
.kontakty__container,
.footer__container {
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ========= SECTION HEAD (BEM element used across sections) ========= */
.section-head {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgb(163, 51, 41);
}
.section-head__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 32px;
  line-height: 1.2;
  color: rgb(64, 32, 22);
  margin-top: 12px;
}
.section-head__desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgb(120, 90, 78);
  margin-top: 16px;
}

/* ========= BUTTONS ========= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  font-size: 14px;
  font-weight: 500;
  text-decoration-line: none;
  cursor: pointer;
  transition-property: opacity, transform;
  transition-duration: 0.2s;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(163, 51, 41);
  border-right-color: rgb(163, 51, 41);
  border-bottom-color: rgb(163, 51, 41);
  border-left-color: rgb(163, 51, 41);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: transparent;
  color: rgb(163, 51, 41);
  font-size: 14px;
  font-weight: 500;
  text-decoration-line: none;
  cursor: pointer;
  transition-property: background-color, color;
  transition-duration: 0.2s;
}

/* ========= HEADER ========= */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: rgba(253, 246, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(228, 205, 193);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration-line: none;
  color: rgb(64, 32, 22);
}
.header__logo-icon {
  font-size: 22px;
  color: rgb(163, 51, 41);
}
.header__logo-text {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(64, 32, 22, 0.8);
  text-decoration-line: none;
  transition-property: color;
  transition-duration: 0.2s;
  cursor: pointer;
}
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  text-decoration-line: none;
  font-size: 14px;
  font-weight: 500;
  transition-property: opacity;
  transition-duration: 0.2s;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: rgb(64, 32, 22);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

/* ========= MOBILE MENU ========= */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background-color: rgba(64, 32, 22, 0.6);
}
.mobile-menu--open {
  display: block;
}
.mobile-menu__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background-color: rgb(253, 246, 240);
  padding-top: 60px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 40px;
  height: 40px;
  font-size: 32px;
  line-height: 1;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  color: rgb(64, 32, 22);
  cursor: pointer;
}
.mobile-menu__link {
  font-size: 17px;
  font-weight: 500;
  color: rgb(64, 32, 22);
  text-decoration-line: none;
}
.mobile-menu__cta {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  text-decoration-line: none;
  font-weight: 500;
}

/* ========= HERO ========= */
.hero {
  background-color: rgb(247, 226, 213);
}
.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero__text {
  order: 1;
}
.hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgb(163, 51, 41);
}
.hero__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 40px;
  line-height: 1.15;
  color: rgb(64, 32, 22);
  margin-top: 16px;
}
.hero__desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgb(120, 90, 78);
  margin-top: 24px;
  max-width: 520px;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(228, 205, 193);
}
.hero__stat-value {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: rgb(163, 51, 41);
}
.hero__stat-label {
  font-size: 13px;
  color: rgb(120, 90, 78);
  margin-top: 4px;
}
.hero__image-wrap {
  order: 2;
  aspect-ratio: 4 / 5;
  overflow-x: hidden;
  overflow-y: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  box-shadow: 0 10px 30px -10px rgba(64, 32, 22, 0.25);
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========= SECTIONS BG ========= */
.services { background-color: rgb(253, 246, 240); padding-top: 64px; padding-bottom: 64px; }
.uslugi { background-color: rgb(247, 226, 213); padding-top: 64px; padding-bottom: 64px; }
.process-short { background-color: rgb(247, 226, 213); padding-top: 64px; padding-bottom: 64px; }
.protsess { background-color: rgb(253, 246, 240); padding-top: 64px; padding-bottom: 64px; }
.tseny { background-color: rgb(247, 226, 213); padding-top: 64px; padding-bottom: 64px; }
.advantages { background-color: rgb(247, 226, 213); padding-top: 64px; padding-bottom: 64px; }
.materials { background-color: rgb(253, 246, 240); padding-top: 64px; padding-bottom: 64px; }
.works { background-color: rgb(253, 246, 240); padding-top: 64px; padding-bottom: 64px; }
.otzyvy { background-color: rgb(253, 246, 240); padding-top: 64px; padding-bottom: 64px; }
.faq { background-color: rgb(247, 226, 213); padding-top: 64px; padding-bottom: 64px; }
.kontakty { background-color: rgb(247, 226, 213); padding-top: 64px; padding-bottom: 64px; }

/* ========= SERVICES GRID ========= */
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background-color: rgb(253, 250, 246);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: 0 4px 24px -8px rgba(64, 32, 22, 0.1);
  transition-property: transform, box-shadow;
  transition-duration: 0.25s;
}
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: rgb(247, 226, 213);
  color: rgb(163, 51, 41);
  font-size: 22px;
}
.service-card__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  color: rgb(64, 32, 22);
  margin-top: 16px;
}
.service-card__desc {
  font-size: 14px;
  color: rgb(120, 90, 78);
  margin-top: 8px;
  line-height: 1.55;
}

/* ========= USLUGI GRID ========= */
.uslugi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.uslugi-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgb(253, 250, 246);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(228, 205, 193);
  border-right-color: rgb(228, 205, 193);
  border-bottom-color: rgb(228, 205, 193);
  border-left-color: rgb(228, 205, 193);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: 0 2px 10px -4px rgba(64, 32, 22, 0.08);
}
.uslugi-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: rgb(247, 226, 213);
  color: rgb(163, 51, 41);
  font-size: 22px;
}
.uslugi-card__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  color: rgb(64, 32, 22);
  margin-top: 16px;
}
.uslugi-card__desc {
  font-size: 14px;
  color: rgb(120, 90, 78);
  margin-top: 8px;
}
.uslugi-card__foot {
  margin-top: 20px;
  padding-top: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(228, 205, 193);
}
.uslugi-card__price {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: rgb(163, 51, 41);
}

/* ========= PROCESS SHORT ========= */
.process-short__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  background-color: rgb(253, 246, 240);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: 0 2px 10px -4px rgba(64, 32, 22, 0.1);
}
.process-step__num {
  display: block;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 36px;
  font-weight: 700;
  color: rgba(163, 51, 41, 0.25);
}
.process-step__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  color: rgb(64, 32, 22);
  margin-top: 12px;
}
.process-step__desc {
  font-size: 14px;
  color: rgb(120, 90, 78);
  margin-top: 8px;
}

/* ========= PROTSESS (full) ========= */
.protsess__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
}
.protsess-item {
  display: flex;
  gap: 20px;
  background-color: rgb(253, 250, 246);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(228, 205, 193);
  border-right-color: rgb(228, 205, 193);
  border-bottom-color: rgb(228, 205, 193);
  border-left-color: rgb(228, 205, 193);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.protsess-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: rgb(247, 226, 213);
  color: rgb(163, 51, 41);
  font-size: 22px;
}
.protsess-item__step {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(163, 51, 41, 0.7);
}
.protsess-item__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  color: rgb(64, 32, 22);
  margin-top: 4px;
}
.protsess-item__desc {
  font-size: 14px;
  color: rgb(120, 90, 78);
  margin-top: 8px;
}

/* ========= TSENY ========= */
.tseny__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.tseny-group {
  background-color: rgb(253, 250, 246);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(228, 205, 193);
  border-right-color: rgb(228, 205, 193);
  border-bottom-color: rgb(228, 205, 193);
  border-left-color: rgb(228, 205, 193);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.tseny-group__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  color: rgb(64, 32, 22);
}
.tseny-group__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 16px;
}
.tseny-group__item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(228, 205, 193, 0.6);
}
.tseny-group__name { font-size: 14px; color: rgb(64, 32, 22); }
.tseny-group__price { font-size: 14px; font-weight: 600; color: rgb(163, 51, 41); flex-shrink: 0; }

/* ========= ADVANTAGES ========= */
.advantages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.advantage-card {
  background-color: rgb(253, 246, 240);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: 0 2px 10px -4px rgba(64, 32, 22, 0.1);
}
.advantage-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: rgb(247, 226, 213);
  color: rgb(163, 51, 41);
  font-size: 22px;
}
.advantage-card__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  color: rgb(64, 32, 22);
  margin-top: 16px;
}
.advantage-card__desc {
  font-size: 14px;
  color: rgb(120, 90, 78);
  margin-top: 8px;
}

/* ========= MATERIALS ========= */
.materials__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.materials__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 30px;
  color: rgb(64, 32, 22);
  margin-top: 12px;
}
.materials__desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgb(120, 90, 78);
  margin-top: 16px;
}
.materials__note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 24px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  background-color: rgb(247, 226, 213);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.materials__note-icon { font-size: 20px; color: rgb(163, 51, 41); }
.materials__note-text { font-size: 14px; color: rgb(64, 32, 22); }
.materials__list {
  list-style-type: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.materials__item {
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  background-color: rgba(247, 226, 213, 0.5);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(228, 205, 193);
  border-right-color: rgb(228, 205, 193);
  border-bottom-color: rgb(228, 205, 193);
  border-left-color: rgb(228, 205, 193);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgb(64, 32, 22);
}

/* ========= WORKS ========= */
.works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.works-card {
  background-color: rgb(253, 250, 246);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  overflow-x: hidden;
  overflow-y: hidden;
  box-shadow: 0 2px 10px -4px rgba(64, 32, 22, 0.1);
}
.works-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: rgb(247, 226, 213);
  overflow-x: hidden;
  overflow-y: hidden;
}
.works-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition-property: transform;
  transition-duration: 0.5s;
}
.works-card__tag {
  position: absolute;
  top: 12px;
  padding-top: 4px;
  padding-right: 10px;
  padding-bottom: 4px;
  padding-left: 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.works-card__tag--before {
  left: 12px;
  background-color: rgba(253, 246, 240, 0.9);
  color: rgb(64, 32, 22);
}
.works-card__tag--after {
  right: 12px;
  background-color: rgba(163, 51, 41, 0.9);
  color: rgb(253, 246, 240);
}
.works-card__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: rgba(253, 246, 240, 0.6);
}
.works-card__cap {
  padding-top: 18px;
  padding-right: 18px;
  padding-bottom: 18px;
  padding-left: 18px;
}
.works-card__title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
  color: rgb(64, 32, 22);
}
.works-card__desc {
  font-size: 14px;
  color: rgb(120, 90, 78);
  margin-top: 6px;
}

/* ========= OTZYVY ========= */
.otzyvy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background-color: rgb(253, 250, 246);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: 0 4px 24px -8px rgba(64, 32, 22, 0.1);
  display: flex;
  flex-direction: column;
}
.review-card__stars { color: rgb(204, 132, 66); font-size: 15px; letter-spacing: 2px; }
.review-card__text { font-size: 14px; color: rgb(64, 32, 22); margin-top: 16px; flex-grow: 1; line-height: 1.6; }
.review-card__meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(228, 205, 193);
}
.review-card__name { font-size: 14px; font-weight: 500; color: rgb(64, 32, 22); }
.review-card__service { font-size: 13px; color: rgb(120, 90, 78); margin-top: 2px; }
.otzyvy__rating {
  margin-top: 40px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  background-color: rgb(247, 226, 213);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  text-align: center;
}
.otzyvy__rating-stars { color: rgb(204, 132, 66); font-size: 22px; letter-spacing: 3px; }
.otzyvy__rating-value {
  display: inline-block;
  margin-left: 8px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: rgb(64, 32, 22);
}
.otzyvy__rating-note { font-size: 14px; color: rgb(120, 90, 78); margin-top: 8px; }

/* ========= FAQ ========= */
.faq__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  background-color: rgb(253, 246, 240);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 20px;
  padding-right: 24px;
  padding-bottom: 20px;
  padding-left: 24px;
  box-shadow: 0 2px 10px -4px rgba(64, 32, 22, 0.1);
}
.faq-item__q {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 16px;
  color: rgb(64, 32, 22);
  font-weight: 700;
  cursor: pointer;
  list-style-type: none;
}
.faq-item__a {
  font-size: 14px;
  color: rgb(120, 90, 78);
  margin-top: 12px;
  line-height: 1.6;
}

/* ========= KONTAKTY ========= */
.kontakty__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.kontakty__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.kontakty__card {
  background-color: rgb(253, 250, 246);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  box-shadow: 0 2px 10px -4px rgba(64, 32, 22, 0.1);
}
.kontakty__card-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 20px;
  color: rgb(64, 32, 22);
}
.kontakty__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.kontakty__list-item { display: flex; gap: 12px; align-items: flex-start; }
.kontakty__icon { color: rgb(163, 51, 41); font-size: 18px; }
.kontakty__link { color: rgb(64, 32, 22); text-decoration-line: none; font-weight: 500; }
.kontakty__list-title { font-weight: 500; color: rgb(64, 32, 22); }
.kontakty__list-sub { font-size: 13px; color: rgb(120, 90, 78); margin-top: 2px; }
.kontakty__legal {
  margin-top: 20px;
  padding-top: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(228, 205, 193);
}
.kontakty__legal-line { font-size: 12px; color: rgba(120, 90, 78, 0.9); margin-top: 3px; }
.kontakty__perks {
  background-color: rgb(247, 226, 213);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.kontakty__perks-title { font-family: "Libre Baskerville", Georgia, serif; font-size: 20px; color: rgb(64, 32, 22); }
.kontakty__perks-list { list-style-type: none; padding-left: 0; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.kontakty__perks-item { font-size: 14px; color: rgb(64, 32, 22); }

.kontakty__form-card {
  background-color: rgb(253, 250, 246);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  box-shadow: 0 2px 10px -4px rgba(64, 32, 22, 0.1);
}
.kontakty__form-title { font-family: "Libre Baskerville", Georgia, serif; font-size: 22px; color: rgb(64, 32, 22); }
.kontakty__form-sub { font-size: 14px; color: rgb(120, 90, 78); margin-top: 8px; }
.kontakty-form { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.kontakty-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kontakty-form__field { display: flex; flex-direction: column; gap: 6px; }
.kontakty-form__label { font-size: 13px; font-weight: 500; color: rgb(64, 32, 22); }
.kontakty-form__input,
.kontakty-form__textarea {
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(228, 205, 193);
  border-right-color: rgb(228, 205, 193);
  border-bottom-color: rgb(228, 205, 193);
  border-left-color: rgb(228, 205, 193);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: rgb(64, 32, 22);
  background-color: rgb(253, 246, 240);
}
.kontakty-form__textarea { resize: vertical; min-height: 100px; }
.kontakty-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.kontakty-form__note { font-size: 12px; color: rgb(120, 90, 78); }
.kontakty-form__success {
  margin-top: 24px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  background-color: rgb(247, 226, 213);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  text-align: center;
}
.kontakty-form__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  font-size: 24px;
}
.kontakty-form__success-title { font-family: "Libre Baskerville", Georgia, serif; font-size: 20px; color: rgb(64, 32, 22); margin-top: 12px; }
.kontakty-form__success-text { font-size: 14px; color: rgb(120, 90, 78); margin-top: 8px; margin-bottom: 16px; }

/* ========= FOOTER ========= */
.footer {
  background-color: rgb(247, 226, 213);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(228, 205, 193);
  padding-top: 48px;
  padding-bottom: 24px;
}
.footer__cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.footer__brand { display: flex; align-items: center; gap: 8px; color: rgb(64, 32, 22); }
.footer__brand-icon { font-size: 20px; color: rgb(163, 51, 41); }
.footer__brand-text { font-family: "Libre Baskerville", Georgia, serif; font-size: 18px; font-weight: 700; }
.footer__desc { font-size: 14px; color: rgb(120, 90, 78); margin-top: 12px; }
.footer__title { font-family: "Libre Baskerville", Georgia, serif; font-size: 16px; font-weight: 700; color: rgb(64, 32, 22); }
.footer__list { list-style-type: none; padding-left: 0; margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.footer__list-item { font-size: 14px; color: rgb(120, 90, 78); }
.footer__link { color: rgb(120, 90, 78); text-decoration-line: none; }
.footer__legal { margin-top: 16px; }
.footer__legal-line { font-size: 12px; color: rgba(120, 90, 78, 0.9); margin-top: 3px; }
.footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(228, 205, 193);
  text-align: center;
  font-size: 12px;
  color: rgb(120, 90, 78);
}

/* ========= CHATBOT ========= */
.chatbot-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 10px 24px -6px rgba(64, 32, 22, 0.4);
  z-index: 50;
}
.chatbot-toggle--hidden { display: none; }
.chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 340px;
  max-width: 92vw;
  height: 460px;
  max-height: 80vh;
  background-color: rgb(253, 246, 240);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  box-shadow: 0 20px 40px -10px rgba(64, 32, 22, 0.35);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 55;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(228, 205, 193);
  border-right-color: rgb(228, 205, 193);
  border-bottom-color: rgb(228, 205, 193);
  border-left-color: rgb(228, 205, 193);
}
.chatbot[hidden] { display: none; }
.chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-right: 16px;
  padding-bottom: 14px;
  padding-left: 16px;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
}
.chatbot__title { font-family: "Libre Baskerville", Georgia, serif; font-size: 16px; font-weight: 700; }
.chatbot__close {
  width: 32px;
  height: 32px;
  font-size: 26px;
  line-height: 1;
  background-color: transparent;
  color: rgb(253, 246, 240);
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
}
.chatbot__body {
  flex-grow: 1;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgb(253, 250, 246);
}
.chatbot__message {
  max-width: 82%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}
.chatbot__message--bot {
  background-color: rgb(247, 226, 213);
  color: rgb(64, 32, 22);
  align-self: flex-start;
}
.chatbot__message--user {
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  align-self: flex-end;
}
.chatbot__form {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(228, 205, 193);
  background-color: rgb(253, 246, 240);
}
.chatbot__input {
  flex-grow: 1;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  font-family: inherit;
  font-size: 14px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(228, 205, 193);
  border-right-color: rgb(228, 205, 193);
  border-bottom-color: rgb(228, 205, 193);
  border-left-color: rgb(228, 205, 193);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgb(253, 250, 246);
  color: rgb(64, 32, 22);
}
.chatbot__send {
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: rgb(163, 51, 41);
  color: rgb(253, 246, 240);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* ========= HOVER STATES (applied via JS as -hover modifier) ========= */
.btn-primary--hover { opacity: 0.9; }
.btn-outline--hover { background-color: rgb(163, 51, 41); color: rgb(253, 246, 240); }
.header__nav-link--hover { color: rgb(163, 51, 41); }
.header__cta--hover { opacity: 0.9; }
.service-card--hover { transform: translateY(-4px); box-shadow: 0 10px 30px -10px rgba(64, 32, 22, 0.2); }
.works-card__img--hover { transform: scale(1.05); }
.footer__link--hover { color: rgb(163, 51, 41); }
.kontakty__link--hover { color: rgb(163, 51, 41); }
.chatbot-toggle--hover { transform: scale(1.05); }

/* ========= RESPONSIVE ========= */
@media (max-width: 1024px) {
  .services__grid, .works__grid, .otzyvy__grid, .advantages__grid { grid-template-columns: 1fr 1fr; }
  .process-short__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__burger { display: flex; }
  .hero__container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
  .hero__text { order: 2; text-align: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .hero__buttons { justify-content: center; }
  .hero__image-wrap { order: 1; aspect-ratio: 4 / 3; }
  .hero__title { font-size: 30px; }
  .kontakty__grid { grid-template-columns: 1fr; }
  .materials__cols { grid-template-columns: 1fr; }
  .faq__list { grid-template-columns: 1fr; }
  .uslugi__grid, .tseny__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .services__grid, .works__grid, .otzyvy__grid, .advantages__grid, .process-short__grid { grid-template-columns: 1fr; }
  .kontakty-form__row { grid-template-columns: 1fr; }
  .section-head__title { font-size: 26px; }
  .hero__title { font-size: 26px; }
  .hero__stats { grid-template-columns: 1fr; text-align: center; }
  .header__container { padding-left: 14px; padding-right: 14px; }
  .header__logo-text { font-size: 16px; }
  .materials__list { grid-template-columns: 1fr; }
  .chatbot { right: 12px; bottom: 12px; }
  .chatbot-toggle { right: 12px; bottom: 12px; }
}

/* ============ CHATBOT ADMIN AVATAR ============ */
.chatbot__admin {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot__avatar {
  width: 42px;
  height: 42px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  object-fit: cover;
  border-top-width: 2px;
  border-right-width: 2px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(253, 246, 240);
  border-right-color: rgb(253, 246, 240);
  border-bottom-color: rgb(253, 246, 240);
  border-left-color: rgb(253, 246, 240);
}
.chatbot__admin-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.chatbot__status {
  font-size: 12px;
  color: rgb(247, 226, 213);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chatbot__status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: rgb(80, 200, 120);
}

/* ============ ACTIVE NAV LINK ============ */
.header__nav-link--active {
  color: rgb(163, 51, 41);
  font-weight: 600;
}

/* ============ SERVICES MORE BUTTON ============ */
.services__more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
