/* RESET */
html {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1f1d1a;
  background-color: #fcfbf8;
}
body {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fcfbf8;
  color: #1f1d1a;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #fcfbf8;
  color: #1f1d1a;
}

/* ===================== HEADER ===================== */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e8e2d4;
  background-color: #fcfbf8;
}
.header__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
}
.header__logo-link {
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-decoration: none;
  color: #1f1d1a;
}
.header__logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header__logo-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  color: #1f1d1a;
}
.header__logo-sub {
  font-size: 11px;
  color: #7a7468;
  margin-top: 2px;
}
.header__nav {
  display: none;
  align-items: center;
  column-gap: 4px;
}
.header__nav-link {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1f1d1a;
  text-decoration: none;
  cursor: pointer;
}
.header__phone-btn {
  display: none;
  align-items: center;
  column-gap: 8px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #8b6f47;
  color: #ffffff;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.header__burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  background-color: transparent;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  color: #1f1d1a;
  font-size: 22px;
  cursor: pointer;
}
.header__mobile-menu {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
  background-color: #fcfbf8;
}
.header__mobile-nav {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 8px;
  padding-right: 16px;
  padding-bottom: 8px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
}
.header__mobile-link {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #1f1d1a;
  text-decoration: none;
}
.header__mobile-phone {
  margin-top: 8px;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8b6f47;
  color: #ffffff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

@media (min-width: 768px) {
  .header__phone-btn { display: inline-flex; }
}
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__burger { display: none; }
  .header__mobile-menu { display: none; }
}

/* ===================== MAIN / PAGE ===================== */
.main {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  width: 100%;
}
.page-inner {
  max-width: 960px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
}
.page-inner-narrow {
  max-width: 768px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
}
.page-header {
  text-align: center;
}
.page-header__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  color: #1f1d1a;
}
.page-header__lead {
  max-width: 640px;
  margin-top: 12px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero__inner {
  position: relative;
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 80px;
  padding-right: 16px;
  padding-bottom: 80px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
.hero__badge {
  margin-bottom: 16px;
  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: rgba(255,255,255,0.4);
  border-right-color: rgba(255,255,255,0.4);
  border-bottom-color: rgba(255,255,255,0.4);
  border-left-color: rgba(255,255,255,0.4);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  padding-top: 4px;
  padding-right: 16px;
  padding-bottom: 4px;
  padding-left: 16px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0;
}
.hero__lead {
  max-width: 640px;
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.hero__sub {
  max-width: 640px;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.hero__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; }
  .hero__title { font-size: 48px; }
}
@media (min-width: 768px) {
  .hero__title { font-size: 56px; }
  .hero__inner { padding-top: 112px; padding-bottom: 112px; }
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #8b6f47;
  color: #ffffff;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
  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: rgba(255,255,255,0.6);
  border-right-color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.6);
  border-left-color: rgba(255,255,255,0.6);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff;
  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: rgba(255,255,255,0.4);
  border-right-color: rgba(255,255,255,0.4);
  border-bottom-color: rgba(255,255,255,0.4);
  border-left-color: rgba(255,255,255,0.4);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #8b6f47;
  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: #8b6f47;
  border-right-color: #8b6f47;
  border-bottom-color: #8b6f47;
  border-left-color: #8b6f47;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 12px;
  padding-right: 24px;
  padding-bottom: 12px;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

/* ===================== FEATURES ===================== */
.features {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 48px;
  padding-right: 16px;
  padding-bottom: 48px;
  padding-left: 16px;
}
.features__head {
  max-width: 640px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  text-align: center;
}
.features__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}
.features__lead {
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
  margin-top: 12px;
  margin-bottom: 0;
}
.features__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}
@media (min-width: 768px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features__grid { grid-template-columns: 1fr 1fr 1fr; } }
.feature-card {
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.feature-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
  color: #1f1d1a;
}
.feature-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ===================== ABOUT BAND ===================== */
.about-band {
  background-color: #f3eee2;
  padding-top: 48px;
  padding-bottom: 48px;
}
.about-band__inner {
  max-width: 768px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 16px;
  padding-bottom: 0;
  padding-left: 16px;
  text-align: center;
}
.about-band__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 24px;
}
.about-band__text {
  font-size: 15px;
  line-height: 1.7;
  color: #54504a;
  margin-top: 16px;
  margin-bottom: 0;
  text-align: left;
}
.about-band__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .about-band__actions { flex-direction: row; } }

/* ===================== DIRECTIONS ===================== */
.directions {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 48px;
  padding-right: 16px;
  padding-bottom: 48px;
  padding-left: 16px;
}
.directions__head {
  max-width: 640px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  text-align: center;
}
.directions__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}
.directions__lead {
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
  margin-top: 12px;
  margin-bottom: 0;
}
.directions__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 16px;
  column-gap: 16px;
}
@media (min-width: 640px) { .directions__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .directions__grid { grid-template-columns: 1fr 1fr 1fr; } }
.direction-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background-color: #ffffff;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.direction-item__name {
  font-size: 14px;
  font-weight: 500;
  color: #1f1d1a;
}
.direction-item__price {
  font-size: 14px;
  font-weight: 600;
  color: #8b6f47;
}
.directions__more {
  margin-top: 32px;
  text-align: center;
}

/* ===================== PHILOSOPHY ===================== */
.philosophy {
  background-color: #f3eee2;
  padding-top: 48px;
  padding-bottom: 48px;
}
.philosophy__head {
  max-width: 640px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  text-align: center;
  padding-right: 16px;
  padding-left: 16px;
}
.philosophy__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}
.philosophy__lead {
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
  margin-top: 12px;
  margin-bottom: 0;
}
.philosophy__grid {
  max-width: 1152px;
  margin-top: 40px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}
@media (min-width: 768px) { .philosophy__grid { grid-template-columns: 1fr 1fr 1fr; } }
.philosophy-card {
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.philosophy-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
}
.philosophy-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ===================== CTA ===================== */
.cta {
  background-color: #1f1d1a;
  color: #ffffff;
  padding-top: 48px;
  padding-bottom: 48px;
}
.cta__inner {
  max-width: 768px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  text-align: center;
}
.cta__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}
.cta__text {
  max-width: 640px;
  margin-top: 16px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
}
.cta__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .cta__actions { flex-direction: row; } }

/* ===================== PRICE ===================== */
.price-group {
  margin-top: 40px;
}
.price-group__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
  color: #1f1d1a;
}
.price-list {
  list-style-type: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: hidden;
}
.price-row {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #e8e2d4;
}
@media (min-width: 640px) {
  .price-row { flex-direction: row; align-items: center; justify-content: space-between; column-gap: 16px; }
}
.price-row__info { flex-grow: 1; flex-shrink: 1; flex-basis: auto; }
.price-row__name { font-size: 14px; font-weight: 500; color: #1f1d1a; }
.price-row__time { font-size: 12px; color: #7a7468; margin-top: 2px; }
.price-row__price { font-size: 14px; font-weight: 600; color: #8b6f47; }
.price-cta {
  margin-top: 48px;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #f3eee2;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
  text-align: center;
}
.price-cta__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 8px;
}
.price-cta__text {
  max-width: 640px;
  margin-top: 8px;
  margin-right: auto;
  margin-bottom: 20px;
  margin-left: auto;
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
}

/* ===================== VAKANSII ===================== */
.filters {
  margin-top: 32px;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
}
.filters__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 768px) { .filters__grid { grid-template-columns: 1fr 1fr 1fr; } }
.filters__search,
.filters__select {
  width: 100%;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #ffffff;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  font-size: 14px;
  color: #1f1d1a;
  font-family: inherit;
  outline-width: 0;
}
.filters__count {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 12px;
  color: #7a7468;
}
.vacancies {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.vacancies-empty {
  margin-top: 32px;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  padding-top: 32px;
  padding-right: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  text-align: center;
  font-size: 14px;
  color: #54504a;
}
.vacancy {
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.vacancy__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  color: #1f1d1a;
  margin-top: 0;
  margin-bottom: 12px;
}
.vacancy__meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 8px;
  font-size: 14px;
  color: #54504a;
}
.vacancy__meta-item { display: inline-flex; align-items: center; column-gap: 6px; }
.vacancy__short {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #54504a;
}
.vacancy__cols {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  column-gap: 20px;
}
@media (min-width: 768px) { .vacancy__cols { grid-template-columns: 1fr 1fr 1fr; } }
.vacancy__col-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f1d1a;
  margin-top: 0;
  margin-bottom: 8px;
}
.vacancy__list {
  list-style-type: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  font-size: 14px;
  color: #54504a;
}
.vacancy__li { padding-left: 14px; position: relative; line-height: 1.5; }
.vacancy__bullet {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #8b6f47;
  margin-right: 8px;
  vertical-align: middle;
}
.vacancy__actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 640px) { .vacancy__actions { flex-direction: row; } }

/* ===================== ARTICLE / LEGAL ===================== */
.article {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.article__p {
  font-size: 15px;
  line-height: 1.7;
  color: #1f1d1a;
  margin-top: 0;
  margin-bottom: 0;
}
.article__h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 0;
}
.article__link { color: #8b6f47; text-decoration: none; }

.legal__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
}
.legal__meta { font-size: 12px; color: #7a7468; margin-top: 12px; margin-bottom: 0; }
.legal__body {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.legal__h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 8px;
  margin-bottom: 0;
}
.legal__p { font-size: 15px; line-height: 1.7; margin-top: 0; margin-bottom: 0; color: #1f1d1a; }

/* ===================== FAQ ===================== */
.faq {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.faq-item {
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: hidden;
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 12px;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  text-align: left;
  background-color: transparent;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  cursor: pointer;
  font-family: inherit;
}
.faq-item__q {
  font-size: 15px;
  font-weight: 600;
  color: #1f1d1a;
}
.faq-item__chev {
  color: #8b6f47;
  font-size: 16px;
  flex-shrink: 0;
}
.faq-item__body {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #54504a;
}

/* ===================== CONTACTS ===================== */
.contacts-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
}
@media (min-width: 768px) { .contacts-grid { grid-template-columns: 1fr 1fr; } }
.contacts-card {
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.contacts-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 16px;
}
.contacts-list {
  list-style-type: none;
  margin-top: 16px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  font-size: 14px;
  color: #54504a;
  line-height: 1.5;
}
.contacts-list__item { color: #54504a; }
.contacts-list__link { color: #54504a; text-decoration: none; }
.contacts-card__legal {
  margin-top: 24px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
  padding-top: 16px;
  font-size: 12px;
  color: #7a7468;
  line-height: 1.5;
}
.contacts-map {
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}
.contacts-map__frame {
  display: block;
  width: 100%;
  height: 288px;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
}
.contacts-map__cap {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  text-align: center;
  font-size: 12px;
  color: #54504a;
}
.contacts-map__title { font-weight: 600; color: #1f1d1a; }

.form-card {
  margin-top: 40px;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  padding-top: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  padding-left: 24px;
}
.form-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-top: 0;
  margin-bottom: 8px;
}
.form-card__lead {
  max-width: 560px;
  margin-top: 8px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  color: #54504a;
}
.form-card__success {
  max-width: 560px;
  margin-top: 20px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  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: #bbf7d0;
  border-right-color: #bbf7d0;
  border-bottom-color: #bbf7d0;
  border-left-color: #bbf7d0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #f0fdf4;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
  text-align: center;
  font-size: 14px;
  color: #166534;
}
.contact-form {
  max-width: 560px;
  margin-top: 24px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.contact-form__field { display: flex; flex-direction: column; }
.contact-form__label {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #1f1d1a;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  box-sizing: border-box;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #ffffff;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
  padding-left: 12px;
  font-size: 14px;
  font-family: inherit;
  color: #1f1d1a;
  outline-width: 0;
}
.contact-form__textarea { resize: vertical; min-height: 100px; }
.contact-form__error {
  margin-top: 4px;
  margin-bottom: 0;
  font-size: 12px;
  color: #dc2626;
}
.contact-form__agree {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
  font-size: 12px;
  color: #54504a;
  line-height: 1.5;
}
.contact-form__agree-text { color: #54504a; }
.contact-form__link { color: #8b6f47; text-decoration: underline; }
.contact-form__submit {
  width: 100%;
  background-color: #8b6f47;
  color: #ffffff;
  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: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

/* ===================== FOOTER ===================== */
.footer {
  margin-top: 48px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
  background-color: #f3eee2;
}
.footer__grid {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-left: 16px;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 32px;
  column-gap: 32px;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer__col { color: #54504a; }
.footer__heading {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 12px;
  color: #1f1d1a;
}
.footer__text { font-size: 14px; color: #54504a; margin-top: 0; margin-bottom: 0; line-height: 1.6; }
.footer__list {
  list-style-type: none;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  font-size: 14px;
}
.footer__li { color: #54504a; line-height: 1.5; }
.footer__link { color: #54504a; text-decoration: none; cursor: pointer; }
.footer__bottom {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
}
.footer__copy {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  text-align: center;
  font-size: 12px;
  color: #7a7468;
}

/* ===================== COOKIE ===================== */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
  background-color: #ffffff;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
}
.cookie__inner {
  max-width: 1152px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 16px;
  padding-right: 112px;
  padding-bottom: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
  column-gap: 12px;
}
@media (min-width: 768px) {
  .cookie__inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.cookie__text {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #54504a;
  line-height: 1.5;
}
.cookie__link { color: #8b6f47; text-decoration: underline; cursor: pointer; }
.cookie__btn {
  flex-shrink: 0;
  background-color: #8b6f47;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding-top: 8px;
  padding-right: 20px;
  padding-bottom: 8px;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

/* ===================== CHAT ===================== */
.chat-fab {
  position: fixed;
  right: 16px;
  bottom: 96px;
  z-index: 50;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background-color: #8b6f47;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  font-size: 24px;
  cursor: pointer;
}
@media (min-width: 768px) { .chat-fab { bottom: 24px; } }

.chat-window {
  position: fixed;
  right: 16px;
  bottom: 96px;
  z-index: 50;
  width: calc(100vw - 32px);
  max-width: 384px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: hidden;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}
.chat-window[hidden] { display: none; }
@media (min-width: 768px) { .chat-window { bottom: 24px; } }

.chat-window__head {
  display: flex;
  align-items: center;
  column-gap: 12px;
  background-color: #8b6f47;
  color: #ffffff;
  padding-top: 12px;
  padding-right: 16px;
  padding-bottom: 12px;
  padding-left: 16px;
}
.chat-window__avatar {
  width: 40px;
  height: 40px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  object-fit: cover;
}
.chat-window__info { flex-grow: 1; flex-shrink: 1; flex-basis: auto; }
.chat-window__name { font-size: 14px; font-weight: 600; }
.chat-window__role { font-size: 11px; opacity: 0.9; }
.chat-window__close {
  background-color: transparent;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  padding-top: 4px;
  padding-right: 4px;
  padding-bottom: 4px;
  padding-left: 4px;
  font-size: 16px;
  cursor: pointer;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}
.chat-window__body {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  max-height: 320px;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fcfbf8;
  padding-top: 12px;
  padding-right: 12px;
  padding-bottom: 12px;
  padding-left: 12px;
}
.chat-msg-bot {
  align-self: flex-start;
  max-width: 85%;
  background-color: #ffffff;
  color: #1f1d1a;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 4px;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  line-height: 1.5;
}
.chat-msg-user {
  align-self: flex-end;
  max-width: 85%;
  background-color: #8b6f47;
  color: #ffffff;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-window__form {
  display: flex;
  align-items: center;
  column-gap: 8px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: #e8e2d4;
  background-color: #ffffff;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
}
.chat-window__input {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  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: #e8e2d4;
  border-right-color: #e8e2d4;
  border-bottom-color: #e8e2d4;
  border-left-color: #e8e2d4;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  background-color: #ffffff;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  font-size: 14px;
  font-family: inherit;
  outline-width: 0;
}
.chat-window__send {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8b6f47;
  color: #ffffff;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}
