Events & Parties

We’ll help you throw a party to remember. Let us know what you’ve got in mind, who’s coming and what you’re celebrating; we’ll take care of the rest.

events & parties

Our events team take pride in curating the space to fit your exact needs. We have hosted product launches, awards ceremonies, exhibitions, business meetings, networking events and too many parties to mention. With space for up to 235 guests inside and 115 outside, just let us know your requirements and we’ll bring it to l

download brochure

Fill out the form below to get in touch

Number of Guests:
If the number of guests is less than 50, please email us directly at Events@incipio-group.co.uk.





Date of Event:
Is Date Flexible?:
Venues: Dear Grace Pergola Brixton Pergola on the Wharf The 411 The Libertine The Palm House The Prince
Suggest Venues:
Session: –None– Morning Daytime Evening Custom
Tell me more about your event?:
Do you have a budget you are working to?:
Occasion: –None– Afternoon Tea Anniversary Bar/Bat Mitzvah Birthday Board/Executive Meeting Business Meeting Business Social Celebration Charity Event Christmas Celebration Conference Drinks Reception Engagement Filming Graduation Internal Booking Menu Tasting Other Photoshoot Press/PR Pre-Wedding Celebration Private Social Summer Party Wake Wedding Wrap Party
Event Format: –None– Seated Standing Both
Type of Space: –None– PDR Group Dining Semi-Private Exclusive Hire
document.getElementById(‘eventForm’).addEventListener(‘submit’, function(event) { const dateInput = document.getElementById(‘eventDate’); const dateValue = dateInput.value; console.log(‘Raw Date Input Value:’, dateValue); // Log the raw date value from the input field if (dateValue) { // Convert the yyyy-MM-dd to DD/MM/YYYY const [year, month, day] = dateValue.split(‘-‘); const formattedDate = `${day}/${month}/${year}`; console.log(‘Formatted Date:’, formattedDate); // Log the formatted date // Assign the formatted date to the hidden field const hiddenDateField = document.getElementById(’00NHp00001H7U9o’); hiddenDateField.value = formattedDate; console.log(‘Hidden Date Field Value Before Submission:’, hiddenDateField.value); // Log the hidden field’s value to confirm } // Prevent form submission for debugging purposes // event.preventDefault(); }); document.addEventListener(‘DOMContentLoaded’, function() { const guestInput = document.getElementById(’00NHp00001H7U9s’); const lowGuestMessage = document.getElementById(‘lowGuestMessage’); const submitButton = document.querySelector(‘input[type=”submit”]’); guestInput.addEventListener(‘input’, function() { const guestCount = parseInt(guestInput.value, 10); if (!isNaN(guestCount) && guestCount < 50) { lowGuestMessage.style.display = 'block'; submitButton.disabled = true; submitButton.style.opacity = '0.5'; } else { lowGuestMessage.style.display = 'none'; submitButton.disabled = false; submitButton.style.opacity = '1'; } }); });