/*
 * Lumini — cinematic Hero section scrim.
 *
 * The full-bleed Hero (template-parts/sections/hero.php) darkens its background
 * photo so the white text + amber accents stay legible. Only the multi-stop
 * radial + linear gradient lives here — everything else is Tailwind utilities in
 * the markup. Hand-authored plain CSS (no build step), enqueued on demand by
 * inc/enqueue.php only on pages that contain the `hero` section. Purely cosmetic
 * (no layout impact), so a normal <link> is CLS-safe.
 *
 * Ported from luminiingradina.ro (V3 "Cinematic Night"). The rgba stops are
 * literal near-black so the darkening reads the same on any background image.
 */

.lumini-hero__scrim {
	background:
		radial-gradient(ellipse at 70% 60%, transparent 0%, rgba(10, 10, 10, 0.6) 70%),
		linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, transparent 30%, transparent 60%, rgba(10, 10, 10, 0.92) 100%);
}
