/* Willow Creek — Home screen with layered parallax hero. */ const { Icon: HIcon, useParallax: HuseParallax, Reveal: HReveal, Photo: HPhoto, Container: HContainer, Eyebrow: HEyebrow, LeafField: HLeafField, VideoBG: HVideoBG, FOOTAGE: HFOOTAGE } = window.WC; function Hill({ color, d, style, ...rest }) { return ( ); } function ParallaxHero({ go }) { const ref = HuseParallax(); const { Button, Badge } = window.WillowCreekDesignSystem_90378c; const leaves = [ { top: "18%", left: "12%", s: 26, dep: 0.9, r: -20 }, { top: "30%", left: "82%", s: 34, dep: 0.7, r: 15 }, { top: "58%", left: "8%", s: 20, dep: 1.0, r: 40 }, { top: "12%", left: "62%", s: 18, dep: 0.85, r: -10 }, { top: "44%", left: "90%", s: 22, dep: 0.6, r: 25 }, ]; return (
{/* REAL FOOTAGE — weeping willow swaying, slow motion (Pexels free license) */}
{/* Sun glow */}
{/* Drifting clouds */}
{/* Falling willow leaves — far layer (behind copy) */}
{/* Far hills */} {/* Mid hills */} {/* Near hills */} {/* Foreground bank */} {/* Floating leaves (logo mark) */} {leaves.map((l, i) => ( ))} {/* Floating stat chip in the scene */}
Move-in ready
3 beds open this week
{/* Copy */}
Structured Sober Living Community

A calmer place to begin again.

Structured, supportive recovery housing where accountability meets belonging — so early sobriety has room to take root.

{[["3", "beds available now"], ["90+", "avg. days in residence"], ["24/7", "house support"]].map(([v, l], i) => (
{v} {l}
))}
{/* Falling willow leaves — near layer (in front of everything) */}
Scroll
); } function TrustStrip() { const items = [ ["shield-check", "Real structure", "High-support sober living"], ["heart-handshake", "Peer & staff support", "House managers on site"], ["calendar-check", "Tours & visits", "See the home before you decide"], ["map-pin", "Rooted in community", "Near meetings, jobs, transit"], ]; return (
{items.map(([ic, t, s], i) => (
{t}
{s}
))}
); } function ApproachSection({ go }) { const { Card, Button } = window.WillowCreekDesignSystem_90378c; const pillars = [ ["home", "A real home", "A calm, well-kept house — not an institution. Private and shared rooms, shared meals, quiet space to breathe."], ["users", "Peer accountability", "You're surrounded by people a few steps ahead. Curfews, check-ins, and honest community keep everyone honest."], ["route", "A path with phases", "Structure loosens as you grow — from stabilizing, to working your program, to launching into independent living."], ["hand-heart", "Support that stays", "House managers on site, connections to meetings, therapists, jobs and family — and an alumni network that doesn't disappear."], ]; return (
Our Approach

Structure, not judgment.

Recovery isn't a straight line. We build the scaffolding — routine, community, and accountability — so you can do the hard, hopeful work of rebuilding.

{pillars.map(([ic, t, d], i) => (

{t}

{d}

))}
); } function OutcomesSection() { const { Stat } = window.WillowCreekDesignSystem_90378c; const { VideoBG, FOOTAGE, Icon } = window.WC; return (
The creek at dawn
Why it works

Time and belonging change everything.

The research is clear: people who stay in structured recovery housing for 90 days or more see lasting gains in sobriety, employment, and stability. We build a home worth staying in.

); } function VoiceSection() { const { Testimonial } = window.WillowCreekDesignSystem_90378c; const quotes = [ { name: "Marcus R.", role: "Alumnus · 2 years sober", accent: "forest", quote: "For the first time in a decade, people expected me to show up. So I did." }, { name: "Dana P.", role: "Mother of a resident", accent: "clay", quote: "I finally slept through the night. I knew where my son was, and I knew he was safe." }, { name: "Theo L.", role: "Alumnus · 14 months", accent: "water", quote: "The phases gave me something I hadn't had in years — a next step I could actually reach." }, ]; return (
In their words

Recovery is a team sport.

{quotes.map((q, i) => ( ))}
); } function CTASection({ go }) { const { Button } = window.WillowCreekDesignSystem_90378c; const ref = HuseParallax(); return (
{/* REAL FOOTAGE — creek flowing, slow motion (Pexels free license) */}

The hardest step is reaching out. We'll walk the next one with you.

Beds are open now. Apply online in minutes, or call and talk to a real person today.

); } function HomeScreen({ go }) { return ( <> ); } window.WC.HomeScreen = HomeScreen;