// Neighborhoods.jsx — full neighborhood guide page const Reveal_N = window.Reveal; const PageHero_N = window.SantirmaPageHero; const NEIGHBORHOOD_DETAILS = [ { name: 'Capitol Hill', slug: 'capitol-hill', image: 'https://images.unsplash.com/photo-1493809842364-78817add7ffb?w=1600&q=80&auto=format&fit=crop', count: 28, walk: 94, transit: 88, blurb: 'Cafes, bookshops, late dinners — the loud-quiet heart of Seattle.', body: 'Capitol Hill is where Seattle is most itself: a neighborhood of long lunches at small restaurants, secondhand records, leafy side streets. Homes here favor pre-war character buildings and discreet new mid-rises with leasing offices that look more like hotel lobbies.', landmarks: ['Volunteer Park Conservatory', 'Elliott Bay Book Co.', 'Cal Anderson Park', 'Light Rail · 3 stops to downtown'], }, { name: 'Belltown', slug: 'belltown', image: 'https://images.unsplash.com/photo-1554995207-c18c203602cb?w=1600&q=80&auto=format&fit=crop', count: 19, walk: 98, transit: 94, blurb: 'Waterfront, galleries, the Pike. A short walk from everything.', body: 'Belltown is the half-mile of Seattle that fits in your weekend. Most of our listings here are high-rise one-bedrooms with floor-to-ceiling glass and a fifteen-minute walk to Pike Place.', landmarks: ['Pike Place Market', 'Olympic Sculpture Park', 'Seattle Art Museum', 'Waterfront ferries'], }, { name: 'Queen Anne', slug: 'queen-anne', image: 'https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?w=1600&q=80&auto=format&fit=crop', count: 14, walk: 78, transit: 71, blurb: 'Tree-lined, skyline-facing, quiet. Family Seattle in one hill.', body: 'Queen Anne sits up above the city and turns its back on the noise. Craftsman homes and brick low-rises, kids on bikes, the Space Needle reflected in your window at golden hour.', landmarks: ['Kerry Park lookout', 'Pacific Science Center', 'McCaw Hall · Opera & Ballet', 'SPU campus'], }, { name: 'Fremont', slug: 'fremont', image: 'https://images.unsplash.com/photo-1502672023488-70e25813eb80?w=1600&q=80&auto=format&fit=crop', count: 22, walk: 91, transit: 83, blurb: 'Canal walks, makers, slow Sundays. The "center of the universe."', body: 'Fremont was always going to be on this list. It is a maker-town built around a drawbridge: independent breweries, the Sunday market, a troll under an overpass that the children love.', landmarks: ['Fremont Sunday Market', 'Burke-Gilman Trail', 'Theo Chocolate Factory', 'Gas Works Park'], }, { name: 'Ballard', slug: 'ballard', image: 'https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1600&q=80&auto=format&fit=crop', count: 31, walk: 96, transit: 76, blurb: 'Locks, Sunday market, the salt air. The neighborhood doing it right.', body: 'Ballard is the success story Seattle keeps telling. Old fishing town turned design district turned home to families. Townhomes climb the hill from the locks; the bars below stay open late on Fridays.', landmarks: ['Hiram M. Chittenden Locks', 'Ballard Farmers Market', 'Golden Gardens Park', 'Old Ballard breweries'], }, { name: 'South Lake Union', slug: 'south-lake-union', image: 'https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1600&q=80&auto=format&fit=crop', count: 16, walk: 92, transit: 90, blurb: 'Glass, water, seaplanes overhead. Modern Seattle, polished.', body: 'SLU is the cleanest line in Seattle: a tech district built around a working lake. Listings are towers — quiet ones, with rooftop pools and resident lounges that face the water.', landmarks: ['Lake Union Park & MOHAI', 'Seattle Streetcar', 'Whole Foods 365', 'Center for Wooden Boats'], }, { name: 'Madison Park', slug: 'madison-park', image: 'https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?w=1600&q=80&auto=format&fit=crop', count: 9, walk: 81, transit: 64, blurb: "Lakefront, leafy, unhurried. Seattle’s quiet old money.", body: 'Madison Park is where Seattle goes to slow down. Single-family homes on lake-facing streets, a tiny commercial spine, and a beach the locals try to keep secret.', landmarks: ['Madison Park Beach', 'Washington Park Arboretum', 'Madison Valley dining', 'Bus rapid to downtown'], }, { name: 'Pioneer Square', slug: 'pioneer-square', image: 'https://images.unsplash.com/photo-1522708323590-d24dbb6b0267?w=1600&q=80&auto=format&fit=crop', count: 7, walk: 97, transit: 92, blurb: 'Brick, galleries, the oldest streets in Seattle.', body: 'Pioneer Square is the original Seattle — pergolas, ironwork, brick warehouses turned into lofts. We have a small but careful list here: live/work spaces and converted upper floors with serious bones.', landmarks: ['First Thursday Art Walk', 'Smith Tower', 'King Street Station', 'Stadium District'], }, ]; window.SantirmaNeighborhoodDetails = NEIGHBORHOOD_DETAILS; function NeighborhoodCard({ n, navigate }) { return (
{n.count} homes available
Neighborhood · Seattle

{n.name}

{n.body}

Walk
{n.walk}
Transit
{n.transit}
{n.landmarks.slice(0, 2).join(' · ')}
); } function NeighborhoodsPage({ navigate }) { return (
Nine pockets of Seattle.
Each one chosen on foot.} subtitle="Our listings are concentrated in the parts of the city we know best. Every block in our portfolio has been walked by a member of the Santirma team — usually more than once." />
{NEIGHBORHOOD_DETAILS.map(n => ( ))}
); } window.SantirmaNeighborhoodsPage = NeighborhoodsPage;