MystiBloom
Sign in Create account

Welcome to MystiBloom

This demonstration sign-in form stores no sensitive credentials. botanical practice

Ask the team

The MystiBloom story

A studio built around attention.

From a neighborhood worktable

MystiBloom began when founder Clara Vale started inviting neighbors to a shared worktable for quiet Saturday arranging sessions. The gatherings grew through word of mouth, shaped by a belief that floral design should feel observant, useful, and personal rather than intimidating.

Today, our digital courses bring that same generous studio rhythm to learners wherever they practice botanical practice.

Our mission

We make floristry education more approachable by teaching the decisions behind an arrangement: how to see line, balance texture, care for materials, and create work that belongs to its setting.

What guides our teaching

Respect the season

We encourage thoughtful sourcing and adaptable palettes rather than rigid recipes.

Explain the why

Every technique is connected to a clear visual or practical purpose.

Leave space for voice

Students learn principles they can interpret in their own homes and creative practices.

Meet the teaching team

Clara Vale

Founder and floral designer

Clara teaches composition, restraint, and the small observations that make a bouquet feel alive.

Jonah Reed

Seasonal sourcing tutor

Jonah focuses on conditioning, material care, and practical choices for home studios.

Mina Park

Styling mentor

Mina helps students translate floral ideas into welcoming tables, rooms, and celebrations.

Explore courses Meet us in conversation
`; const footerHTML = ` `; document.querySelector('header').innerHTML = headerHTML; document.querySelector('footer').innerHTML = footerHTML; const themeToggle = document.querySelector('[data-theme-toggle]'); const mobileBtn = document.querySelector('[data-mobile-menu]'); const mobileNav = document.querySelector('[data-mobile-nav]'); const authLinks = document.querySelectorAll('[data-auth]'); const modal = document.querySelector('[data-auth-modal]'); const modalTitle = document.querySelector('[data-auth-title]'); const modalClose = document.querySelector('[data-modal-close]'); const cookieBanner = document.querySelector('[data-cookie-banner]'); const cookieClose = document.querySelector('[data-cookie-close]'); const consentKey = 'mystibloom-cookie-consent'; function initTheme() { const saved = localStorage.getItem('mystibloom-theme'); if (saved === 'dark') { document.documentElement.style.setProperty('--tw-bg-opacity', '1'); document.body.style.backgroundColor = '#26352B'; document.body.style.color = '#F7F1E8'; } } if (themeToggle) { themeToggle.addEventListener('click', () => { const isDark = document.body.style.backgroundColor === 'rgb(38, 53, 43)'; if (isDark) { document.body.style.backgroundColor = '#F7F1E8'; document.body.style.color = '#26352B'; localStorage.setItem('mystibloom-theme', 'light'); } else { document.body.style.backgroundColor = '#26352B'; document.body.style.color = '#F7F1E8'; localStorage.setItem('mystibloom-theme', 'dark'); } }); } if (mobileBtn && mobileNav) { mobileBtn.addEventListener('click', () => { mobileNav.classList.toggle('hidden'); }); } if (authLinks && modal) { authLinks.forEach(link => { link.addEventListener('click', (e) => { e.preventDefault(); const mode = link.getAttribute('data-auth'); if (modalTitle) modalTitle.textContent = mode === 'signin' ? 'Sign in to MystiBloom' : 'Create your account'; modal.showModal(); }); }); } if (modalClose && modal) { modalClose.addEventListener('click', () => modal.close()); } if (modal) { modal.addEventListener('click', (e) => { if (e.target === modal) modal.close(); }); } if (localStorage.getItem(consentKey) === 'accepted' && cookieBanner) { cookieBanner.style.display = 'none'; } if (cookieClose && cookieBanner) { cookieClose.addEventListener('click', function(e) { e.preventDefault(); localStorage.setItem(consentKey, 'accepted'); cookieBanner.style.display = 'none'; }); } initTheme();