I’m Bi, I’m Valid, and I’m Allowed to Take up Space

I took a job working for Equality Federation because I believe it is everyone’s job to help make the world a better place. The fact that I can do that while working for a cause I so deeply believe in was a double win.

May 18, 2026
Her existence is not an opinion.

My friend Veronica is an incredible woman. She is smart, funny, genuine and sarcastic (a prerequisite for all my friends). We have been an important part of each other’s lives for 20 years. That’s a lot of laughter, a lot of tears and a lot of pedicures. She is my bestie, my heart, my sister, my friend and my family, and, she is transgender.

May 18, 2026
/* ============================================= Timed Popup — Shows after a delay on every page Closes on: X button, overlay click, or Escape key Once per session (won't show again until new session) ============================================= */ document.addEventListener("DOMContentLoaded", function () { /* Target the popup elements by their Webflow classes */ const popup = document.querySelector(".modal-popup_wrapper"); const closeBtn = document.querySelector(".modal-popup_close"); const overlay = document.querySelector(".modal-popup_overlay"); /* Check if popup has already been seen this session */ if (sessionStorage.getItem("popupSeen")) return; /* Show the popup after a delay Change 4000 to adjust timing (1000 = 1 second) */ setTimeout(function () { popup.style.display = "flex"; popup.removeAttribute("aria-hidden"); closeBtn.focus(); /* Moves focus to close button for accessibility */ }, 4000); /* Close the popup and record the session */ function closePopup() { popup.style.display = "none"; popup.setAttribute("aria-hidden", "true"); sessionStorage.setItem("popupSeen", "true"); /* Prevents popup from showing again this session */ } /* Close triggers */ closeBtn.addEventListener("click", closePopup); /* X button */ overlay.addEventListener("click", closePopup); /* Clicking the dim background */ document.addEventListener("keydown", function (e) { if (e.key === "Escape") closePopup(); /* Escape key */ }); });