PrismSight Clay Studio
Oakland Studio Since 2018

Shape bold ideas with your hands.

Join intimate clay sculpting classes where beginners and experienced makers explore form, texture, and personal expression in a supportive studio environment.

Featured this month
Hand-Built Vessels & Sculptural Forms
6-week evening series • 8 students max
Reserve your seat
98%
Student return rate
240+
Classes held in 2024
1,150
Community members
12
Resident teaching artists
Why students stay

The PrismSight difference

Small, supportive groups

Maximum 8 students per class so every hand receives personal guidance from start to finish.

All materials included

Premium clay, glazes, and firing fees are covered. Just bring your ideas and curiosity.

Flexible make-up sessions

Life happens. Missed a class? Schedule a make-up slot within the same month at no extra cost.

Three ways to begin

Find your perfect entry point

Intro to Hand Building

Perfect first class. Learn pinch, coil, and slab techniques over 4 weeks.

See dates →
Sculptural Expression

Move beyond vessels into abstract and figurative forms with armature support.

See dates →
Open Studio Membership

Unlimited access to wheels, kilns, and glazing area with monthly mentorship hours.

See details →
From our community

"I walked in nervous about clay and left with a finished piece I’m genuinely proud of. The instructors made every step feel achievable and joyful."

— Maya Torres, 4-time student
`; document.getElementById('site-header').innerHTML = headerHTML; document.getElementById('site-footer').innerHTML = footerHTML; function initMobileNav() { const toggle = document.getElementById('menuToggle'); const mobileNav = document.getElementById('mobileNav'); if (toggle && mobileNav) { toggle.addEventListener('click', () => { mobileNav.classList.toggle('hidden'); }); } } function initModals() { const modals = { loginModal: `
Welcome back

Forgot password? Contact us

`, registerModal: `
Create account
`, themeModal: `
Choose theme
` }; document.querySelectorAll('[data-open-modal]').forEach(btn => { btn.addEventListener('click', () => { const modalType = btn.getAttribute('data-open-modal'); const modalHTML = modals[modalType]; const modal = document.createElement('div'); modal.innerHTML = modalHTML; document.body.appendChild(modal.firstElementChild); const newModal = document.body.lastElementChild; newModal.querySelectorAll('[data-close-modal]').forEach(closeBtn => { closeBtn.addEventListener('click', () => newModal.remove()); }); if (modalType === 'themeModal') { newModal.querySelectorAll('[data-theme]').forEach(themeBtn => { themeBtn.addEventListener('click', () => { const theme = themeBtn.getAttribute('data-theme'); localStorage.setItem('theme', theme); applyTheme(); newModal.remove(); }); }); } newModal.querySelectorAll('form').forEach(form => { form.addEventListener('submit', e => { e.preventDefault(); alert('Thank you! We will contact you shortly.'); newModal.remove(); }); }); }); }); } function applyTheme() { const theme = localStorage.getItem('theme'); if (theme === 'dark') { document.documentElement.style.setProperty('--tw-bg-opacity', '1'); document.body.style.backgroundColor = '#292524'; document.body.style.color = '#f5f5f4'; } else { document.body.style.backgroundColor = ''; document.body.style.color = ''; } } function initCookieBanner() { const banner = document.getElementById('cookieBanner'); const acceptBtn = document.getElementById('acceptCookies'); if (!banner || !acceptBtn) return; if (localStorage.getItem('cookieConsent') !== 'true') { banner.classList.remove('hidden'); banner.classList.add('flex'); } acceptBtn.addEventListener('click', () => { localStorage.setItem('cookieConsent', 'true'); banner.classList.remove('flex'); banner.classList.add('hidden'); }); } function initTheme() { applyTheme(); window.addEventListener('storage', applyTheme); } window.onload = function() { initMobileNav(); initModals(); initCookieBanner(); initTheme(); };