/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
body {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #2c1810;
  background-color: #faf8f5;
  min-width: 320px;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
}
p { margin-top: 0; margin-bottom: 0; }
ul, ol, dl, dd, dt { margin-top: 0; margin-bottom: 0; padding-left: 0; }
ul, ol { list-style-type: none; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border-style: none; background-color: transparent; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; }
img { display: block; max-width: 100%; height: auto; }
iframe { border-style: none; }

.main-wrapper { width: 100%; }
.main { display: block; }
.page { display: block; }
.page[hidden] { display: none; }

/* ================= NAVBAR ================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background-color: rgba(250, 248, 245, 0.9);
  backdrop-filter: blur(8px);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(232, 224, 214, 0.6);
}
.navbar__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-right: 16px;
  padding-bottom: 0;
  padding-left: 16px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 600;
  color: #2c1810;
  flex-shrink: 0;
}
.navbar__logo-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: rgba(184, 115, 78, 0.1);
  color: #b8734e;
  font-size: 18px;
}
.navbar__menu {
  display: none;
  align-items: center;
  column-gap: 24px;
}
.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(44, 24, 16, 0.8);
  transition-property: color;
  transition-duration: 150ms;
}
.navbar__link:hover { color: #2c1810; }
.navbar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-radius: 6px;
  background-color: #b8734e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition-property: background-color;
  transition-duration: 150ms;
}
.navbar__cta:hover { background-color: #a4653f; }
.navbar__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 4px;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  flex-shrink: 0;
}
.navbar__burger-line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #2c1810;
  border-radius: 2px;
}
.navbar__mobile {
  display: none;
  flex-direction: column;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(232, 224, 214, 0.6);
  background-color: #faf8f5;
  row-gap: 4px;
}
.navbar__mobile--open { display: flex; }
.navbar__mobile-link {
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(44, 24, 16, 0.85);
}
.navbar__mobile-link:hover { background-color: rgba(240, 235, 227, 0.6); }
.navbar__mobile-cta {
  margin-top: 8px;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  border-radius: 6px;
  background-color: #b8734e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 1024px) {
  .navbar__menu { display: flex; }
  .navbar__burger { display: none; }
  .navbar__mobile { display: none; }
  .navbar__mobile--open { display: none; }
}

/* ================= HERO ================= */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(250, 248, 245, 0.85), rgba(250, 248, 245, 0.6), rgba(250, 248, 245, 1));
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 72px;
  padding-right: 16px;
  padding-bottom: 96px;
  padding-left: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__tagline {
  display: inline-block;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  background-color: rgba(250, 248, 245, 0.7);
  padding-top: 6px;
  padding-right: 14px;
  padding-bottom: 6px;
  padding-left: 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8734e;
}
.hero__title {
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: #2c1810;
  max-width: 720px;
  text-wrap: balance;
}
.hero__subtitle {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #8b7355;
  max-width: 620px;
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
  column-gap: 12px;
  width: 100%;
  max-width: 420px;
}
.hero__button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  width: 100%;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-radius: 6px;
  background-color: #b8734e;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition-property: background-color;
  transition-duration: 150ms;
}
.hero__button-primary:hover { background-color: #a4653f; }
.hero__button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-radius: 6px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  background-color: rgba(250, 248, 245, 0.8);
  color: #2c1810;
  font-size: 14px;
  font-weight: 500;
  transition-property: background-color;
  transition-duration: 150ms;
}
.hero__button-secondary:hover { background-color: #faf8f5; }

@media (min-width: 640px) {
  .hero__container { padding-top: 112px; padding-bottom: 112px; padding-left: 24px; padding-right: 24px; }
  .hero__title { font-size: 48px; }
  .hero__subtitle { font-size: 17px; }
  .hero__actions { flex-direction: row; width: auto; max-width: none; }
  .hero__button-primary, .hero__button-secondary { width: auto; }
}
@media (min-width: 1024px) {
  .hero__container { padding-top: 144px; padding-bottom: 144px; }
  .hero__title { font-size: 60px; }
  .hero__subtitle { font-size: 18px; }
}

/* ================= SECTION SHARED ================= */
.stats {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.4);
}
.stats__container {
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 24px;
  text-align: center;
}
.stats__value {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 700;
  color: #b8734e;
}
.stats__label {
  margin-top: 4px;
  font-size: 13px;
  color: #8b7355;
}
@media (min-width: 768px) {
  .stats__container { grid-template-columns: repeat(4, minmax(0, 1fr)); padding-top: 56px; padding-bottom: 56px; }
  .stats__value { font-size: 40px; }
  .stats__label { font-size: 14px; }
}

/* Section blocks */
.services-section, .equipment, .clients {
  padding-top: 64px;
  padding-bottom: 64px;
}
.advantages, .guarantees, .tips, .reviews {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.4);
  padding-top: 64px;
  padding-bottom: 64px;
}
.process {
  padding-top: 64px;
  padding-bottom: 64px;
}
.cta {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (min-width: 640px) {
  .services-section, .equipment, .clients, .advantages, .guarantees, .tips, .reviews, .process, .cta {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1024px) {
  .services-section, .advantages, .equipment, .guarantees, .tips, .process, .reviews {
    padding-top: 112px;
    padding-bottom: 112px;
  }
}

.services-section__container, .advantages__container, .equipment__container, .guarantees__container, .clients__container, .tips__container, .reviews__container, .process__container, .cta__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.process__container { max-width: 900px; }
.cta__container { max-width: 720px; text-align: center; }

.services-section__header, .advantages__header, .equipment__header, .guarantees__header, .clients__header, .tips__header, .reviews__header, .process__header {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.services-section__eyebrow, .advantages__eyebrow, .equipment__eyebrow, .guarantees__eyebrow, .clients__eyebrow, .tips__eyebrow, .reviews__eyebrow, .process__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8734e;
}
.services-section__title, .advantages__title, .equipment__title, .guarantees__title, .clients__title, .tips__title, .reviews__title, .process__title, .cta__title {
  margin-top: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #2c1810;
}
.services-section__subtitle, .advantages__subtitle, .equipment__subtitle, .clients__subtitle, .cta__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #8b7355;
}
@media (min-width: 640px) {
  .services-section__title, .advantages__title, .equipment__title, .guarantees__title, .clients__title, .tips__title, .reviews__title, .process__title, .cta__title { font-size: 36px; }
}

/* Grids */
.services-section__grid, .equipment__grid, .guarantees__grid, .advantages__grid, .tips__grid, .reviews__grid, .extras__grid, .team__grid, .values__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
  column-gap: 20px;
}
@media (min-width: 640px) {
  .services-section__grid, .equipment__grid, .guarantees__grid, .advantages__grid, .extras__grid, .team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .services-section__grid, .equipment__grid, .team__grid, .tips__grid, .values__grid {
    margin-top: 56px;
  }
}
@media (min-width: 1024px) {
  .services-section__grid, .equipment__grid, .team__grid, .tips__grid, .values__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .advantages__grid, .guarantees__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .reviews__grid, .extras__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Card blocks */
.service-card, .advantage, .equipment-card, .guarantee, .tip, .review, .team-member, .value-card, .extra, .condition, .package, .fact, .portfolio-stat, .project, .faq-item {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
}
.service-card, .advantage, .equipment-card, .guarantee, .tip, .team-member, .value-card, .extra, .condition {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.service-card__icon, .advantage__icon, .guarantee__icon, .value-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(184, 115, 78, 0.1);
  color: #b8734e;
  font-size: 22px;
}
.service-card__title, .advantage__title, .equipment-card__title, .guarantee__title, .tip__title, .team-member__name, .value-card__title, .extra__title, .condition__key, .fact__value {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 600;
  color: #2c1810;
  font-family: "Source Sans 3", sans-serif;
}
.service-card__text, .advantage__text, .equipment-card__text, .guarantee__text, .tip__text, .team-member__bio, .value-card__text, .extra__text, .condition__value {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #8b7355;
}
.equipment-card__title, .tip__title, .team-member__name { margin-top: 0; }
.team-member__role {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b8734e;
}
.services-section__cta {
  margin-top: 40px;
  text-align: center;
}
.services-section__link {
  font-size: 14px;
  font-weight: 500;
  color: #b8734e;
}
.services-section__link:hover { text-decoration-line: underline; }

/* Clients */
.clients__list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  row-gap: 10px;
}
.clients__item {
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-radius: 999px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  background-color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #2c1810;
}

/* Process */
.process__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.process-step {
  display: flex;
  column-gap: 20px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.process-step__num {
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  color: #b8734e;
}
.process-step__body { min-width: 0; }
.process-step__title { font-size: 17px; font-weight: 600; color: #2c1810; font-family: "Source Sans 3", sans-serif; }
.process-step__text { margin-top: 4px; font-size: 14px; line-height: 1.6; color: #8b7355; }

/* Reviews */
.reviews__rating {
  margin-top: 16px;
  font-size: 14px;
  color: #8b7355;
}
.review {
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.review__quote {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  line-height: 1;
  color: rgba(184, 115, 78, 0.4);
}
.review__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(44, 24, 16, 0.9);
}
.review__meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
}
.review__name { font-size: 14px; font-weight: 600; color: #2c1810; }
.review__role { margin-top: 2px; font-size: 12px; color: #8b7355; }

/* CTA */
.cta__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 12px;
  column-gap: 12px;
}
.cta__button-primary, .cta__button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.cta__button-primary { background-color: #b8734e; color: #ffffff; }
.cta__button-primary:hover { background-color: #a4653f; }
.cta__button-secondary {
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  background-color: #ffffff;
  color: #2c1810;
}
.cta__button-secondary:hover { background-color: #f0ebe3; }
@media (min-width: 640px) {
  .cta__actions { flex-direction: row; }
  .cta__button-primary, .cta__button-secondary { width: auto; }
}

/* ================= PAGE HERO ================= */
.page-hero {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e8e0d6;
  padding-top: 56px;
  padding-bottom: 56px;
}
.page-hero__container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}
.page-hero__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b8734e;
}
.page-hero__title {
  margin-top: 12px;
  font-size: 30px;
  font-weight: 700;
  color: #2c1810;
}
.page-hero__subtitle {
  margin-top: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.6;
  color: #8b7355;
}
@media (min-width: 640px) {
  .page-hero { padding-top: 80px; padding-bottom: 80px; }
  .page-hero__title { font-size: 42px; }
}

/* Facts */
.facts { padding-top: 56px; padding-bottom: 56px; }
.facts__container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
  column-gap: 16px;
}
.fact {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  text-align: center;
}
.fact__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(184, 115, 78, 0.1);
  color: #b8734e;
  font-size: 18px;
}
.fact__label {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b7355;
}
.fact__value {
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #2c1810;
}
@media (min-width: 640px) {
  .facts__container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact { text-align: left; }
}
@media (min-width: 1024px) {
  .facts__container { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* History */
.history {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.4);
  padding-top: 64px;
  padding-bottom: 64px;
}
.history__container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.history__title, .team__title, .values__title, .requisites__title, .extras__title, .conditions__title {
  font-size: 26px;
  font-weight: 700;
  color: #2c1810;
}
.history__body { margin-top: 24px; }
.history__paragraph {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(44, 24, 16, 0.9);
  margin-bottom: 16px;
}
.timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.timeline__item {
  display: flex;
  column-gap: 20px;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
}
.timeline__year {
  flex-shrink: 0;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: #b8734e;
}
.timeline__body { min-width: 0; }
.timeline__title { font-size: 16px; font-weight: 600; color: #2c1810; font-family: "Source Sans 3", sans-serif; }
.timeline__text { margin-top: 4px; font-size: 14px; line-height: 1.6; color: #8b7355; }

/* Team */
.team { padding-top: 64px; padding-bottom: 64px; }
.team__container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.team__header { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.team__subtitle { margin-top: 16px; font-size: 15px; line-height: 1.6; color: #8b7355; }

/* Values */
.values {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.4);
  padding-top: 64px;
  padding-bottom: 64px;
}
.values__container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}

/* Requisites */
.requisites {
  padding-top: 64px;
  padding-bottom: 64px;
}
.requisites__container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.requisites__list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
  column-gap: 12px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.requisites__row { font-size: 14px; }
.requisites__key { color: #8b7355; }
.requisites__value { margin-top: 2px; margin-left: 0; font-weight: 500; color: #2c1810; }
@media (min-width: 640px) {
  .requisites__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Packages */
.packages { padding-top: 64px; padding-bottom: 64px; }
.packages__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.packages__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}
@media (min-width: 640px) { .packages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .packages__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.package {
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
}
.package--highlighted {
  border-color: #b8734e;
  background-color: rgba(184, 115, 78, 0.05);
}
.package__title { font-size: 20px; font-weight: 600; color: #2c1810; font-family: "Source Sans 3", sans-serif; }
.package__price-row { margin-top: 16px; display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 8px; }
.package__price { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 700; color: #b8734e; }
.package__duration { font-size: 12px; color: #8b7355; }
.package__description { margin-top: 16px; font-size: 14px; line-height: 1.6; color: #8b7355; }
.package__features { margin-top: 20px; display: flex; flex-direction: column; row-gap: 10px; }
.package__feature {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(44, 24, 16, 0.9);
}
.package__feature-mark { color: #b8734e; }
.package__feature { background-image: none; }
.package__feature-check { display: inline-block; width: 16px; margin-right: 6px; color: #b8734e; }
.package__button {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-right: 16px;
  padding-bottom: 10px;
  padding-left: 16px;
  background-color: #b8734e;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.package__button:hover { background-color: #a4653f; }

/* Extras */
.extras { padding-top: 56px; padding-bottom: 56px; }
.extras__container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.extras__header { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.extras__subtitle { margin-top: 16px; font-size: 15px; line-height: 1.6; color: #8b7355; }
.extra__row { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; column-gap: 8px; row-gap: 4px; }
.extra__price { font-size: 14px; font-weight: 600; color: #b8734e; }

/* Conditions */
.conditions {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.4);
  padding-top: 56px;
  padding-bottom: 56px;
}
.conditions__container {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
}
.conditions__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 16px;
  column-gap: 16px;
  text-align: left;
}
@media (min-width: 640px) { .conditions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.condition { padding-top: 24px; padding-right: 24px; padding-bottom: 24px; padding-left: 24px; }

/* Portfolio stats */
.portfolio-stats { padding-top: 40px; padding-bottom: 20px; }
.portfolio-stats__container {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 16px;
  column-gap: 16px;
}
.portfolio-stat {
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  text-align: center;
}
.portfolio-stat__value { font-family: "Playfair Display", serif; font-size: 24px; font-weight: 700; color: #b8734e; }
.portfolio-stat__label { margin-top: 4px; font-size: 12px; color: #8b7355; }
@media (min-width: 640px) { .portfolio-stats__container { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Projects */
.projects { padding-top: 40px; padding-bottom: 80px; }
.projects__container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.projects__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 20px;
  column-gap: 20px;
}
@media (min-width: 768px) { .projects__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.project {
  padding-top: 28px;
  padding-right: 28px;
  padding-bottom: 28px;
  padding-left: 28px;
  display: flex;
  flex-direction: column;
}
.project__head { display: flex; align-items: center; column-gap: 12px; }
.project__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: rgba(184, 115, 78, 0.1);
  color: #b8734e;
  font-size: 18px;
  flex-shrink: 0;
}
.project__meta { min-width: 0; }
.project__category { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #b8734e; }
.project__year { font-size: 12px; color: #8b7355; }
.project__title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 600;
  color: #2c1810;
  line-height: 1.3;
}
.project__body { margin-top: 16px; display: flex; flex-direction: column; row-gap: 12px; }
.project__key { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #8b7355; }
.project__value { margin-top: 4px; margin-left: 0; font-size: 14px; color: rgba(44, 24, 16, 0.9); }
.projects__note {
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 14px;
  color: #8b7355;
}

/* Vacancies */
.vacancies { padding-top: 40px; padding-bottom: 56px; }
.vacancies__container {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.vacancies-filters {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}
.vacancies-filters__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 640px) { .vacancies-filters__row { grid-template-columns: minmax(0, 1fr) auto; } }
.vacancies-filters__search {
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 6px;
  font-size: 14px;
  color: #2c1810;
  background-color: #faf8f5;
  outline-style: none;
}
.vacancies-filters__sort {
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 6px;
  font-size: 14px;
  color: #2c1810;
  background-color: #faf8f5;
  outline-style: none;
  cursor: pointer;
}
.vacancies-filters__tabs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 8px;
}
.vacancies-filters__tab {
  padding-top: 6px;
  padding-right: 14px;
  padding-bottom: 6px;
  padding-left: 14px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 999px;
  background-color: #ffffff;
  color: #8b7355;
  font-size: 13px;
  font-weight: 500;
}
.vacancies-filters__tab:hover { color: #2c1810; }
.vacancies-filters__tab--active {
  background-color: #b8734e;
  color: #ffffff;
  border-color: #b8734e;
}
.vacancies__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.vacancies__empty {
  margin-top: 24px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  color: #8b7355;
  font-size: 14px;
}
.vacancy {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
  overflow-x: hidden;
  overflow-y: hidden;
}
.vacancy__button {
  width: 100%;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  text-align: left;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 16px;
  align-items: center;
}
.vacancy__title {
  font-size: 18px;
  font-weight: 600;
  color: #2c1810;
  font-family: "Source Sans 3", sans-serif;
}
.vacancy__tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 4px;
  font-size: 12px;
  color: #8b7355;
}
.vacancy__tag { display: inline-flex; align-items: center; column-gap: 4px; }
.vacancy__salary {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #b8734e;
}
.vacancy__short {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #8b7355;
}
.vacancy__chevron {
  color: #b8734e;
  font-size: 18px;
  transition-property: transform;
  transition-duration: 200ms;
}
.vacancy--open .vacancy__chevron { transform: rotate(180deg); }
.vacancy__details {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  background-color: rgba(240, 235, 227, 0.3);
}
.vacancy__group + .vacancy__group { margin-top: 20px; }
.vacancy__group-title {
  font-size: 13px;
  font-weight: 600;
  color: #2c1810;
  font-family: "Source Sans 3", sans-serif;
}
.vacancy__group-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.vacancy__group-item {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(44, 24, 16, 0.85);
}
.vacancy__group-item-mark { color: #b8734e; margin-right: 6px; }
.vacancy__apply {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  background-color: #b8734e;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.vacancy__apply:hover { background-color: #a4653f; }

/* FAQ */
.faq { padding-top: 48px; padding-bottom: 64px; }
.faq__container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.faq-item { overflow-x: hidden; overflow-y: hidden; }
.faq-item__button {
  width: 100%;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 12px;
  align-items: center;
  text-align: left;
}
.faq-item__button:hover { background-color: rgba(240, 235, 227, 0.4); }
.faq-item__question {
  font-size: 15px;
  font-weight: 600;
  color: #2c1810;
  font-family: "Source Sans 3", sans-serif;
}
.faq-item__chevron {
  color: #8b7355;
  font-size: 18px;
  transition-property: transform;
  transition-duration: 200ms;
}
.faq-item--open .faq-item__chevron { transform: rotate(180deg); }
.faq-item__answer {
  display: none;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(44, 24, 16, 0.9);
}
.faq-item--open .faq-item__answer { display: block; }

/* Contact */
.contact { padding-top: 56px; padding-bottom: 56px; }
.contact__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 40px;
  column-gap: 40px;
}
@media (min-width: 1024px) { .contact__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.contact-info__title { font-size: 24px; font-weight: 700; color: #2c1810; }
.contact-info__list { margin-top: 32px; display: flex; flex-direction: column; row-gap: 20px; }
.contact-info__item { display: flex; align-items: flex-start; column-gap: 16px; }
.contact-info__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(184, 115, 78, 0.1);
  color: #b8734e;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info__body { min-width: 0; }
.contact-info__label { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #8b7355; }
.contact-info__link, .contact-info__value {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 500;
  color: #2c1810;
  word-break: break-word;
}
.contact-info__link:hover { color: #b8734e; }
.contact-info__req {
  margin-top: 40px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  background-color: rgba(240, 235, 227, 0.6);
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
}
.contact-info__req-title { font-size: 14px; font-weight: 600; color: #2c1810; }
.contact-info__req-line { margin-top: 6px; font-size: 14px; color: #8b7355; }

.contact-form {
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.contact-form__title { font-size: 20px; font-weight: 600; color: #2c1810; font-family: "Playfair Display", serif; }
.contact-form__form { margin-top: 24px; display: flex; flex-direction: column; row-gap: 16px; }
.contact-form__field { display: block; }
.contact-form__label { display: block; font-size: 14px; font-weight: 500; color: #2c1810; }
.contact-form__input, .contact-form__textarea {
  margin-top: 6px;
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 6px;
  background-color: #faf8f5;
  font-size: 14px;
  color: #2c1810;
  font-family: inherit;
  outline-style: none;
}
.contact-form__input:focus, .contact-form__textarea:focus { border-color: #b8734e; }
.contact-form__textarea { resize: vertical; min-height: 100px; }
.contact-form__error { margin-top: 4px; font-size: 12px; color: #c94a4a; }
.contact-form__error:empty { display: none; }
.contact-form__agree { display: flex; align-items: flex-start; column-gap: 12px; font-size: 12px; line-height: 1.6; color: #8b7355; }
.contact-form__checkbox { margin-top: 4px; width: 16px; height: 16px; flex-shrink: 0; accent-color: #b8734e; }
.contact-form__agree-link { color: #b8734e; text-decoration-line: underline; }
.contact-form__submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  width: 100%;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  background-color: #b8734e;
  color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}
.contact-form__submit:hover { background-color: #a4653f; }
.contact-form__success {
  margin-top: 24px;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(184, 115, 78, 0.3);
  background-color: rgba(184, 115, 78, 0.05);
  border-radius: 12px;
  text-align: center;
}
.contact-form__success-icon { font-size: 40px; color: #b8734e; }
.contact-form__success-title { margin-top: 12px; font-size: 16px; font-weight: 600; color: #2c1810; }
.contact-form__success-text { margin-top: 8px; font-size: 14px; color: #8b7355; }

/* Map */
.map-section { padding-bottom: 64px; }
.map-section__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.map-section__frame {
  overflow-x: hidden;
  overflow-y: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
  background-color: #ffffff;
}
.map-section__iframe {
  width: 100%;
  height: 460px;
  min-height: 320px;
  display: block;
  border-style: none;
}
.map-section__caption {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.4);
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 12px;
  align-items: center;
}
@media (min-width: 640px) { .map-section__caption { grid-template-columns: minmax(0, 1fr) auto; } }
.map-section__name { font-size: 14px; font-weight: 600; color: #2c1810; }
.map-section__addr { margin-top: 2px; font-size: 12px; color: #8b7355; }
.map-section__route {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  background-color: #ffffff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #2c1810;
}
.map-section__route:hover { background-color: #f0ebe3; }

/* Legal */
.legal { padding-top: 48px; padding-bottom: 64px; }
.legal__container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.legal__heading { margin-top: 32px; font-size: 20px; font-weight: 700; color: #2c1810; }
.legal__heading:first-child { margin-top: 0; }
.legal__text { margin-top: 12px; font-size: 15px; line-height: 1.7; color: rgba(44, 24, 16, 0.9); }

/* Footer */
.footer {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.4);
  padding-top: 48px;
  padding-bottom: 32px;
}
.footer__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 32px;
  column-gap: 32px;
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.footer__brand { display: flex; align-items: center; column-gap: 8px; }
.footer__brand-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background-color: rgba(184, 115, 78, 0.15);
  color: #b8734e;
  font-size: 18px;
}
.footer__brand-name { font-family: "Playfair Display", serif; font-size: 20px; font-weight: 600; color: #2c1810; }
.footer__brand-text { margin-top: 12px; font-size: 13px; line-height: 1.6; color: #8b7355; }
.footer__col-title { font-size: 13px; font-weight: 600; color: #2c1810; letter-spacing: 0.06em; text-transform: uppercase; font-family: "Source Sans 3", sans-serif; }
.footer__links { margin-top: 12px; display: flex; flex-direction: column; row-gap: 8px; }
.footer__link { font-size: 14px; color: #8b7355; }
.footer__link:hover { color: #b8734e; }
.footer__text { font-size: 14px; color: #8b7355; }
.footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
}
.footer__copy { font-size: 12px; color: #8b7355; text-align: center; }

/* Cookie */
.cookie {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 35;
  max-width: 380px;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
}
.cookie__text { font-size: 12px; line-height: 1.5; color: #8b7355; }
.cookie__actions { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; column-gap: 12px; }
.cookie__link { font-size: 12px; color: #b8734e; text-decoration-line: underline; }
.cookie__accept {
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  background-color: #b8734e;
  color: #ffffff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.cookie__accept:hover { background-color: #a4653f; }
@media (max-width: 480px) {
  .cookie { left: 8px; right: 8px; max-width: none; bottom: 92px; }
}

/* Chat button */
.chat-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background-color: #b8734e;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition-property: transform;
  transition-duration: 150ms;
}
.chat-button:hover { transform: scale(1.05); }
.chat-button--hidden { display: none; }
.chat-button__icon { font-size: 24px; }
.chat-button__dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background-color: #d4a574;
  border-radius: 999px;
  border-width: 2px;
  border-style: solid;
  border-color: #faf8f5;
}

/* Chat window */
.chat {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  width: calc(100vw - 32px);
  max-width: 380px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  overflow-x: hidden;
  overflow-y: hidden;
}
.chat--open { display: flex; }
.chat--closed { display: none; }
.chat[hidden] { display: none; }
.chat__header {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e8e0d6;
  background-color: rgba(240, 235, 227, 0.5);
}
.chat__avatar { width: 40px; height: 40px; border-radius: 999px; object-fit: cover; }
.chat__meta { flex-grow: 1; min-width: 0; }
.chat__name { font-size: 14px; font-weight: 600; color: #2c1810; }
.chat__status { display: flex; align-items: center; column-gap: 6px; margin-top: 2px; font-size: 12px; color: #8b7355; }
.chat__status-dot { display: inline-block; width: 8px; height: 8px; border-radius: 999px; background-color: #22c55e; }
.chat__close {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  color: #8b7355;
  font-size: 22px;
  line-height: 1;
}
.chat__close:hover { background-color: #f0ebe3; color: #2c1810; }
.chat__body {
  flex-grow: 1;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.chat__message {
  max-width: 85%;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.chat__message--bot {
  align-self: flex-start;
  background-color: #f0ebe3;
  color: #2c1810;
  border-bottom-left-radius: 4px;
}
.chat__message--user {
  align-self: flex-end;
  background-color: #b8734e;
  color: #ffffff;
  border-bottom-right-radius: 4px;
}
.chat__quick { display: flex; flex-wrap: wrap; column-gap: 6px; row-gap: 6px; }
.chat__quick-item {
  padding-top: 6px;
  padding-right: 12px;
  padding-bottom: 6px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 999px;
  background-color: #ffffff;
  color: #8b7355;
  font-size: 12px;
}
.chat__quick-item:hover { border-color: #b8734e; color: #2c1810; }
.chat__form {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e0d6;
}
.chat__input {
  flex-grow: 1;
  min-width: 0;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-width: 1px;
  border-style: solid;
  border-color: #e8e0d6;
  border-radius: 6px;
  font-size: 14px;
  color: #2c1810;
  background-color: #faf8f5;
  outline-style: none;
  font-family: inherit;
}
.chat__send {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-color: #b8734e;
  color: #ffffff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.chat__send:hover { background-color: #a4653f; }
