Customize Your Design

At Matta, customization is a collaborative process shaped around your space and everyday needs. Whether you are adapting an existing Matta piece or starting from a new idea, our team works closely with you to deliver a solution that fits both your vision and your environment.

Custom options may include adjustments to dimensions, materials, finishes, and selected details, in line with Matta’s production standards.

How It Works:

• You share your idea or requirement
• Our team reviews the request
• We contact you to refine details, timeline, and feasibility
• A customized proposal is shared for approval

Customization Request

    jQuery(document).ready(function($) {
    var jobTitle = jQuery('.banner-job-title').text();
    jQuery('input[name="job-title"]').val(jobTitle);
    var fileInput = $('.job-application-form input[type="file"]');
    var fileLabel = $('No file chosen...ATTACH');
    fileInput.after(fileLabel);

    jQuery(".job-app-file-upload-wrapper")[0].addEventListener("click", function(){
    fileInput[0].click();
    });

    fileInput.change(function() {
    var filename = $(this).val().split('\\').pop();
    if (filename) {
    jQuery(".file-name").html(filename);
    } else {
    jQuery(".file-name").html('No file chosen...');
    }
    });
    });