// paintings-data.jsx — Atiye Farahani's catalog (real works).
// Each entry maps to a photo in /paintings. `palette` is kept only as a
// graceful fallback colour if an image ever fails to load.

const PAINTINGS = [
  // ——— Figures
  { id: 'figure-gold', title: 'Turning, in Gold',     series: 'Figures',    image: 'paintings/figure-gold.jpg',  palette: 'portrait-warm',  year: 2023, size: '50 × 70 cm', medium: 'Mixed media on canvas', price: 1450, available: true,  tags: ['Figures'], note: 'A shoulder, a turned head, and a whole afternoon of gold.' },
  { id: 'nude-blue',   title: 'Her Back, in Blue',    series: 'Figures',    image: 'paintings/nude-blue.jpg',    palette: 'figure-indigo',  year: 2023, size: '40 × 60 cm', medium: 'Acrylic on canvas',     price: 1280, available: true,  tags: ['Figures'], note: 'Palette knife, late at night.' },
  { id: 'verses',      title: 'Whispered Verses',     series: 'Figures',    image: 'paintings/verses.jpg',       palette: 'portrait-cool',  year: 2023, size: '50 × 60 cm', medium: 'Acrylic on canvas',     price: 1620, available: false, tags: ['Figures','Portraits'], note: 'Persian poetry, written into the skin.' },
  { id: 'seated',      title: 'Seated, Among Flowers',series: 'Figures',    image: 'paintings/seated.jpg',       palette: 'figure-rose',    year: 2023, size: '40 × 50 cm', medium: 'Acrylic on canvas',     price: 1350, available: true,  tags: ['Figures'], note: 'A quiet sitter against an old wallpaper.' },

  // ——— Florals
  { id: 'peonies',     title: 'Peonies, Breathing',   series: 'Florals',    image: 'paintings/peonies.jpg',      palette: 'floral-peach',   year: 2023, size: '30 × 30 cm', medium: 'Acrylic on canvas',     price: 720,  available: true,  tags: ['Florals'], note: 'Soft pink against a sea-green hush.' },
  { id: 'bloom-cloud', title: 'Drift of Blossoms',    series: 'Florals',    image: 'paintings/bloom-cloud.jpg',  palette: 'abstract-blush', year: 2023, size: '80 × 50 cm', medium: 'Oil on canvas',         price: 2100, available: true,  tags: ['Florals','Abstract'], note: 'The largest piece — flowers dissolving into weather.' },
  { id: 'hellebores',  title: 'Hellebores',           series: 'Florals',    image: 'paintings/hellebores.jpg',   palette: 'figure-rose',    year: 2023, size: '15 × 21 cm', medium: 'Watercolour on paper',  price: 320,  available: true,  tags: ['Florals'], note: 'A small watercolour study, framed in oak.' },

  // ——— Companions
  { id: 'nap',         title: 'Afternoon Nap',        series: 'Companions', image: 'paintings/nap.jpg',          palette: 'portrait-warm',  year: 2024, size: '40 × 30 cm', medium: 'Oil on canvas',         price: 980,  available: false, tags: ['Companions'], note: 'A cat, undone by the warmth of the sun.' },
  { id: 'little-grey', title: 'Little Grey',          series: 'Companions', image: 'paintings/little-grey.jpg',  palette: 'portrait-cool',  year: 2025, size: '30 × 40 cm', medium: 'Oil on canvas',         price: 860,  available: true,  tags: ['Companions'], note: 'First steps across the studio floor.' },
  { id: 'ponbeh',      title: 'Ponbeh',               series: 'Companions', image: 'paintings/ponbeh.jpg',       palette: 'still-pear',     year: 2023, size: '15 × 21 cm', medium: 'Ink & watercolour on paper', price: 280, available: true, tags: ['Companions'], note: '“Cotton,” in three confetti colours.' },

  // ——— Landscape
  { id: 'lake',        title: 'The Quiet Lake',       series: 'Landscape',  image: 'paintings/lake.jpg',         palette: 'portrait-cool',  year: 2023, size: '30 × 40 cm', medium: 'Oil on canvas',         price: 940,  available: true,  tags: ['Landscape'], note: 'Mist, a single tree, and very still water.' },
];

// PAINTINGS is the built-in fallback / seed used when Supabase isn't configured.
Object.assign(window, { PAINTINGS, DEFAULT_PAINTINGS: PAINTINGS });
