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

Silvered Marble Violet Emberline

$125.00Price
Quantity

A warm, dusk‑lit member of the Silvered Marble line, carrying the same drifting dichroic flake marbling through its layers. Amber and deep violet fold over one another, the violet staying quiet until sunlight wakes it. A soft salmon flare moves between the layers, catching on the flakes and scattering small sparks of colour. In shade it stays calm and muted; in bright light it opens, glowing with a slow, ember‑like violet rising from beneath the amber.

    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 }); }); });