// data.jsx — portrait data only. Do NOT put components here. const WORKS = [ { id: 'w01', no: '01', img: 'images/IMG_20200810_175229841_Original.jpg', title: 'Solenne', titleIt: false, year: 2025, size: 'M', subject: 'One person', orientation: 'portrait', medium: 'Graphite, Paper', dim: '40 × 50 cm', lede: 'A quiet portrait, drawn from a single photograph.', notes: '' }, { id: 'w02', no: '02', img: 'images/20201001_143920_Original.jpg', title: 'Portrait II', titleIt: false, year: 2024, size: 'M', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '40 × 50 cm', lede: 'Pencil on paper, worked over six weeks.', notes: '' }, { id: 'w03', no: '03', img: 'images/20201204_131653-01_Original.jpg', title: 'Portrait III', titleIt: false, year: 2024, size: 'S', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '30 × 40 cm', lede: 'Petite format, high detail.', notes: '' }, { id: 'w04', no: '04', img: 'images/20201212_121710-01_Original.jpg', title: 'Portrait IV', titleIt: false, year: 2024, size: 'M', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '40 × 50 cm', lede: 'Standard commission, delivered rolled.', notes: '' }, { id: 'w05', no: '05', img: 'images/20201222_204241_Original.jpg', title: 'Portrait V', titleIt: false, year: 2023, size: 'L', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '60 × 80 cm', lede: 'Large atelier format.', notes: '' }, { id: 'w06', no: '06', img: 'images/20201223_170944_Original.jpg', title: 'Portrait VI', titleIt: false, year: 2023, size: 'M', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '40 × 50 cm', lede: 'Drawn from a family photograph.', notes: '' }, { id: 'w07', no: '07', img: 'images/20210327_174850_Original.jpg', title: 'Portrait VII', titleIt: false, year: 2023, size: 'S', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '30 × 40 cm', lede: 'A petite commission.', notes: '' }, { id: 'w08', no: '08', img: 'images/20210511_110034_Original.jpg', title: 'Portrait VIII', titleIt: false, year: 2024, size: 'M', subject: 'A couple', orientation: 'portrait', medium: 'Graphite on paper', dim: '40 × 50 cm', lede: 'Two figures, one drawing.', notes: '' }, { id: 'w09', no: '09', img: 'images/20210609_154947_Original.jpg', title: 'Portrait IX', titleIt: false, year: 2024, size: 'M', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '40 × 50 cm', lede: 'Standard commission.', notes: '' }, { id: 'w10', no: '10', img: 'images/20210625_180228_Original.jpg', title: 'Portrait X', titleIt: false, year: 2025, size: 'L', subject: 'A family or group', orientation: 'portrait', medium: 'Graphite on paper', dim: '60 × 80 cm', lede: 'Group portrait, large format.', notes: '' }, { id: 'w11', no: '11', img: 'images/IMG_20200810_182347_693_Original.jpg', title: 'Portrait XI', titleIt: false, year: 2025, size: 'M', subject: 'One person', orientation: 'portrait', medium: 'Graphite, Paper', dim: '40 × 50 cm', lede: 'Drawn from a single photograph.', notes: '' }, { id: 'w12', no: '12', img: 'images/IMG_20210610_221138_594_Original.jpg', title: 'Portrait XII', titleIt: false, year: 2025, size: 'S', subject: 'One person', orientation: 'portrait', medium: 'Graphite on paper', dim: '30 × 40 cm', lede: 'Petite format commission.', notes: '' }, ]; const TIERS = [ { key: 'S', name: 'Petite', price: 'from $', note: 'Small format · intimate scale', size: '30 × 40 cm', sittings: 'A single photograph', timeline: '4–6 weeks', includes: ['One graphite drawing', 'Progress photograph at halfway', 'Signed and rolled'], featured: false }, { key: 'M', name: 'Standard', price: 'from $', note: 'Most requested', size: '40 × 50 cm', sittings: 'One or two photographs', timeline: '6–10 weeks', includes: ['One graphite drawing', 'Two progress photographs', 'Signed and rolled', 'Certificate of authenticity'], featured: true }, { key: 'L', name: 'Atelier', price: 'from $', note: 'Large format · full detail', size: '60 × 80 cm', sittings: 'Multiple photographs', timeline: '10–14 weeks', includes: ['One large graphite drawing', 'Three progress photographs', 'Signed and archival-framed', 'Certificate of authenticity', 'Insured'], featured: false }, ]; const FILTERS = { subject: ['All', 'One person', 'A couple', 'A family or group'], size: ['All', 'S', 'M', 'L'], year: ['All', '2023', '2024', '2025'], }; window.WORKS = WORKS; window.TIERS = TIERS; window.FILTERS = FILTERS;