Pillar 02 — Ngahere toa

DJ Persona & Sound Journeys

Underground EDM festival sets and longer-form composition built for immersive listening.

Festival DJ Sets

Sets built for underground EDM stages at festivals — reading a floor, holding energy through a long set, and mixing with intent rather than habit.

Sound Journeys

Longer-form composition in active development — immersive listening experiences rather than dancefloor tracks. Unreleased and evolving, not a finished catalog.

SoundCloud

The evolving catalog lives on SoundCloud under Ngahere toa. Listen along as the sound journeys take shape.

Instagram

Follow the DJ work and sound journeys — sets, studio builds, and the evolving catalog.

// ===================================================================== // Theme toggle — persist light/dark preference across pages // ===================================================================== (function() { const btn = document.getElementById('theme-toggle'); const root = document.documentElement; const key = 'roadhouse.theme'; function get() { try { return localStorage.getItem(key) || 'system'; } catch { return 'system'; } } function set(m) { try { localStorage.setItem(key, m); } catch {} } function apply(mode) { mode === 'light' || mode === 'dark' ? root.setAttribute('data-theme', mode) : root.removeAttribute('data-theme'); } function cur() { return root.getAttribute('data-theme') || (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'); } function updateLabel() { const m = cur(); btn.setAttribute('aria-label', m==='dark' ? 'Switch to light theme' : 'Switch to dark theme'); btn.setAttribute('aria-pressed', String(m==='dark')); } btn.addEventListener('click', () => { const n = cur()==='dark' ? 'light' : 'dark'; apply(n); set(n); updateLabel(); }); const init = get(); if (init==='light'||init==='dark') apply(init); updateLabel(); })(); // ===================================================================== // Stream / page-specific scripts // =====================================================================