@import url("https://fonts.googleapis.com/css2?family=Baskervville&family=Nunito+Sans:wght@400;700&display=swap");
@font-face {
  font-family: "Avenir Light";
  src: url("../assets/fonts/avenir-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

.about__header {
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 0;
  padding-bottom: 68px;
  background-color: #f8f6f4;
}
.about__header h2 {
  font-family: Baskervville, serif;
  font-size: 48px;
  line-height: 130px;
  letter-spacing: 0px;
  font-weight: 400;
  color: #e3b6b1;
  margin: 0;
}
.about__header h1 {
  font-family: Baskervville, serif;
  font-size: 80px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #725a58;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}

.about__main {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #fae9e7;
  padding: 64px 0;
}

.about__container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 0 24px;
}

.about__image {
  flex: 1;
  max-width: 400px;
  width: 100%;
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about__content {
  flex: 1;
}
.about__content h3 {
  font-family: Baskervville, serif;
  font-size: 48px;
  line-height: 1.3;
  font-weight: 400;
  color: #725a58;
  max-width: 604px;
  word-break: keep-all;
}
.about__content p {
  font-family: "Avenir Light", "Nunito Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
  color: #000000;
  margin-bottom: 32px;
}
.about__content button {
  font-family: Baskervville, serif;
  font-size: 18px;
  line-height: 1;
  width: 160px;
  height: 62px;
  padding: 0;
  border: 0.8px solid #5e4a49;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #5e4a49;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about__content button:hover {
  background: #b99692;
  border-color: #b99692;
  color: #fff;
}

.about__brands {
  text-align: center;
  padding: 64px 24px;
}
.about__brands h3 {
  font-family: Baskervville, serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0px;
  margin-bottom: 48px;
  color: #725a58;
}

.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 904px;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
}
.brands img {
  width: 100%;
  max-width: 120px;
  height: 40px;
  object-fit: contain;
  opacity: 0.7;
}
.brands img:nth-child(7) {
  transform: scale(1.3);
  margin-top: 4px;
}

.party-chat-widget {
  position: fixed;
  bottom: 50px;
  right: 0;
  margin-bottom: 48px;
  width: 48px;
  z-index: 2;
}
.party-chat-widget .chat-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.party-chat-widget .chat-trigger img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-trigger:hover {
  opacity: 0.9;
}
.party-chat-widget .chat-trigger.hidden img {
  opacity: 0;
  pointer-events: none;
}
.party-chat-widget .chat-options {
  display: none;
  flex-direction: column;
}
.party-chat-widget .chat-options.is-open {
  display: flex;
}
.party-chat-widget .chat-options .option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}
.party-chat-widget .chat-options .option-btn img {
  width: 48px;
  height: 48px;
}
.party-chat-widget .chat-options .option-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .about__header {
    width: 100% !important;
    position: static !important;
    margin: 0 !important;
    padding: 48px 24px 40px !important;
    box-sizing: border-box !important;
  }
  .about__header h1 {
    font-size: 32px;
    letter-spacing: 0.1em;
    white-space: normal;
  }
  .about__main {
    width: 100% !important;
    position: static !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fae9e7 !important;
  }
  .about__container {
    width: 100%;
    max-width: none;
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
  .about__image {
    width: 100%;
  }
  .about__image img {
    width: 100%;
    height: auto;
    display: block;
  }
  .about__content {
    text-align: left;
    padding: 40px 24px 64px;
  }
  .about__content h3 {
    font-size: 32px;
    line-height: 1.3;
    margin: 0 0 24px;
    max-width: 327px;
    word-break: keep-all;
  }
  .about__content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 32px;
  }
  .about__content button {
    display: block;
    margin: 0 auto;
  }
  .about__brands {
    padding: 40px 24px;
  }
  .about__brands h3 {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 24px;
  }
  .brands {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .brands img {
    width: 110.46px;
    height: 52.56px;
    opacity: 0.6;
  }
  .party-chat-widget {
    display: none !important;
  }
}/*# sourceMappingURL=about.css.map */