Neighbors.

Your guide to the family businesses that make downtown yours.

No mapped results on this page — listings appear here once their addresses are located.

// Restrained reveal-on-scroll for San Jose homepage (echoes Webflow's intentional motion language) // Lightweight vanilla JS: IntersectionObserver, no libraries. Respects prefers-reduced-motion. (function() { if (window.location.pathname !== '/') return; if (window.matchMedia('(prefers-reduced-motion: reduce)').matches) return; var sections = document.querySelectorAll('main section'); if (!sections.length || !('IntersectionObserver' in window)) return; var io = new IntersectionObserver(function(entries) { entries.forEach(function(en) { if (en.isIntersecting) { en.target.classList.add('is-visible'); io.unobserve(en.target); } }); }, { threshold: 0.1, rootMargin: '0px 0px -6% 0px' }); sections.forEach(function(el) { el.classList.add('gn-reveal'); io.observe(el); }); })();