/**
 * The Genesis creations, described exactly as photographed.
 * Species are named only where the house has previously published them;
 * all other pieces are described by colour and form. Never invent facts.
 */

export type Creation = {
  id: string;
  image: string;
  title: string;
  description: string;
  category: "rings" | "pendants" | "earrings" | "necklaces" | "bracelets" | "brooches" | "watches" | "bangles";
  gem?: string; // slug of related gemstone category, only where verified
  featured?: boolean;
};

export const creations: Creation[] = [
  {
    id: "g27",
    image: "/creations/g27.png",
    title: "A Cascade of Rubies",
    description: "A cascade of rubies framed by brilliant cut diamonds.",
    category: "necklaces",
    gem: "ruby",
    featured: true,
  },
  {
    id: "g13",
    image: "/creations/g13.png",
    title: "The Butterfly",
    description: "A butterfly poised in rubies and pavé diamonds.",
    category: "brooches",
    gem: "ruby",
    featured: true,
  },
  {
    id: "g07",
    image: "/creations/g07.png",
    title: "The Green Cabochon",
    description: "An emerald green cabochon embraced by a halo of brilliant cut diamonds.",
    category: "rings",
    featured: true,
  },
  {
    id: "g19",
    image: "/creations/g19.png",
    title: "Lavender Suspended",
    description: "Lavender jade suspended within a fine lattice of diamonds.",
    category: "pendants",
    gem: "jadeite",
    featured: true,
  },
  {
    id: "g18",
    image: "/creations/g18.png",
    title: "Foliate Drops",
    description: "Foliate diamond earrings descending to fancy yellow and rose drops.",
    category: "earrings",
    gem: "diamond",
    featured: true,
  },
  {
    id: "g28",
    image: "/creations/g28.png",
    title: "The Blossom",
    description: "A blossom of pink and yellow diamonds set in white gold.",
    category: "rings",
    gem: "diamond",
    featured: true,
  },
  {
    id: "g01",
    image: "/creations/g01.png",
    title: "Radiance in Three Colours",
    description: "A radiant cut stone of soft chartreuse between two pear shaped pink companions, carried on a pavé band.",
    category: "rings",
  },
  {
    id: "g03",
    image: "/creations/g03.png",
    title: "The Lagoon Pear",
    description: "A pear cut gem of luminous lagoon blue within a double halo of brilliant cut diamonds.",
    category: "rings",
  },
  {
    id: "g08",
    image: "/creations/g08.png",
    title: "Crimson Cushion",
    description: "A cushion cut stone of vivid crimson flanked by trillion cut diamonds.",
    category: "rings",
  },
  {
    id: "g09",
    image: "/creations/g09.png",
    title: "Rose Within Rose",
    description: "A cushion cut stone of deep rose within a double surround of pink gems and diamonds.",
    category: "rings",
  },
  {
    id: "g10",
    image: "/creations/g10.png",
    title: "The Deep Green Oval",
    description: "An oval gem of deep forest green held within a double halo of brilliant cut diamonds.",
    category: "rings",
  },
  {
    id: "g11",
    image: "/creations/g11.png",
    title: "The Carved Plaque",
    description: "A carved icy jadeite plaque crowned by a vivid green cabochon and traced in diamonds.",
    category: "pendants",
    gem: "jadeite",
  },
  {
    id: "g12",
    image: "/creations/g12.png",
    title: "Peonies in Lavender",
    description: "A lavender jadeite plaque carved with peonies, framed by a fine line of diamonds.",
    category: "pendants",
    gem: "jadeite",
  },
  {
    id: "g14",
    image: "/creations/g14.png",
    title: "The Icy Leaf",
    description: "An icy jadeite leaf beneath a canopy of diamonds and ruby buds.",
    category: "pendants",
    gem: "jadeite",
  },
  {
    id: "g15",
    image: "/creations/g15.png",
    title: "Pods of Fortune",
    description: "Green jadeite pods wrapped in ribbons of pavé diamonds.",
    category: "earrings",
    gem: "jadeite",
  },
  {
    id: "g16",
    image: "/creations/g16.png",
    title: "The Icy Bangle",
    description: "A bangle of icy jadeite, translucent and unadorned.",
    category: "bangles",
    gem: "jadeite",
  },
  {
    id: "g17",
    image: "/creations/g17.png",
    title: "Three Colours of Jade",
    description: "Icy, vivid green and honeyed jadeite in descending drops, each traced in diamonds.",
    category: "earrings",
    gem: "jadeite",
  },
  {
    id: "g20",
    image: "/creations/g20.png",
    title: "The Moonlit Line",
    description: "A line bracelet of luminous icy cabochons, each within its own diamond surround.",
    category: "bracelets",
    gem: "jadeite",
  },
  {
    id: "g21",
    image: "/creations/g21.png",
    title: "Nine Greens",
    description: "A necklace of vivid green jadeite cabochons linked by diamonds, resolving in a single drop.",
    category: "necklaces",
    gem: "jadeite",
  },
  {
    id: "g22",
    image: "/creations/g22.png",
    title: "The Red Pendant",
    description: "An oval gem of saturated red within a diamond surround, on a rivière of brilliant cut diamonds.",
    category: "necklaces",
  },
  {
    id: "g26",
    image: "/creations/g26.png",
    title: "Yellow Cushions",
    description: "Cushion cut stones of golden yellow within twin surrounds of pale and white brilliants.",
    category: "earrings",
  },
  {
    id: "g23",
    image: "/creations/g23.png",
    title: "The Petal Hour",
    description: "A jewelled timepiece, its case composed of diamond petals, on a satin strap.",
    category: "watches",
  },
  {
    id: "g24",
    image: "/creations/g24.png",
    title: "Three Gardens",
    description: "Three jewelled timepieces, each garden of gems in a different colour, on satin.",
    category: "watches",
  },
  {
    id: "g25",
    image: "/creations/g25.png",
    title: "The Brocade Study",
    description: "Jewelled timepieces at rest on gold brocade.",
    category: "watches",
  },
];

export const featuredCreations = creations.filter((c) => c.featured);
