Noob question: want to remove the “site identity” logo for specific part of website only

You can achieve this using filter provided in Astra:

add_filter( 'astra_has_custom_logo', '__return_false' );

The above filter disables logo on the website. You will have to add this filter in your child theme’s functions.php file inside if conditions of pages where you want to hide the logo.