// LV Modern Portraits — Sections B: Who Books + What's Included // ---------- 4. WHO BOOKS MODERN PORTRAITS ---------- function VpWhoBooks() { const cards = [ { n: "01", label: "The woman at a milestone", body: "A birthday year. A new chapter. A divorce that finally feels like freedom. A career pivot. A body she's worked for. The first time she's done something just for herself in years.", }, { n: "02", label: "The woman who's just decided it's time", body: "No big reason. No external trigger. Just a woman who's looked in the mirror and decided she'd like to remember what this version of herself looked like — before this chapter becomes the one before the next one.", }, { n: "03", label: "The woman with the people who define her chapter", body: "Modern Portraits sessions can include the children, the partner, or the loved ones who define this season of her life. She is still the subject — they are part of the portrait of who she is right now.", }, ]; return (
Who Books Modern Portraits

Built for the woman ready to be seen.

{cards.map(c => (
{c.n}

{c.label}

{c.body}

))}
); } // ---------- 5. WHAT'S INCLUDED (3×2) ---------- function VpIncluded() { const items = [ { n: "01", label: "Professional hair and makeup", body: "With my in-studio team. Editorial-grade, designed for camera." }, { n: "02", label: "Wardrobe and styling consultation", body: "Sent in advance, so you arrive with the right pieces — and confidence in every one of them." }, { n: "03", label: "Fully guided posing", body: "I walk you through every pose, every angle, every expression — start to finish. You're never wondering what to do." }, { n: "04", label: "A private, all-female studio", body: "Every person you'll meet on the day of your session is a woman. The photographer behind the camera is always me." }, { n: "05", label: "Every image fully retouched", body: "Editorial standard, every frame. Color and black-and-white where appropriate." }, { n: "06", label: "Next-day private gallery reveal", body: "We hop on a Zoom together, walk through your gallery, and narrow to your favorites. You only purchase what you love." }, ]; return (
Every Session Includes

What you walk in with.
What you walk out with.

{items.map(it => (
{it.n}

{it.label}

{it.body}

))}
); } Object.assign(window, { VpWhoBooks, VpIncluded });