<?php
/**
 * 404 (not found) template — Brentwood. Mirrors the Laravel 404, which shows
 * the inline search so visitors can find what they were after.
 *
 * @package Kadence-Child
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

get_header();

if ( function_exists( 'Kadence\kadence' ) ) {
	\Kadence\kadence()->print_styles( 'kadence-content' );
}
?>
<div class="bw-searchpage bw-searchpage--404">
	<div class="bw-searchpage__head">
		<h1 class="bw-searchpage__title"><?php esc_html_e( 'Page not found', 'kadence-child' ); ?></h1>
		<p class="bw-searchpage__count"><?php esc_html_e( 'We couldn’t find that page. Try searching for it:', 'kadence-child' ); ?></p>
		<?php echo bw_search_inline_form( '' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
	</div>
</div>
<?php
get_footer();
