console.log('Custom code loaded'); document.addEventListener('click', (e) => { if (e.target.matches('.zoomable-image')) { window.wixAnalytics.trackEvent('ImageZoom', { image_id: e.target.getAttribute('data-image-id') }); } }); document.addEventListener('click', (e) => { if (e.target.matches('.expand-image')) { window.wixAnalytics.trackEvent('ImageExpand', { image_id: e.target.getAttribute('data-image-id') }); } }); document.addEventListener('gallerySwipe', (e) => { window.wixAnalytics.trackEvent('ImageSwipe', { direction: e.detail.direction, index: e.detail.index }); }); let fired = {25:false, 50:false, 75:false, 100:false}; window.addEventListener('scroll', () => { const depth = (window.scrollY + window.innerHeight) / document.body.scrollHeight * 100; [25, 50, 75, 100].forEach(level => { if (!fired[level] && depth >= level) { fired[level] = true; window.wixAnalytics.trackEvent('ScrollDepth', { level }); } }); }); const hero = document.querySelector('#hero'); let heroStart = null; const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { heroStart = Date.now(); } else if (heroStart) { const duration = Math.round((Date.now() - heroStart) / 1000); window.wixAnalytics.trackEvent('TimeInView', { section: 'hero', seconds: duration }); heroStart = null; } }); }); if (hero) observer.observe(hero);
top of page

Afterglow Shatterfield

$85.00Price
Quantity

Afterglow Shatterfield forms along the hotter edge of the Chromatic Drift lineage, drawn from the right half of the same parent sheet where the colours compress, fracture and intensify. A salmon‑toned thermal seam runs through the centre of the species, holding its line as the surrounding glass shifts and settles around it. Above this, a thin‑film fusion dichroic breaks apart during the refire, scattering into a field of mineral‑like shimmer — a particulate dust that catches sunlight in sharp, fleeting flashes.


The species carries the atmosphere of volcanic dusk: magenta and violet interference rising out of deeper plum and ember tones, crossed by dark structural bands that read like cooled lava ridges. In motion, the piece moves between glow and shadow, its fractured dichroic layer activating in bright points before dissolving back into the glass. It’s a species shaped by heat, flow and compression — a charged, tectonic counterpart to the calm chromatic drift of its sibling.

    bottom of page
    // Track video plays in GA4 $w.onReady(function () { $w('VideoPlayer').onPlay(() => { gtag('event', 'VideoPlay', { species: $w('#speciesName').text, // optional: dynamic species name page_path: window.location.pathname }); }); });