const HERO_IMG = 'assets/hero.png';

const WORKS = [
	{ id: 'w1', title: 'The Throne',     year: '2025', medium: 'Blender · Cycles', src: 'assets/gallery4.png', aspect: '2/3' },
	{ id: 'w2', title: 'Chambers',       year: '2025', medium: 'Blender · Cycles', src: 'assets/gallery2.png', aspect: '1113/768' },
	{ id: 'w3', title: 'Hero Still',     year: '2026', medium: 'Blender · Cycles', src: 'assets/hero.png',     aspect: '2580/1080' },
	{ id: 'w4', title: 'The Throne II',  year: '2025', medium: 'Blender · Cycles', src: 'assets/gallery4.png', aspect: '2/3' },
	{ id: 'w5', title: 'Chambers · Alt', year: '2025', medium: 'Blender · Cycles', src: 'assets/gallery2.png', aspect: '1113/768' },
	{ id: 'w6', title: 'Hero · Alt',     year: '2026', medium: 'Blender · Cycles', src: 'assets/hero.png',     aspect: '2580/1080' },
];

const ABOUT_IMG = 'assets/gallery4.png';

const TIERS = [
	{
		id: 't1',
		name: 'Observer',
		price: 5,
		blurb: 'For the curious.',
		perks: [
			'Monthly behind-the-scenes posts',
			'Full-resolution wallpapers',
			'Patron-only Discord channel',
		],
	},
	{
		id: 't2',
		name: 'Studio',
		price: 12,
		featured: true,
		blurb: 'For fellow makers.',
		perks: [
			'Everything in Observer',
			'Scene breakdowns & node graphs',
			'Source .blend / .hip files',
			'Early access to new renders',
		],
	},
	{
		id: 't3',
		name: 'Student',
		price: 'TBD',
		disabled: true,
		blurb: 'Coming soon.',
		perks: [],
	},
];

const SOCIALS = [
	{ label: 'Instagram', href: 'https://instagram.com/koelet3d' },
	{ label: 'ArtStation', href: 'https://artstation.com/koelet3d' },
	{ label: 'YouTube',   href: 'https://youtube.com/@koelet3d' },
	{ label: 'Patreon',   href: 'https://patreon.com/koelet3d' },
];

Object.assign(window, { HERO_IMG, WORKS, ABOUT_IMG, TIERS, SOCIALS });
