/* Painting palette helpers — each painting is rendered as a multi-stop
   gradient block tuned to its subject. Replaces real scans for now. */

const grads = {
  // Summer garden in bloom — peonies + sunflowers
  summerGarden: `radial-gradient(ellipse at 22% 70%, #F0A8B8 0%, transparent 35%),
                 radial-gradient(ellipse at 78% 30%, #F2CF7E 0%, transparent 40%),
                 radial-gradient(ellipse at 45% 88%, #BBC990 0%, transparent 45%),
                 radial-gradient(ellipse at 70% 75%, #E6BFA8 0%, transparent 40%),
                 linear-gradient(165deg, #F4E0D2 0%, #C9D3AE 100%)`,
  // Lake morning, mist
  lakeMorning: `radial-gradient(ellipse at 50% 18%, #F6E5C9 0%, transparent 45%),
                 radial-gradient(ellipse at 30% 45%, #BACFD8 0%, transparent 50%),
                 radial-gradient(ellipse at 75% 60%, #82A4B2 0%, transparent 55%),
                 linear-gradient(180deg, #DDE9EC 0%, #6F8EA0 75%, #4E6E80 100%)`,
  // Cottage in pines
  cottagePines: `radial-gradient(ellipse at 50% 75%, #C9A063 0%, transparent 30%),
                 radial-gradient(ellipse at 25% 30%, #A8B79A 0%, transparent 45%),
                 radial-gradient(ellipse at 75% 25%, #6F8268 0%, transparent 45%),
                 linear-gradient(180deg, #DDE6D6 0%, #6F8268 60%, #3E4F40 100%)`,
  // Peonies still life
  peonies: `radial-gradient(circle at 38% 42%, #F0A8B8 0%, transparent 20%),
            radial-gradient(circle at 60% 55%, #EBC8BD 0%, transparent 22%),
            radial-gradient(circle at 50% 38%, #FFE2D8 0%, transparent 18%),
            radial-gradient(ellipse at 50% 90%, #6F8268 0%, transparent 40%),
            linear-gradient(160deg, #F8E8E0 0%, #D9BBA8 100%)`,
  // Autumn maples
  autumnMaples: `radial-gradient(ellipse at 30% 35%, #E08A4E 0%, transparent 40%),
                 radial-gradient(ellipse at 70% 30%, #D9663B 0%, transparent 40%),
                 radial-gradient(ellipse at 45% 75%, #E5B048 0%, transparent 45%),
                 linear-gradient(180deg, #F6DDB8 0%, #B0552E 75%, #6E3520 100%)`,
  // Sunflower field
  sunflowers: `radial-gradient(circle at 25% 60%, #E5B048 0%, transparent 15%),
                radial-gradient(circle at 55% 45%, #F2CF7E 0%, transparent 18%),
                radial-gradient(circle at 78% 65%, #E5B048 0%, transparent 14%),
                radial-gradient(ellipse at 50% 90%, #6F8268 0%, transparent 40%),
                linear-gradient(180deg, #B8CFE3 0%, #C9D3AE 80%)`,
  // Winter birch
  winterBirch: `radial-gradient(ellipse at 50% 80%, #DDE6E8 0%, transparent 50%),
                linear-gradient(180deg, #F5EBDD 0%, #C8D3D6 60%, #8A99A2 100%)`,
  // Pink magnolia
  magnolia: `radial-gradient(circle at 40% 45%, #F2D4D0 0%, transparent 22%),
              radial-gradient(circle at 65% 38%, #EBC8BD 0%, transparent 20%),
              radial-gradient(ellipse at 30% 78%, #6F8268 0%, transparent 35%),
              linear-gradient(170deg, #DDE6E8 0%, #BFC3C8 100%)`,
  // Forest path
  forestPath: `radial-gradient(ellipse at 50% 90%, #E5B048 0%, transparent 30%),
               radial-gradient(ellipse at 20% 30%, #9DAE92 0%, transparent 45%),
               radial-gradient(ellipse at 80% 35%, #6F8268 0%, transparent 50%),
               linear-gradient(180deg, #F0E2C8 0%, #4E6244 100%)`,
  // Wildflower meadow
  wildflowers: `radial-gradient(circle at 30% 60%, #F0A8B8 0%, transparent 10%),
                 radial-gradient(circle at 50% 50%, #E5B048 0%, transparent 8%),
                 radial-gradient(circle at 70% 65%, #D89BBC 0%, transparent 10%),
                 radial-gradient(circle at 40% 70%, #FFFFFF 0%, transparent 6%),
                 linear-gradient(180deg, #BACFD8 0%, #9DAE92 65%, #6F8268 100%)`,
  // Lavender garden
  lavender: `radial-gradient(ellipse at 30% 70%, #B69DBE 0%, transparent 40%),
              radial-gradient(ellipse at 70% 65%, #D9A597 0%, transparent 35%),
              radial-gradient(ellipse at 50% 25%, #F2CF7E 0%, transparent 40%),
              linear-gradient(180deg, #F5EBDD 0%, #8E7BA0 100%)`,
  // Apple orchard
  orchard: `radial-gradient(circle at 30% 35%, #E8A8A0 0%, transparent 15%),
            radial-gradient(circle at 65% 45%, #F0B8A8 0%, transparent 16%),
            radial-gradient(circle at 50% 75%, #9DAE92 0%, transparent 35%),
            linear-gradient(180deg, #F6E5D6 0%, #A8B79A 70%, #6F8268 100%)`,
};

// PAINTINGS literal replaced by DEFAULT_PAINTINGS below.

const CATEGORIES = [
  { id: "all", label: "All Works" },
  { id: "landscape", label: "Landscape" },
  { id: "seascape", label: "Seascape" },
  { id: "still-life", label: "Still Life" },
  { id: "petite", label: "Petite" },
  { id: "random", label: "Random" },
];

const TESTIMONIALS = [
  {
    quote: "I bought 'Bouquet of Lilac' for our entryway and every guest stops. It feels like opening a window onto a garden in June — which is exactly what we wanted in February.",
    name: "Eleanor & Marcus W.",
    place: "Collector — Toronto, ON",
  },
  {
    quote: "Larissa's work brings a warmth into our home that I cannot describe. The paintings genuinely glow at different hours of the day. We now own three.",
    name: "Dr. Priya N.",
    place: "Private Collection — Vancouver, BC",
  },
  {
    quote: "The packaging alone tells you that you've bought from a real artist. A hand-signed card and even a small dried wildflower from the studio garden. It felt like a love letter.",
    name: "James A.",
    place: "Collector — Montréal, QC",
  },
];

/* ============== Live store (admin editable, Firestore-backed) ============== */
/* Painting state lives in Firestore. firebase-config.js subscribes to the
   collection and overwrites window.PAINTINGS whenever data changes, then
   dispatches "lf-paintings-updated". The DEFAULT_PAINTINGS array below acts
   as the initial render fallback (used while Firestore loads, or if the
   collection is empty). */

// Section tags — these tell the home page WHERE a painting appears, and the
// admin shows them as friendly badges ("Section 2 · Featured", etc).
const SECTIONS = [
  { id: "featured",           label: "Section 2 · Featured Works",           home: "Homepage · Featured (4 cards)",                accent: "var(--gold)" },
  { id: "nature-inspiration", label: "Section 3 · Landscapes & Nature",      home: "Homepage · Landscapes & Nature (4)",           accent: "var(--sage)" },
  { id: "studio-life",        label: "Section 4 · Florals & Still Life",     home: "Homepage · Florals & Still Life carousel (6)", accent: "var(--blush-deep)" },
  { id: "gallery",            label: "Section 5 · Gallery only",             home: "Gallery page only",                            accent: "var(--sky-deep)" },
];

function sectionMeta(id) {
  return SECTIONS.find((s) => s.id === id) || SECTIONS[SECTIONS.length - 1];
}
const DEFAULT_PAINTINGS = [
  {
    id: "p-new-day-will-come",
    title: "Darkness Will Not Cover The Light",
    year: 2025,
    category: "seascape",
    section: "featured",
    sectionOrder: 1,
    medium: "Oil on gallery stretched canvas, palette knife",
    dims: "20 × 16 in",
    price: 1250,
    shipping: 160,
    available: true,
    featured: true,
    short: "Sunrise breaking through storm clouds over open water — a quiet promise after a long night.",
    story: "Painted on the morning the rain stopped. The light cut through the cloud at exactly the angle that says: it will be a different day.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-new-day-will-come%2Fslot-0-1779166809380-k7vx70.jpg?alt=media&token=98744fda-e3c1-4c06-82a0-daaf72a178b3"],
    grad: grads.summerGarden,
  },
  {
    id: "p-autumn-reflection",
    title: "Autumn Reflection",
    year: 2014,
    category: "landscape",
    section: "featured",
    sectionOrder: 2,
    medium: "Oil on Acrylic, palette knife, stretched canvas, varnished, framed ",
    dims: "24 × 18 in",
    price: 1600,
    shipping: 160,
    available: true,
    featured: true,
    short: "A figure under a red umbrella walking through wet October leaves — the quiet of the city after rain.",
    story: "I started this one from a photograph taken on a wet Tuesday. The red of the umbrella against the gold of the leaves stayed with me for weeks before I picked up the brush.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-autumn-reflection%2Fslot-0-1779166810182-cnfkok.jpg?alt=media&token=dc2dfa1b-2d90-42d5-8100-f7feed5a79b3"],
    grad: grads.summerGarden,
  },
  {
    id: "p-bouquet-of-lilac",
    title: "Bouquet of Lilac",
    year: 2015,
    category: "still-life",
    section: "featured",
    sectionOrder: 3,
    medium: "Oil on stretched canvas, framed",
    dims: "24 × 20 in",
    price: 1204,
    shipping: 160,
    available: true,
    featured: true,
    short: "Heavy purple and white lilacs in a terracotta jug — late spring, when the studio smelled like every garden in the village.",
    story: "The lilacs lasted three days on the table. I painted as fast as I could, with the windows open, and finished the last petal just as they began to drop.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-bouquet-of-lilac%2Fslot-0-1779166810906-pbcsfi.jpg?alt=media&token=9890b016-68f1-436c-bec2-b0f823e58d15"],
    grad: grads.summerGarden,
  },
  {
    id: "p-winter-lace",
    title: "Winter Lace",
    year: 2013,
    category: "landscape",
    section: "featured",
    sectionOrder: 4,
    medium: "Acrylic on stretched canvas, framed",
    dims: "20 × 16 in",
    price: 1100,
    shipping: 160,
    available: true,
    featured: true,
    short: "A great snow-laden tree on a brilliant morning — the field still bright with last night's storm.",
    story: "There is a single morning each February when the snow holds to every branch and the sky goes that clear winter blue. I caught it before the wind came up.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-winter-lace%2Fslot-0-1779166811530-4dosvz.jpg?alt=media&token=dfb77205-8b02-42e0-bc32-12ae5058a0eb"],
    grad: grads.summerGarden,
  },
  {
    id: "p-lake-panorama",
    title: "Stillwater Mirror",
    year: 2026,
    category: "seascape",
    section: "nature-inspiration",
    sectionOrder: 3,
    medium: "Oil on gallery canvas",
    dims: "36 × 12 in",
    price: 1400,
    shipping: 160,
    available: true,
    featured: false,
    short: "A wide panorama of trees doubled in glass-flat water — the kind of morning the lake forgets to move.",
    story: "Some mornings the lake holds the sky so perfectly you can only paint half of what you see — the other half paints itself.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-lake-panorama%2Fslot-0-1779166813345-gc32zj.jpg?alt=media&token=819214fb-6abc-4b33-82bb-6a75cc5807d5"],
    grad: grads.summerGarden,
  },
  {
    id: "p-ocean-sunset-waves",
    title: "Flaming Sunset over The Sea",
    year: 2026,
    category: "seascape",
    section: "nature-inspiration",
    sectionOrder: 4,
    medium: "Oil on stretched canvas",
    dims: "50 × 40 sm",
    price: 960,
    shipping: 160,
    available: true,
    featured: false,
    short: "Sunset breaking over restless surf, gulls riding the last warm air of the day.",
    story: "Painted from memory after a walk on the beach in late October — the kind of evening when the colour of the sky belongs more to a furnace than to a sky.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-ocean-sunset-waves%2Fslot-0-1779166813851-w89y00.jpg?alt=media&token=165cdd4a-3d0b-4b4d-aacf-8ec23d198921"],
    grad: grads.summerGarden,
  },
  {
    id: "p-poppies",
    title: "Garden poppies",
    year: 2022,
    category: "still-life",
    section: "studio-life",
    sectionOrder: 1,
    medium: "Oil on board, palette knife painted, framed, mated ",
    dims: "14 × 11 in",
    price: 200,
    shipping: 160,
    available: true,
    featured: false,
    short: "Three vivid red poppies dancing against a sky-blue, palette-knifed ground.",
    story: "Poppies open and close their petals each day; you have to paint them like you mean it. I worked in one long sitting with a knife and no apologies.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-poppies%2Fslot-0-1779166814591-16ghzd.jpg?alt=media&token=f2b5cef3-bcb7-4c44-8303-ff17beb03f12"],
    grad: grads.summerGarden,
  },
  {
    id: "p-irises",
    title: "Two Irises",
    year: 2026,
    category: "petite",
    section: "studio-life",
    sectionOrder: 2,
    medium: "Oil on oval canvas, palette knife",
    dims: "12 × 9 in",
    price: 450,
    shipping: 320,
    available: true,
    featured: false,
    short: "Two royal-purple irises on a soft chartreuse ground — painted on a small oval canvas.",
    story: "I do not often paint on ovals, but these two flowers asked for one. Their leaves curl just the right way to follow the curve.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-irises%2Fslot-0-1779166815426-pylcdy.jpg?alt=media&token=df61f44c-80da-46c2-986e-8f8d13cb7280"],
    grad: grads.summerGarden,
  },
  {
    id: "p-yellow-tulips",
    title: "Yellow Tulips in a Ruby Vase",
    year: 2026,
    category: "still-life",
    section: "studio-life",
    sectionOrder: 3,
    medium: "Oil on stretched canvas, framed",
    dims: "16 × 12 in",
    price: 580,
    shipping: 160,
    available: true,
    featured: false,
    short: "Bright yellow tulips bursting from a deep red glass — spring on a quiet table.",
    story: "The vase was a gift years ago and I have painted from it a dozen times. The colour of yellow tulips with that ruby red is impossible to resist.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-yellow-tulips%2Fslot-0-1779166816124-nygfp4.jpg?alt=media&token=db3c05e5-5a83-4ba0-b9bc-4dda0c15a5c6"],
    grad: grads.summerGarden,
  },
  {
    id: "p-cornflowers-daisies",
    title: "Cornflowers and Daisies",
    year: 2026,
    category: "still-life",
    section: "studio-life",
    sectionOrder: 4,
    medium: "Oil on gallery canvas",
    dims: "40 × 30 sm",
    price: 640,
    shipping: 160,
    available: true,
    featured: false,
    short: "Field cornflowers and white daisies in a soft-blue pitcher with a draped linen napkin.",
    story: "These are the flowers that grew along the road at my grandmother's house. The painting is a small letter to that summer.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-cornflowers-daisies%2Fslot-0-1779166816765-24oiws.jpg?alt=media&token=9916ba40-af1d-45e7-b737-d4a0efef3608"],
    grad: grads.summerGarden,
  },
  {
    id: "p-pink-roses-still-life",
    title: "Pink Roses in a Green vase",
    year: 2016,
    category: "still-life",
    section: "studio-life",
    sectionOrder: 5,
    medium: "Oil on stretched canvas , framed ",
    dims: "20 × 16 in",
    price: 1350,
    shipping: 160,
    available: true,
    featured: false,
    short: "A green urn full of pink roses, with apples, pears, and grapes spilling onto the table.",
    story: "I spent two weeks on the set-up: the urn, the fruit, the way one rose leaned slightly. The painting moved faster than the arrangement.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-pink-roses-still-life%2Fslot-0-1779166817502-1hh13m.jpg?alt=media&token=82e53c1f-449f-42c4-a7c4-1d0eb7028ae3"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-abstract",
    title: "Abstract",
    year: 2018,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas",
    dims: "14 × 18 in",
    price: 650,
    shipping: 160,
    available: true,
    featured: false,
    short: "Pure shape and colour — an unscripted afternoon in the studio with no subject and no plan.",
    story: "Pure shape and colour — an unscripted afternoon in the studio with no subject and no plan.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-abstract%2Fslot-0-1779258264220-n31h55.jpg?alt=media&token=c7be8912-f840-4440-a2e4-5e172c658cd2"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-apples-and-grape",
    title: "Apples and Grape",
    year: 2018,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas, framed, matt varnished",
    dims: "20 × 16 in",
    price: 1250,
    shipping: 160,
    available: true,
    featured: false,
    short: "A classical still life — two apples and a cluster of grapes on a deep, velvet ground, varnished.",
    story: "A classical still life — two apples and a cluster of grapes on a deep, velvet ground, varnished.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-apples-and-grape%2Fslot-0-1779258267450-6anujk.jpg?alt=media&token=b26e1043-3110-41d0-a29c-623035f25682"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-aspen-sky",
    title: "Aspen Sky",
    year: 2016,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas, framed",
    dims: "30 × 24 in",
    price: 2100,
    shipping: 160,
    available: true,
    featured: false,
    short: "Autumn aspen branches against a great, moving sky over the field — painted from the path behind the studio.",
    story: "Autumn aspen branches against a great, moving sky over the field — painted from the path behind the studio.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-aspen-sky%2Fslot-0-1779259846536-8d4st3.jpg?alt=media&token=95d6dc02-4c16-4391-816e-770462f72cc0"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-autumn-in-simcoe-forest",
    title: "Autumn in Simcoe Forest",
    year: 2018,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas · framed · varnished",
    dims: "14 × 18 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "An October walk through Simcoe Forest — yellow and amber as far as the eye can see.",
    story: "An October walk through Simcoe Forest — yellow and amber as far as the eye can see.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-autumn-in-simcoe-forest%2Fslot-0-1779259848497-wep760.jpg?alt=media&token=96b5e47b-592b-487e-a295-f5052b1000ad"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-between-shades-of-gray",
    title: "Between Shades of Gray",
    year: 2018,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed · varnished",
    dims: "22 × 18 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A textured, contemplative piece in many small shades of grey — paper, paint, and patience.",
    story: "A textured, contemplative piece in many small shades of grey — paper, paint, and patience.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-between-shades-of-gray%2Fslot-0-1779258268513-cyt9su.jpg?alt=media&token=eb088440-99e1-4a22-b0a3-9cd2d080f1cf"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-birches",
    title: "Birches",
    year: 2018,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas, palette knife",
    dims: "12 × 24 in",
    price: 655,
    shipping: 160,
    available: true,
    featured: false,
    short: "A stand of slender birches on a windy autumn day — painted with the knife, no apologies.",
    story: "A stand of slender birches on a windy autumn day — painted with the knife, no apologies.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-birches%2Fslot-0-1779258269209-gk1juv.jpg?alt=media&token=3878e4f4-a2e3-4638-a368-12b0ccdf1ba5"],
    grad: grads.summerGarden,
  },
  {
    id: "p-birch-forest",
    title: "Birches at the Edge",
    year: 2026,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on canvas board, framed",
    dims: "16 × 12 in",
    price: 600,
    shipping: 160,
    available: true,
    featured: false,
    short: "Three white birches catching late-October sun, framed by yellowing maple leaves.",
    story: "Painted from a walk on the road behind the studio — birches are family by now.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-birch-forest%2Fslot-0-1779166828097-svg50h.jpg?alt=media&token=5433e204-a19e-48a7-861f-edc239fa16fe"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-breath-of-autumn",
    title: "Breath of Autumn",
    year: 2018,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil over acrylic on stretched canvas · framed",
    dims: "20 × 16 in",
    price: 1050,
    shipping: 160,
    available: true,
    featured: false,
    short: "One lone oak against a moving October sky — wind in every branch.",
    story: "One lone oak against a moving October sky — wind in every branch.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-breath-of-autumn%2Fslot-0-1779258269830-0jzkne.jpg?alt=media&token=50a79da7-ef29-42f4-a5eb-b5bdbea5652a"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-bullfinches-on-the-rowan",
    title: "Bullfinches on the rowan",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas",
    dims: "20 × 16 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "Two bullfinches on a snowy rowan branch — bright fire against a quiet winter morning.",
    story: "Two bullfinches on a snowy rowan branch — bright fire against a quiet winter morning.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-bullfinches-on-the-rowan%2Fslot-0-1779258270368-ppmoyx.jpg?alt=media&token=808cdec1-b1bc-4f08-8dc3-aaf5b12b5b94"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-bunch-of-lilac",
    title: "Bunch of Lilac",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas",
    dims: "16 × 12 in",
    price: 680,
    shipping: 160,
    available: true,
    featured: false,
    short: "Heavy purple lilac in a clay jug on a dark table — a love letter to the spring garden.",
    story: "Heavy purple lilac in a clay jug on a dark table — a love letter to the spring garden.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-bunch-of-lilac%2Fslot-0-1779258271111-oi5zb4.jpg?alt=media&token=8afa78bd-89c4-4888-bb01-dc5b8ddc7538"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-burgundy-peonies-on-teal",
    title: "Burgundy Peonies on Teal",
    year: 2016,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas (palette knife) (daily painting)",
    dims: "8 × 10 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "Dark burgundy peonies in a small white pitcher against a saturated teal background — palette knife.",
    story: "Dark burgundy peonies in a small white pitcher against a saturated teal background — palette knife.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-burgundy-peonies-on-teal%2Fslot-0-1779259850017-kj6qdd.jpg?alt=media&token=58784999-fa5d-4d74-b83b-83a71b23c7a6"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-marigolds-in-a-blue-vase",
    title: "Calendula in a Blue Vase",
    year: 2016,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas (daily painting)",
    dims: "8 × 10 in",
    price: 220,
    shipping: 160,
    available: true,
    featured: false,
    short: "Bright orange marigolds in a turquoise glaze vase on a dark table — autumn light bottled.",
    story: "Bright orange marigolds in a turquoise glaze vase on a dark table — autumn light bottled.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-marigolds-in-a-blue-vase%2Fslot-0-1779259853902-gctvju.jpg?alt=media&token=eac2a543-b89b-4f93-aa8a-4b3615b1b405"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-chapel-of-st-olga-pskow",
    title: "Chapel of St. Olga, Pskow",
    year: 2014,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "9 × 12 in",
    price: 380,
    shipping: 160,
    available: true,
    featured: false,
    short: "A small wooden chapel near Pskow with a winter sky behind it — painted from a photograph brought back from a winter trip.",
    story: "A small wooden chapel near Pskow with a winter sky behind it — painted from a photograph brought back from a winter trip.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-chapel-of-st-olga-pskow%2Fslot-0-1779258271908-evttq2.jpg?alt=media&token=4248e97c-e473-403a-8cf0-6fa3cd7eecaa"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-cherry-blossom",
    title: "Cherry blossom",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "12 × 16 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "Pink cherry blossoms close enough to touch — the first true sign of spring, painted from cuttings on the studio table.",
    story: "Pink cherry blossoms close enough to touch — the first true sign of spring, painted from cuttings on the studio table.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-cherry-blossom%2Fslot-0-1779258285560-p2ctf8.jpg?alt=media&token=aaa38d01-a99d-4f41-9cf2-b32e9e69475a"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-colour-bouquet",
    title: "Colour Bouquet",
    year: 2018,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas (palette knife) · framed",
    dims: "16 × 20 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A wild, palette-knifed bouquet of mixed flowers — painted fast and loose, in pure colour.",
    story: "A wild, palette-knifed bouquet of mixed flowers — painted fast and loose, in pure colour.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-colour-bouquet%2Fslot-0-1779258286131-688vlz.jpg?alt=media&token=dc3e718c-0237-4ced-b288-a68245055755"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-cornflowers-on-the-steps",
    title: "Cornflowers on the steps",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "18 × 14 in",
    price: 850,
    shipping: 160,
    available: true,
    featured: false,
    short: "An armful of wild blue cornflowers laid out on old wooden steps in late summer.",
    story: "An armful of wild blue cornflowers laid out on old wooden steps in late summer.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-cornflowers-on-the-steps%2Fslot-0-1779258272619-bf9co1.jpg?alt=media&token=c977edeb-ba92-4157-87b2-c013b2b62f02"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-crocuses-in-march",
    title: "Crocuses in March",
    year: 2016,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas, mix media",
    dims: "18 × 14 in",
    price: 480,
    shipping: 160,
    available: true,
    featured: false,
    short: "A second look at the crocuses, painted a week after the first — still cold, still bright.",
    story: "A second look at the crocuses, painted a week after the first — still cold, still bright.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-crocuses-in-march%2Fslot-0-1779259850641-cuiz9c.jpg?alt=media&token=cbfe075a-de41-4d1a-a790-cebc1a8a0a8c"],
    grad: grads.summerGarden,
  },
  {
    id: "p-cikoriy",
    title: "Daisies and Wild Chicory",
    year: 2026,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on gallery canvas, varnished",
    dims: "40 × 30 sm",
    price: 750,
    shipping: 160,
    available: true,
    featured: false,
    short: "Field daisies and pale-blue chicory in a soft white pitcher — a meadow brought indoors.",
    story: "Picked on the way back from the post box, painted before they could droop. The chicory closed up by the next morning anyway.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-cikoriy%2Fslot-0-1779166829480-japfwr.jpg?alt=media&token=32a1a024-5ce1-4e06-91cd-ae8dbc35a15f"],
    grad: grads.summerGarden,
  },
  {
    id: "p-dandelions",
    title: "Dandelions",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on oval canvas, palette knife",
    dims: "12 × 9 in",
    price: 450,
    shipping: 160,
    available: true,
    featured: false,
    short: "A handful of bright yellow dandelions on a small oval — the first stubborn flowers of spring.",
    story: "Painted while sitting in the grass. Dandelions are the most underrated yellow in the world.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-dandelions%2Fslot-0-1779166830081-drfehe.jpg?alt=media&token=ca71b10e-ff7f-4686-b30e-07390e044140"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-first-crocuses",
    title: "First Crocuses",
    year: 2016,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas",
    dims: "16 × 12 in",
    price: 686,
    shipping: 160,
    available: true,
    featured: false,
    short: "The first purple crocuses pushing through the snow — a small, hopeful spring.",
    story: "The first purple crocuses pushing through the snow — a small, hopeful spring.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-first-crocuses%2Fslot-0-1779259851220-5jojo0.jpg?alt=media&token=f6483008-1931-4329-bea0-22d9df04f4c7"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-first-frost",
    title: "First frost",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "12 × 16 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "The first frost on a rolling field, with the long shadows of the morning.",
    story: "The first frost on a rolling field, with the long shadows of the morning.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-first-frost%2Fslot-0-1779258273402-2jyhg8.jpg?alt=media&token=fe5b1ef3-d245-435c-8bfd-694f7fb72dd2"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-floral-teers",
    title: "Floral Teers",
    year: 2014,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on gallery canvas · varnished",
    dims: "10 × 10 in",
    price: 380,
    shipping: 160,
    available: true,
    featured: false,
    short: "Small white flowers with long leaves against a coral wall — a quiet, varnished panel.",
    story: "Small white flowers with long leaves against a coral wall — a quiet, varnished panel.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-floral-teers%2Fslot-0-1779259851836-9mflfo.jpg?alt=media&token=67fbdfdd-b95f-4d0c-b5fe-713a7bef5fbe"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-forgotten-boat",
    title: "Forgotten boat",
    year: 2014,
    category: "seascape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "12 × 16 in",
    price: 1,
    shipping: 160,
    available: false,
    featured: false,
    short: "An old wooden boat left to the reeds, with stormy clouds rolling in across a wide lake.",
    story: "An old wooden boat left to the reeds, with stormy clouds rolling in across a wide lake.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-forgotten-boat%2Fslot-0-1779258286631-ooh9ye.jpg?alt=media&token=77fef605-1e8c-4f76-a9b2-107c1171192f"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-fortress",
    title: "Fortress",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed",
    dims: "11 × 14 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "An old fortress wall above a quiet river — a study in stone, water, and quiet light.",
    story: "An old fortress wall above a quiet river — a study in stone, water, and quiet light.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-fortress%2Fslot-0-1779258274006-txctbj.jpg?alt=media&token=57920af9-a452-4a71-a5fc-d78e2afce948"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-four-season",
    title: "Four Season",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas, varnished",
    dims: "4x (7 × 14) in ",
    price: 998,
    shipping: 160,
    available: true,
    featured: false,
    short: "Four small canvases for the four seasons — painted as a set, kept as one.",
    story: "Four small canvases for the four seasons — painted as a set, kept as one.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-four-season%2Fslot-0-1779259852511-cwd4ti.jpg?alt=media&token=9c149229-e09d-4355-845a-c8ee2fad2e7d"],
    grad: grads.summerGarden,
  },
  {
    id: "p-fruit-in-bowl",
    title: "Fruits in a Blue Bowl",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas, framed, varnished",
    dims: "6 × 6 in",
    price: 165,
    shipping: 160,
    available: true,
    featured: false,
    short: "Strawberries, apricots and green grapes piled in a small blue-rimmed bowl — a quiet gem.",
    story: "Painted on a miniature canvas with a single small brush. The simplest things are usually the hardest.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-fruit-in-bowl%2Fslot-0-1779166828955-f6g43t.jpg?alt=media&token=3333e908-4794-405f-822e-49f4668062df"],
    grad: grads.summerGarden,
  },
  {
    id: "p-giant-cherry",
    title: "Giant Cherry",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on canvas board, framed",
    dims: "8 ×6 in",
    price: 165,
    shipping: 160,
    available: true,
    featured: false,
    short: "A silver goblet brimming with dark cherries, one escapee resting on the table.",
    story: "Cherries last about two days as a still life. The painting takes three. The trick is to start with the ones you don't plan to eat.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-giant-cherry%2Fslot-0-1779166820114-7v8w39.jpg?alt=media&token=c1099741-dd4d-4967-8684-3e94f61650da"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-golden-patch",
    title: "Golden Patch",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "12 × 16 in",
    price: 0,
    shipping: 160,
    available: true,
    featured: false,
    short: "A small golden patch of wheat under a moving sky — a study in late summer light.",
    story: "A small golden patch of wheat under a moving sky — a study in late summer light.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-golden-patch%2Fslot-0-1779259853165-3nj12a.jpg?alt=media&token=93ce6436-5179-4c6b-9afd-fd7210c6d811"],
    grad: grads.summerGarden,
  },
  {
    id: "p-harvest-table",
    title: "Harvest from the Garden",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on canvas board",
    dims: "12 × 9 in",
    price: 200,
    shipping: 160,
    available: true,
    featured: false,
    short: "Butternut squash, an eggplant, parsley, radishes and green onion — what came up that week.",
    story: "A still life built straight from the September harvest basket. I painted it the same day I picked it.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-harvest-table%2Fslot-0-1779166827267-3teagt.jpg?alt=media&token=26f5a90d-1642-49aa-9950-8d4529e5baef"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-journey-to-the-planet-of-happiness",
    title: "Journey to the planet of happiness",
    year: 2018,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on MDF board",
    dims: "16 × 16 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A small dream of a far-away place — a story painting, half landscape, half wish.",
    story: "A small dream of a far-away place — a story painting, half landscape, half wish.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-journey-to-the-planet-of-happiness%2Fslot-0-1779258287255-c4is8r.jpg?alt=media&token=6fa5c99b-38af-46d8-804b-1b71ed66d0a4"],
    grad: grads.summerGarden,
  },
  {
    id: "p-lemonade",
    title: "Lemonade",
    year: 2025,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas",
    dims: "20 × 10 in",
    price: 420,
    shipping: 160,
    available: true,
    featured: false,
    short: "A tall glass of lemonade with three lemons, painted with a knife in a single afternoon.",
    story: "Summer kitchen, knife only, no brushes, no thinking about it. Sometimes the painting is the antidote to the painting.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-lemonade%2Fslot-0-1779166821615-sx0tmc.jpg?alt=media&token=be4ed324-ed06-4666-b933-0eb848457639"],
    grad: grads.summerGarden,
  },
  {
    id: "p-lilies-of-valley",
    title: "Lilies of the Valley",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas, framed",
    dims: "6 × 6 in",
    price: 165,
    shipping: 160,
    available: true,
    featured: false,
    short: "Lily of the valley in a small copper vase — a miniature of the first true spring flower.",
    story: "A tiny painting for a tiny flower. I bring the lilies in for one day each May and they sit on the corner of the desk while I work.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-lilies-of-valley%2Fslot-0-1779166832161-ypspff.jpg?alt=media&token=f2fba089-de83-4ab1-a9db-429cf08b7805"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-magnolia-tree",
    title: "Magnolia tree",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "16 × 20 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A magnolia in full bloom — every branch heavy with pale pink — painted just before the petals fell.",
    story: "A magnolia in full bloom — every branch heavy with pale pink — painted just before the petals fell.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-magnolia-tree%2Fslot-0-1779259867843-lohb1j.jpg?alt=media&token=2b8d6194-b8d3-44da-a4fa-e4ef653f2828"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-mountain-river",
    title: "Mountain River",
    year: 2018,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas · framed",
    dims: "12 × 12 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "A clear mountain river cutting through pine — painted in oils, on stretched canvas.",
    story: "A clear mountain river cutting through pine — painted in oils, on stretched canvas.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-mountain-river%2Fslot-0-1779258275044-f0jupi.jpg?alt=media&token=95853fc7-05ce-4e8c-893b-f72238eaf889"],
    grad: grads.summerGarden,
  },
  {
    id: "p-nasturtiums",
    title: "Nasturtiums in a Blue Jug",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on canvas",
    dims: "12 × 12 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A tangle of orange nasturtiums spilling from a cobalt jug — the colour pair that started a whole summer of paintings.",
    story: "Sold to a collector in Toronto. I let myself keep a photo of it, and a sketch of the jug.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-nasturtiums%2Fslot-0-1779166832694-mn6z7h.jpg?alt=media&token=4abc9e2c-11dc-491a-b83a-9087f857a47c"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-old-tree",
    title: "Old Tree",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "14 × 18 in",
    price: 850,
    shipping: 160,
    available: true,
    featured: false,
    short: "An old gnarled tree by the water — the kind you stop and look at twice on a long walk.",
    story: "An old gnarled tree by the water — the kind you stop and look at twice on a long walk.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-old-tree%2Fslot-0-1779258275701-a69e0z.jpg?alt=media&token=56b0944d-0b77-4e22-84a3-c4e282472e4c"],
    grad: grads.summerGarden,
  },
  {
    id: "p-onions-still-life",
    title: "Onions, Three Ways",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on canvas board",
    dims: "8 × 6 in",
    price: 170,
    shipping: 160,
    available: true,
    featured: false,
    short: "A yellow onion, a white onion, and two red shallots on a dim, painterly ground.",
    story: "Onions teach you to paint shadow. These three sat on the chopping board for a week, refusing to be dinner until the painting was done.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-onions-still-life%2Fslot-0-1779166826561-sfcxhb.jpg?alt=media&token=8592e379-0e38-4dc1-87af-54b86834a428"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-outgoing-sun",
    title: "Outgoing Sun",
    year: 2014,
    category: "seascape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas",
    dims: "12 × 24 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A figure walking out toward the last orange light at the edge of the water.",
    story: "A figure walking out toward the last orange light at the edge of the water.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-outgoing-sun%2Fslot-0-1779259868571-nryvxw.jpg?alt=media&token=18858dfe-92b0-4789-bd32-f5e5dc2ebe6a"],
    grad: grads.summerGarden,
  },
  {
    id: "p-persimmons",
    title: "Persimmons o Linen",
    year: 2026,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas",
    dims: "14 × 11 in",
    price: 680,
    shipping: 160,
    available: true,
    featured: false,
    short: "Seven persimmons resting on a softly draped white linen — the colour of late autumn.",
    story: "Persimmons hold the year's last warm orange. I bought too many; the leftover four made dinner.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-persimmons%2Fslot-0-1779166825365-7d3efc.jpg?alt=media&token=03cb1ba1-20ae-4098-88bb-915143f65d56"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-pink-peonies-in-a-white-vase",
    title: "Pink Peonies in a White Vase",
    year: 2016,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas · framed",
    dims: "14 × 18 in",
    price: 752,
    shipping: 160,
    available: true,
    featured: false,
    short: "Pink peonies brimming over a small white vase, on a quilted blue cloth — late spring at home.",
    story: "Pink peonies brimming over a small white vase, on a quilted blue cloth — late spring at home.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-pink-peonies-in-a-white-vase%2Fslot-0-1779259855324-0dz7jd.jpg?alt=media&token=240dc4a7-4007-433a-944a-22915b35e5de"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-rose-on-a-blue",
    title: "Pink Rose",
    year: 2018,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas (Flemish technique) · framed · varnished",
    dims: "10 × 10 in",
    price: 480,
    shipping: 160,
    available: true,
    featured: false,
    short: "A single pink rose floating on a deep cobalt blue — Old Master glazing, in miniature.",
    story: "A single pink rose floating on a deep cobalt blue — Old Master glazing, in miniature.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-rose-on-a-blue%2Fslot-0-1779258277667-fw9bxf.jpg?alt=media&token=76b22806-613a-483b-9f87-da935b519b35"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-poppies-field",
    title: "Poppies field",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed",
    dims: "16 × 20 in",
    price: 950,
    shipping: 160,
    available: true,
    featured: false,
    short: "A wide poppy field stretching out to a single tree on the horizon — the colour of high summer.",
    story: "A wide poppy field stretching out to a single tree on the horizon — the colour of high summer.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-poppies-field%2Fslot-0-1779259856592-sps92s.jpg?alt=media&token=fe04e5aa-65fe-4fa4-ad47-049bc032ceba"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-poppies-on-cornflowers-field",
    title: "Poppies on Cornflowers Field",
    year: 2018,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas · framed · varnished",
    dims: "14 × 11 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "Wild red poppies dancing through a sea of blue cornflowers — a roadside summer painting.",
    story: "Wild red poppies dancing through a sea of blue cornflowers — a roadside summer painting.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-poppies-on-cornflowers-field%2Fslot-0-1779258276346-gm4zdr.jpg?alt=media&token=52fa6268-42da-44d1-b639-1b10ab001f89"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-poppies-on-the-stones",
    title: "Poppies on the Stones",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on gallery canvas · framed",
    dims: "12 × 16 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "Red poppies between grey stones — vivid colour against quiet weight.",
    story: "Red poppies between grey stones — vivid colour against quiet weight.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-poppies-on-the-stones%2Fslot-0-1779259869709-8zpu81.jpg?alt=media&token=2e96a274-9070-442f-a3fc-d3b3b92f32ad"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-pskow-chapel-of-st-olga",
    title: "Pskow, Chapel of St. Olga",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed",
    dims: "11 × 14 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "A second look at the chapel of St. Olga, this time with the snow falling gently around it.",
    story: "A second look at the chapel of St. Olga, this time with the snow falling gently around it.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-pskow-chapel-of-st-olga%2Fslot-0-1779258277067-7a4ak3.jpg?alt=media&token=9008e461-d06c-450f-b8ef-1627bbd3d3ca"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-purpul-flowers",
    title: "Purple flowers",
    year: 2014,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board",
    dims: "9 × 12 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "Deep purple flowers with leaning green leaves in a tall white vase — a small, quiet still life.",
    story: "Deep purple flowers with leaning green leaves in a tall white vase — a small, quiet still life.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-purpul-flowers%2Fslot-0-1779258287895-7putwu.jpg?alt=media&token=c01bef3a-6eb0-4e52-a39f-0c0d8a92f8ae"],
    grad: grads.summerGarden,
  },
  {
    id: "p-red-currants",
    title: "Red Currants in a Silver Bowl",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas, varnished",
    dims: "6 × 6 in",
    price: 165,
    shipping: 160,
    available: true,
    featured: false,
    short: "Glossy red currants spilling from a footed silver bowl onto a pale table.",
    story: "Painted from a bowlful brought in from the garden, before they could be made into jelly.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-red-currants%2Fslot-0-1779166822983-ouz933.jpg?alt=media&token=c555b513-3dc1-4e74-bbd7-d53ddfd2b56e"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-red-rose-on-black",
    title: "Red Rose on Black",
    year: 2016,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas, framed, varnished",
    dims: "8 × 10 in",
    price: 220,
    shipping: 160,
    available: true,
    featured: false,
    short: "A single red rose floating on a deep black ground — painted in oils, very quiet.",
    story: "A single red rose floating on a deep black ground — painted in oils, very quiet.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-red-rose-on-black%2Fslot-0-1779259857360-jiukn9.jpg?alt=media&token=ab879e54-4f82-4ddf-b58f-b8a2c28a8341"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-rowan-berries",
    title: "Rowan Berries",
    year: 2016,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas",
    dims: "24 × 18 in",
    price: 1250,
    shipping: 160,
    available: true,
    featured: false,
    short: "A heavy cluster of orange rowan berries hanging over a soft teal ground.",
    story: "A heavy cluster of orange rowan berries hanging over a soft teal ground.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-rowan-berries%2Fslot-0-1779259858537-u4184d.jpg?alt=media&token=a6506f96-3713-49cb-b1d3-b3896d22d2f6"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-seagull-at-the-rocks",
    title: "Seagull at the Rocks",
    year: 2016,
    category: "seascape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas",
    dims: "24 × 30 in",
    price: 1100,
    shipping: 160,
    available: true,
    featured: false,
    short: "A gull resting on a rock at the lake's edge, with a distant sailboat and a quiet morning sky.",
    story: "A gull resting on a rock at the lake's edge, with a distant sailboat and a quiet morning sky.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-seagull-at-the-rocks%2Fslot-0-1779259859769-upr16v.jpg?alt=media&token=ec86a772-6005-46f6-a678-e48d7e4f93ca"],
    grad: grads.summerGarden,
  },
  {
    id: "p-red-rose-black",
    title: "Single Red Rose",
    year: 2016,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on canvas",
    dims: "11 × 14 in",
    price: 440,
    shipping: 160,
    available: true,
    featured: false,
    short: "One opening red rose against a quiet velvet-black ground.",
    story: "I painted this rose late one evening with one small light. The black behind it is twelve thin layers of oil.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-red-rose-black%2Fslot-0-1779166831643-9ijgk1.jpg?alt=media&token=e382801a-5f29-40a4-9c51-c1e8dd987bd3"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-spinney",
    title: "Spinney",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas",
    dims: "40 × 40 sm",
    price: 650,
    shipping: 160,
    available: true,
    featured: false,
    short: "A tangle of birch and pine in a small spinney — wet bark, blue shadow, layered greens.",
    story: "A tangle of birch and pine in a small spinney — wet bark, blue shadow, layered greens.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-spinney%2Fslot-0-1779258278218-bqo91q.jpg?alt=media&token=f04b0ed3-e2ac-46e8-b465-d69684e912ee"],
    grad: grads.summerGarden,
  },
  {
    id: "p-melon-and-onions",
    title: "Squash and  Turnip",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on canvas board",
    dims: "12 × 9 in",
    price: 280,
    shipping: 160,
    available: true,
    featured: false,
    short: "A long yellow melon, two purple onions, a striped cup, and an old blue-and-white plate.",
    story: "A modest, slow still life arranged from whatever was on the kitchen shelf that morning.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-melon-and-onions%2Fslot-0-1779166824635-mp0ioh.jpg?alt=media&token=41fad158-ad62-48e6-914b-0ec35599f397"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-street-cafe-in-quebec",
    title: "Street cafe in Quebec",
    year: 2018,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed",
    dims: "11 × 14 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "A narrow Quebec City lane on a sunny afternoon, painted from a small sketch made on the spot.",
    story: "A narrow Quebec City lane on a sunny afternoon, painted from a small sketch made on the spot.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-street-cafe-in-quebec%2Fslot-0-1779258279061-406mem.jpg?alt=media&token=1e1efffd-1239-49f5-9054-1fcfd2851000"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-summer-day",
    title: "Summer Day",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas",
    dims: "12 × 16 in",
    price: 1,
    shipping: 160,
    available: false,
    featured: false,
    short: "A summer butterfly on a tall thistle in the back garden — a single afternoon's painting.",
    story: "A summer butterfly on a tall thistle in the back garden — a single afternoon's painting.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-summer-day%2Fslot-0-1779259870370-60vfjm.jpg?alt=media&token=ed04f606-d349-4efa-a8a0-1ba752bc3384"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-sunflowers-at-sunset",
    title: "Sunflowers at sunset",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas",
    dims: "16 × 20 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A whole field of sunflowers turning their faces to a low evening sun — bold, joyful, late summer.",
    story: "A whole field of sunflowers turning their faces to a low evening sun — bold, joyful, late summer.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-sunflowers-at-sunset%2Fslot-0-1779258289188-f48x6o.jpg?alt=media&token=9abf59e8-9466-498a-bf8b-296b166dcaac"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-sunset-over-a-field",
    title: "Sunset over a field",
    year: 2014,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed",
    dims: "12 × 16 in",
    price: 680,
    shipping: 160,
    available: true,
    featured: false,
    short: "The last warm light moving across a flat country field — a landscape painted entirely from memory.",
    story: "The last warm light moving across a flat country field — a landscape painted entirely from memory.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-sunset-over-a-field%2Fslot-0-1779258280095-dsq3uu.jpg?alt=media&token=25aa3f67-b0f1-4b96-8f6c-227ab0e7b22e"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-sunset-sail",
    title: "Sunset Sail",
    year: 2016,
    category: "seascape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas (palette knife) · framed",
    dims: "11 × 14 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "A small ship sailing into a palette-knife sunset — a postcard from a slower century.",
    story: "A small ship sailing into a palette-knife sunset — a postcard from a slower century.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-sunset-sail%2Fslot-0-1779259860371-u958bf.jpg?alt=media&token=7a42c650-cdc3-45cd-a2b8-893cf1441af6"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-swan",
    title: "Swan",
    year: 2018,
    category: "seascape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board  · varnished",
    dims: "18 × 22 in",
    price: 1150,
    shipping: 160,
    available: true,
    featured: false,
    short: "A white swan on dark water — seven careful layers of paint, varnished to a quiet sheen.",
    story: "A white swan on dark water — seven careful layers of paint, varnished to a quiet sheen.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-swan%2Fslot-0-1779258280740-bw68ly.jpg?alt=media&token=34832bf3-f8d9-40e8-a8fb-35e0e016c84c"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-tea-rose",
    title: "Tea Rose",
    year: 2018,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas (Flemish technique) · framed · varnished",
    dims: "11 × 14 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "One pale tea rose in the old Flemish manner — many thin glazes, varnished to a soft glow.",
    story: "One pale tea rose in the old Flemish manner — many thin glazes, varnished to a soft glow.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-tea-rose%2Fslot-0-1779258281325-p689rk.jpg?alt=media&token=2cfa5b0e-9460-4183-b76b-2bf0e28394ab"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-the-light",
    title: "The Light",
    year: 2018,
    category: "seascape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas, varnished",
    dims: "12 × 16 in",
    price: 675,
    shipping: 160,
    available: true,
    featured: false,
    short: "The first warm light over a Highlands morning lake — painted from the dock, in one sitting.",
    story: "The first warm light over a Highlands morning lake — painted from the dock, in one sitting.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-the-light%2Fslot-0-1779258281895-8qqufx.jpg?alt=media&token=1a28c37f-0740-489b-bd7f-159fb9989c20"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-three-pink-peonies",
    title: "Three Pink Peonies",
    year: 2016,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas",
    dims: "8 × 10 in",
    price: 220,
    shipping: 160,
    available: true,
    featured: false,
    short: "Three open pink peonies, close enough to see every petal — painted in one long sitting.",
    story: "Three open pink peonies, close enough to see every petal — painted in one long sitting.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-three-pink-peonies%2Fslot-0-1779259861028-73gd96.jpg?alt=media&token=2390c3ef-6509-46e0-a4a5-7ac46f6ebfee"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-three-poppy",
    title: "Three Poppy",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed",
    dims: "11 × 14 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "Three red poppies leaning in their own directions — a small group portrait.",
    story: "Three red poppies leaning in their own directions — a small group portrait.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-three-poppy%2Fslot-0-1779259861630-qzibcp.jpg?alt=media&token=0c800362-81d8-482d-82d8-3f6eff1fa09e"],
    grad: grads.summerGarden,
  },
  {
    id: "p-abstract-blue-gold",
    title: "Tide & Gilt (Diptych)",
    year: 2026,
    category: "seascape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic and gold leaf on two gallery canvases",
    dims: "two panels, 24 × 30 in each",
    price: 2400,
    shipping: 160,
    available: true,
    featured: false,
    short: "Two large panels — flowing indigo currents broken by sheets of warm gold leaf.",
    story: "A change of pace — no subject, only colour and weight. The gold went down last and I worked around it for days.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-abstract-blue-gold%2Fslot-0-1779166833411-tbvcpa.jpg?alt=media&token=0b7840b3-0245-4b90-807a-505751a1b36f"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-two-maple-leaves",
    title: "Two Maple Leaves",
    year: 2016,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas board · framed",
    dims: "20 × 16 in",
    price: 680,
    shipping: 160,
    available: true,
    featured: false,
    short: "Two big maple leaves — yellow and red — on a deep textured blue. Autumn falling slowly.",
    story: "Two big maple leaves — yellow and red — on a deep textured blue. Autumn falling slowly.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-two-maple-leaves%2Fslot-0-1779259864546-e7eyv4.jpg?alt=media&token=ae5df275-b515-44a0-8267-0e62d436c334"],
    grad: grads.summerGarden,
  },
  {
    id: "p-two-tomatoes",
    title: "Two Tomatoes",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas with stand",
    dims: "5 × 7 in",
    price: 180,
    shipping: 160,
    available: true,
    featured: false,
    short: "A tiny canvas — two ripe tomatoes on a sunlit windowsill.",
    story: "Painted on a mini-canvas given as a gift. The light came in for ten minutes only; I got them in nine.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-two-tomatoes%2Fslot-0-1779166822340-52zk7s.jpg?alt=media&token=b0fbb953-11bf-457b-8569-4907095e56f7"],
    grad: grads.summerGarden,
  },
  {
    id: "p-warmness",
    title: "Warmness",
    year: 2022,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on Acrylic, on stretched canvas, framed",
    dims: "12 × 12 in",
    price: 380,
    shipping: 160,
    available: true,
    featured: false,
    short: "A small branch turning to autumn under a soft, golden sun — a study in late warmth.",
    story: "A tiny canvas, painted between two larger ones — the kind of breather that ends up being a favourite.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-warmness%2Fslot-0-1779166819590-qh5a3a.jpg?alt=media&token=8676f457-1405-42f8-aa97-ada90c3a1c2b"],
    grad: grads.summerGarden,
  },
  {
    id: "p-watermelon",
    title: "Watermelon, Cut",
    year: 2026,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas",
    dims: "14 × 18 in",
    price: 720,
    shipping: 160,
    available: true,
    featured: false,
    short: "Three slices of watermelon on a metal tray, with a striped tea-towel and a red cloth.",
    story: "August. Hot. The watermelon was for the painting and for after — both went well.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-watermelon%2Fslot-0-1779166823786-7816mm.jpg?alt=media&token=1472c86e-be12-40e8-a9a0-bcf25ee9dd25"],
    grad: grads.summerGarden,
  },
  {
    id: "p-white-chrysanthemums",
    title: "White Chrysanthemums and Apples",
    year: 2026,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on gallery canvas",
    dims: "12 × 12 in",
    price: 720,
    shipping: 160,
    available: true,
    featured: false,
    short: "A jug of white chrysanthemums with three yellow apples on a pale linen.",
    story: "Painted in late autumn when the garden is mostly white and yellow. The cloth was warm from the radiator.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-white-chrysanthemums%2Fslot-0-1779166830893-e5fwrw.jpg?alt=media&token=74c5712e-c05a-4d56-b8e5-214814a5d12c"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-white-gerbera",
    title: "White Gerbera",
    year: 2018,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas · framed ",
    dims: "11 × 14 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "A single white gerbera daisy in oil — restrained, with all the attention on one flower.",
    story: "A single white gerbera daisy in oil — restrained, with all the attention on one flower.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-white-gerbera%2Fslot-0-1779258282512-lnfzr2.jpg?alt=media&token=71a0fc7e-7b03-4c3f-8a00-b5ca70f38f74"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-white-petunias",
    title: "White Petunias",
    year: 2016,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil on stretched canvas · framed",
    dims: "8 × 10 in",
    price: 0,
    shipping: 160,
    available: true,
    featured: false,
    short: "White petunias spilling sideways from rich brown shadow — painted in oils, gently lit.",
    story: "White petunias spilling sideways from rich brown shadow — painted in oils, gently lit.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-white-petunias%2Fslot-0-1779259865226-610dqv.jpg?alt=media&token=6a7da287-2822-468b-86e1-4fc311f808eb"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-whitelilac-in-thewineglass",
    title: "WhiteLilac in theWineglass",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "12 × 16 in",
    price: 680,
    shipping: 160,
    available: true,
    featured: false,
    short: "A small wine glass of white lilac on the studio table — a quiet morning still life.",
    story: "A small wine glass of white lilac on the studio table — a quiet morning still life.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-whitelilac-in-thewineglass%2Fslot-0-1779259865855-vs1e7k.jpg?alt=media&token=75a0d4ab-851f-45a1-bf4d-32510c34fb2f"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-wildflowers",
    title: "Wildflowers",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil over acrylic on canvas · framed",
    dims: "22 × 28 in",
    price: 1750,
    shipping: 160,
    available: true,
    featured: false,
    short: "An armful of white wildflowers in a clear vase by the window — oil over acrylic for warmth and depth.",
    story: "An armful of white wildflowers in a clear vase by the window — oil over acrylic for warmth and depth.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-wildflowers%2Fslot-0-1779259866481-vzl1qh.jpg?alt=media&token=3cad5766-b516-4c90-b599-dedb15ba09cd"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-winter-couple",
    title: "Winter couple",
    year: 2018,
    category: "landscape",
    section: "gallery",
    sectionOrder: 999,
    medium: "Oil over acrylic on canvas · framed",
    dims: "18 × 24 in",
    price: 1300,
    shipping: 160,
    available: true,
    featured: false,
    short: "Two bullfinches on a snowy branch, oil over acrylic — a careful winter painting.",
    story: "Two bullfinches on a snowy branch, oil over acrylic — a careful winter painting.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-winter-couple%2Fslot-0-1779259867184-k5qzk5.jpg?alt=media&token=dd6cb711-1611-48c4-8e69-1af21c6a0f8d"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-winter-night",
    title: "Winter night",
    year: 2018,
    category: "petite",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on stretched canvas · framed · varnished",
    dims: "9 × 12 in",
    price: 0,
    shipping: 160,
    available: false,
    featured: false,
    short: "A deep blue winter night with a single house light and a long road into the trees.",
    story: "A deep blue winter night with a single house light and a long road into the trees.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-winter-night%2Fslot-0-1779258284410-6o7k45.jpg?alt=media&token=1eee706b-4bf6-4f84-823b-2d233b07e6a1"],
    grad: grads.summerGarden,
  },
  {
    id: "p-old-yellow-tulip",
    title: "Yellow tulip",
    year: 2014,
    category: "still-life",
    section: "gallery",
    sectionOrder: 999,
    medium: "Acrylic on canvas · framed",
    dims: "14 × 11 in",
    price: 520,
    shipping: 160,
    available: true,
    featured: false,
    short: "A single tall yellow tulip on a soft grey ground — quiet and modern.",
    story: "A single tall yellow tulip on a soft grey ground — quiet and modern.",
    images: ["https://firebasestorage.googleapis.com/v0/b/larissa-art.firebasestorage.app/o/paintings%2Fp-old-yellow-tulip%2Fslot-0-1779258285015-ifvg7e.jpg?alt=media&token=f80776a3-0498-4c79-81ca-073ddd86efb4"],
    grad: grads.summerGarden,
  },
];

window.PAINTINGS = DEFAULT_PAINTINGS;
window.CATEGORIES = CATEGORIES;
window.SECTIONS = SECTIONS;
window.sectionMeta = sectionMeta;
window.TESTIMONIALS = TESTIMONIALS;
window.grads = grads;
window.DEFAULT_PAINTINGS = DEFAULT_PAINTINGS;
