@layer base, components, layout, pages, utilities;
@layer base {
  *,
  *::after,
  *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    font-size: 20px;
    width: 100vw;
    scroll-behavior: smooth;
  }
  html:has(.navbar--open) {
    overflow: hidden;
  }
  @media (width < 767px) {
    html {
      font-size: 6.25vw;
    }
  }
  @media (width >= 768px) {
    html {
      height: 100vh;
      overflow-y: scroll;
      scroll-snap-type: y mandatory;
    }
  }
  @media (width >= 768px) and (width < 1919px) {
    html {
      font-size: 1.0416666667vw;
    }
  }
  body {
    position: relative;
    padding: 0;
    overflow-x: clip;
    background-color: #000;
    color: #fff;
  }
  .wrap {
    position: relative;
    width: 100%;
    max-width: 96rem;
    margin: 0 auto;
  }
  @media (width < 767px) {
    .wrap {
      padding: 0 1rem;
    }
  }
  @media (width >= 768px) {
    .wrap {
      padding: 0 8rem;
    }
  }
  input {
    outline: none;
    box-shadow: none;
  }
  input:focus, input:hover {
    outline: none;
  }
}
@layer base {
  body {
    font-weight: 400;
    line-height: 1;
    font-family: "Inter", serif;
  }
  img {
    vertical-align: middle;
  }
  a {
    text-decoration: none;
  }
  b {
    font-weight: 700;
  }
  button {
    outline: none;
    box-shadow: none;
    border: none;
  }
  fieldset {
    border: transparent;
  }
  .section__title {
    line-height: 100%;
    font-family: "Playfair Display", serif;
  }
  @media (width < 767px) {
    .section__title {
      font-size: 1.2rem;
    }
  }
  @media (width >= 768px) {
    .section__title {
      font-size: 2.5rem;
    }
  }
  .section__label {
    margin: 0 0 0.5rem;
    display: block;
    color: rgba(196, 155, 90, 0.7);
    text-transform: uppercase;
  }
  @media (width < 767px) {
    .section__label {
      font-size: 0.6rem;
    }
  }
  @media (width >= 768px) {
    .section__label {
      font-size: 0.75rem;
    }
  }
  .section__subtitle {
    display: block;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #928e87;
  }
  @media (width < 767px) {
    .section__subtitle {
      margin: 0.5rem 0 0;
    }
  }
  @media (width >= 768px) {
    .section__subtitle {
      margin: 1rem 0 0;
    }
  }
  .page__title {
    line-height: 100%;
    font-family: "Playfair Display", serif;
  }
  @media (width < 767px) {
    .page__title {
      font-size: 1.2rem;
    }
  }
  @media (width >= 768px) {
    .page__title {
      font-size: 2.5rem;
    }
  }
  .quote {
    color: #c49b5a;
    font-style: italic;
    font-family: "Playfair Display", serif;
  }
}
.btn {
  cursor: pointer;
  outline: none;
}
.btn--primary {
  width: max-content;
  background-color: #c49b5a;
  color: #000;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (width < 767px) {
  .btn--primary {
    font-size: 0.5rem;
    padding: 0.5rem;
  }
}
@media (width >= 768px) {
  .btn--primary {
    font-size: 0.6rem;
    padding: 1rem 2rem;
  }
}
.btn--clean {
  width: max-content;
  background-color: rgba(196, 155, 90, 0);
  color: #c49b5a;
  border: 1px solid #c49b5a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
}
@media (width < 767px) {
  .btn--clean {
    font-size: 0.5rem;
    padding: 0.5rem;
  }
}
@media (width >= 768px) {
  .btn--clean {
    font-size: 0.6rem;
    padding: 1rem 2rem;
  }
  .btn--clean:hover {
    background-color: #c49b5a;
    color: #000;
  }
}

.form {
  display: grid;
}
@media (width < 767px) {
  .form {
    margin-top: 1rem;
    row-gap: 1rem;
  }
}
@media (width >= 768px) {
  .form {
    margin-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 3rem;
  }
}
.form__item {
  width: 100%;
}
@media (width >= 768px) {
  .form__item--wide {
    grid-column: 1/3;
  }
}
.form__input, .form__select, .form__textarea {
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  font-family: inherit;
  box-shadow: none;
  outline: none;
  color: #fff;
  resize: none;
  transition: all 0.3s;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  border-color: #c49b5a;
}
.form__input option, .form__select option, .form__textarea option {
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: #000;
  line-height: 1.5;
}

.lang {
  display: flex;
  align-items: center;
}
@media (width < 767px) {
  .lang {
    margin-left: auto;
    column-gap: 0.5rem;
  }
}
@media (width >= 768px) {
  .lang {
    margin-left: 3rem;
    column-gap: 1rem;
  }
}
.lang a {
  color: rgba(146, 142, 135, 0.6);
  transition: 0.3s color;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media (width < 767px) {
  .lang a {
    font-size: 0.55rem;
  }
}
@media (width >= 768px) {
  .lang a {
    font-size: 0.75rem;
  }
  .lang a:hover {
    color: #fff;
  }
}
.lang a.current {
  color: #c49b5a;
}

.logo {
  display: flex;
  flex-direction: column;
  row-gap: 0.1rem;
}
@media (width >= 768px) {
  .logo {
    max-width: 11.5rem;
  }
}
.logo__title {
  letter-spacing: -0.025em;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
@media (width < 767px) {
  .logo__title {
    font-size: 0.55rem;
  }
}
@media (width >= 768px) {
  .logo__title {
    line-height: 1.75rem;
    font-size: 0.95rem;
  }
}
.logo__desc {
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.3em;
  color: #928e87;
}
@media (width < 767px) {
  .logo__desc {
    font-size: 0.35rem;
  }
}
@media (width >= 768px) {
  .logo__desc {
    font-size: 0.6rem;
  }
}

.link {
  font-size: 0.75rem;
  color: #c49b5a;
  opacity: 0.8;
  transition: 0.3s opacity;
}
.link:hover {
  opacity: 1;
}

@media (width < 767px) {
  .topnav {
    display: none;
  }
}
@media (width >= 768px) {
  .topnav {
    margin-left: auto;
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
}
.topnav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(146, 142, 135, 0.6);
  transition: 0.3s color;
}
.topnav a:hover {
  color: #fff;
}

@media (width >= 768px) {
  .about {
    height: 100vh;
    scroll-snap-align: start;
  }
}
.about .wrap {
  display: flex;
}
@media (width < 767px) {
  .about .wrap {
    flex-direction: column;
  }
}
@media (width >= 768px) {
  .about .wrap {
    height: 100%;
    align-items: center;
  }
}
.about .section__title span {
  color: #c49b5a;
}
.about .section__desc {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 767px) {
  .about .section__desc {
    margin-top: 1rem;
    row-gap: 0.6rem;
  }
}
@media (width >= 768px) {
  .about .section__desc {
    margin-top: 2rem;
    row-gap: 1rem;
  }
}
@media (width < 767px) {
  .about .section__desc ul,
  .about .section__desc ol {
    padding-left: 0.5rem;
  }
}
@media (width >= 768px) {
  .about .section__desc ul,
  .about .section__desc ol {
    padding-left: 1rem;
  }
}
.about .section__desc li::marker {
  color: #c49b5a;
}
@media (width >= 768px) {
  .about .section__desc li::marker {
    font-size: 1.2rem;
  }
}
@media (width < 767px) {
  .about__text {
    font-size: 0.6rem;
  }
}
@media (width >= 768px) {
  .about__text {
    width: 28rem;
    font-size: 0.75rem;
  }
}
@media (width >= 768px) {
  .about .btn__desc {
    font-size: 0.75rem;
  }
}
.about__img {
  position: relative;
}
@media (width < 767px) {
  .about__img {
    order: -1;
    z-index: -1;
  }
}
@media (width >= 768px) {
  .about__img {
    height: 100vh;
    width: 32rem;
    margin-left: 15rem;
  }
}
.about__img::before, .about__img::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 8rem;
  content: "";
}
.about__img::before {
  top: 0;
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.about__img::after {
  bottom: 0;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.about__img-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about__img-mask::before, .about__img-mask::after {
  position: absolute;
  top: 0;
  width: 8rem;
  height: 100%;
  content: "";
}
.about__img-mask::before {
  left: 0;
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.about__img-mask::after {
  right: 0;
  background: linear-gradient(to left, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantages {
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}
@media (width < 767px) {
  .advantages {
    padding: 3rem 0 0;
  }
}
@media (width >= 768px) {
  .advantages {
    padding: 10vh 0;
    min-height: 100vh;
  }
}
.advantages__list {
  display: grid;
  counter-reset: list;
}
@media (width < 767px) {
  .advantages__list {
    margin-top: 1rem;
  }
}
@media (width >= 768px) {
  .advantages__list {
    margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.advantages__item {
  position: relative;
  counter-increment: list;
}
@media (width < 767px) {
  .advantages__item {
    padding: 5rem 1rem 2rem;
    border: 1px solid rgba(146, 142, 135, 0.45);
  }
  .advantages__item:not(:first-child) {
    border-top: 0;
  }
}
@media (width >= 768px) {
  .advantages__item {
    padding: 3rem;
    border-top: 1px solid rgba(146, 142, 135, 0.45);
    border-left: 1px solid rgba(146, 142, 135, 0.45);
  }
  .advantages__item:nth-child(3), .advantages__item:last-child {
    border-bottom: 1px solid rgba(146, 142, 135, 0.45);
  }
  .advantages__item:nth-child(2), .advantages__item:last-child {
    border-right: 1px solid rgba(146, 142, 135, 0.45);
  }
}
.advantages__item::before {
  position: absolute;
  top: -0.5rem;
  right: 1.2rem;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  content: "0" counter(list) "";
  font-family: "Playfair Display", serif;
}
.advantages__title {
  font-size: 0.75rem;
}
.advantages__desc {
  max-width: 20rem;
  margin-top: 0.3rem;
  font-size: 0.7rem;
  color: #928e87;
}

.composition {
  display: flex;
  align-items: center;
  scroll-snap-align: start;
}
@media (width < 767px) {
  .composition {
    padding: 3rem 0 0;
  }
}
@media (width >= 768px) {
  .composition {
    padding: 10vh 0;
    min-height: 100vh;
  }
}
.composition__list {
  display: grid;
}
@media (width < 767px) {
  .composition__list {
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
}
@media (width >= 768px) {
  .composition__list {
    margin-top: 4rem;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2rem;
  }
}
.composition__item {
  display: flex;
  flex-direction: column;
}
.composition__img {
  width: 100%;
  overflow: hidden;
  filter: grayscale(1);
  transition: 0.3s filter;
}
@media (width < 767px) {
  .composition__img {
    height: 10rem;
  }
}
@media (width >= 768px) {
  .composition__img {
    height: 14.1rem;
  }
}
.composition__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.composition__img:hover {
  filter: grayscale(0);
}
.composition__title {
  margin-top: 1rem;
  color: #fff;
}
@media (width < 767px) {
  .composition__title {
    font-size: 0.7rem;
  }
}
@media (width >= 768px) {
  .composition__title {
    font-size: 0.85rem;
  }
}
.composition__desc {
  margin-top: 0.5rem;
  line-height: 1.5;
  text-transform: uppercase;
  color: #928e87;
}
@media (width < 767px) {
  .composition__desc {
    font-size: 0.4rem;
  }
}
@media (width >= 768px) {
  .composition__desc {
    max-width: 12rem;
    font-size: 0.5rem;
  }
}

@media (width < 767px) {
  .contact {
    padding: 3rem 0;
  }
}
@media (width >= 768px) {
  .contact {
    padding: 10vh 0;
    scroll-snap-align: start;
  }
}
.contact__box {
  max-width: 36rem;
  margin: 0 auto;
}
.contact__header {
  max-width: 30rem;
}
.contact .section__desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
@media (width < 767px) {
  .contact .section__desc {
    margin-top: 0.5rem;
    font-size: 0.6rem;
  }
}
@media (width >= 768px) {
  .contact .section__desc {
    margin-top: 1rem;
    max-width: 36rem;
    font-size: 0.75rem;
  }
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(146, 142, 135, 0.2);
  font-size: 0.5rem;
  color: #928e87;
  scroll-snap-align: start;
}
.footer .wrap {
  display: flex;
  align-items: center;
}
@media (width < 767px) {
  .footer .wrap {
    flex-direction: column;
    text-align: center;
    row-gap: 1rem;
  }
}
@media (width >= 768px) {
  .footer .wrap {
    justify-content: space-between;
  }
}
.footer__logo {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1rem;
}
.footer__logo span {
  font-family: "Inter", serif;
  color: #928e87;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.5rem;
}
.footer__text {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  line-height: 1.8;
}

.header {
  position: absolute;
  z-index: 9;
  top: 0;
  width: 100%;
  padding: 1rem 0;
}
.header .wrap {
  display: flex;
  align-items: center;
}

@media (width >= 768px) {
  .primary {
    padding-top: 10vh;
    scroll-snap-align: start;
  }
}
.primary .wrap {
  display: flex;
}
@media (width < 767px) {
  .primary .wrap {
    flex-direction: column;
  }
}
@media (width >= 768px) {
  .primary .wrap {
    align-items: center;
  }
}
.primary .section__title span {
  color: #c49b5a;
}
.primary .section__desc {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 767px) {
  .primary .section__desc {
    margin-top: 1rem;
    row-gap: 0.5rem;
  }
}
@media (width >= 768px) {
  .primary .section__desc {
    margin-top: 2rem;
    row-gap: 1rem;
  }
}
@media (width < 767px) {
  .primary .section__desc ul,
  .primary .section__desc ol {
    padding-left: 0.7rem;
  }
}
@media (width >= 768px) {
  .primary .section__desc ul,
  .primary .section__desc ol {
    padding-left: 1rem;
  }
}
.primary .section__desc li::marker {
  color: #c49b5a;
}
@media (width >= 768px) {
  .primary .section__desc li::marker {
    font-size: 1.2rem;
  }
}
@media (width < 767px) {
  .primary__text {
    margin-top: -4rem;
    font-size: 0.6rem;
  }
}
@media (width >= 768px) {
  .primary__text {
    width: 31rem;
    font-size: 0.75rem;
  }
}
@media (width < 767px) {
  .primary .btn__desc {
    font-size: 0.6rem;
  }
}
@media (width >= 768px) {
  .primary .btn__desc {
    font-size: 0.75rem;
  }
}
.primary .link__desc {
  opacity: 0.5;
}
@media (width >= 768px) {
  .primary .link__desc {
    font-size: 0.5rem;
  }
}
.primary__img {
  position: relative;
}
@media (width < 767px) {
  .primary__img {
    order: -1;
    z-index: -1;
  }
}
@media (width >= 768px) {
  .primary__img {
    height: 100vh;
    width: 40rem;
    margin-left: auto;
    transform: translateX(8rem);
  }
}
.primary__img::before, .primary__img::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 8rem;
  content: "";
}
.primary__img::before {
  top: 0;
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.primary__img::after {
  bottom: 0;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.primary__img-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.primary__img-mask::before, .primary__img-mask::after {
  position: absolute;
  top: 0;
  width: 8rem;
  height: 100%;
  content: "";
}
.primary__img-mask::before {
  left: 0;
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.primary__img-mask::after {
  right: 0;
  background: linear-gradient(to left, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.primary__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (width >= 768px) {
  .story {
    scroll-snap-align: start;
  }
}
.story .wrap {
  display: flex;
}
@media (width < 767px) {
  .story .wrap {
    flex-direction: column;
  }
}
@media (width >= 768px) {
  .story .wrap {
    align-items: center;
  }
}
.story .section__title span {
  color: #c49b5a;
}
.story .section__desc {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}
@media (width < 767px) {
  .story .section__desc {
    margin-top: 1rem;
    row-gap: 0.5rem;
  }
}
@media (width >= 768px) {
  .story .section__desc {
    margin-top: 2rem;
    row-gap: 1rem;
  }
}
.story__desc {
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
  font-family: "Playfair Display", serif;
}
@media (width < 767px) {
  .story__desc {
    font-size: 0.6rem;
  }
}
@media (width >= 768px) {
  .story__desc {
    font-size: 1.3rem;
  }
}
.story__desc span {
  color: #c49b5a;
}
@media (width < 767px) {
  .story__text {
    font-size: 0.6rem;
  }
}
@media (width >= 768px) {
  .story__text {
    width: 36rem;
    margin-left: auto;
    font-size: 0.75rem;
  }
}
.story__img {
  order: -1;
  position: relative;
}
@media (width >= 768px) {
  .story__img {
    height: 100vh;
    width: 35rem;
    transform: translateX(-5rem);
  }
}
.story__img::before, .story__img::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3rem;
  content: "";
}
.story__img::before {
  top: 0;
  background: linear-gradient(to bottom, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.story__img::after {
  bottom: 0;
  background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.story__img-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.story__img-mask::before, .story__img-mask::after {
  position: absolute;
  top: 0;
  width: 8rem;
  height: 100%;
  content: "";
}
.story__img-mask::before {
  left: 0;
  background: linear-gradient(to right, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.story__img-mask::after {
  right: 0;
  background: linear-gradient(to left, black 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
}
.story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@layer utilities {}/*# sourceMappingURL=main.css.map */