SKETCH In the Air

SKETCH In the Air

  • Looking for time and space in your life to be an artist (even if currently you don’t identify as one)?
  • Looking to be part of a warm, creative community?
  • Looking to create a great portfolio whilst being inspired by an immersive art experience?
  • Then come along! No experience necessary. Stick figures welcome, people who just want to watch the performance/music, writers… all welcome!

An evening of aerial life drawing and live music
Join us for an inspiring evening of aerial life drawing paired with live music for a truly immersive experience. The art model, Sarah Bebe Holmes—an international physical theater and circus performer—will captivate with her dynamic energy, incorporating aerial apparatus and striking, expressive poses. Accompanying her is Bado Reti, an accomplished multi-instrumentalist and composer, who will guide the evening with his mesmerising music.

Immerse yourself in this unique fusion of art forms! Enhance your art portfolio, decorate your space, or elevate your social feed with striking figure drawings that are sure to impress.

Be a part of a supportive community of artists of all levels to nurture and immerse yourself in creativity.

More about aerial art modeling
Aerial art modeling utilises aerial apparatus suspended from the air for the model to find poses which are unique and arresting. Each apparatus offers a different kind of aesthetic. We will be offering a different apparatus for each evening.

Who is this event for?
All levels welcome. Please bring your own materials. We will have some extra paper and simple supplies in case you have none, or forget them.

Evening Schedule
6.00 – 6.15 Arrive & Set up personal drawing station, grab a drink, have a chat
6.15 – 7.00 First set
7.00 – 7.15 Break, grab a drink, chat, stretch
7.15 – 7.45 Second set
7.45 – 8.00 Sharing of work, socialising and pack-up

How to book and price?
There are LIMITED SPACES! Book early to snag your spot!
£25 Standard ticket
£20 Early bird ticket
£15 with student discount

This is a monthly recurring event, running on 17th September, 15th October, 19th November, and 10th December 2025!

You can view our full programme here

Wednesday 19 November 2025
6pm - 8pm
15 - £25
SHAPE by Narture, 32 Newmarket Street, Ayr KA7 1LP

Map

You might also like...

An image of tye dye pieces of material laid out on a table.
Saturday 22 November 2025
1pm - 4pm
45

Introduction to Shibori

Introduction to Shibori
An image of embroidered material using beautiful Japanese traditions of visible mending and hand embroidery.
Sunday 23 November 2025
1pm - 4pm
45

Intro to Boro and Sashiko

Intro to Boro and Sashiko
A promotional image advertising WinterStrom taking place 27 November - 29 November 2025.
27 - 29 November 2025
12pm - 11.30pm
From £60 per day

WinterStorm

WinterStorm
Illustration of Santa Claus carrying a sack of presents, a smiling snowman in a red scarf and top hat, and a decorated Christmas tree with red baubles and lights. The text reads: “Saturday 29 November – Cunninghame, Kyle and Carrick Rotary Club Victorian Christmas Fair.” The Rotary Club logo appears at the bottom.
Saturday 29 November 2025
10am - 4pm
Free

Victorian Christmas Fair

Victorian Christmas Fair
An image of a band playing on a stage with text that says, 'Runrig Experience' Sunday, 30 November 2025'.
Sunday, 30 November 2025
7.00pm
29.50

The Runrig Experience | After the 'Storm

The Runrig Experience | After the ‘Storm
Promotional banner for “Christmas Party Nights” at The Clocktower in Auchincruive. The design features festive decorations including gold and blue baubles with star patterns on a dark background. Large text reads “Christmas Party Nights” with smaller text above stating “The Clocktower – Auchincruive.” A gold banner below says “Dates Throughout December 2025.” Price shown as “£40” inside a gold ornament. Contact details include phone number “01292 876101” and website “ClocktowerEvents.co.uk.” Bottom left displays the NOW Ayrshire Radio logo, and bottom right shows a photo of an event marquee with pink lighting and Christmas trees, labeled “Event Marquee.
12 December 2025
6.30pm
40

Christmas Party Nights

Christmas Party Nights

Join our newsletter

Get the latest Destination South Ayrshire news and events delivered straight to your inbox…

Sign up for our newsletter

Get the latest Destination South Ayrshire news and events delivered straight to your inbox.

Copyright © 2025 Destination South Ayrshire. Provided by South Ayrshire Council.

Sign up for our newsletter

Get the latest Destination South Ayrshire news and events delivered straight to your inbox…

document.addEventListener('DOMContentLoaded', () => { // Robust selectors for 2025 Elementor (covers Pro, Hello, Astra) const toggle = document.querySelector('.elementor-menu-toggle, .elementor-nav-menu--toggle button, [aria-expanded][role="button"]'); const menu = document.querySelector('.elementor-nav-menu--dropdown, .elementor-nav-menu__container, nav[role="navigation"]'); if (!toggle || !menu) { console.error('ZoomFix: Elements not found. Inspect hamburger/menu HTML.'); return; } console.log('ZoomFix: Found toggle and menu. Testing at 400% zoom...'); let focusables = []; let firstItem, lastItem; let isOpen = false; let tabCountAtEnd = 0; // Detects repeated Tabs to auto-close const MAX_TABS_BEFORE_CLOSE = 2; // Closes after 2 Tabs on last item const updateFocusables = () => { focusables = Array.from(menu.querySelectorAll('a[href], button:not([disabled]), [tabindex]:not([tabindex="-1"])')); firstItem = focusables[0]; lastItem = focusables[focusables.length - 1]; console.log('ZoomFix: Updated focusables:', focusables.length); }; // Monitor for menu open/close (handles Elementor's mutations at zoom) const observer = new MutationObserver((mutations) => { const expanded = toggle.getAttribute('aria-expanded') === 'true' || toggle.classList.contains('elementor-active'); if (expanded !== isOpen) { isOpen = expanded; console.log('ZoomFix: Menu state:', isOpen ? 'OPEN' : 'CLOSED'); if (isOpen) { updateFocusables(); setTimeout(() => firstItem?.focus(), 100); // Delay for zoom reflow startFocusPolling(); // Start zoom-safe polling } else { stopFocusPolling(); toggle.focus(); } } }); observer.observe(toggle, { attributes: true, subtree: true }); // Zoom-proof focus trap: Global Tab listener const handleTab = (e) => { if (!isOpen || !focusables.length) return; updateFocusables(); // Re-scan for zoom/DOM changes if (document.activeElement === lastItem && e.key === 'Tab' && !e.shiftKey) { e.preventDefault(); tabCountAtEnd++; console.log('ZoomFix: Tab at end (#', tabCountAtEnd, ')'); if (tabCountAtEnd >= MAX_TABS_BEFORE_CLOSE) { console.log('ZoomFix: Auto-closing after repeated Tabs'); closeMenu(); tabCountAtEnd = 0; } else { firstItem.focus(); // Trap: Loop to start } } else if (document.activeElement === firstItem && e.key === 'Tab' && e.shiftKey) { e.preventDefault(); lastItem.focus(); // Trap: Loop to end } }; // Polling for zoom event loss (runs only when open) let pollInterval; const startFocusPolling = () => { pollInterval = setInterval(() => { if (isOpen && document.activeElement && !menu.contains(document.activeElement)) { console.log('ZoomFix: Focus escaped during zoom—trapping back'); firstItem?.focus(); } }, 50); // 50ms check survives zoom reflow }; const stopFocusPolling = () => clearInterval(pollInterval); const closeMenu = () => { console.log('ZoomFix: Forcing close'); toggle.click(); // Elementor's native close tabCountAtEnd = 0; }; // Attach listeners document.addEventListener('keydown', handleTab); document.addEventListener('keyup', (e) => { if (e.key === 'Escape' && isOpen) closeMenu(); }); // Fallback: Click outside document.addEventListener('click', (e) => { if (isOpen && !menu.contains(e.target) && !toggle.contains(e.target)) closeMenu(); }); // Initial scan updateFocusables(); });