Congratualations, You Found Our Hidden Art
✦ You Found Hidden Art · CCSA Toronto
ccsa.art/found

Replace with real student artwork image

Hidden Art · Scan #found
Hailey · Age 12 · Drawing & Painting
This piece was created during CCSA's Fall 2025 term
Browse by discipline
All Work
🎨 Painting
✏️ Drawing
🏗️ Architecture
✂️ Fashion
🎬 Animation
🗿 Sculpting
9 Disciplines to Explore
★★★★★

"My daughter asks to go every single week. Her creativity has just exploded."

— Sarah M. · Thornhill
★★★★★

"His confidence in everything has genuinely transformed since joining CCSA."

— Jason T. · Toronto
Your Gift for Finding Us

Try a Free Class —
Any Program

Your child picks their interest. First class is completely risk-free. If it's not the right fit, we'll give you a full refund. No questions asked.

100% refund guarantee · No card needed to book

/* ── Sticky bar ── */ const stickyBar = document.getElementById('sticky-bar'); const heroEl = document.querySelector('.hero'); const stickyObs = new IntersectionObserver(entries => { stickyBar.classList.toggle('visible', !entries[0].isIntersecting); }, { threshold: 0.1 }); stickyObs.observe(heroEl); /* ── Scroll reveals ── */ const revealEls = document.querySelectorAll('.reveal'); const revealObs = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { entry.target.classList.add('visible'); revealObs.unobserve(entry.target); } }); }, { threshold: 0.1 }); revealEls.forEach(el => revealObs.observe(el)); /* ── Touch: dismiss overlay on tap outside ── */ document.addEventListener('touchstart', e => { if (!e.target.closest('.gallery-card')) { cards.forEach(c => c.classList.remove('tapped')); } }, { passive: true });