Our inaugural BRAND BRIEFING last Thursday explored six months of SEEDS and distilled them into three key themes, five cultural shifts – and a rich heap of cultural compost.
In the process of reaping what we’ve sown, we started to notice that culture is beginning to look a lot like compost. Because amid the muck, slop, brain rot and enshittification, something else is taking root: a recalibration and rewilding of the past, and the fertilisation of more hopeful futures.
We call this A Compost Theory of Culture.
It’s a way of understanding this moment as one of both cultural atrophy and regeneration. It challenges the idea that innovation is always about progress. Instead, it suggests that sometimes innovation is about decomposition – breaking things down to make space for something new to grow.
To access the full presentation — which covers what's changing in culture, who's still relevant and what all this means for brands — as well as watch the recording and benefit from the additional research resources, you'll need a BRAND MEMBERSHIP:
// Add an event listener for the scroll event on the window.
window.addEventListener("scroll", () => {
// Get the current scroll position.
let scrollTop = window.scrollY;
// Get the total height of the document.
let docHeight = document.body.offsetHeight;
// Get the height of the window.
let winHeight = window.innerHeight;
// Calculate the percentage of the page that has been scrolled.
let scrollPercent = scrollTop / (docHeight - winHeight);
let scrollPercentRounded = Math.round(scrollPercent * 100);
// Try to open the popup if the visitor has scrolled more than 25% of the page and is not a member.
if (scrollPercentRounded > 25) {
openPopup();
}
});