Skip To Content

Surgical Procedures and Treatments

Explore advanced surgical procedures tailored to deliver natural, transformative results. From facial rejuvenation to body contouring, our team prioritizes patient safety, clinical excellence, and personalized care at every step. Browse our offerings below to begin your journey.

jQuery(document).ready(function() { // Check if we're on the /shop/ page and if there's a query string if (window.location.pathname === '/shop/' && window.location.search) { // Get the text after "?" in the URL let queryText = window.location.search.substring(1); // Check if 'vivier' or 'skinceuticals' exists in the query string if (queryText.includes('vivier')) { jQuery('.site-hero__title').text('Shop Vivier'); } if (queryText.includes('skinceuticals')) { jQuery('.site-hero__title').text('Shop SkinCeuticals'); } } }); document.addEventListener('DOMContentLoaded', function () { const utmParams = [ 'utm_source', 'utm_medium', 'utm_campaign', 'utm_content', 'utm_term' ]; // Save UTMs from URL const urlParams = new URLSearchParams(window.location.search); utmParams.forEach(param => { const value = urlParams.get(param); if (value) { sessionStorage.setItem(param, value); } }); // Populate Gravity Forms fields document.addEventListener('gform_post_render', function () { utmParams.forEach(param => { const field = document.querySelector( 'input[name="' + param + '"]' ); if (field) { field.value = sessionStorage.getItem(param) || ''; } }); }); }); (function ($) { if (typeof window.alcUtm === "undefined") { return; } var config = window.alcUtm; var prefix = config.cookiePrefix || "alc_"; function getCookie(name) { var match = document.cookie.match( new RegExp( "(?:^|; )" + name.replace(/[.*+?^${}()|[\]\\]/g, "\\$&") + "=([^;]*)", ), ); return match ? decodeURIComponent(match[1]) : ""; } function getStored(param) { return getCookie(prefix + param) || ""; } function clearUtmCookies() { (config.params || []).forEach(function (param) { document.cookie = prefix + param + "=; path=/; max-age=0; SameSite=Lax" + (location.protocol === "https:" ? "; Secure" : ""); }); } function populateForm(formId) { var fields = (config.forms && config.forms[formId]) || []; fields.forEach(function (field) { var value = getStored(field.inputName); if (!value) return; var input = document.getElementById(field.inputId); if (input) { input.value = value; } }); var form = document.getElementById("gform_" + formId); if (!form) return; var fieldValuesInput = form.querySelector( 'input[name="gform_field_values"]', ); if (!fieldValuesInput) return; var values = new URLSearchParams(fieldValuesInput.value || ""); fields.forEach(function (field) { var value = getStored(field.inputName); if (value && !values.get(field.inputName)) { values.set(field.inputName, value); } }); fieldValuesInput.value = values.toString(); } $(document).on("gform_post_render", function (event, formId) { populateForm(formId); }); $(document).on("gform_confirmation_loaded", function () { clearUtmCookies(); }); })(jQuery);