// request custom artwork
Status: [ CLOSED ]
Check out my portfolio to see examples of my work.
Important: My style is intentionally fuzzy, distorted, and dreamlike. Characters can be included in scenes, but they will be stylized like everything else - faces obscured, forms abstracted, details blurred. If you're looking for detailed character portraits with clear features, my style may not be the right fit.
Please check my portfolio before commissioning to know what to expect.
Priced by scene complexity, not character count. Contact me for a quote.
Small square image for avatars or profile pictures. Simple composition, minimal elements.
Price: €5-€15
Partial environment or vignette. Some background elements, moderate detail.
Price: €35-€50
Complete environment with atmosphere and composition. Full background, multiple elements working together.
Price: €60-€100
Intricate illustration with high detail density, multiple focal points, or layered narrative elements.
Price: €125-€250
+ Additional complexity (more elements, tighter details) may cost extra
+ Commercial use costs extra
+ Rush orders available
DEBUG: Honeypot triggered!
"; $success = true; } else { $name = trim($_POST['name'] ?? ''); $email = filter_var(trim($_POST['email'] ?? ''), FILTER_SANITIZE_EMAIL); $description = trim($_POST['description'] ?? ''); $budget = trim($_POST['budget'] ?? ''); // Validation if (empty($name) || empty($email) || empty($description)) { $error = 'Please fill in all required fields.'; } elseif (!filter_var($email, FILTER_VALIDATE_EMAIL)) { $error = 'Please enter a valid email address.'; } elseif (strlen($description) > 5000) { $error = 'Description is too long (max 5000 characters).'; } else { // Save to JSON file $submissionsFile = __DIR__ . '/submissions.json'; $submissions = []; if (file_exists($submissionsFile)) { $submissions = json_decode(file_get_contents($submissionsFile), true) ?? []; } $submissions[] = [ 'id' => uniqid(), 'date' => date('Y-m-d H:i:s'), 'name' => $name, 'email' => $email, 'budget' => $budget, 'description' => $description, 'status' => 'new' ]; if (file_put_contents($submissionsFile, json_encode($submissions, JSON_PRETTY_PRINT))) { $success = true; } else { $error = 'Failed to save request. Please email me directly.'; } } } } ?>Or email me directly at commission@256phi.eu