New Zealand Artist Creating Art Prints & Cards for Nature Lovers
From the birds outside my window to the wildflowers in my garden and the little things sitting on my windowsill, my NZ art prints capture the moments worth slowing down for — and bring them home with you.
Find your print

Shop Latest Products
Stag Card
$8.00
Quirky Bird Card
$8.00
Piglet Card
$8.00
Llama Card
$8.00
Lion Card
$8.00
Kiwi Card
$8.00
Kea Card
$8.00
Floral Halo Card
$8.00
Feather Card
$8.00
GET GOOD MAIL
Sign up to my newsletter to keep up to date with new print releases and get a discount off your first order!


Shop our artwork
A selection of products handmade with love
Cards
Shop a selection of gift cards for any occasion

Prints
A4 and a3 prints to brighten your home

Originals
Looking for something unique? Shop Originals

/* This JS calculates the max-height of the card text. Allow code execution in Bricks Settings » Custom Code and execute this code element */
document.addEventListener('DOMContentLoaded', function () {
// Get all the feature cards
const featureCards = document.querySelectorAll('.brxw-feature-card-04');
// Loop through all the cards and add event listeners
featureCards.forEach(function (card) {
const textElement = card.querySelector('.brxw-feature-card-04__text');
if (textElement) {
// Initially set max-height to 0 for the text elements
textElement.style.maxHeight = '0';
textElement.style.overflow = 'hidden';
// Add hover event listeners
card.addEventListener('mouseenter', function () {
// Calculate the full height dynamically using scrollHeight
const fullHeight = textElement.scrollHeight + 'px';
textElement.style.maxHeight = fullHeight;
textElement.style.marginTop = 'var(--brxw-content-gap)';
});
card.addEventListener('mouseleave', function () {
// Reset the max-height to 0 when the hover ends
textElement.style.maxHeight = '0';
textElement.style.marginTop = '0';
});
}
});
});















