Capturing sport
as it happens.
Football and running photography across Kent and the South East. Real moments, real emotion — from Sunday league touchlines to ultramarathon trails.
Scroll to explore
Recent shots
Let’s talk.
Whether you’re a club needing regular matchday coverage or a race organiser looking for an official photographer — get in touch to discuss how we can work together.
// Scroll reveal const observer = new IntersectionObserver(function(entries) { entries.forEach(function(entry) { if (entry.isIntersecting) entry.target.classList.add(‘visible’); }); }, { threshold: 0.08 }); document.querySelectorAll(‘.reveal’).forEach(function(el) { observer.observe(el); });
// Portfolio filter
function filterPortfolio(cat, btn) {
document.querySelectorAll(‘.filter-btn’).forEach(function(b) { b.classList.remove(‘active’); });
btn.classList.add(‘active’);
document.querySelectorAll(‘.pg-item’).forEach(function(item) {
item.style.display = (cat === ‘all’ || item.dataset.cat === cat) ? ” : ‘none’;
});
}