// Boise Boudoir — Sections 5 (Gallery), 6 (What's Included) // ---------- 5. THE WORK (mosaic gallery) ---------- function BbGallery() { // Real images (same boudoir set as Las Vegas; alt text is Boise-specific). span: "v" = tall, "h" = wide. // To grow the gallery, just append entries below — lightbox + "View more" adapt automatically. const imgs = [ { src: "/images/boudoir-01.jpg?v=3", alt: "Boise boudoir — woman in teal lace bodysuit reclining on white bed, smiling softly in natural window light", span: "h" }, { src: "/images/boudoir-02.jpg?v=3", alt: "Boise boudoir — black-and-white editorial pose arched off the bed, legs lifted toward bright curtained window", span: "h" }, { src: "/images/boudoir-03.jpg?v=3", alt: "Boise boudoir — black-and-white portrait reclining on white bedding in strappy lingerie, arms framing the face", span: "v" }, { src: "/images/boudoir-04.jpg?v=3", alt: "Boise boudoir — brunette in white lace lingerie resting on the bed, warm smile, hand in her hair", span: "h" }, { src: "/images/boudoir-05.jpg?v=3", alt: "Boise boudoir — sultry black-and-white against a tufted headboard, open white shirt and soft gaze", span: "h" }, { src: "/images/boudoir-06.jpg?v=3", alt: "Boise boudoir — black lingerie on the floor in a beam of window light, head tilted back", span: "v" }, { src: "/images/boudoir-07.jpg?v=3", alt: "Boise boudoir — full-length silhouette on the studio floor before a bright window, black lace lingerie", span: "h" }, { src: "/images/boudoir-08.jpg?v=3", alt: "Boise boudoir — soft black-and-white from behind on rumpled bedding, grey cotton lingerie set", span: "h" }, { src: "/images/boudoir-09.jpg?v=3", alt: "Boise boudoir — minimalist black-and-white with legs extended up a corner wall, white lingerie", span: "v" }, { src: "/images/boudoir-10.jpg?v=3", alt: "Boise boudoir — grey cotton lingerie on a white bed, easy smile in bright natural light", span: "h" }, { src: "/images/boudoir-11.jpg?v=3", alt: "Boise boudoir — overhead pose on a caramel leather sofa in black lace, soft direct gaze", span: "h" }, { src: "/images/boudoir-12.jpg?v=3", alt: "Boise boudoir — black-and-white portrait curled up in an off-the-shoulder white shirt, eyes lowered", span: "v" }, { src: "/images/boudoir-13.jpg?v=3", alt: "Boise boudoir — fine-art black-and-white silhouette on the floor before sheer curtains, legs lifted", span: "h" }, { src: "/images/boudoir-14.jpg?v=3", alt: "Boise boudoir — brunette reclining on white bedding in lace, sultry over-the-shoulder gaze", span: "h" }, { src: "/images/boudoir-15.jpg?v=3", alt: "Boise boudoir — back view in an open white shirt against a dark backdrop, soft blonde waves", span: "v" }, { src: "/images/boudoir-16.jpg?v=3", alt: "Boise boudoir — woman with short silver hair slipping a sheer shirt off her shoulders by the window", span: "h" }, { src: "/images/boudoir-17.jpg?v=3", alt: "Boise boudoir — full-length black-and-white on the floor before bright windows, cotton lingerie", span: "h" }, { src: "/images/boudoir-18.jpg?v=3", alt: "Boise boudoir — seated on the floor by the bed in black lace, hand in her hair, window-lit", span: "v" }, { src: "/images/boudoir-19.jpg?v=3", alt: "Boise boudoir — joyful blonde laughing on a white bed in an off-shoulder white shirt", span: "h" }, { src: "/images/boudoir-20.jpg?v=3", alt: "Boise boudoir — soft-focus black-and-white form study draped in white sheets", span: "h" }, { src: "/images/boudoir-21.jpg?v=3", alt: "Boise boudoir — black-and-white overhead on white sheets, tattooed legs drawn up, playful upside-down gaze", span: "v" }, { src: "/images/boudoir-22.jpg?v=3", alt: "Boise boudoir — relaxed on white linens wrapped in a white sheet, soft natural light, gold bracelet", span: "h" }, { src: "/images/boudoir-23.jpg?v=3", alt: "Boise boudoir — black-and-white reclined against a tufted sofa in lace, backlit by tall windows", span: "h" }, { src: "/images/boudoir-24.jpg?v=3", alt: "Boise boudoir — back study with cascading blonde waves and a white sheet draped low", span: "v" }, { src: "/images/boudoir-25.jpg?v=3", alt: "Boise boudoir — bright high-key black-and-white, blonde laughing on a white bed in a silk slip", span: "h" }, { src: "/images/boudoir-26.jpg?v=3", alt: "Boise boudoir — black-and-white reclined on a white bed in black lace, head tipped back in window light", span: "h" }, { src: "/images/boudoir-27.jpg?v=3", alt: "Boise boudoir — fine-art low-key profile, sculpted curves emerging from deep shadow", span: "v" }, { src: "/images/boudoir-28.jpg?v=3", alt: "Boise boudoir — seated on the floor before sheer curtains, black lace and arched, head-back pose", span: "h" }, { src: "/images/boudoir-29.jpg?v=3", alt: "Boise boudoir — low-key side profile kneeling in black lace, arms raised, light grazing the silhouette", span: "v" }, { src: "/images/boudoir-30.jpg?v=3", alt: "Boise boudoir — overhead on white bedding in a teal lace bodysuit, soft waves and a gentle gaze", span: "v" }, { src: "/images/boudoir-31.jpg?v=3", alt: "Boise boudoir — black-and-white reclining pose on white bedding in a black bodysuit, backlit by sheer floor-to-ceiling curtains", span: "h" }, { src: "/images/boudoir-32.jpg?v=3", alt: "Boise boudoir — overhead view in black lace lingerie with sunlight and soft shadow stripes falling across the frame", span: "h" }, ]; const INITIAL = 12; const [visible, setVisible] = React.useState(INITIAL); const [lb, setLb] = React.useState(null); const shown = imgs.slice(0, visible); const allShown = visible >= imgs.length; const closeLb = () => setLb(null); const prev = () => setLb((n) => (n === null ? n : (n - 1 + imgs.length) % imgs.length)); const next = () => setLb((n) => (n === null ? n : (n + 1) % imgs.length)); React.useEffect(() => { if (lb === null) return; document.body.style.overflow = "hidden"; const onKey = (e) => { if (e.key === "Escape") closeLb(); else if (e.key === "ArrowLeft") prev(); else if (e.key === "ArrowRight") next(); }; window.addEventListener("keydown", onKey); return () => { window.removeEventListener("keydown", onKey); document.body.style.overflow = ""; }; }, [lb]); const cellStyle = { border: `1px solid ${BB_GOLD}`, overflow: "hidden", background: BB_INK, cursor: "pointer", }; const cellFor = (c) => c.span === "h" ? { ...cellStyle, gridColumn: "span 2", aspectRatio: "5/3" } : { ...cellStyle, aspectRatio: "4/5" }; return ( ); } // ---------- 6. WHAT'S INCLUDED ---------- function BbIncluded() { const items = [ { num: "01", title: "Professional hair and makeup", body: "With my in-studio team. Editorial-grade glam, designed for camera." }, { num: "02", title: "Full access to the client closet", body: "Lingerie, white shirts, sweaters, blazers, sheets. Sizes XS–6X. Everything washed between sessions." }, { num: "03", title: "Fully guided posing", body: "I walk you through every pose, every angle, every expression — start to finish. You're never wondering what to do." }, { num: "04", title: "Preparation emails", body: "Sent in the weeks before your session, so you arrive confident and ready." }, { num: "05", title: "Every image fully retouched", body: "Color and black-and-white delivered together. Editorial standard, every frame." }, { num: "06", title: "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." }, { num: "07", title: "An all-female team", body: "Every person you'll meet on the day of your session is a woman — myself, my hair and makeup artist, every member of the team. The photographer behind the camera is always me. The environment is always private, always held by women who do this work for women." }, ]; return (
Every Session Includes

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

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

{it.title}

{it.body}

))}
); } Object.assign(window, { BbGallery, BbIncluded });