/*
Theme Name: GeneratePress Barrons
Theme URI: https://barronsrental.com/
Description: GeneratePress child theme carrying the Barrons Rental site templates, assets, and WooCommerce behavior.
Author: Barrons Rental Center
Template: generatepress
Version: 1.0.0
Text Domain: generatepress-barrons
*/

/*@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&family=Playfair+Display:wght@700;800&display=swap");*/

/* =======================================================
   [DESIGN TOKENS]
======================================================= */

/* ----------------------
   Global theme variables
   ---------------------- */

/*       Root token map      */
:root {
	/* ----------------------
       1) Color primitives
       ---------------------- */
	--color-neutral-light: #f7f4f1;
	--color-neutral: #676b70;
	--color-neutral-dark: #2f3033;

	--color-brand: #b6252a;
	--color-brand-hover: #c32c2c;

	--color-success: #2f3033;
	--color-warning: #676b70;
	--color-danger: #b6252a;

	/* ----------------------
       2) Semantic color tokens
       ---------------------- */
	--color-bg-page: #fff;
	--color-bg-surface: #fff;
	--color-bg-muted: #f7f4f1;

	--color-text-primary: #2f3033;
	--color-text-secondary: #676b70;
	--color-text-muted: #676b70;

	--color-border: #e8e0da;

	--color-action-primary: #b6252a;
	--color-action-primary-hover: #c32c2c;

	--color-link: #b6252a;
	--color-link-hover: #c32c2c;
	--color-focus-ring: #c32c2c;

	/* ----------------------
       3) Component color tokens
       ---------------------- */
	--button-primary-bg: #b6252a;
	--button-primary-bg-hover: #c32c2c;
	--button-primary-text: #fff;
	--button-primary-border: #b6252a;
	--button-primary-shadow: 0 12px 28px rgba(182, 37, 42, .22);

	--card-bg: #fff;
	--card-border: #e8e0da;
	--card-shadow: 0 24px 60px rgba(33, 24, 20, .14);

	--input-bg: #fff;
	--input-border: #e8e0da;
	--input-border-focus: #c32c2c;
	--input-text: #2f3033;
	--input-bg-disabled: #f7f4f1;
	--input-text-disabled: #676b70;

	--overlay-bg: rgba(24, 18, 15, .68);

	/* ----------------------
       4) Typography tokens
       ---------------------- */
	--font-family-heading: "Playfair Display", Georgia, serif;
	--font-family-body: "Inter", Arial, sans-serif;

	--font-weight-regular: 400;
	--font-weight-medium: 500;
	--font-weight-semibold: 700;
	--font-weight-bold: 800;

	--line-height-heading-tight: 1.08;
	--line-height-heading-normal: 1.16;

	--letter-spacing-heading: 0;

	--font-size-body-sm: 14px;
	--font-size-body-md: 16px;
	--font-size-body-lg: 20px;

	/* ----------------------
       5) Spacing tokens
       ---------------------- */
	--space-0: 0;
	--space-1: 10px;
	--space-2: 16px;
	--space-3: 24px;
	--space-4: 34px;
	--space-5: 46px;

	/* ----------------------
       6) Radius tokens
       ---------------------- */
	--radius-sm: 8px;
	--radius-md: 8px;
	--radius-lg: 8px;
	--radius-full: 999px;

	/* ----------------------
       7) Shadow tokens
       ---------------------- */
	--shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
	--shadow-md: 0 24px 60px rgba(33, 24, 20, .14);

	/* ----------------------
       8) Border tokens
       ---------------------- */
	--border-width: 1px;
	--border-width-strong: 2px;

	/* ----------------------
       9) Layout tokens
       ---------------------- */
	--container-max-width: 1200px;
	--container-padding-inline: 20px;
	--section-padding-block: 92px;

	/* ----------------------
       10) Z-index tokens
       ---------------------- */
	--z-dropdown: 10;
	--z-sticky: 20;
	--z-modal: 100;
	--z-toast: 110;

	/* ----------------------
       11) Transition tokens
       ---------------------- */
	--duration-fast: 120ms;
	--duration-normal: 200ms;
	--duration-slow: 320ms;

	--ease-standard: ease;
	--ease-emphasized: ease;

	/* ----------------------
       12) Opacity tokens
       ---------------------- */
	--opacity-disabled: .5;
	--opacity-muted: .72;
	--opacity-overlay: .68;
}

/* =======================================================
   [BASE]
======================================================= */

/* ----------------------
   Document reset
   ---------------------- */

/*       Base elements      */
html {
	font-family: var(--font-family-body);
	color: var(--color-text-primary);
	background: var(--color-bg-page);
}

body {
	margin: 0;
	font-size: var(--font-size-body-md);
	line-height: 1.5;
	background: var(--color-bg-page);
	color: var(--color-text-primary);
}

*, *::before, *::after {
	box-sizing: border-box;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

button, input, textarea, select {
	font: inherit;
}

a {
	color: var(--color-link);
}

a:hover {
	color: var(--color-link-hover);
}

:focus-visible {
	outline: 3px solid var(--color-focus-ring);
	outline-offset: 3px;
}

/* =======================================================
   [TYPOGRAPHY]
======================================================= */

/* ----------------------
   Headings
   ---------------------- */

/*       Global heading scales      */
h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5,
.display, .hero-title, .eyebrow {
	font-family: var(--font-family-heading);
	margin-block: 0;
	color: var(--color-text-primary);
}

h1, .h1 {
	font-size: clamp(40px, 4.2vw, 62px);
	line-height: var(--line-height-heading-tight);
	letter-spacing: var(--letter-spacing-heading);
	font-weight: var(--font-weight-bold);
}

h2, .h2 {
	font-size: clamp(34px, 3.1vw, 50px);
	line-height: var(--line-height-heading-tight);
	letter-spacing: var(--letter-spacing-heading);
	font-weight: var(--font-weight-bold);
}

h3, .h3 {
	font-size: clamp(24px, 2vw, 26px);
	line-height: var(--line-height-heading-normal);
	letter-spacing: var(--letter-spacing-heading);
	font-weight: var(--font-weight-semibold);
}

h4, .h4 {
	font-size: clamp(21px, 1.6vw, 24px);
	line-height: var(--line-height-heading-normal);
	letter-spacing: var(--letter-spacing-heading);
	font-weight: var(--font-weight-semibold);
}

h5, .h5 {
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: var(--line-height-heading-normal);
	letter-spacing: var(--letter-spacing-heading);
	font-weight: var(--font-weight-semibold);
}

.display {
	font-size: clamp(40px, 4.5vw, 68px);
	line-height: var(--line-height-heading-tight);
	letter-spacing: var(--letter-spacing-heading);
	font-weight: var(--font-weight-bold);
}

.hero-title {
	font-size: clamp(40px, 4.2vw, 62px);
	line-height: var(--line-height-heading-tight);
	letter-spacing: var(--letter-spacing-heading);
	font-weight: var(--font-weight-bold);
}

.eyebrow {
	font-size: 12px;
	line-height: 1.65;
	letter-spacing: 0;
	text-transform: uppercase;
	font-weight: var(--font-weight-semibold);
}

@media (max-width: 768px) {
	h1, .h1,
	.hero-title {
		font-size: clamp(34px, 7vw, 46px);
	}

	h2, .h2 {
		font-size: clamp(30px, 5.8vw, 38px);
	}

	h3, .h3 {
		font-size: clamp(23px, 4.5vw, 26px);
	}

	h4, .h4 {
		font-size: clamp(20px, 4vw, 23px);
	}

	h5, .h5 {
		font-size: clamp(16px, 3.4vw, 18px);
	}

	.display {
		font-size: clamp(38px, 8vw, 54px);
	}
}

@media (max-width: 480px) {
	h1, .h1,
	.hero-title {
		font-size: clamp(31px, 8.4vw, 36px);
	}

	h2, .h2 {
		font-size: clamp(27px, 7vw, 32px);
	}

	h3, .h3 {
		font-size: clamp(22px, 5.8vw, 24px);
	}

	h4, .h4 {
		font-size: clamp(18px, 5vw, 21px);
	}

	h5, .h5 {
		font-size: 16px;
	}

	.display {
		font-size: clamp(34px, 9vw, 42px);
	}
}

/* =======================================================
   [LAYOUT HELPERS]
======================================================= */

/* ----------------------
   Shared containers
   ---------------------- */

/*       Generic layout utilities      */
.container {
	width: min(100% - (var(--container-padding-inline) * 2), var(--container-max-width));
	margin-inline: auto;
}

.section {
	padding-block: var(--section-padding-block);
}


/* =======================================================
   [SITE HEADER]
======================================================= */

/* ----------------------
   Utility bar
   ---------------------- */

/*       GenerateBlocks top row      */
.gb-element-3b34c3bc {
	display: flex;
	align-items: center;
	gap: 34px;
	min-height: 58px;
	width: min(1580px, calc(100% - 88px));
	margin: 0 auto;
	background: var(--color-bg-muted);
}

/*       Utility phone text      */
.gb-element-3b34c3bc .gb-text-301be63e {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--color-brand-hover);
	font-family: var(--font-family-body);
	font-size: 17px;
	font-weight: var(--font-weight-medium);
	white-space: nowrap;
}

.gb-element-3b34c3bc .gb-text-301be63e::before {
	content: "\260E";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand-hover);
	font-size: 24px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
}

.gb-element-3b34c3bc .gb-text-1a678f2f {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0;
	color: var(--color-brand-hover);
	font-family: var(--font-family-body);
	font-size: 17px;
	font-weight: var(--font-weight-medium);
	white-space: nowrap;
}

.gb-element-3b34c3bc .gb-text-1a678f2f a {
	color: var(--color-brand-hover);
	text-decoration: none;
}

.gb-element-3b34c3bc .gb-shape {
	display: inline-flex;
	font-size: 24px;
	line-height: 1;
}

/*       Utility search form      */
.gb-element-3b34c3bc .wp-block-search {
	flex: 1;
	margin: 0 0 0 6px;
	filter: drop-shadow(var(--shadow-sm));
}

.gb-element-3b34c3bc .wp-block-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.gb-element-3b34c3bc .wp-block-search__inside-wrapper {
	display: flex;
	width: 100% !important;
}

.gb-element-3b34c3bc .wp-block-search__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	border: 0;
	border-radius: var(--radius-full) 0 0 var(--radius-full);
	background: var(--input-bg);
	padding: 0 22px;
	color: var(--input-text);
	font: var(--font-weight-medium) 15px var(--font-family-body);
	outline: 0;
}

.gb-element-3b34c3bc .wp-block-search__button {
	height: 48px;
	margin: 0;
	border: 0;
	border-radius: 0 var(--radius-full) var(--radius-full) 0;
	background: #4b4c4f;
	color: var(--button-primary-text);
	padding: 0 18px;
	font: var(--font-weight-bold) 16px var(--font-family-body);
}

/*       Utility quote button      */
.gb-element-3b34c3bc .gb-text-0c415e88 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	min-height: 48px;
	margin-left: auto;
	padding: 0 24px;
	border: var(--border-width-strong) solid var(--button-primary-border);
	border-radius: var(--radius-full);
	background: var(--button-primary-bg);
	color: var(--button-primary-text);
	box-shadow: var(--button-primary-shadow);
	font-family: var(--font-family-body);
	font-size: 14px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	text-decoration: none;
	text-transform: uppercase;
}

@media (max-width: 980px) {
	.gb-element-3b34c3bc {
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px;
		padding: 14px 0;
	}

	.gb-element-3b34c3bc .wp-block-search {
		order: 3;
		flex: 0 0 100%;
		max-width: 680px;
		margin-left: 0;
	}
}

@media (max-width: 560px) {
	.gb-element-3b34c3bc {
		width: min(100% - 28px, 1180px);
	}

	.gb-element-3b34c3bc .wp-block-search {
		display: none;
	}

	.gb-element-3b34c3bc .gb-text-0c415e88 {
		min-width: 150px;
		padding: 0 18px;
		margin-left: 0;
	}
}

/* ----------------------
   Main sticky header
   ---------------------- */

/*       Header shell      */
.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-sticky);
	background: var(--color-bg-page);
	border-bottom: var(--border-width) solid var(--color-border);
}

.site-header .inside-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	min-height: 90px;
	width: min(1580px, calc(100% - 88px));
	margin: 0 auto;
	padding: 0;
	transition: min-height var(--duration-normal) var(--ease-standard);
}

/*       Header logo      */
.site-header .site-logo {
	flex: 0 0 auto;
}

.site-header .site-logo img,
.site-header .header-image {
	width: 180px;
	height: auto;
	transition: width var(--duration-normal) var(--ease-standard);
}

body.has-sticky-header-scrolled .site-header .site-logo img,
body.has-sticky-header-scrolled .site-header .header-image {
	width: 130px;
}

body.has-sticky-header-scrolled .site-header .inside-header {
	min-height: 72px;
}

/*       Primary navigation      */
.main-navigation {
	background: transparent;
}

.main-navigation .inside-navigation {
	max-width: none;
	padding: 0;
}

.main-navigation .main-nav ul {
	display: flex;
	align-items: center;
	gap: 26px;
}

.main-navigation .main-nav ul li {
	margin: 0;
}

.main-navigation .main-nav ul li a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0;
	color: var(--color-menu-text);
	background: transparent;
	font-family: var(--font-family-body);
	font-size: 17px;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	text-decoration: none;
	text-transform: none;
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.sfHover > a,
.main-navigation .main-nav ul li[class*="current-menu-"] > a:hover {
	color: var(--color-brand-hover);
	background: transparent;
}

.main-navigation .main-nav ul li[class*="current-menu-"] > a {
	color: var(--color-brand-hover);
}

.main-navigation .menu-item-has-children .dropdown-menu-toggle {
	display: inline-flex;
	align-items: center;
	padding: 0 0 0 4px;
	color: currentColor;
	line-height: 1;
}

.main-navigation .menu-item-has-children .dropdown-menu-toggle svg {
	width: 11px;
	height: 11px;
}

/*       Navigation dropdowns      */
.main-navigation ul ul {
	border: 1px solid var(--color-border);
	background: var(--color-bg-page);
	box-shadow: var(--card-shadow);
	width: 20em
}

.main-navigation .main-nav ul ul {
	display: block;
	padding: 12px 0;
}

.main-navigation .main-nav ul ul li a {
	display: flex;
	padding: 12px 18px;
	font-size: 15px;
	white-space: nowrap;
}

.main-navigation .main-nav ul li:not(.br-products-mega-menu) ul.sub-menu li[class*="current-menu-"] > a {
	padding: 12px 18px;
	color: var(--color-brand-hover);
	background: transparent;
}

.main-navigation .main-nav ul li:not(.br-products-mega-menu) ul.sub-menu li[class*="current-menu-"] > a:hover,
.main-navigation .main-nav ul li:not(.br-products-mega-menu) ul.sub-menu li[class*="current-menu-"] > a:focus {
	padding: 12px 18px;
	color: var(--color-brand-hover);
	background: transparent;
}

@media (min-width: 769px) {
	.main-navigation .main-nav ul li.br-products-mega-menu {
		position: static;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu {
		position: fixed;
		top: var(--br-products-mega-top, 112px);
		left: 50% !important;
		z-index: 9999;
		display: grid;
		grid-template-columns: minmax(0, 1.45fr) minmax(320px, .9fr);
		align-items: start;
		gap: 24px;
		width: min(1120px, calc(100vw - 48px));
		height: auto !important;
		max-height: min(680px, calc(100vh - var(--br-products-mega-top, 112px) - 24px));
		margin: 0;
		padding: 16px 18px 18px;
		overflow-x: hidden;
		overflow-y: auto;
		border: 1px solid rgba(47, 48, 51, .12);
		border-radius: 8px;
		background: #fff;
		box-shadow: 0 24px 70px rgba(28, 31, 37, .18);
		opacity: 0;
		pointer-events: none;
		transform: translateX(-50%) translateY(8px);
		transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
		visibility: hidden;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu:hover > ul.sub-menu,
	.main-navigation .main-nav ul li.br-products-mega-menu.sfHover > ul.sub-menu,
	.main-navigation .main-nav ul li.br-products-mega-menu.is-products-mega-open > ul.sub-menu,
	.main-navigation .main-nav ul li.br-products-mega-menu:focus-within > ul.sub-menu {
		left: 50% !important;
		opacity: 1 !important;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0) !important;
		visibility: visible !important;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu::before {
		position: absolute;
		top: -12px;
		right: clamp(190px, 22vw, 360px);
		width: 18px;
		height: 18px;
		border-top: 1px solid rgba(47, 48, 51, .12);
		border-left: 1px solid rgba(47, 48, 51, .12);
		background: #fff;
		content: "";
		transform: rotate(45deg);
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu,
	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu ul.sub-menu {
		box-sizing: border-box;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu ul.sub-menu {
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu li {
		position: static;
		width: 100%;
		list-style: none;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li {
		min-width: 0;
		padding: 0;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		margin: 0 0 14px;
		padding: 12px 16px;
		border-radius: 6px;
		background: var(--color-action-primary);
		color: #fff;
		font-size: 16px;
		font-weight: var(--font-weight-bold);
		line-height: 1.25;
		white-space: normal;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li > a:hover,
	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li > a:focus {
		background: var(--color-action-primary-hover);
		color: #fff;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li > a .dropdown-menu-toggle {
		color: currentColor;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li > ul.sub-menu {
		position: static !important;
		left: auto !important;
		display: grid;
		grid-template-columns: 1fr;
		gap: 7px;
		width: 100%;
		min-width: 0;
		height: auto !important;
		margin: 0;
		padding: 0;
		opacity: 1;
		overflow: visible;
		transform: none;
		visibility: visible;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li:first-child > ul.sub-menu {
		display: flex;
		flex-flow: column wrap;
		align-content: start;
		gap: 7px 24px;
		height: 460px !important;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li > ul.sub-menu > li {
		display: block;
		margin: 0;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu > li:first-child > ul.sub-menu > li {
		width: calc((100% - 24px) / 2);
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu .sub-menu li a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		min-height: 34px;
		padding: 7px 9px;
		border-radius: 6px;
		color: var(--color-text-primary);
		font-size: 14px;
		font-weight: var(--font-weight-semibold);
		line-height: 1.25;
		white-space: normal;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu .sub-menu li a:hover,
	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu .sub-menu li a:focus {
		background: rgba(182, 37, 42, .08);
		color: var(--color-brand-hover);
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu .sub-menu li.menu-item-has-children > a {
		color: var(--color-brand-hover);
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu .sub-menu .sub-menu {
		position: static !important;
		left: auto !important;
		display: grid;
		gap: 2px;
		width: auto;
		min-width: 0;
		height: auto !important;
		margin: 1px 0 5px 9px;
		padding: 0 0 0 10px;
		border-left: 2px solid rgba(182, 37, 42, .18);
		opacity: 1;
		transform: none;
		visibility: visible;
	}

	.main-navigation .main-nav ul li.br-products-mega-menu > ul.sub-menu .sub-menu .sub-menu li a {
		min-height: 0;
		padding: 5px 8px;
		color: var(--color-text-secondary);
		font-size: 13px;
		font-weight: var(--font-weight-medium);
	}
}

/*       Header controls      */
#site-navigation .menu-toggle {
	display: none;
}

@media (min-width: 769px) {
	.main-navigation .menu-bar-item,
	.main-navigation .menu-bar-item.search-item {
		display: none;
	}
}

@media (max-width: 980px) {
	.site-header .inside-header {
		flex-wrap: wrap;
		justify-content: center;
		gap: 18px;
		padding: 16px 0;
	}

	.main-navigation .main-nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}
}

@media (max-width: 768px) {
	.site-header .inside-header {
		width: min(100% - 28px, 1180px);
		min-height: 96px;
		flex-wrap: nowrap;
		justify-content: space-between;
	}

	.site-header .site-logo img,
	.site-header .header-image {
		width: 150px;
	}

	.mobile-menu-control-wrapper {
		display: flex;
	}

	.mobile-menu-control-wrapper .menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 56px;
		height: 56px;
		padding: 0;
		background: var(--color-bg-muted);
		color: var(--color-text-primary);
		border: 0;
		font-size: 20px;
	}

	#site-navigation {
		display: none;
	}

	#generate-slideout-menu {
		background: #fff;
		box-shadow: 18px 0 54px rgba(0, 0, 0, .2);
		color: var(--color-text-primary);
	}

	#generate-slideout-menu .inside-navigation {
		position: relative;
		padding: 88px 22px 28px;
	}

	#generate-slideout-menu .slideout-exit {
		position: absolute;
		top: 20px;
		right: 22px;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 46px;
		height: 46px;
		padding: 0;
		border: 1px solid rgba(47, 48, 51, .14);
		border-radius: 50%;
		background: var(--color-bg-muted);
		color: var(--color-text-primary);
		line-height: 1;
	}

	#generate-slideout-menu .slideout-exit:hover,
	#generate-slideout-menu .slideout-exit:focus-visible {
		background: rgba(182, 37, 42, .08);
		color: var(--color-brand-hover);
		outline: none;
	}

	#generate-slideout-menu .slideout-exit svg {
		width: 18px;
		height: 18px;
	}

	#generate-slideout-menu .slideout-menu,
	#generate-slideout-menu .slideout-menu ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	#generate-slideout-menu .slideout-menu li {
		border-bottom: 1px solid rgba(47, 48, 51, .1);
	}

	#generate-slideout-menu .slideout-menu li li {
		border-bottom: 0;
	}

	#generate-slideout-menu .slideout-menu li a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 13px 0;
		color: var(--color-text-primary);
		font-size: 17px;
		font-weight: var(--font-weight-semibold);
		line-height: 1.35;
		pointer-events: auto !important;
		white-space: normal;
	}

	#generate-slideout-menu .slideout-menu .dropdown-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 42px;
		width: 42px;
		min-height: 38px;
		margin: -8px 0 -8px 10px;
		border-left: 1px solid rgba(47, 48, 51, .1);
		color: currentColor;
		pointer-events: auto !important;
		transition: transform var(--duration-fast) var(--ease-standard);
	}

	#generate-slideout-menu .slideout-menu li.is-mobile-submenu-open > a .dropdown-menu-toggle {
		transform: rotate(180deg);
	}

	#generate-slideout-menu .slideout-menu li a:hover,
	#generate-slideout-menu .slideout-menu li a:focus,
	#generate-slideout-menu .slideout-menu li[class*="current-menu-"] > a {
		color: var(--color-brand-hover);
	}

	#generate-slideout-menu .slideout-menu ul.sub-menu {
		position: static !important;
		left: auto !important;
		display: none !important;
		width: 100%;
		height: auto !important;
		margin: 0;
		padding: 0 0 0 16px;
		border: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1 !important;
		transform: none !important;
		visibility: visible !important;
	}

	#generate-slideout-menu .slideout-menu li.is-mobile-submenu-open > ul.sub-menu {
		display: block !important;
	}

	#generate-slideout-menu .slideout-menu li.menu-item-has-children:not(.is-mobile-submenu-open) > ul.sub-menu {
		display: none !important;
	}

	#generate-slideout-menu .slideout-menu ul.sub-menu a {
		padding: 8px 0;
		color: var(--color-text-secondary);
		font-size: 15px;
	}

	#generate-slideout-menu .slideout-menu ul.sub-menu ul.sub-menu {
		padding-left: 14px;
		border-left: 2px solid rgba(182, 37, 42, .16);
	}

	#generate-slideout-menu .slideout-menu ul.sub-menu ul.sub-menu a {
		font-size: 14px;
		font-weight: var(--font-weight-medium);
	}
}

/* ----------------------
   Search modal
   ---------------------- */

/*       Modal shell      */
#gp-search.gp-search-modal.gp-modal--open .gp-modal__overlay {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 120px 20px 40px;
	background: rgba(24, 18, 15, .68);
	backdrop-filter: blur(8px);
}

#gp-search.gp-search-modal.gp-modal--open .gp-modal__container {
	width: min(760px, 100%);
	margin: 0;
	padding: 0;
	background: transparent;
	box-shadow: none;
	transform: none;
}

/*       Modal search form      */
#gp-search.gp-search-modal.gp-modal--open .search-modal-form {
	width: 100%;
	margin: 0;
	filter: drop-shadow(var(--shadow-sm));
}

#gp-search.gp-search-modal.gp-modal--open .search-modal-fields {
	display: flex;
	width: 100%;
	height: auto;
	max-width: none;
	margin: 0;
	background: transparent;
}

#gp-search.gp-search-modal.gp-modal--open .search-modal-fields .search-field {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
	height: 58px;
	border: 0;
	border-radius: var(--radius-full) 0 0 var(--radius-full);
	background: var(--input-bg) !important;
	padding: 0 24px;
	color: var(--input-text) !important;
	font-family: var(--font-family-body);
	font-size: 17px;
	font-weight: var(--font-weight-medium);
	outline: 0;
	opacity: 1;
}

#gp-search.gp-search-modal.gp-modal--open .search-modal-fields .search-field::placeholder {
	color: var(--color-text-secondary);
	opacity: .75;
}

#gp-search.gp-search-modal.gp-modal--open .search-modal-fields button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 84px;
	width: 84px;
	height: 58px;
	margin: 0;
	border: 0;
	border-radius: 0 var(--radius-full) var(--radius-full) 0;
	background: var(--color-search-button) !important;
	color: var(--button-primary-text) !important;
	font-size: 20px;
	cursor: pointer;
	opacity: 1;
}

#gp-search.gp-search-modal.gp-modal--open .search-modal-fields button:hover,
#gp-search.gp-search-modal.gp-modal--open .search-modal-fields button:focus-visible {
	background: var(--color-text-primary) !important;
	color: var(--button-primary-text);
}

#gp-search.gp-search-modal.gp-modal--open .gp-icon {
	display: inline-flex;
	line-height: 1;
}

#gp-search.gp-search-modal.gp-modal--open .gp-icon svg {
	width: 1em;
	height: 1em;
}

@media (max-width: 560px) {
	#gp-search.gp-search-modal.gp-modal--open .gp-modal__overlay {
		padding: 96px 16px 32px;
	}

	#gp-search.gp-search-modal.gp-modal--open .search-modal-fields .search-field,
	#gp-search.gp-search-modal.gp-modal--open .search-modal-fields button {
		height: 48px;
	}

	#gp-search.gp-search-modal.gp-modal--open .search-modal-fields .search-field {
		padding: 0 18px;
		font-size: 15px;
	}

	#gp-search.gp-search-modal.gp-modal--open .search-modal-fields button {
		flex-basis: 68px;
		width: 68px;
		font-size: 18px;
	}
}

/* ----------------------
   Back to top
   ---------------------- */

/*       GeneratePress fixed scroll control      */
body a.generate-back-to-top {
	align-items: center;
	background: var(--button-primary-bg);
	border: var(--border-width-strong) solid var(--button-primary-border);
	border-radius: var(--radius-full);
	box-shadow: var(--button-primary-shadow);
	color: var(--button-primary-text);
	display: inline-flex;
	font-size: 18px;
	height: 52px;
	justify-content: center;
	line-height: 1;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: var(--space-3);
	bottom: var(--space-3);
	text-align: center;
	text-decoration: none;
	width: 52px;
	z-index: var(--z-sticky);
	opacity: 0;
	transform: translateY(18px);
	transition:
			background var(--duration-normal) var(--ease-standard),
			border-color var(--duration-normal) var(--ease-standard),
			box-shadow var(--duration-normal) var(--ease-standard),
			color var(--duration-normal) var(--ease-standard),
			opacity var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
}

body a.generate-back-to-top::before {
	display: none;
}

body a.generate-back-to-top.generate-back-to-top__show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

body a.generate-back-to-top:hover,
body a.generate-back-to-top:focus-visible {
	background: var(--button-primary-bg-hover);
	border-color: var(--button-primary-bg-hover);
	color: var(--button-primary-text);
	box-shadow: 0 16px 34px rgba(182, 37, 42, .3);
	transform: translateY(-2px);
}

body a.generate-back-to-top .gp-icon {
	align-items: center;
	display: inline-flex;
	height: 18px;
	justify-content: center;
	line-height: 1;
	position: relative;
	width: 18px;
}

body a.generate-back-to-top .gp-icon::before {
	border-color: currentColor;
	border-style: solid;
	border-width: 2px 2px 0 0;
	content: "";
	display: block;
	height: 8px;
	transform: translateY(2px) rotate(-45deg);
	width: 8px;
}

body a.generate-back-to-top .gp-icon svg {
	display: none;
}

@media (max-width: 560px) {
	body a.generate-back-to-top {
		bottom: var(--space-2);
		height: 48px;
		right: var(--space-2);
		width: 48px;
	}
}
/* =======================================================
   [LEGACY SITE FIXES]
======================================================= */

/* ----------------------
   Gallery page
   ---------------------- */

/*       Gallery fix carried over from the Barrons theme      */
.page-id-119 .the-content {
	max-width: none;
}

.page-id-119 #gallery-2 figure {
	display: inline-block;
	height: 180px;
	margin: 0;
	max-width: 25%;
	overflow: hidden;
	width: 295px;
}

/* =======================================================
   [WOOCOMMERCE]
======================================================= */

/* ----------------------
   Shop category layout
   ---------------------- */

/*       Old Barrons Customizer layout      */
body.woocommerce-shop ul.products li.product-category a > img,
body.woocommerce-shop ul.products li.product-category a mark.count,
body.woocommerce-shop ul.products li.product-category a .description {
	display: none;
}

body.woocommerce-shop ul.products {
	align-items: center;
	display: flex;
	gap: clamp(60px, 12vw, 260px);
	justify-content: center;
	margin-bottom: 50px;
	min-height: 40vh;
}

body.woocommerce-shop ul.products li.product-category .woocommerce-loop-category__title {
	font-size: 3.3rem !important;
	font-weight: 300;
	line-height: 1.05;
}

@media (max-width: 900px) {
	body.woocommerce-shop ul.products {
		gap: 24px !important;
		margin-bottom: 80px;
		min-height: auto;
	}
}

@media (max-width: 480px) {
	body.woocommerce-shop ul.products li.product-category .woocommerce-loop-category__title {
		font-size: 3rem !important;
	}
}


/* =======================================================
   [GENERATEPRESS LAYOUT OVERRIDES]
======================================================= */

/* ----------------------
   Content direction
   ---------------------- */

/*       Force single-column page flow      */
.site-content {
	flex-direction: column !important
}


body.page-template-default #content.site-content {
	flex-direction: column !important
}

/* =======================================================
   [PAGE OVERRIDES]
======================================================= */

/* ----------------------
   HOMDEV page shell
   ---------------------- */

/*       Full-width page reset      */
body.page-id-32668 {
	background: #fff;
	color: #2f3033;
	font-family: var(--font-family-body);
	font-size: 16px;
	line-height: 1.65;
	overflow-x: hidden;
}

body.page-id-32668 .site-content,
body.page-id-32668 #content.site-content,
body.page-id-32668 #page.grid-container,
body.page-id-32668 .site.grid-container,
body.page-id-32668 .content-area,
body.page-id-32668 .site-main,
body.page-id-32668 .inside-article,
body.page-id-32668 .entry-content {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.page-id-32668 .entry-header,
body.page-id-32668 .entry-title,
body.page-id-32668 footer#colophon {
	display: none;
}

body.page-id-32668 .entry-content:not(:first-child) {
	margin-top: 0;
}

/* =======================================================
   [CONTENT COMPONENTS]
======================================================= */

/* ----------------------
   Page base
   ---------------------- */

/*       Page typography and link reset      */
.br-page,
.br-page * {
	box-sizing: border-box;
}

.br-page {
	background: #fff;
	color: #2f3033;
	font-family: var(--font-family-body);
	line-height: 1.65;
}

.br-page a {
	color: inherit;
	text-decoration: none;
}

.br-page p {
	margin: 0;
}

/* ----------------------
   Hero
   ---------------------- */

/*       Shared hero demo base - unfiltered frame tent photo      */
.br-hero {
	align-items: flex-start;
	background: center 52% / cover no-repeat url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");
	display: flex;
	isolation: isolate;
	min-height: 520px;
	overflow: hidden;
	padding: 86px 20px 116px;
	position: relative;
}

.br-hero::after {
	background: #fff;
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -96px;
	content: "";
	height: 188px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-hero__inner {
	color: #fff;
	margin: 0 auto;
	max-width: 1180px;
	position: relative;
	text-align: center;
	width: 100%;
	z-index: 1;
}

.br-hero__copy {
	display: inline-block;
	max-width: min(100%, 980px);
}

.br-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: clamp(40px, 4.2vw, 62px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.05;
	margin: 0 auto 16px;
	max-width: 920px;
}

.br-hero__subtitle {
	color: #fff;
	font-size: clamp(18px, 1.9vw, 26px);
	font-weight: 700;
	line-height: 1.35;
	margin: 0 auto;
	max-width: 780px;
}

/*       Selected homepage hero - strong text shadow only      */
.br-hero--demo-1 .br-hero__inner {
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .78),
			0 2px 8px rgba(0, 0, 0, .62);
}

/* ----------------------
   Content sections
   ---------------------- */

/*       Section wrappers and titles      */
.br-section {
	padding: 92px 20px;
}

body.page-id-32668 .br-hero + .br-section {
	padding-top: 34px;
}

.br-section--soft {
	background: #f7f4f1;
}

.br-wrap {
	margin: 0 auto;
	max-width: var(--container-max-width);
	width: 100%;
}

.br-intro,
.br-section-title {
	margin: 0 auto;
	text-align: center;
}

.br-intro {
	max-width: 780px;
}

.br-section-title {
	margin-bottom: 46px;
	max-width: 720px;
}

.br-eyebrow {
	color: #b6252a;
	font-family: var(--font-family-body);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.65;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.br-intro h2,
.br-section-title h2,
.br-cta-band h2 {
	color: #c32c2c;
	font-family: var(--font-family-heading);
	font-size: clamp(34px, 3.1vw, 50px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0;
}

.br-intro p:not(.br-eyebrow) {
	color: #676b70;
	font-size: 20px;
	line-height: 1.75;
	margin: 22px 0 34px;
}

/* ----------------------
   Cards and product rail
   ---------------------- */

/*       Service cards, products, testimonials      */
.br-card-grid,
.br-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.br-card-grid {
	gap: 28px;
}

.br-testimonial-grid {
	gap: 26px;
}

.br-product-rail {
	--br-product-rail-gap: 24px;
	--br-product-rail-gap-total: 72px;

	display: grid;
	gap: var(--br-product-rail-gap);
	grid-auto-columns: calc((100% - var(--br-product-rail-gap-total)) / 4);
	grid-auto-flow: column;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 4px 4px 24px;
	scroll-padding-inline: 4px;
	scroll-snap-type: inline mandatory;
}

.br-card {
	background: #fff;
	border: 1px solid #e8e0da;
	border-radius: 8px;
	box-shadow: 0 24px 60px rgba(33, 24, 20, .14);
	overflow: hidden;
}

.br-product-card {
	min-width: 0;
	scroll-snap-align: start;
}

.br-card__image {
	aspect-ratio: 4 / 3;
	background: center / cover no-repeat var(--image);
}

.br-card__body {
	padding: 26px;
	text-align: center;
}

.br-card h3,
.br-testimonial-card h3 {
	color: #2f3033;
	font-family: var(--font-family-heading);
	font-size: clamp(24px, 2vw, 26px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0 0 12px;
}

.br-card p,
.br-testimonial-card p {
	color: #676b70;
	margin: 0;
}

.br-price {
	color: #c32c2c;
	font-weight: 800;
	margin-top: 10px;
}

/* ----------------------
   CTA band
   ---------------------- */

/*       Full-width image-backed CTA      */
.br-cta-band {
	color: #fff;
	isolation: isolate;
	overflow: hidden;
	padding: 122px 20px;
	position: relative;
	text-align: center;
}

.br-cta-band::before {
	background: center / cover no-repeat url("assets/images/homdev/40x70-Cear-Top-at-TGH.jpg");
	content: "";
	inset: 0;
	position: absolute;
	transform: scale(1.02);
	z-index: -2;
}

.br-cta-band::after {
	background: rgba(24, 18, 15, .68);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}

.br-cta-band .br-eyebrow {
	color: #b6252a;
}

.br-cta-band h2 {
	color: #fff;
	font-size: clamp(40px, 4.5vw, 68px);
	line-height: 1.02;
	margin: 0 auto 18px;
	max-width: 820px;
}

.br-cta-band p:not(.br-eyebrow) {
	color: rgba(255, 255, 255, .9);
	font-size: 18px;
	margin: 0 auto 34px;
	max-width: 640px;
}

.br-btn {
	align-items: center;
	background: #b6252a;
	border: 2px solid #b6252a;
	border-radius: 999px;
	box-shadow: 0 12px 28px rgba(182, 37, 42, .22);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0;
	min-height: 48px;
	padding: 0 24px;
	text-transform: uppercase;
}

/* ----------------------
   Testimonials
   ---------------------- */

/*       Testimonial card details      */
.br-testimonial-card {
	padding: 34px;
	text-align: center;
}

.br-quote {
	color: #b6252a;
	font-family: var(--font-family-heading);
	font-size: 64px;
	font-weight: 800;
	line-height: .7;
}

/* ----------------------
   Page footer
   ---------------------- */

/*       Footer shared base      */
.br-page-footer {
	background: #251c18;
	color: rgba(255, 255, 255, .86);
	padding: 78px 20px 0;
}

.br-page-footer__grid {
	align-items: start;
	display: grid;
	gap: 46px;
	grid-template-columns: 1.2fr 1fr 1fr;
	margin: 0 auto;
	max-width: var(--container-max-width);
	width: 100%;
}

.br-page-footer__brand {
	max-width: 360px;
}

.br-page-footer__logo {
	background: var(--color-bg-surface);
	border-radius: var(--radius-sm);
	display: inline-flex;
	margin: 0 0 24px;
	padding: 14px 18px;
}

.br-page-footer__logo img {
	height: auto;
	width: 190px;
}

.br-page-footer h3,
.br-page-footer__heading {
	color: var(--color-bg-surface);
	font-family: var(--font-family-heading);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.16;
	margin: 0 0 12px;
}

.br-page-footer__text {
	color: rgba(255, 255, 255, .78);
	font-size: var(--font-size-body-md);
	line-height: 1.65;
	margin: 0;
}

.br-page-footer__list {
	display: grid;
	gap: 14px;
	margin: 0;
}

.br-page-footer__item {
	align-items: flex-start;
	color: rgba(255, 255, 255, .86);
	display: flex;
	gap: 12px;
	line-height: 1.55;
}

.br-page-footer__item a {
	color: inherit;
}

.br-page-footer__icon {
	align-items: center;
	background: rgba(182, 37, 42, .16);
	border: 1px solid rgba(182, 37, 42, .34);
	border-radius: var(--radius-full);
	color: var(--color-brand-hover);
	display: inline-flex;
	flex: 0 0 34px;
	height: 34px;
	justify-content: center;
	margin-top: 2px;
	width: 34px;
}

.br-page-footer__icon svg,
.br-page-footer__social svg {
	fill: currentColor;
	height: 16px;
	width: 16px;
}

.br-page-footer__nav {
	border-top: 1px solid rgba(255, 255, 255, .16);
	color: #f5d2d4;
	display: flex;
	font-size: 13px;
	font-weight: 800;
	gap: 26px;
	justify-content: center;
	margin: 42px auto 0;
	max-width: var(--container-max-width);
	padding-top: 28px;
	text-transform: uppercase;
	width: 100%;
}

.br-page-footer__nav a {
	color: inherit;
}

.br-page-footer__bar {
	align-items: center;
	background: var(--color-bg-surface);
	color: var(--color-text-primary);
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin: 42px -20px 0;
	padding: 20px max(20px, calc((100vw - var(--container-max-width)) / 2 + 20px));
}

.br-page-footer__rights {
	font-size: var(--font-size-body-sm);
	margin: 0;
}

.br-page-footer__social-wrap,
.br-page-footer__socials {
	align-items: center;
	display: flex;
	gap: 16px;
}

.br-page-footer__social-label {
	color: var(--color-text-secondary);
	font-size: var(--font-size-body-sm);
	margin: 0;
}

.br-page-footer__social {
	align-items: center;
	color: var(--color-brand);
	display: inline-flex;
	height: 22px;
	justify-content: center;
	width: 22px;
}

.br-page-footer__social:hover {
	color: var(--color-brand-hover);
}

/*       Dark three-column footer with light rights/social bar      */
.br-page-footer--demo-1 .br-page-footer__grid {
	text-align: left;
}

/* ----------------------
   HOMDEV responsive rules
   ---------------------- */

/*       Tablet and mobile stacking      */
@media (max-width: 1180px) {
	.br-product-rail {
		--br-product-rail-gap-total: 48px;

		grid-auto-columns: calc((100% - var(--br-product-rail-gap-total)) / 3);
	}
}

@media (max-width: 980px) {
	.br-hero {
		min-height: 500px;
		padding-top: 58px;
	}

	.br-card-grid,
	.br-testimonial-grid,
	.br-page-footer__grid {
		grid-template-columns: 1fr;
	}

	.br-page-footer__grid {
		text-align: center;
	}

	.br-page-footer__brand,
	.br-page-footer__logo {
		margin-left: auto;
		margin-right: auto;
	}
}

@media (max-width: 840px) {
	.br-product-rail {
		--br-product-rail-gap-total: 24px;

		grid-auto-columns: calc((100% - var(--br-product-rail-gap-total)) / 2);
	}
}

@media (max-width: 768px) {
	.br-hero h1 {
		font-size: clamp(34px, 7vw, 46px);
	}

	.br-intro h2,
	.br-section-title h2 {
		font-size: clamp(30px, 5.8vw, 38px);
	}

	.br-card h3,
	.br-testimonial-card h3 {
		font-size: clamp(23px, 4.5vw, 26px);
	}

	.br-cta-band h2 {
		font-size: clamp(38px, 8vw, 54px);
	}

	.br-page-footer h3 {
		font-size: clamp(20px, 4vw, 23px);
	}
}

@media (max-width: 600px) {
	.br-product-rail {
		--br-product-rail-gap: 18px;
		--br-product-rail-gap-total: 0px;

		grid-auto-columns: 100%;
	}
}

@media (max-width: 560px) {
	.br-hero {
		min-height: 460px;
		padding: 76px 16px 80px;
	}

	.br-hero h1 {
		font-size: clamp(31px, 8.4vw, 36px);
		max-width: 360px;
	}

	.br-hero__subtitle {
		font-size: 17px;
		max-width: 340px;
	}

	.br-section {
		padding: 66px 16px;
	}

	body.page-id-32668 .br-hero + .br-section {
		padding-top: 28px;
	}

	.br-page-footer__nav {
		flex-wrap: wrap;
		gap: 16px;
	}

	.br-page-footer__bar {
		flex-direction: column;
		text-align: center;
	}

	.br-page-footer__social-wrap {
		flex-wrap: wrap;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.br-intro h2,
	.br-section-title h2 {
		font-size: clamp(27px, 7vw, 32px);
	}

	.br-card h3,
	.br-testimonial-card h3 {
		font-size: clamp(22px, 5.8vw, 24px);
	}

	.br-cta-band h2 {
		font-size: clamp(34px, 9vw, 42px);
	}

	.br-page-footer h3 {
		font-size: clamp(18px, 5vw, 21px);
	}
}

/* =======================================================
   [COMPANY PAGE]
======================================================= */

/* ----------------------
   Company page shell
   ---------------------- */

/*       Full-width template reset      */
body.page-template-company {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.page-template-company #page.grid-container,
body.page-template-company .site.grid-container,
body.page-template-company #content.site-content,
body.page-template-company .content-area,
body.page-template-company .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.page-template-company #content.site-content {
	display: block;
}

body.page-template-company .featured-image.page-header-image {
	display: none;
}

/*       Company page base elements      */
.br-company,
.br-company * {
	box-sizing: border-box;
}

.br-company {
	--company-dark: #251c18;
	--company-hero-image: url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");
	--company-video-image: url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");

	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	line-height: 1.65;
}

.br-company p {
	margin: 0;
}

.br-company a {
	color: inherit;
	text-decoration: none;
}

.br-company__wrap {
	margin: 0 auto;
	width: min(100% - 40px, var(--container-max-width));
}

.br-company-section {
	padding: var(--section-padding-block) 0;
}

.br-company-section--soft {
	background: var(--color-bg-muted);
}

/* ----------------------
   Company shared content
   ---------------------- */

/*       Headings, eyebrow, buttons, and actions      */
.br-company-eyebrow {
	color: var(--color-brand);
	font-family: var(--font-family-body);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	line-height: 1.65;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.br-company-section__head {
	margin: 0 auto;
	max-width: 780px;
	text-align: center;
}

.br-company-section__head h2,
.br-company-story__header h2,
.br-company-team__intro h2 {
	color: var(--color-brand-hover);
	font-family: var(--font-family-heading);
	font-size: 50px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-tight);
	margin: 0;
}

.br-company-section__head p:not(.br-company-eyebrow),
.br-company-team__intro p {
	color: var(--color-text-secondary);
	font-size: 18px;
	line-height: 1.75;
	margin: 20px auto 0;
	max-width: 700px;
}

/* ----------------------
   Company hero
   ---------------------- */

/*       Image-backed title area      */
.br-company-hero {
	align-items: flex-start;
	background-image:
			linear-gradient(rgba(24, 18, 15, .52), rgba(24, 18, 15, .7)),
			var(--company-hero-image);
	background-position: center, center 48%;
	background-repeat: no-repeat;
	background-size: auto, cover;
	display: flex;
	isolation: isolate;
	min-height: 460px;
	overflow: hidden;
	padding: 48px 0 104px;
	position: relative;
}

.br-company-hero::after {
	background: var(--color-bg-page);
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -96px;
	content: "";
	height: 188px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-company-hero__breadcrumbs,
.br-company-hero__content {
	position: relative;
	z-index: 1;
}

.br-company-hero__breadcrumbs {
	align-items: center;
	color: rgba(255, 255, 255, .82);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	gap: 10px;
	margin: 0 0 30px;
	text-transform: uppercase;
}

.br-company-hero__breadcrumbs a {
	color: rgba(255, 255, 255, .9);
}

.br-company-hero__breadcrumbs a:hover {
	color: #fff;
}

.br-company-hero__content {
	color: #fff;
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .72),
			0 2px 8px rgba(0, 0, 0, .48);
}

.br-company-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: 66px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 auto 18px;
	max-width: 860px;
}

.br-company .br-company-hero__lead {
	color: rgba(255, 255, 255, .92);
	font-size: 21px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.45;
	margin: 0 auto;
	max-width: 820px;
}

/* ----------------------
   Company intro
   ---------------------- */

/*       Intro copy and stat cards      */
.br-company-intro {
	background: var(--color-bg-page);
	padding-top: 34px;
}

.br-company-section__head .br-company-eyebrow,
.br-company-story__header .br-company-eyebrow {
	color: var(--color-text-primary);
}

.br-company-stat-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 46px;
}

.br-company-stat-card {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	min-height: 172px;
	padding: 34px 26px;
	text-align: center;
}

.br-company-stat-card strong {
	color: var(--color-brand-hover);
	display: block;
	font-family: var(--font-family-heading);
	font-size: 48px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 12px;
}

.br-company-stat-card span {
	color: var(--color-text-secondary);
	display: block;
	font-size: 15px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.45;
	text-transform: uppercase;
}

/* ----------------------
   Company story
   ---------------------- */

/*       History header, copy, and image panel      */
.br-company-story__header {
	margin: 0 auto 48px;
	max-width: 790px;
	text-align: center;
}

.br-company-story__grid {
	align-items: start;
	display: grid;
	gap: 56px;
	grid-template-columns: 1fr .95fr;
}

.br-company-rich-text {
	color: var(--color-text-secondary);
	font-size: 16px;
	line-height: 1.78;
}

.br-company-rich-text > *:first-child {
	margin-top: 0;
}

.br-company-rich-text > *:last-child {
	margin-bottom: 0;
}

.br-company-rich-text p {
	margin: 0 0 20px;
}

.br-company-rich-text strong {
	color: var(--color-text-primary);
}

.br-company-rich-text img {
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	height: auto;
	margin: 0 0 26px;
	width: 100%;
}

.br-company-story__copy {
	padding-top: 10px;
}

.br-company-story__media {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	overflow: hidden;
	padding: 25px 0 30px;
}

.br-company-story__media img {
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 28px;
}

.br-company-story__media p {
	padding: 0 30px;
}

/* ----------------------
   Company milestones
   ---------------------- */

/*       Timeline card grid      */
.br-company-timeline {
	background: var(--color-bg-page);
}

.br-company-timeline__grid {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 46px;
}

.br-company-timeline-card {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	min-height: 266px;
	padding: 30px 24px;
}

.br-company-timeline-card span {
	color: var(--color-brand-hover);
	display: block;
	font-family: var(--font-family-heading);
	font-size: 35px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 18px;
}

.br-company-timeline-card h3 {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 24px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0 0 12px;
}

.br-company-timeline-card p {
	color: var(--color-text-secondary);
	font-size: 15px;
	line-height: 1.65;
}

/* ----------------------
   Company videos
   ---------------------- */

/*       Video thumbnail cards      */
.br-company-video-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
	margin-top: 46px;
}

.br-company-video-card {
	min-height: 0;
}

.br-company-video-card--featured {
	grid-row: span 2;
}

.br-company-video-card__link {
	align-items: center;
	background-image:
			linear-gradient(rgba(24, 18, 15, .18), rgba(24, 18, 15, .62)),
			var(--company-video-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	display: flex;
	justify-content: center;
	min-height: 205px;
	overflow: hidden;
	position: relative;
}

.br-company-video-card--featured .br-company-video-card__link {
	min-height: 434px;
}

.br-company-video-card__play {
	align-items: center;
	background: var(--button-primary-bg);
	border-radius: var(--radius-full);
	box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
	display: inline-flex;
	height: 72px;
	justify-content: center;
	position: relative;
	transition:
			background var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
	width: 72px;
}

.br-company-video-card__play::before {
	border-bottom: 13px solid transparent;
	border-left: 19px solid #fff;
	border-top: 13px solid transparent;
	content: "";
	margin-left: 5px;
}

.br-company-video-card__link:hover .br-company-video-card__play,
.br-company-video-card__link:focus-visible .br-company-video-card__play {
	background: var(--button-primary-bg-hover);
	transform: scale(1.04);
}

.br-company-video-card__label {
	bottom: 22px;
	color: #fff;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	left: 24px;
	position: absolute;
	text-transform: uppercase;
}

/* ----------------------
   Company team
   ---------------------- */

/*       Team intro and member cards      */
.br-company-team {
	background: var(--color-bg-page);
}

.br-company-team__intro {
	margin: 0 auto 52px;
	max-width: 760px;
	text-align: center;
}

.br-company-team__intro h2 {
	margin-bottom: 18px;
}

.br-company-team__intro p {
	margin-top: 0;
}

.br-company-team-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.br-company-team-card {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 34px 28px 42px;
	position: relative;
	text-align: center;
}

.br-company-team-card__photo-wrap {
	align-items: center;
	background: var(--color-bg-muted);
	border: 6px solid #fff;
	border-radius: var(--radius-full);
	box-shadow: var(--shadow-sm);
	display: inline-flex;
	height: 122px;
	justify-content: center;
	margin: 0 auto 24px;
	overflow: hidden;
	width: 122px;
}

.br-company-team-card__photo {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.br-company-team-card__initial {
	color: var(--color-brand-hover);
	font-family: var(--font-family-heading);
	font-size: 42px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
}

.br-company-team-card h3 {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 25px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0 0 9px;
}

.br-company-team-card__position {
	color: var(--color-brand-hover);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	line-height: 1.45;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.br-company-team-card__bio {
	color: var(--color-text-secondary);
	font-size: 15px;
	line-height: 1.68;
}

.br-company-team-card__bio p {
	margin: 0;
}

.br-company-team-card__social {
	align-items: center;
	background: rgba(182, 37, 42, .1);
	border: var(--border-width) solid rgba(182, 37, 42, .22);
	border-radius: var(--radius-full);
	bottom: 18px;
	color: var(--color-brand-hover);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	height: 28px;
	justify-content: center;
	position: absolute;
	right: 18px;
	width: 28px;
}

.br-company-team-card__social:hover,
.br-company-team-card__social:focus-visible {
	background: var(--color-brand-hover);
	color: #fff;
}

/* ----------------------
   Company responsive rules
   ---------------------- */

/*       Tablet and mobile stacking      */
@media (max-width: 1100px) {
	.br-company-timeline__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.br-company-team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.br-company-story__grid,
	.br-company-video-grid {
		grid-template-columns: 1fr;
	}

	.br-company-video-card--featured {
		grid-row: auto;
	}

	.br-company-video-card--featured .br-company-video-card__link,
	.br-company-video-card__link {
		min-height: 320px;
	}
}

@media (max-width: 768px) {
	.br-company-section {
		padding: 72px 0;
	}

	.br-company-intro {
		padding-top: 28px;
	}

	.br-company-hero {
		min-height: 440px;
		padding: 40px 0 96px;
	}

	.br-company-hero__breadcrumbs {
		margin-bottom: 18px;
	}

	.br-company-hero h1 {
		font-size: 46px;
	}

	.br-company .br-company-hero__lead {
		font-size: 18px;
	}

	.br-company-section__head h2,
	.br-company-story__header h2,
	.br-company-team__intro h2 {
		font-size: 38px;
	}

	.br-company-stat-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.br-company__wrap {
		width: min(100% - 32px, var(--container-max-width));
	}

	.br-company-hero {
		min-height: 370px;
		padding: 34px 0 48px;
	}

	.br-company-hero::after {
		bottom: -62px;
		height: 104px;
		left: -8px;
		right: -8px;
	}

	.br-company-hero h1 {
		font-size: 38px;
	}

	.br-company .br-company-hero__lead {
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
		text-align: center;
		width: 390px;
	}

	.br-company-section__head h2,
	.br-company-story__header h2,
	.br-company-team__intro h2 {
		font-size: 32px;
	}

	.br-company-section__head p:not(.br-company-eyebrow),
	.br-company-team__intro p {
		font-size: 16px;
	}

	.br-company-story__media p {
		padding: 0 22px;
	}

	.br-company-timeline__grid,
	.br-company-team-grid {
		grid-template-columns: 1fr;
	}

	.br-company-video-card--featured .br-company-video-card__link,
	.br-company-video-card__link {
		min-height: 235px;
	}

}

@media (max-width: 480px) {
	.br-company-hero h1 {
		font-size: 34px;
		max-width: 330px;
		overflow-wrap: break-word;
	}

	.br-company .br-company-hero__lead {
		font-size: 16px;
		max-width: 334px;
	}

	.br-company-section__head h2,
	.br-company-story__header h2,
	.br-company-team__intro h2 {
		font-size: 29px;
		overflow-wrap: break-word;
	}

	.br-company-stat-card strong {
		font-size: 42px;
	}

}


/* =======================================================
   [GALLERY PAGE]
======================================================= */

/* ----------------------
   Gallery page shell
   ---------------------- */

/*       Full-width template reset      */
body.br-gallery-page {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.br-gallery-page #page.grid-container,
body.br-gallery-page .site.grid-container,
body.br-gallery-page #content.site-content,
body.br-gallery-page .content-area,
body.br-gallery-page .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.br-gallery-page #content.site-content {
	display: block;
}

body.br-gallery-page .featured-image.page-header-image {
	display: none;
}

/*       Gallery page base elements      */
.br-gallery,
.br-gallery * {
	box-sizing: border-box;
}

.br-gallery {
	--gallery-hero-image: url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");

	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	line-height: 1.65;
}

.br-gallery p {
	margin: 0;
}

.br-gallery a {
	color: inherit;
	text-decoration: none;
}

.br-gallery__wrap {
	margin: 0 auto;
	width: min(100% - 40px, var(--container-max-width));
}

/* ----------------------
   Gallery hero
   ---------------------- */

/*       Company-style image title area      */
.br-gallery-hero {
	align-items: flex-start;
	background-image:
			linear-gradient(rgba(24, 18, 15, .52), rgba(24, 18, 15, .7)),
			var(--gallery-hero-image);
	background-position: center, center 48%;
	background-repeat: no-repeat;
	background-size: auto, cover;
	display: flex;
	isolation: isolate;
	min-height: 360px;
	overflow: hidden;
	padding: 48px 0 58px;
	position: relative;
}

.br-gallery-hero::after {
	background: var(--color-bg-page);
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -78px;
	content: "";
	height: 150px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-gallery-hero__breadcrumbs,
.br-gallery-hero__content {
	position: relative;
	z-index: 1;
}

.br-gallery-hero__breadcrumbs {
	align-items: center;
	color: rgba(255, 255, 255, .82);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	gap: 10px;
	margin: 0 0 30px;
	text-transform: uppercase;
}

.br-gallery-hero__breadcrumbs a {
	color: rgba(255, 255, 255, .9);
}

.br-gallery-hero__breadcrumbs a:hover,
.br-gallery-hero__breadcrumbs a:focus-visible {
	color: #fff;
}

.br-gallery-hero__content {
	color: #fff;
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .72),
			0 2px 8px rgba(0, 0, 0, .48);
}

.br-gallery-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: 66px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 auto;
	max-width: 860px;
}

/* ----------------------
   Gallery content
   ---------------------- */

/*       Stored collage content      */
.br-gallery-content {
	background: var(--color-bg-page);
	padding: 34px 0 96px;
	position: relative;
	z-index: 2;
}

.br-gallery-rich-text {
	color: var(--color-text-secondary);
	margin: 0 auto;
	max-width: 1120px;
}

.br-gallery-rich-text > *:first-child {
	margin-top: 0;
}

.br-gallery-rich-text > *:last-child {
	margin-bottom: 0;
}

.br-gallery-rich-text p,
.br-gallery-rich-text .easy-image-collage {
	margin: 0 0 34px;
}

.br-gallery-rich-text img {
	border-radius: var(--radius-md);
	height: auto;
	max-width: 100%;
}

.br-gallery-rich-text a:focus-visible {
	outline: 3px solid var(--color-focus-ring);
	outline-offset: 4px;
}

/* ----------------------
   Gallery responsive rules
   ---------------------- */

/*       Tablet and mobile hero scaling      */
@media (max-width: 768px) {
	.br-gallery-hero {
		min-height: 330px;
		padding: 40px 0 54px;
	}

	.br-gallery-hero__breadcrumbs {
		margin-bottom: 18px;
	}

	.br-gallery-hero h1 {
		font-size: 46px;
	}

	.br-gallery-content {
		padding: 28px 0 72px;
	}
}

@media (max-width: 600px) {
	.br-gallery__wrap {
		width: min(100% - 32px, var(--container-max-width));
	}

	.br-gallery-hero {
		min-height: 280px;
		padding: 34px 0 34px;
	}

	.br-gallery-hero::after {
		bottom: -42px;
		height: 86px;
		left: -8px;
		right: -8px;
	}

	.br-gallery-hero h1 {
		font-size: 38px;
	}

	.br-gallery-rich-text p,
	.br-gallery-rich-text .easy-image-collage {
		margin-bottom: 24px;
	}
}

@media (max-width: 480px) {
	.br-gallery-hero h1 {
		font-size: 34px;
		max-width: 330px;
		overflow-wrap: break-word;
	}
}


/* =======================================================
   [BLOG PAGE]
======================================================= */

/* ----------------------
   Blog page shell
   ---------------------- */

/*       Full-width posts page reset      */
body.blog,
body.br-blog-page {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.blog #page.grid-container,
body.blog .site.grid-container,
body.blog #content.site-content,
body.blog .content-area,
body.blog .site-main,
body.br-blog-page #page.grid-container,
body.br-blog-page .site.grid-container,
body.br-blog-page #content.site-content,
body.br-blog-page .content-area,
body.br-blog-page .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.blog #content.site-content,
body.br-blog-page #content.site-content {
	display: block;
}

body.blog .featured-image.page-header-image,
body.br-blog-page .featured-image.page-header-image {
	display: none;
}

/*       Blog page base elements      */
.br-blog,
.br-blog * {
	box-sizing: border-box;
}

.br-blog {
	--blog-hero-image: url("assets/images/homdev/Bortle.Elliott.Wedding4506.jpg");
	--blog-card-placeholder-image: url("assets/images/homdev/Homeowner-Equipment.jpg");

	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	line-height: 1.65;
}

.br-blog p {
	margin: 0;
}

.br-blog a {
	color: inherit;
	text-decoration: none;
}

.br-blog__wrap {
	margin: 0 auto;
	width: min(100% - 40px, var(--container-max-width));
}

.br-blog-eyebrow {
	color: var(--color-brand);
	font-family: var(--font-family-body);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	line-height: 1.65;
	margin: 0 0 10px;
	text-transform: uppercase;
}

/* ----------------------
   Blog hero
   ---------------------- */

/*       Company-style image title area      */
.br-blog-hero {
	align-items: flex-start;
	background-image:
			linear-gradient(rgba(24, 18, 15, .52), rgba(24, 18, 15, .7)),
			var(--blog-hero-image);
	background-position: center, center 48%;
	background-repeat: no-repeat;
	background-size: auto, cover;
	display: flex;
	isolation: isolate;
	min-height: 460px;
	overflow: hidden;
	padding: 48px 0 104px;
	position: relative;
}

.br-blog-hero::after {
	background: var(--color-bg-page);
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -96px;
	content: "";
	height: 188px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-blog-hero__breadcrumbs,
.br-blog-hero__content {
	position: relative;
	z-index: 1;
}

.br-blog-hero__breadcrumbs {
	align-items: center;
	color: rgba(255, 255, 255, .82);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	gap: 10px;
	margin: 0 0 30px;
	text-transform: uppercase;
}

.br-blog-hero__breadcrumbs a {
	color: rgba(255, 255, 255, .9);
}

.br-blog-hero__breadcrumbs a:hover,
.br-blog-hero__breadcrumbs a:focus-visible {
	color: #fff;
}

.br-blog-hero__content {
	color: #fff;
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .72),
			0 2px 8px rgba(0, 0, 0, .48);
}

.br-blog-hero__content .br-blog-eyebrow {
	color: rgba(255, 255, 255, .9);
}

.br-blog-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: 66px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 auto 18px;
	max-width: 860px;
}

.br-blog .br-blog-hero__lead {
	color: rgba(255, 255, 255, .92);
	font-size: 21px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.45;
	margin: 0 auto;
	max-width: 820px;
}

/* ----------------------
   Blog listing
   ---------------------- */

/*       Article cards and pagination      */
.br-blog-listing {
	background: var(--color-bg-page);
	padding: 34px 0 92px;
	position: relative;
	z-index: 2;
}

.br-blog-listing__header {
	margin: 0 auto 46px;
	max-width: 780px;
	text-align: center;
}

.br-blog-listing__header .br-blog-eyebrow {
	color: var(--color-text-primary);
}

.br-blog-listing__header h2,
.br-blog-empty h2 {
	color: var(--color-brand-hover);
	font-family: var(--font-family-heading);
	font-size: 50px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-tight);
	margin: 0;
}

.br-blog-grid {
	display: grid;
	gap: 30px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1120px;
}

.br-blog-card {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	transition:
			border-color var(--duration-normal) var(--ease-standard),
			box-shadow var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
}

.br-blog-card:hover,
.br-blog-card:focus-within {
	border-color: rgba(182, 37, 42, .22);
	box-shadow: 0 18px 42px rgba(33, 24, 20, .12);
	transform: translateY(-3px);
}

.br-blog-card__media {
	background: var(--color-bg-muted);
	border-bottom: var(--border-width) solid var(--card-border);
	display: block;
	overflow: hidden;
	position: relative;
}

.br-blog-card__media::before {
	content: "";
	display: block;
	aspect-ratio: 1.55 / 1;
}

.br-blog-card__image,
.br-blog-card__placeholder {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transition:
			filter var(--duration-slow) var(--ease-standard),
			transform var(--duration-slow) var(--ease-standard);
	width: 100%;
}

.br-blog-card__placeholder {
	background-image:
			linear-gradient(rgba(24, 18, 15, .08), rgba(24, 18, 15, .22)),
			var(--blog-card-placeholder-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.br-blog-card:hover .br-blog-card__image,
.br-blog-card:focus-within .br-blog-card__image,
.br-blog-card:hover .br-blog-card__placeholder,
.br-blog-card:focus-within .br-blog-card__placeholder {
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.035);
}

.br-blog-card__date {
	background: rgba(255, 255, 255, .92);
	border: var(--border-width) solid rgba(232, 224, 218, .82);
	border-radius: var(--radius-full);
	color: var(--color-text-primary);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	padding: 9px 12px;
	position: absolute;
	right: 14px;
	text-transform: uppercase;
	top: 14px;
}

.br-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 28px 26px 30px;
}

.br-blog-card__category {
	color: var(--color-brand);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	line-height: 1.45;
	margin-bottom: 11px;
	text-transform: uppercase;
	width: fit-content;
}

.br-blog-card__category:hover,
.br-blog-card__category:focus-visible {
	color: var(--color-brand-hover);
}

.br-blog-card h3 {
	font-family: var(--font-family-heading);
	font-size: 25px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0 0 14px;
}

.br-blog-card h3 a {
	color: var(--color-text-primary);
}

.br-blog-card h3 a:hover,
.br-blog-card h3 a:focus-visible {
	color: var(--color-brand-hover);
}

.br-blog-card__excerpt {
	color: var(--color-text-secondary);
	font-size: 15px;
	line-height: 1.68;
}

.br-blog-card__excerpt p {
	margin: 0;
}

.br-blog-card__read-more {
	align-items: center;
	align-self: flex-start;
	color: var(--color-brand);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	gap: 8px;
	line-height: 1.35;
	margin-top: auto;
	padding-top: 22px;
	text-transform: uppercase;
}

.br-blog-card__read-more::after {
	content: ">";
	font-size: 15px;
	line-height: 1;
	transition: transform var(--duration-normal) var(--ease-standard);
}

.br-blog-card__read-more:hover,
.br-blog-card__read-more:focus-visible {
	color: var(--color-brand-hover);
}

.br-blog-card__read-more:hover::after,
.br-blog-card__read-more:focus-visible::after {
	transform: translateX(3px);
}

.br-blog .navigation.pagination {
	margin: 48px auto 0;
	max-width: 1120px;
	text-align: center;
}

.br-blog .navigation.pagination .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.br-blog .nav-links {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.br-blog .page-numbers {
	align-items: center;
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-full);
	color: var(--color-text-secondary);
	display: inline-flex;
	font-size: 14px;
	font-weight: var(--font-weight-bold);
	height: 42px;
	justify-content: center;
	line-height: 1;
	min-width: 42px;
	padding: 0 14px;
	text-decoration: none;
}

.br-blog .page-numbers.current,
.br-blog a.page-numbers:hover,
.br-blog a.page-numbers:focus-visible {
	background: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
	color: #fff;
}

.br-blog .page-numbers.prev,
.br-blog .page-numbers.next {
	padding-left: 18px;
	padding-right: 18px;
	text-transform: uppercase;
}

.br-blog-empty {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	margin: 0 auto;
	max-width: 760px;
	padding: 44px 34px;
	text-align: center;
}

.br-blog-empty p {
	color: var(--color-text-secondary);
	font-size: 17px;
	margin-top: 14px;
}

/* ----------------------
   Blog responsive rules
   ---------------------- */

/*       Tablet and mobile stacking      */
@media (max-width: 1100px) {
	.br-blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.br-blog-hero {
		min-height: 440px;
		padding: 40px 0 96px;
	}

	.br-blog-hero__breadcrumbs {
		margin-bottom: 18px;
	}

	.br-blog-hero h1 {
		font-size: 46px;
	}

	.br-blog .br-blog-hero__lead {
		font-size: 18px;
	}

	.br-blog-listing {
		padding: 28px 0 72px;
	}

	.br-blog-listing__header h2,
	.br-blog-empty h2 {
		font-size: 38px;
	}
}

@media (max-width: 600px) {
	.br-blog__wrap {
		width: min(100% - 32px, var(--container-max-width));
	}

	.br-blog-hero {
		min-height: 370px;
		padding: 34px 0 48px;
	}

	.br-blog-hero::after {
		bottom: -62px;
		height: 104px;
		left: -8px;
		right: -8px;
	}

	.br-blog-hero h1 {
		font-size: 38px;
	}

	.br-blog .br-blog-hero__lead {
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
		max-width: 334px;
		text-align: center;
	}

	.br-blog-listing__header {
		margin-bottom: 34px;
	}

	.br-blog-listing__header h2,
	.br-blog-empty h2 {
		font-size: 32px;
	}

	.br-blog-grid {
		grid-template-columns: 1fr;
	}

	.br-blog-card__body {
		padding: 24px 22px 26px;
	}
}

@media (max-width: 480px) {
	.br-blog-hero h1 {
		font-size: 34px;
		max-width: 330px;
		overflow-wrap: break-word;
	}

	.br-blog-listing__header h2,
	.br-blog-empty h2 {
		font-size: 29px;
		overflow-wrap: break-word;
	}

	.br-blog-card h3 {
		font-size: 23px;
	}

	.br-blog .nav-links {
		gap: 8px;
	}

	.br-blog .page-numbers {
		height: 38px;
		min-width: 38px;
		padding: 0 12px;
	}
}


/* =======================================================
   [SINGLE BLOG POST]
======================================================= */

/* ----------------------
   Single post shell
   ---------------------- */

/*       Full-width single article reset      */
body.single-post {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.single-post #page.grid-container,
body.single-post .site.grid-container,
body.single-post #content.site-content,
body.single-post .content-area,
body.single-post .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.single-post #content.site-content {
	display: block;
}

body.single-post .featured-image.page-header-image,
body.single-post .comments-area,
body.single-post .inside-right-sidebar,
body.single-post .inside-left-sidebar {
	display: none;
}

/*       Single post base elements      */
.br-single-post,
.br-single-post * {
	box-sizing: border-box;
}

.br-single-post {
	--single-post-hero-image: url("assets/images/homdev/Bortle.Elliott.Wedding4506.jpg");

	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	line-height: 1.7;
}

.br-single-post p {
	margin: 0;
}

.br-single-post a {
	color: inherit;
	text-decoration: none;
}

.br-single-post__wrap {
	margin: 0 auto;
	width: min(100% - 40px, var(--container-max-width));
}

/* ----------------------
   Single post hero
   ---------------------- */

/*       Company-style image title area without lead copy      */
.br-single-post-hero {
	align-items: center;
	background-image:
			linear-gradient(rgba(24, 18, 15, .52), rgba(24, 18, 15, .7)),
			var(--single-post-hero-image);
	background-position: center, center 48%;
	background-repeat: no-repeat;
	background-size: auto, cover;
	display: flex;
	isolation: isolate;
	min-height: 430px;
	overflow: hidden;
	padding: 70px 0 118px;
	position: relative;
}

.br-single-post-hero::after {
	background: var(--color-bg-page);
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -96px;
	content: "";
	height: 188px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-single-post-hero__content {
	color: #fff;
	margin: 0 auto;
	max-width: 940px;
	position: relative;
	text-align: center;
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .72),
			0 2px 8px rgba(0, 0, 0, .48);
	z-index: 1;
}

.br-single-post-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: 66px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 auto;
	max-width: 900px;
}

/* ----------------------
   Single post breadcrumb
   ---------------------- */

/*       Centered breadcrumb band below the hero      */
.br-single-post-breadcrumb {
	background: var(--color-bg-page);
	padding: 0 0 34px;
	position: relative;
	z-index: 2;
}

.br-single-post-breadcrumb ol {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	gap: 10px;
	justify-content: center;
	line-height: 1.45;
	list-style: none;
	margin-bottom: 0;
	margin-top: 0;
	padding-left: 0;
	text-align: center;
	text-transform: uppercase;
}

.br-single-post-breadcrumb li {
	align-items: center;
	color: var(--color-text-secondary);
	display: inline-flex;
	gap: 10px;
	min-width: 0;
}

.br-single-post-breadcrumb li + li::before {
	color: var(--color-brand);
	content: "/";
	font-weight: var(--font-weight-bold);
}

.br-single-post-breadcrumb a {
	color: var(--color-brand);
}

.br-single-post-breadcrumb a:hover,
.br-single-post-breadcrumb a:focus-visible {
	color: var(--color-brand-hover);
}

.br-single-post-breadcrumb span {
	overflow-wrap: anywhere;
}

/* ----------------------
   Single post content
   ---------------------- */

/*       Centered long-form article column      */
.br-single-post-article {
	background: var(--color-bg-page);
	padding: 0 0 96px;
}

.br-single-post__content {
	margin: 0 auto;
	max-width: 760px;
	padding: 0 20px;
	width: 100%;
}

.br-single-post-gallery {
	margin: 0 auto 34px;
}

.br-single-post-gallery .gallery {
	margin: 0 auto;
}

.br-single-post-gallery img {
	border-radius: var(--radius-md);
	height: auto;
	width: 100%;
}

.br-single-post-rich-text {
	color: var(--color-text-secondary);
	font-size: 17px;
	line-height: 1.78;
	margin: 0 auto;
}

.br-single-post-rich-text > *:first-child {
	margin-top: 0;
}

.br-single-post-rich-text > *:last-child {
	margin-bottom: 0;
}

.br-single-post-rich-text p,
.br-single-post-rich-text ol,
.br-single-post-rich-text ul {
	margin: 0 0 24px;
}

.br-single-post-rich-text ol,
.br-single-post-rich-text ul {
	padding-left: 1.35em;
}

.br-single-post-rich-text li {
	margin: 0 0 4px;
}

.br-single-post-rich-text strong,
.br-single-post-rich-text b {
	color: var(--color-text-primary);
	font-weight: var(--font-weight-bold);
}

.br-single-post-rich-text a {
	color: var(--color-brand);
	font-weight: var(--font-weight-semibold);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.br-single-post-rich-text a:hover,
.br-single-post-rich-text a:focus-visible {
	color: var(--color-brand-hover);
}

.br-single-post-rich-text h2,
.br-single-post-rich-text h3,
.br-single-post-rich-text h4 {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 42px 0 16px;
}

.br-single-post-rich-text h2 {
	font-size: 38px;
}

.br-single-post-rich-text h3 {
	font-size: 30px;
}

.br-single-post-rich-text h4 {
	font-size: 24px;
}

.br-single-post-rich-text img {
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	height: auto;
	margin: 12px auto 28px;
	max-width: 100%;
}

.br-single-post-rich-text blockquote {
	border-left: 4px solid var(--color-brand);
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 24px;
	line-height: 1.42;
	margin: 34px 0;
	padding: 8px 0 8px 24px;
}

.br-single-post-rich-text .page-links {
	color: var(--color-text-primary);
	font-weight: var(--font-weight-bold);
	margin-top: 34px;
	text-align: center;
}

.br-single-post-actions {
	display: flex;
	justify-content: center;
	margin-top: 54px;
}

.br-single-post-button {
	align-items: center;
	background: var(--button-primary-bg);
	border: var(--border-width) solid var(--button-primary-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--button-primary-shadow);
	color: var(--button-primary-text);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	justify-content: center;
	line-height: 1;
	min-height: 48px;
	padding: 0 28px;
	text-transform: uppercase;
	transition:
			background-color var(--duration-normal) var(--ease-standard),
			border-color var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
}

.br-single-post-button:hover,
.br-single-post-button:focus-visible {
	background: var(--button-primary-bg-hover);
	border-color: var(--button-primary-bg-hover);
	color: var(--button-primary-text);
	transform: translateY(-2px);
}

/* ----------------------
   Single post responsive rules
   ---------------------- */

/*       Keep the article readable on small screens      */
@media (max-width: 768px) {
	.br-single-post-hero {
		min-height: 410px;
		padding: 58px 0 104px;
	}

	.br-single-post-hero h1 {
		font-size: 46px;
	}

	.br-single-post-rich-text {
		font-size: 16px;
	}

	.br-single-post-rich-text h2 {
		font-size: 34px;
	}
}

@media (max-width: 600px) {
	.br-single-post__wrap {
		width: min(100% - 32px, var(--container-max-width));
	}

	.br-single-post-hero {
		min-height: 350px;
		padding: 48px 0 66px;
	}

	.br-single-post-hero::after {
		bottom: -62px;
		height: 104px;
		left: -8px;
		right: -8px;
	}

	.br-single-post-hero h1 {
		font-size: 38px;
	}

	.br-single-post-breadcrumb {
		padding-bottom: 28px;
	}

	.br-single-post-breadcrumb ol {
		font-size: 12px;
		gap: 8px;
	}

	.br-single-post-breadcrumb li {
		gap: 8px;
	}

	.br-single-post-article {
		padding-bottom: 72px;
	}

	.br-single-post__content {
		padding-left: 16px;
		padding-right: 16px;
	}

	.br-single-post-rich-text h2 {
		font-size: 30px;
	}

	.br-single-post-rich-text h3 {
		font-size: 26px;
	}
}

@media (max-width: 480px) {
	.br-single-post-hero h1 {
		font-size: 34px;
		max-width: 330px;
		overflow-wrap: break-word;
	}

	.br-single-post-rich-text h2,
	.br-single-post-rich-text h3,
	.br-single-post-rich-text h4 {
		overflow-wrap: break-word;
	}
}


/* =======================================================
   [PRODUCTS PAGE]
======================================================= */

/* ----------------------
   Products page shell
   ---------------------- */

/*       WooCommerce archive reset      */
body.post-type-archive-product,
body.tax-product_cat {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.post-type-archive-product #page.grid-container,
body.post-type-archive-product .site.grid-container,
body.post-type-archive-product #content.site-content,
body.post-type-archive-product .content-area,
body.post-type-archive-product .site-main,
body.tax-product_cat #page.grid-container,
body.tax-product_cat .site.grid-container,
body.tax-product_cat #content.site-content,
body.tax-product_cat .content-area,
body.tax-product_cat .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.post-type-archive-product #content.site-content,
body.tax-product_cat #content.site-content {
	display: block;
}

/*       Products page base elements      */
.br-products,
.br-products * {
	box-sizing: border-box;
}

.br-products {
	--products-hero-image: url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");
	--products-category-image: url("assets/images/product-thumb.jpg");

	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	line-height: 1.65;
}

.br-products p {
	margin: 0;
}

.br-products a {
	color: inherit;
	text-decoration: none;
}

.br-products__wrap {
	margin: 0 auto;
	width: min(100% - 40px, var(--container-max-width));
}

/* ----------------------
   Products hero
   ---------------------- */

/*       Company-style image title area      */
.br-products-hero {
	align-items: flex-start;
	background-image:
			linear-gradient(rgba(24, 18, 15, .52), rgba(24, 18, 15, .7)),
			var(--products-hero-image);
	background-position: center, center 48%;
	background-repeat: no-repeat;
	background-size: auto, cover;
	display: flex;
	isolation: isolate;
	min-height: 460px;
	overflow: hidden;
	padding: 48px 0 104px;
	position: relative;
}

.br-products-hero::after {
	background: var(--color-bg-page);
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -96px;
	content: "";
	height: 188px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-products-hero__content {
	position: relative;
	z-index: 1;
}

.br-products-hero__content {
	color: #fff;
	margin: 52px auto 0;
	max-width: 920px;
	text-align: center;
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .72),
			0 2px 8px rgba(0, 0, 0, .48);
}

.br-products-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: 66px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 auto 18px;
	max-width: 860px;
}

.br-products .br-products-hero__lead {
	color: rgba(255, 255, 255, .92);
	font-size: 21px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.45;
	margin: 0 auto;
	max-width: 820px;
}

/* ----------------------
   Products category cards
   ---------------------- */

/*       Two-card product family grid      */
.br-products-catalog {
	background: var(--color-bg-page);
	margin-top: -42px;
	padding: 0 0 92px;
	position: relative;
	z-index: 2;
}

.br-products-catalog-breadcrumb {
	margin: 0 auto 54px;
	max-width: 1120px;
}

.br-products-catalog-breadcrumb ol {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.br-products-catalog-breadcrumb li {
	align-items: center;
	color: var(--color-text-secondary);
	display: inline-flex;
	font-size: 15px;
	line-height: 1.45;
	min-width: 0;
}

.br-products-catalog-breadcrumb li + li::before {
	color: var(--color-text-secondary);
	content: ">";
	font-size: 16px;
	line-height: 1;
	margin-right: 12px;
	opacity: var(--opacity-muted);
}

.br-products-catalog-breadcrumb a {
	color: var(--color-brand);
	text-decoration: none;
}

.br-products-catalog-breadcrumb a:hover,
.br-products-catalog-breadcrumb a:focus-visible {
	color: var(--color-brand-hover);
}

.br-products-catalog-breadcrumb span {
	color: var(--color-text-secondary);
	overflow-wrap: anywhere;
}

.br-products-catalog .woocommerce-notices-wrapper,
.br-products-catalog .br-products-toolbar,
.br-products-catalog ul.products,
.br-products-catalog .br-products-category-grid {
	max-width: 1120px;
}

.br-products-catalog .woocommerce-notices-wrapper {
	margin-left: auto;
	margin-right: auto;
}

.br-products-toolbar {
	align-items: center;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	margin: 0 auto 28px;
}

.br-products-catalog .woocommerce-result-count {
	color: var(--color-text-secondary);
	font-size: 15px;
	font-weight: var(--font-weight-medium);
	line-height: 1.45;
	margin: 0;
}

.br-products-catalog .woocommerce-ordering {
	margin: 0;
}

.br-products-catalog .woocommerce-ordering select {
	appearance: auto;
	background: var(--input-bg);
	border: var(--border-width) solid var(--input-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-sm);
	color: var(--input-text);
	font-size: 15px;
	font-weight: var(--font-weight-medium);
	height: 44px;
	line-height: 1.3;
	min-width: 220px;
	padding: 0 14px;
}

.br-products-catalog .woocommerce-ordering select:focus-visible {
	border-color: var(--input-border-focus);
	box-shadow: 0 0 0 4px rgba(195, 44, 44, .12);
	outline: none;
}

.br-products-catalog ul.products {
	margin-left: auto;
	margin-right: auto;
}

.br-products-catalog ul.products:has(li.product-category) {
	display: grid;
	gap: 34px 30px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.br-products-catalog ul.products:has(li.product-category)::before,
.br-products-catalog ul.products:has(li.product-category)::after {
	display: none;
}

.br-products-catalog ul.products li.product-category.product {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
	transition:
			border-color var(--duration-normal) var(--ease-standard),
			box-shadow var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
	width: auto !important;
}

.br-products-catalog ul.products li.product-category.product:hover,
.br-products-catalog ul.products li.product-category.product:focus-within {
	border-color: rgba(182, 37, 42, .22);
	box-shadow: 0 18px 42px rgba(33, 24, 20, .12);
	transform: translateY(-3px);
}

.br-products-catalog ul.products li.product-category.product > a {
	color: var(--color-text-primary);
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.br-products-catalog ul.products li.product-category .wc-product-image {
	background: var(--color-bg-muted);
	border-bottom: var(--border-width) solid var(--card-border);
	overflow: hidden;
	position: relative;
}

.br-products-catalog ul.products li.product-category .inside-wc-product-image {
	aspect-ratio: 1.72 / 1;
	display: block;
	overflow: hidden;
}

.br-products-catalog ul.products li.product-category img {
	height: 100% !important;
	object-fit: cover;
	transition:
			filter var(--duration-slow) var(--ease-standard),
			transform var(--duration-slow) var(--ease-standard);
	width: 100% !important;
}

.br-products-catalog ul.products li.product-category.product:hover img,
.br-products-catalog ul.products li.product-category.product:focus-within img {
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.035);
}

.br-products-catalog ul.products li.product-category .woocommerce-loop-category__title {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 20px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0;
	padding: 18px 16px 20px;
}

.br-products-catalog ul.products li.product-category .woocommerce-loop-category__title mark.count {
	background: rgba(182, 37, 42, .08);
	border: var(--border-width) solid rgba(182, 37, 42, .14);
	border-radius: var(--radius-full);
	color: var(--color-text-secondary);
	display: inline-flex;
	font-family: var(--font-family-body);
	font-size: 12px;
	font-weight: var(--font-weight-semibold);
	line-height: 1;
	margin-left: 5px;
	padding: 4px 7px;
	vertical-align: middle;
}

.br-products-catalog ul.products:not(:has(li.product-category)) {
	display: grid;
	gap: 36px 30px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.br-products-catalog ul.products:not(:has(li.product-category))::before,
.br-products-catalog ul.products:not(:has(li.product-category))::after {
	display: none;
}

.br-products-catalog ul.products li.product:not(.product-category) {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
	transition:
			border-color var(--duration-normal) var(--ease-standard),
			box-shadow var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
	width: auto !important;
}

.br-products-catalog ul.products li.product:not(.product-category):hover,
.br-products-catalog ul.products li.product:not(.product-category):focus-within {
	border-color: rgba(182, 37, 42, .22);
	box-shadow: 0 18px 42px rgba(33, 24, 20, .12);
	transform: translateY(-3px);
}

.br-products-catalog ul.products li.product:not(.product-category) > a {
	color: var(--color-text-primary);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0 0 22px;
	text-decoration: none;
}

.br-products-catalog ul.products li.product:not(.product-category) .wc-product-image {
	align-items: center;
	background: linear-gradient(180deg, var(--color-bg-page) 0%, var(--color-bg-muted) 100%);
	border-bottom: var(--border-width) solid var(--card-border);
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 18px;
	position: relative;
}

.br-products-catalog ul.products li.product:not(.product-category) .inside-wc-product-image {
	align-items: center;
	aspect-ratio: 1.45 / 1;
	display: flex;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.br-products-catalog ul.products li.product:not(.product-category) img {
	height: 100% !important;
	max-height: 178px;
	object-fit: contain;
	transition:
			filter var(--duration-slow) var(--ease-standard),
			transform var(--duration-slow) var(--ease-standard);
	width: 100% !important;
}

.br-products-catalog ul.products li.product:not(.product-category):hover img,
.br-products-catalog ul.products li.product:not(.product-category):focus-within img {
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.035);
}

.br-products-catalog ul.products li.product:not(.product-category) .woocommerce-loop-product__title {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 18px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0;
	padding: 20px 18px 10px;
}

.br-products-catalog ul.products li.product:not(.product-category) .price {
	color: var(--color-brand);
	font-family: var(--font-family-body);
	font-size: 15px;
	font-weight: var(--font-weight-bold);
	line-height: 1.35;
	margin: 0;
	padding: 0 18px;
}

.br-products-catalog ul.products li.product:not(.product-category) .price + .price {
	margin-top: 7px;
}

.br-products-catalog ul.products li.product:not(.product-category) .price .per {
	color: var(--color-text-secondary);
	font-weight: var(--font-weight-semibold);
}

.br-products-category-grid {
	display: grid;
	gap: 42px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0 auto;
	max-width: 1120px;
}

.br-products-category-card {
	min-width: 0;
}

.br-products-category-card__link {
	align-items: center;
	background: var(--color-bg-muted);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	display: flex;
	justify-content: center;
	min-height: 390px;
	overflow: hidden;
	padding: 34px;
	position: relative;
}

.br-products-category-card__link::before,
.br-products-category-card__link::after {
	content: "";
	inset: 0;
	position: absolute;
}

.br-products-category-card__link::before {
	background-image: var(--products-category-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition:
			filter var(--duration-slow) var(--ease-standard),
			transform var(--duration-slow) var(--ease-standard);
	z-index: 0;
}

.br-products-category-card__link::after {
	background: linear-gradient(rgba(255, 255, 255, .12), rgba(24, 18, 15, .08));
	z-index: 1;
}

.br-products-category-card__title {
	background: rgba(255, 255, 255, .88);
	color: var(--color-brand-hover);
	display: block;
	font-family: var(--font-family-heading);
	font-size: 39px;
	font-weight: var(--font-weight-regular);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	max-width: 100%;
	padding: 24px 34px;
	position: relative;
	text-align: center;
	width: min(100%, 520px);
	z-index: 2;
}

.br-products-category-card__link:hover::before,
.br-products-category-card__link:focus-visible::before {
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.035);
}

.br-products-category-card__link:hover .br-products-category-card__title,
.br-products-category-card__link:focus-visible .br-products-category-card__title {
	color: var(--color-brand);
}

/* ----------------------
   Products responsive rules
   ---------------------- */

/*       Tablet and mobile stacking      */
@media (max-width: 900px) {
	.br-products-catalog ul.products:has(li.product-category) {
		gap: 26px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.br-products-catalog ul.products:not(:has(li.product-category)) {
		gap: 26px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.br-products-category-grid {
		gap: 28px;
		grid-template-columns: 1fr;
		max-width: 680px;
	}

	.br-products-category-card__link {
		min-height: 360px;
	}
}

@media (max-width: 768px) {
	.br-products-hero {
		min-height: 440px;
		padding: 40px 0 96px;
	}

	.br-products-hero h1 {
		font-size: 46px;
	}

	.br-products .br-products-hero__lead {
		font-size: 18px;
	}

	.br-products-catalog {
		margin-top: -34px;
		padding: 0 0 72px;
	}

	.br-products-category-card__title {
		font-size: 34px;
	}
}

@media (max-width: 600px) {
	.br-products__wrap {
		width: min(100% - 32px, var(--container-max-width));
	}

	.br-products-hero {
		min-height: 370px;
		padding: 34px 0 48px;
	}

	.br-products-hero::after {
		bottom: -62px;
		height: 104px;
		left: -8px;
		right: -8px;
	}

	.br-products-hero h1 {
		font-size: 38px;
	}

	.br-products-hero__content {
		margin-top: 34px;
	}

	.br-products .br-products-hero__lead {
		font-size: 16px;
		margin-left: auto;
		margin-right: auto;
		max-width: 334px;
		text-align: center;
	}

	.br-products-category-grid {
		gap: 22px;
	}

	.br-products-catalog ul.products:has(li.product-category) {
		grid-template-columns: 1fr;
	}

	.br-products-catalog ul.products:not(:has(li.product-category)) {
		grid-template-columns: 1fr;
	}

	.br-products-catalog ul.products li.product-category .woocommerce-loop-category__title {
		font-size: 19px;
	}

	.br-products-catalog ul.products li.product:not(.product-category) .woocommerce-loop-product__title {
		font-size: 19px;
	}

	.br-products-toolbar {
		align-items: stretch;
		flex-direction: column;
		gap: 14px;
	}

	.br-products-catalog .woocommerce-result-count {
		text-align: left;
	}

	.br-products-catalog .woocommerce-ordering select {
		width: 100%;
	}

	.br-products-category-card__link {
		min-height: 285px;
		padding: 22px;
	}

	.br-products-category-card__title {
		font-size: 29px;
		padding: 18px 20px;
	}
}

@media (max-width: 480px) {
	.br-products-hero h1 {
		font-size: 34px;
		max-width: 330px;
		overflow-wrap: break-word;
	}

	.br-products-category-card__link {
		min-height: 250px;
	}

	.br-products-category-card__title {
		font-size: 26px;
		overflow-wrap: break-word;
	}
}



/* =======================================================
   [SINGLE PRODUCT PAGE]
======================================================= */

/* ----------------------
   Single product shell
   ---------------------- */

/*       Full-width WooCommerce product reset      */
body.single-product {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.single-product #page.grid-container,
body.single-product .site.grid-container,
body.single-product #content.site-content,
body.single-product .content-area,
body.single-product .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.single-product #content.site-content {
	display: block;
}

body.single-product .site-main {
	padding-top: 56px;
}

body.single-product .woocommerce-breadcrumb {
	border: 0;
	color: var(--color-text-secondary);
	font-size: 14px;
	line-height: 1.55;
	margin: 0 auto 28px;
	max-width: 1120px;
	padding: 0 !important;
	width: min(100% - 40px, 1120px);
}

body.single-product .woocommerce-breadcrumb a {
	color: var(--color-brand);
	text-decoration: none;
}

body.single-product .woocommerce-breadcrumb a:hover,
body.single-product .woocommerce-breadcrumb a:focus-visible {
	color: var(--color-brand-hover);
}

/* ----------------------
   Product summary
   ---------------------- */

/*       Image and purchase panel      */
body.single-product div.product {
	display: grid;
	gap: 42px;
	grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
	margin: 0 auto;
	max-width: 1120px;
	width: min(100% - 40px, 1120px);
}

body.single-product div.product div.images,
body.single-product div.product div.summary {
	float: none !important;
	margin: 0 !important;
	width: auto !important;
}

body.single-product div.product div.images {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	padding: 18px;
}

body.single-product div.product div.images .wpis-slider-for,
body.single-product div.product div.images .zoom {
	background: linear-gradient(180deg, var(--color-bg-page) 0%, var(--color-bg-muted) 100%);
	border-radius: var(--radius-md);
	overflow: hidden;
}

body.single-product div.product div.images .wpis-slider-for img {
	height: min(62vh, 620px) !important;
	margin: 0 auto;
	object-fit: contain;
	width: 100% !important;
}

body.single-product div.product div.images #wpis-gallery {
	margin: 16px 0 0;
	padding: 0;
}

body.single-product div.product div.images #wpis-gallery li {
	background: var(--color-bg-muted);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	display: inline-flex;
	height: 86px;
	margin: 0 10px 0 0;
	overflow: hidden;
	width: 86px;
}

body.single-product div.product div.images #wpis-gallery img {
	height: 100% !important;
	object-fit: cover;
	width: 100% !important;
}

body.single-product div.product div.summary {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	padding: 38px 36px;
}

body.single-product div.product .product_title {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 54px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-tight);
	margin: 0 0 16px;
}

body.single-product div.product .summary p.price,
body.single-product div.product .summary span.price {
	color: var(--color-brand) !important;
	display: flex;
	flex-wrap: wrap;
	font-family: var(--font-family-body) !important;
	font-size: 25px !important;
	font-weight: var(--font-weight-bold) !important;
	gap: 6px 10px;
	line-height: 1.35 !important;
	margin: 0 0 24px;
	width: 100%;
}

body.single-product div.product .summary p.price .per,
body.single-product div.product .summary span.price .per {
	color: var(--color-text-secondary);
	font-size: 15px;
	font-weight: var(--font-weight-semibold);
	line-height: inherit;
	margin: 0;
}

body.single-product div.product .product_meta {
	border-top: var(--border-width) solid var(--card-border);
	color: var(--color-text-secondary);
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 22px;
	padding-top: 22px;
}

body.single-product div.product .product_meta > span:not(.sku_wrapper) {
	display: block;
}

body.single-product div.product .product_meta a {
	color: var(--color-brand);
	text-decoration: none;
}

body.single-product div.product .product_meta a:hover,
body.single-product div.product .product_meta a:focus-visible {
	color: var(--color-brand-hover);
}

body.single-product div.product form.cart {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin: 0 0 18px;
}

body.single-product .woocommerce div.product form.cart div.quantity,
body.single-product div.product form.cart div.quantity {
	margin: 0;
}

body.single-product .quantity .qty {
	background: var(--input-bg);
	border: var(--border-width) solid var(--input-border);
	border-radius: var(--radius-sm);
	color: var(--input-text);
	font-family: var(--font-family-body);
	font-size: 16px;
	font-weight: var(--font-weight-medium);
	height: 46px;
	padding: 0 12px;
	text-align: center;
	width: 92px;
}

body.single-product .quantity .qty:focus-visible {
	border-color: var(--input-border-focus);
	box-shadow: 0 0 0 4px rgba(195, 44, 44, .12);
	outline: none;
}

body.single-product div.product .single_add_to_cart_button,
body.single-product .woocommerce .add-request-quote-button.button,
body.single-product .woocommerce .add-request-quote-button-addons.button,
body.single-product .woocommerce .yith_ywraq_add_item_browse_message {
	background: var(--button-primary-bg);
	border: var(--border-width-strong) solid var(--button-primary-border);
	border-radius: var(--radius-sm);
	box-shadow: var(--button-primary-shadow);
	color: var(--button-primary-text);
	font-family: var(--font-family-body);
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	line-height: 1.2;
	min-height: 46px;
	padding: 13px 22px;
	text-align: center;
	text-transform: uppercase;
	transition:
			background var(--duration-normal) var(--ease-standard),
			border-color var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
	width: auto;
}

body.single-product div.product .single_add_to_cart_button:hover,
body.single-product div.product .single_add_to_cart_button:focus-visible,
body.single-product .woocommerce .add-request-quote-button.button:hover,
body.single-product .woocommerce .add-request-quote-button.button:focus-visible,
body.single-product .woocommerce .add-request-quote-button-addons.button:hover,
body.single-product .woocommerce .add-request-quote-button-addons.button:focus-visible {
	background: var(--button-primary-bg-hover);
	border-color: var(--button-primary-bg-hover);
	color: var(--button-primary-text);
	transform: translateY(-1px);
}

body.single-product .yith-ywraq-add-to-quote {
	margin-top: 0;
}

body.single-product div.product .woocommerce-product-details__short-description {
	background: var(--color-bg-muted);
	border-radius: var(--radius-sm);
	color: var(--color-text-secondary);
	font-family: var(--font-family-body);
	font-size: 16px;
	line-height: 1.65;
	margin-top: 24px;
	padding: 18px 20px;
}

body.single-product div.product .woocommerce-product-details__short-description p {
	margin: 0;
}

/* ----------------------
   Product tabs and related products
   ---------------------- */

/*       Detail panels and similar product cards      */
body.single-product div.product .woocommerce-tabs,
body.single-product div.product .related.products {
	grid-column: 1 / -1;
}

body.single-product div.product .woocommerce-tabs {
	background: var(--color-bg-muted);
	border-radius: var(--radius-md);
	margin-top: 30px;
	padding: 0;
}

body.single-product div.product .woocommerce-tabs::before {
	display: none;
}

body.single-product div.product .woocommerce-tabs ul.tabs {
	background: var(--color-text-primary);
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	max-width: none;
	padding: 0 24px;
}

body.single-product div.product .woocommerce-tabs ul.tabs li {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;
}

body.single-product div.product .woocommerce-tabs ul.tabs li::before,
body.single-product div.product .woocommerce-tabs ul.tabs li::after,
body.single-product div.product .woocommerce-tabs ul.tabs::before {
	display: none !important;
}

body.single-product div.product .woocommerce-tabs ul.tabs li a {
	color: rgba(255, 255, 255, .82);
	display: block;
	font-family: var(--font-family-body);
	font-size: 14px;
	font-weight: var(--font-weight-bold);
	line-height: 1.4;
	padding: 18px 18px;
	text-transform: uppercase;
}

body.single-product div.product .woocommerce-tabs ul.tabs li.active a,
body.single-product div.product .woocommerce-tabs ul.tabs li a:hover,
body.single-product div.product .woocommerce-tabs ul.tabs li a:focus-visible {
	color: #fff;
}

body.single-product div.product .woocommerce-tabs .panel {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-top: 0;
	border-radius: 0 0 var(--radius-md) var(--radius-md);
	color: var(--color-text-secondary);
	margin: 0;
	max-width: none;
	padding: 34px;
	width: 100%;
}

body.single-product div.product .woocommerce-tabs .panel h2 {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 30px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	margin: 0 0 16px;
}

body.single-product div.product .related.products {
	padding: 54px 0 0;
}

body.single-product div.product .related.products > h2 {
	color: var(--color-brand-hover);
	font-family: var(--font-family-heading);
	font-size: 46px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-tight);
	margin: 0 0 28px;
	text-align: left;
	text-transform: none;
}

body.single-product div.product .related.products ul.products {
	display: grid;
	gap: 36px 30px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0 !important;
	max-width: none;
	padding: 0 !important;
	width: 100%;
}

body.single-product div.product .related.products ul.products::before,
body.single-product div.product .related.products ul.products::after {
	display: none;
}

body.single-product div.product .related.products ul.products li.product {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	float: none !important;
	margin: 0 !important;
	min-width: 0;
	overflow: hidden;
	padding: 0;
	text-align: center;
	transition:
			border-color var(--duration-normal) var(--ease-standard),
			box-shadow var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
	width: auto !important;
}

body.single-product div.product .related.products ul.products li.product:hover,
body.single-product div.product .related.products ul.products li.product:focus-within {
	border-color: rgba(182, 37, 42, .22);
	box-shadow: 0 18px 42px rgba(33, 24, 20, .12);
	transform: translateY(-3px);
}

body.single-product div.product .related.products ul.products li.product > a {
	color: var(--color-text-primary);
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 0 0 22px;
	text-decoration: none;
}

body.single-product div.product .related.products ul.products li.product .wc-product-image {
	align-items: center;
	background: linear-gradient(180deg, var(--color-bg-page) 0%, var(--color-bg-muted) 100%);
	border-bottom: var(--border-width) solid var(--card-border);
	display: flex;
	justify-content: center;
	overflow: hidden;
	padding: 18px;
}

body.single-product div.product .related.products ul.products li.product .inside-wc-product-image {
	align-items: center;
	aspect-ratio: 1.45 / 1;
	display: flex;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

body.single-product div.product .related.products ul.products li.product img {
	height: 100% !important;
	max-height: 178px;
	object-fit: contain;
	transition:
			filter var(--duration-slow) var(--ease-standard),
			transform var(--duration-slow) var(--ease-standard);
	width: 100% !important;
}

body.single-product div.product .related.products ul.products li.product:hover img,
body.single-product div.product .related.products ul.products li.product:focus-within img {
	filter: saturate(1.04) contrast(1.02);
	transform: scale(1.035);
}

body.single-product div.product .related.products ul.products li.product .woocommerce-loop-product__title {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 18px !important;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0;
	padding: 20px 18px 10px;
}

body.single-product div.product .related.products ul.products li.product .price {
	color: var(--color-brand);
	font-family: var(--font-family-body);
	font-size: 15px;
	font-weight: var(--font-weight-bold);
	line-height: 1.35;
	margin: 0;
	padding: 0 18px;
}

body.single-product div.product .related.products ul.products li.product .price .per {
	color: var(--color-text-secondary);
	font-weight: var(--font-weight-semibold);
}

@media (max-width: 980px) {
	body.single-product div.product {
		grid-template-columns: 1fr;
	}

	body.single-product div.product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	body.single-product .site-main {
		padding-top: 34px;
	}

	body.single-product .woocommerce-breadcrumb,
	body.single-product div.product {
		width: min(100% - 32px, 1120px);
	}

	body.single-product div.product div.summary {
		padding: 28px 22px;
	}

	body.single-product div.product .product_title {
		font-size: 38px;
	}

	body.single-product div.product div.images .wpis-slider-for img {
		height: 360px !important;
	}

	body.single-product div.product .woocommerce-tabs ul.tabs {
		padding: 0 14px;
	}

	body.single-product div.product .woocommerce-tabs .panel {
		padding: 26px 22px;
	}

	body.single-product div.product .related.products > h2 {
		font-size: 34px;
	}

	body.single-product div.product .related.products ul.products {
		grid-template-columns: 1fr;
	}
}


/* =======================================================
   [CONSULTATION PAGE]
======================================================= */

/* ----------------------
   Consultation page shell
   ---------------------- */

/*       Full-width template reset      */
body.page-template-consultation-request {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.page-template-consultation-request #page.grid-container,
body.page-template-consultation-request .site.grid-container,
body.page-template-consultation-request #content.site-content,
body.page-template-consultation-request .content-area,
body.page-template-consultation-request .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.page-template-consultation-request #content.site-content {
	display: block;
}

body.page-template-consultation-request .featured-image.page-header-image {
	display: none;
}

/*       Consultation page base elements      */
.br-consultation,
.br-consultation * {
	box-sizing: border-box;
}

.br-consultation {
	--consultation-dark: #251c18;
	--consultation-hero-image: url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");

	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	line-height: 1.65;
}

.br-consultation p {
	margin: 0;
}

.br-consultation a {
	color: inherit;
	text-decoration: none;
}

.br-consultation__wrap {
	margin: 0 auto;
	width: min(100% - 40px, var(--container-max-width));
}

.br-consultation-section {
	padding: var(--section-padding-block) 0;
}

/* ----------------------
   Consultation shared content
   ---------------------- */

/*       Headings, eyebrow, buttons, and actions      */
.br-consultation-eyebrow {
	color: var(--color-brand);
	font-family: var(--font-family-body);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	line-height: 1.65;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.br-consultation-section__head {
	margin: 0 auto 46px;
	max-width: 780px;
	text-align: center;
}

.br-consultation-section__head .br-consultation-eyebrow {
	color: var(--color-text-primary);
}

.br-consultation-section__head h2 {
	color: var(--color-brand-hover);
	font-family: var(--font-family-heading);
	font-size: 50px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-tight);
	margin: 0;
}

.br-consultation-section__head p:not(.br-consultation-eyebrow) {
	color: var(--color-text-secondary);
	font-size: 18px;
	line-height: 1.75;
	margin: 20px auto 0;
	max-width: 720px;
}

.br-consultation-button,
.br-consultation .consultation-form .button,
.br-consultation .consultation-form button,
.br-consultation .consultation-form input[type="button"],
.br-consultation .consultation-form input[type="submit"],
.br-consultation .consultation-form .bt {
	align-items: center;
	background: var(--button-primary-bg);
	border: var(--border-width-strong) solid var(--button-primary-border);
	border-radius: var(--radius-full);
	box-shadow: var(--button-primary-shadow);
	color: var(--button-primary-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: var(--font-weight-bold);
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	min-height: 48px;
	padding: 0 24px;
	text-align: center;
	text-transform: uppercase;
	transition:
			background var(--duration-normal) var(--ease-standard),
			border-color var(--duration-normal) var(--ease-standard),
			color var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
}

.br-consultation-button:hover,
.br-consultation-button:focus-visible,
.br-consultation .consultation-form .button:hover,
.br-consultation .consultation-form .button:focus-visible,
.br-consultation .consultation-form button:hover,
.br-consultation .consultation-form button:focus-visible,
.br-consultation .consultation-form input[type="button"]:hover,
.br-consultation .consultation-form input[type="button"]:focus-visible,
.br-consultation .consultation-form input[type="submit"]:hover,
.br-consultation .consultation-form input[type="submit"]:focus-visible,
.br-consultation .consultation-form .bt:hover,
.br-consultation .consultation-form .bt:focus-visible {
	background: var(--button-primary-bg-hover);
	border-color: var(--button-primary-bg-hover);
	color: var(--button-primary-text);
	transform: translateY(-1px);
}

.br-consultation-button--dark {
	background: #fff;
	border-color: #fff;
	box-shadow: none;
	color: var(--consultation-dark);
	margin-top: 30px;
}

.br-consultation-button--dark:hover,
.br-consultation-button--dark:focus-visible {
	background: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
	color: #fff;
}

/* ----------------------
   Consultation hero
   ---------------------- */

/*       Image-backed request title area      */
.br-consultation-hero {
	align-items: flex-start;
	background-image:
			linear-gradient(rgba(24, 18, 15, .48), rgba(24, 18, 15, .72)),
			var(--consultation-hero-image);
	background-position: center, center 46%;
	background-repeat: no-repeat;
	background-size: auto, cover;
	display: flex;
	isolation: isolate;
	min-height: 460px;
	overflow: hidden;
	padding: 48px 0 104px;
	position: relative;
}

.br-consultation-hero::after {
	background: var(--color-bg-page);
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -96px;
	content: "";
	height: 188px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-consultation-breadcrumbs,
.br-consultation-hero__content {
	position: relative;
	z-index: 1;
}

.br-consultation-breadcrumbs {
	align-items: center;
	color: rgba(255, 255, 255, .82);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	gap: 10px;
	margin: 0 0 30px;
	text-transform: uppercase;
}

.br-consultation-breadcrumbs a {
	color: rgba(255, 255, 255, .9);
}

.br-consultation-breadcrumbs a:hover,
.br-consultation-breadcrumbs a:focus-visible {
	color: #fff;
}

.br-consultation-hero__content {
	color: #fff;
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .72),
			0 2px 8px rgba(0, 0, 0, .48);
}

.br-consultation-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: 66px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 auto 18px;
	max-width: 860px;
}

.br-consultation .br-consultation-hero__lead {
	color: rgba(255, 255, 255, .92);
	font-size: 21px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.45;
	margin: 0 auto;
	max-width: 780px;
}

/* ----------------------
   Consultation guidance
   ---------------------- */

/*       Editable policy copy      */
.br-consultation-guidance {
	background: var(--color-bg-page);
	padding-top: 34px;
}

.br-consultation-rich-text {
	color: var(--color-text-secondary);
	font-size: 16px;
	line-height: 1.78;
	margin-top: 30px;
}

.br-consultation-rich-text > *:first-child {
	margin-top: 0;
}

.br-consultation-rich-text > *:last-child {
	margin-bottom: 0;
}

.br-consultation-rich-text h2,
.br-consultation-rich-text h3 {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 28px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 30px 0 12px;
	text-align: center !important;
}

.br-consultation-rich-text p {
	margin: 0 0 18px;
	text-align: center !important;
}

.br-consultation-rich-text strong {
	color: var(--color-text-primary);
}

.br-consultation-rich-text a {
	color: var(--color-brand-hover);
	font-weight: var(--font-weight-bold);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

/* ----------------------
   Consultation quote builder
   ---------------------- */

/*       Request list and YITH card shell      */
.br-consultation-quote {
	background: var(--color-bg-page);
	padding-top: 24px;
}

.br-consultation-quote__layout {
	display: block;
}

.br-consultation .consultation-request-form {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	min-width: 0;
	padding: clamp(24px, 3vw, 38px);
}

.br-consultation .consultation-form,
.br-consultation .ywraq-wrapper,
.br-consultation .ywraq-form-table-wrapper {
	margin: 0;
	min-width: 0;
	width: 100%;
}

.br-consultation #yith-ywraq-message {
	margin: 0 0 20px;
}

/* ----------------------
   Consultation YITH empty state
   ---------------------- */

/*       Empty request list panel      */
.br-consultation .ywraq-empty .ywraq-before-form {
	align-items: center;
	background:
			linear-gradient(rgba(255, 255, 255, .84), rgba(255, 255, 255, .92)),
			var(--color-bg-muted);
	border: var(--border-width-strong) dashed #d7c9c1;
	border-radius: var(--radius-md);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 370px;
	padding: 46px 28px;
	text-align: center;
}

.br-consultation .ywraq-empty .ywraq-before-form::before {
	background: #fff;
	border: 2px solid var(--color-text-secondary);
	border-radius: 4px;
	box-shadow:
			18px -12px 0 -13px #fff,
			18px -12px 0 -11px var(--color-text-secondary);
	content: "";
	display: block;
	height: 62px;
	margin: 0 0 24px;
	width: 48px;
}

.br-consultation .ywraq_list_empty_message {
	color: var(--color-text-primary);
	font-size: 17px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.55;
	margin: 0 0 20px;
	max-width: 420px;
}

.br-consultation .ywraq-empty .return-to-shop,
.br-consultation .ywraq-empty .return-to-shop .button {
	margin: 0;
}

/* ----------------------
   Consultation YITH product table
   ---------------------- */

/*       Request list table and update actions      */
.br-consultation .yith-ywraq-before-table,
.br-consultation .ywraq-before-form {
	margin-bottom: 20px;
}

.br-consultation .yith-ywraq-before-table .button,
.br-consultation .ywraq-before-form .button.return_to_shop_url {
	margin: 0;
}

.br-consultation #yith-ywraq-form {
	margin: 0;
}

.br-consultation table.shop_table,
.br-consultation table.shop_table.cart {
	background: #fff;
	border: var(--border-width) solid var(--card-border);
	border-collapse: separate;
	border-radius: var(--radius-md);
	border-spacing: 0;
	box-shadow: var(--shadow-sm);
	margin: 0;
	overflow: hidden;
	width: 100%;
}

.br-consultation table.shop_table thead th {
	background: var(--color-bg-muted);
	border: 0;
	color: var(--color-text-primary);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.4;
	padding: 18px 16px;
	text-transform: uppercase;
}

.br-consultation table.shop_table tbody td,
.br-consultation table.shop_table tbody th {
	border-color: var(--color-border);
	color: var(--color-text-secondary);
	padding: 20px 16px;
	vertical-align: middle;
}

.br-consultation table.shop_table tbody tr.cart_item:first-child td {
	border-top: 0;
}

.br-consultation table.shop_table .product-remove {
	text-align: center;
	width: 48px;
}

.br-consultation table.shop_table .remove,
.br-consultation .yith-ywraq-item-remove {
	align-items: center;
	background: rgba(182, 37, 42, .1);
	border: var(--border-width) solid rgba(182, 37, 42, .24);
	border-radius: var(--radius-full);
	color: var(--color-brand-hover) !important;
	display: inline-flex;
	font-size: 22px;
	font-weight: var(--font-weight-bold);
	height: 32px;
	justify-content: center;
	line-height: 1;
	width: 32px;
}

.br-consultation table.shop_table .remove:hover,
.br-consultation table.shop_table .remove:focus-visible,
.br-consultation .yith-ywraq-item-remove:hover,
.br-consultation .yith-ywraq-item-remove:focus-visible {
	background: var(--color-brand-hover);
	color: #fff !important;
}

.br-consultation table.shop_table .product-thumbnail {
	width: 185px;
}

.br-consultation table.shop_table .product-thumbnail img {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius-sm);
	height: auto;
	max-width: 168px;
	object-fit: cover;
	width: 100%;
}

.br-consultation table.shop_table .product-name a {
	color: var(--color-brand-hover);
	font-weight: var(--font-weight-bold);
}

.br-consultation table.shop_table .product-name a:hover,
.br-consultation table.shop_table .product-name a:focus-visible {
	color: var(--color-text-primary);
}

.br-consultation table.shop_table .product-quantity {
	text-align: center;
	width: 132px;
}

.br-consultation table.shop_table .quantity .qty,
.br-consultation table.shop_table input.qty,
.br-consultation table.shop_table input[type="number"] {
	background: var(--input-bg);
	border: var(--border-width) solid var(--input-border);
	border-radius: var(--radius-sm);
	color: var(--input-text);
	height: 44px;
	padding: 0 10px;
	text-align: center;
	width: 78px;
}

.br-consultation table.shop_table .raq-totals-label,
.br-consultation table.shop_table .raq-totals {
	background: var(--color-bg-muted);
	color: var(--color-text-primary);
	font-weight: var(--font-weight-bold);
}

.br-consultation table.shop_table .raq-totals {
	text-align: right;
}

.br-consultation .update-list-wrapper {
	align-items: center;
	display: flex !important;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.br-consultation .update-list-wrapper .after-table-right {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* ----------------------
   Consultation YITH form fields
   ---------------------- */

/*       Plugin default form and custom step form controls      */
.br-consultation .yith-ywraq-mail-form-wrapper {
	background: #fff;
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	margin-top: 34px;
	padding: clamp(24px, 3vw, 38px);
}

.br-consultation .yith-ywraq-mail-form-wrapper h3 {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 32px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0 0 28px;
}

.br-consultation .yith-ywraq-mail-form-wrapper form,
.br-consultation .consultation-form fieldset {
	display: grid;
	gap: 18px 20px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.br-consultation .consultation-form fieldset {
	border: 0;
	padding: 0;
}

.br-consultation .consultation-form .form-steps,
.br-consultation .consultation-form .form-row-wide,
.br-consultation .consultation-form .textarea,
.br-consultation .consultation-form .form-actions,
.br-consultation .consultation-form .raq-send-request-row,
.br-consultation .consultation-form .g-recaptcha,
.br-consultation .consultation-form .clear,
.br-consultation .consultation-form .woocommerce-account-fields {
	grid-column: 1 / -1;
}

.br-consultation .consultation-form .clear {
	display: none;
}

.br-consultation .consultation-form .form-row,
.br-consultation .consultation-form .form-group {
	float: none;
	margin: 0;
	width: auto;
}

.br-consultation .consultation-form label {
	color: var(--color-text-primary);
	display: block;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	line-height: 1.45;
	margin: 0 0 7px;
}

.br-consultation .consultation-form input[type="text"],
.br-consultation .consultation-form input[type="email"],
.br-consultation .consultation-form input[type="tel"],
.br-consultation .consultation-form input[type="url"],
.br-consultation .consultation-form input[type="password"],
.br-consultation .consultation-form input[type="date"],
.br-consultation .consultation-form input[type="number"],
.br-consultation .consultation-form select,
.br-consultation .consultation-form textarea {
	background: var(--input-bg);
	border: var(--border-width) solid var(--input-border);
	border-radius: var(--radius-sm);
	color: var(--input-text);
	min-height: 50px;
	padding: 12px 14px;
	width: 100%;
}

.br-consultation .consultation-form textarea {
	min-height: 150px;
	resize: vertical;
}

.br-consultation .consultation-form input:focus,
.br-consultation .consultation-form select:focus,
.br-consultation .consultation-form textarea:focus {
	border-color: var(--input-border-focus);
	box-shadow: 0 0 0 3px rgba(195, 44, 44, .12);
	outline: 0;
}

.br-consultation .consultation-form input[type="checkbox"],
.br-consultation .consultation-form input[type="radio"] {
	accent-color: var(--color-brand-hover);
	margin-right: 8px;
}

.br-consultation .consultation-form .form-steps {
	align-items: center;
	border-bottom: var(--border-width) solid var(--color-border);
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	list-style: none;
	margin: 0 0 12px;
	padding: 0 0 20px;
}

.br-consultation .consultation-form .form-steps li {
	color: var(--color-text-secondary);
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	line-height: 1.45;
	text-transform: uppercase;
}

.br-consultation .consultation-form .form-steps li + li::before {
	color: var(--color-border);
	content: ">";
	margin-right: 16px;
}

.br-consultation .consultation-form .form-steps .current {
	color: var(--color-brand-hover);
}

.br-consultation .consultation-form .form-actions,
.br-consultation .consultation-form .raq-send-request-row {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin-top: 18px;
}

.br-consultation .consultation-form .form-actions .previous {
	background: #fff;
	border-color: var(--color-border);
	box-shadow: none;
	color: var(--color-text-primary);
}

.br-consultation .consultation-form .form-actions .previous:hover,
.br-consultation .consultation-form .form-actions .previous:focus-visible {
	background: var(--color-bg-muted);
	border-color: var(--color-border);
	color: var(--color-text-primary);
}

/* ----------------------
   Consultation responsive rules
   ---------------------- */

/*       Tablet and mobile stacking      */
@media (max-width: 1100px) {
}

@media (max-width: 768px) {
	.br-consultation-section {
		padding: 72px 0;
	}

	.br-consultation-hero {
		min-height: 440px;
		padding: 40px 0 96px;
	}

	.br-consultation-breadcrumbs {
		margin-bottom: 18px;
	}

	.br-consultation-guidance {
		padding-top: 28px;
	}

	.br-consultation-quote {
		padding-top: 20px;
	}

	.br-consultation-hero h1 {
		font-size: 46px;
	}

	.br-consultation .br-consultation-hero__lead {
		font-size: 18px;
	}

	.br-consultation-section__head h2 {
		font-size: 38px;
	}

	.br-consultation table.shop_table thead {
		display: none;
	}

	.br-consultation table.shop_table,
	.br-consultation table.shop_table tbody,
	.br-consultation table.shop_table tr,
	.br-consultation table.shop_table td,
	.br-consultation table.shop_table th {
		display: block;
		width: 100%;
	}

	.br-consultation table.shop_table tr.cart_item {
		border-top: var(--border-width) solid var(--color-border);
		padding: 20px;
	}

	.br-consultation table.shop_table tr.cart_item:first-child {
		border-top: 0;
	}

	.br-consultation table.shop_table tbody td,
	.br-consultation table.shop_table tbody th {
		border: 0;
		padding: 8px 0;
		text-align: left;
	}

	.br-consultation table.shop_table td[data-title]::before {
		color: var(--color-text-primary);
		content: attr(data-title);
		display: block;
		font-size: 12px;
		font-weight: var(--font-weight-bold);
		margin-bottom: 5px;
		text-transform: uppercase;
	}

	.br-consultation table.shop_table .product-remove {
		text-align: left;
	}

	.br-consultation table.shop_table .product-thumbnail img {
		max-width: 100%;
		width: 100%;
	}

	.br-consultation table.shop_table .product-quantity {
		text-align: left;
	}

	.br-consultation table.shop_table .raq-totals-row {
		display: none;
	}

	.br-consultation table.shop_table .raq-totals-label,
	.br-consultation table.shop_table .raq-totals {
		padding: 14px 20px;
		text-align: left;
	}
}

@media (max-width: 600px) {
	.br-consultation__wrap {
		width: min(100% - 32px, var(--container-max-width));
	}

	.br-consultation-hero {
		min-height: 370px;
		padding: 34px 0 48px;
	}

	.br-consultation-hero::after {
		bottom: -62px;
		height: 104px;
		left: -8px;
		right: -8px;
	}

	.br-consultation-hero h1 {
		font-size: 38px;
	}

	.br-consultation-button,
	.br-consultation .consultation-form .button,
	.br-consultation .consultation-form button,
	.br-consultation .consultation-form input[type="button"],
	.br-consultation .consultation-form input[type="submit"],
	.br-consultation .consultation-form .bt {
		width: 100%;
	}

	.br-consultation-section__head h2 {
		font-size: 32px;
	}

	.br-consultation-section__head p:not(.br-consultation-eyebrow) {
		font-size: 16px;
	}

	.br-consultation .consultation-request-form {
		padding: 28px 22px;
	}

	.br-consultation .yith-ywraq-mail-form-wrapper form,
	.br-consultation .consultation-form fieldset {
		grid-template-columns: 1fr;
	}

}

@media (max-width: 480px) {
	.br-consultation-hero h1 {
		font-size: 34px;
		max-width: 330px;
		overflow-wrap: break-word;
	}

	.br-consultation .br-consultation-hero__lead {
		font-size: 16px;
		max-width: 334px;
	}

	.br-consultation-section__head h2 {
		font-size: 29px;
		overflow-wrap: break-word;
	}

	.br-consultation .ywraq-empty .ywraq-before-form {
		min-height: 330px;
		padding: 38px 18px;
	}
}

/* =======================================================
   [CONTACT PAGE]
======================================================= */

/* ----------------------
   Contact page shell
   ---------------------- */

/*       Full-width template reset      */
body.page-template-contact {
	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	overflow-x: hidden;
}

body.page-template-contact #page.grid-container,
body.page-template-contact .site.grid-container,
body.page-template-contact #content.site-content,
body.page-template-contact .content-area,
body.page-template-contact .site-main {
	margin: 0;
	max-width: none;
	padding: 0;
	width: 100%;
}

body.page-template-contact #content.site-content {
	display: block;
}

body.page-template-contact .featured-image.page-header-image {
	display: none;
}

/*       Contact page base elements      */
.br-contact,
.br-contact * {
	box-sizing: border-box;
}

.br-contact {
	--contact-dark: #251c18;
	--contact-hero-image: url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");

	background: var(--color-bg-page);
	color: var(--color-text-primary);
	font-family: var(--font-family-body);
	line-height: 1.65;
}

.br-contact p {
	margin: 0;
}

.br-contact a {
	color: inherit;
	text-decoration: none;
}

.br-contact__wrap {
	margin: 0 auto;
	width: min(100% - 40px, var(--container-max-width));
}

.br-contact-section {
	padding: var(--section-padding-block) 0;
}

/* ----------------------
   Contact shared content
   ---------------------- */

/*       Headings, eyebrow, buttons, and actions      */
.br-contact-eyebrow {
	color: var(--color-brand);
	font-family: var(--font-family-body);
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	line-height: 1.65;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.br-contact-section__head {
	margin: 0 auto 46px;
	max-width: 780px;
	text-align: center;
}

.br-contact-section__head .br-contact-eyebrow {
	color: var(--color-text-primary);
}

.br-contact-section__head h2,
.br-contact-info-panel h2,
.br-contact-form-card h2,
.br-contact-map__head h2 {
	color: var(--color-brand-hover);
	font-family: var(--font-family-heading);
	font-size: 50px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-tight);
	margin: 0;
}

.br-contact-info-panel p:not(.br-contact-eyebrow),
.br-contact-form-card > p:not(.br-contact-eyebrow) {
	color: var(--color-text-secondary);
	font-size: 18px;
	line-height: 1.75;
	margin: 20px auto 0;
	max-width: 720px;
}

.br-contact-button,
.br-contact .wpcf7-submit {
	align-items: center;
	background: var(--button-primary-bg);
	border: var(--border-width-strong) solid var(--button-primary-border);
	border-radius: var(--radius-full);
	box-shadow: var(--button-primary-shadow);
	color: var(--button-primary-text);
	cursor: pointer;
	display: inline-flex;
	font-size: 14px;
	font-weight: var(--font-weight-bold);
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	min-height: 48px;
	padding: 0 24px;
	text-align: center;
	text-transform: uppercase;
	transition:
			background var(--duration-normal) var(--ease-standard),
			border-color var(--duration-normal) var(--ease-standard),
			color var(--duration-normal) var(--ease-standard),
			transform var(--duration-normal) var(--ease-standard);
}

.br-contact-button:hover,
.br-contact-button:focus-visible,
.br-contact .wpcf7-submit:hover,
.br-contact .wpcf7-submit:focus-visible {
	background: var(--button-primary-bg-hover);
	border-color: var(--button-primary-bg-hover);
	color: var(--button-primary-text);
	transform: translateY(-1px);
}

.br-contact-button--dark {
	background: #fff;
	border-color: var(--color-border);
	box-shadow: var(--shadow-sm);
	color: var(--color-text-primary);
}

.br-contact-button--dark:hover,
.br-contact-button--dark:focus-visible {
	background: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
	color: #fff;
}

/* ----------------------
   Contact hero
   ---------------------- */

/*       Image-backed title area      */
.br-contact-hero {
	align-items: flex-start;
	background-image:
			linear-gradient(rgba(24, 18, 15, .5), rgba(24, 18, 15, .72)),
			var(--contact-hero-image);
	background-position: center, center;
	background-repeat: no-repeat;
	background-size: auto, cover;
	display: flex;
	isolation: isolate;
	min-height: 460px;
	overflow: hidden;
	padding: 48px 0 104px;
	position: relative;
}

.br-contact-hero::after {
	background: var(--color-bg-page);
	border-radius: 52% 48% 0 0 / 42% 58% 0 0;
	bottom: -96px;
	content: "";
	height: 188px;
	left: 0;
	position: absolute;
	right: 0;
	z-index: 0;
}

.br-contact-breadcrumbs,
.br-contact-hero__content {
	position: relative;
	z-index: 1;
}

.br-contact-breadcrumbs {
	align-items: center;
	color: rgba(255, 255, 255, .82);
	display: inline-flex;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	gap: 10px;
	margin: 0 0 30px;
	text-transform: uppercase;
}

.br-contact-breadcrumbs a {
	color: rgba(255, 255, 255, .9);
}

.br-contact-breadcrumbs a:hover,
.br-contact-breadcrumbs a:focus-visible {
	color: #fff;
}

.br-contact-hero__content {
	color: #fff;
	margin: 0 auto;
	max-width: 920px;
	text-align: center;
	text-shadow:
			0 4px 28px rgba(0, 0, 0, .72),
			0 2px 8px rgba(0, 0, 0, .48);
}

.br-contact-hero h1 {
	color: #fff;
	font-family: var(--font-family-heading);
	font-size: 66px;
	font-weight: var(--font-weight-bold);
	letter-spacing: 0;
	line-height: 1.04;
	margin: 0 auto 18px;
	max-width: 860px;
}

.br-contact .br-contact-hero__lead {
	color: rgba(255, 255, 255, .92);
	font-size: 21px;
	font-weight: var(--font-weight-semibold);
	line-height: 1.45;
	margin: 0 auto;
	max-width: 780px;
}

/* ----------------------
   Contact overview
   ---------------------- */

/*       Quick contact cards      */
.br-contact-overview {
	background: var(--color-bg-page);
	padding-top: 34px;
}

.br-contact-card-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.br-contact-card {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 292px;
	padding: 34px 28px;
	text-align: center;
}

.br-contact-card__icon,
.br-contact-detail__icon {
	align-items: center;
	background: rgba(182, 37, 42, .1);
	border: var(--border-width) solid rgba(182, 37, 42, .22);
	border-radius: var(--radius-full);
	color: var(--color-brand-hover);
	display: inline-flex;
	height: 58px;
	justify-content: center;
	margin-bottom: 24px;
	position: relative;
	width: 58px;
}

.br-contact-card__icon::before,
.br-contact-card__icon::after,
.br-contact-detail__icon::before,
.br-contact-detail__icon::after {
	content: "";
	position: absolute;
}

.br-contact-card__icon--address::before,
.br-contact-detail__icon--address::before {
	border: 3px solid currentColor;
	border-radius: 50% 50% 50% 0;
	height: 25px;
	transform: rotate(-45deg);
	width: 25px;
}

.br-contact-card__icon--address::after,
.br-contact-detail__icon--address::after {
	background: currentColor;
	border-radius: var(--radius-full);
	height: 7px;
	width: 7px;
}

.br-contact-card__icon--phone::before,
.br-contact-detail__icon--phone::before {
	border: 3px solid currentColor;
	border-radius: 5px;
	height: 32px;
	width: 22px;
}

.br-contact-card__icon--phone::after,
.br-contact-detail__icon--phone::after {
	background: currentColor;
	border-radius: var(--radius-full);
	bottom: 15px;
	height: 4px;
	width: 4px;
}

.br-contact-card__icon--quote::before {
	border: 3px solid currentColor;
	border-radius: 4px;
	height: 31px;
	width: 24px;
}

.br-contact-card__icon--quote::after {
	background: currentColor;
	box-shadow: 0 8px 0 currentColor;
	height: 3px;
	width: 12px;
}

.br-contact-detail__icon--fax::before {
	border: 3px solid currentColor;
	border-radius: 4px;
	height: 24px;
	top: 22px;
	width: 28px;
}

.br-contact-detail__icon--fax::after {
	border: 3px solid currentColor;
	border-bottom: 0;
	height: 18px;
	top: 13px;
	width: 20px;
}

.br-contact-card h3 {
	color: var(--color-text-primary);
	font-family: var(--font-family-heading);
	font-size: 26px;
	font-weight: var(--font-weight-semibold);
	letter-spacing: 0;
	line-height: var(--line-height-heading-normal);
	margin: 0 0 12px;
}

.br-contact-card p {
	color: var(--color-text-secondary);
	font-size: 15px;
	line-height: 1.68;
	margin: 0 auto;
	max-width: 270px;
}

.br-contact-card a {
	align-items: center;
	color: var(--color-brand-hover);
	display: inline-flex;
	gap: 8px;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	line-height: 1;
	margin-top: auto;
	padding-top: 22px;
	text-transform: uppercase;
	white-space: nowrap;
}

.br-contact-card a::before {
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	content: "";
	display: inline-block;
	height: 7px;
	transform: rotate(-45deg);
	width: 7px;
}

.br-contact-card a:hover,
.br-contact-card a:focus-visible {
	color: var(--color-text-primary);
}

/* ----------------------
   Contact form and info
   ---------------------- */

/*       Dark contact panel and form card      */
.br-contact-main {
	background: var(--color-bg-muted);
}

.br-contact-main__grid {
	align-items: start;
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(310px, 420px) minmax(0, 1fr);
}

.br-contact-info-panel {
	background: var(--contact-dark);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	color: #fff;
	padding: 42px 34px;
}

.br-contact-info-panel .br-contact-eyebrow {
	color: #f5d2d4;
}

.br-contact-info-panel h2 {
	color: #fff;
	font-size: 40px;
}

.br-contact-info-panel p:not(.br-contact-eyebrow) {
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
	line-height: 1.72;
}

.br-contact-detail-list {
	display: grid;
	gap: 16px;
	margin-top: 34px;
}

.br-contact-detail {
	align-items: center;
	background: rgba(255, 255, 255, .08);
	border: var(--border-width) solid rgba(255, 255, 255, .14);
	border-radius: var(--radius-md);
	color: #fff;
	display: grid;
	gap: 2px 16px;
	grid-template-columns: 46px minmax(0, 1fr);
	padding: 18px;
}

.br-contact-detail:hover,
.br-contact-detail:focus-visible {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.br-contact-detail__icon {
	background: rgba(255, 255, 255, .1);
	border-color: rgba(255, 255, 255, .22);
	color: #f5d2d4;
	grid-row: span 2;
	height: 46px;
	margin: 0;
	width: 46px;
}

.br-contact-detail__icon--address::before {
	height: 21px;
	width: 21px;
}

.br-contact-detail__icon--phone::before {
	height: 27px;
	width: 18px;
}

.br-contact-detail__icon--phone::after {
	bottom: 11px;
}

.br-contact-detail strong {
	color: #fff;
	font-size: 12px;
	font-style: normal;
	font-weight: var(--font-weight-bold);
	line-height: 1.35;
	text-transform: uppercase;
}

.br-contact-detail em {
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
	font-style: normal;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.br-contact-social-block {
	border-top: var(--border-width) solid rgba(255, 255, 255, .16);
	margin-top: 34px;
	padding-top: 28px;
}

.br-contact-social-block p {
	color: #fff;
	font-size: 13px;
	font-weight: var(--font-weight-bold);
	line-height: 1.45;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.br-contact-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.br-contact-socials a {
	align-items: center;
	background: rgba(255, 255, 255, .1);
	border: var(--border-width) solid rgba(255, 255, 255, .2);
	border-radius: var(--radius-full);
	color: #fff;
	display: inline-flex;
	font-size: 12px;
	font-weight: var(--font-weight-bold);
	height: 40px;
	justify-content: center;
	line-height: 1;
	text-transform: uppercase;
	width: 40px;
}

.br-contact-socials a:hover,
.br-contact-socials a:focus-visible {
	background: var(--color-brand-hover);
	border-color: var(--color-brand-hover);
	color: #fff;
}

.br-contact-form-card {
	background: var(--card-bg);
	border: var(--border-width) solid var(--card-border);
	border-radius: var(--radius-md);
	box-shadow: var(--card-shadow);
	padding: clamp(28px, 3.5vw, 46px);
}

.br-contact-form-card h2 {
	color: var(--color-text-primary);
	font-size: 40px;
}

.br-contact-form-card > p:not(.br-contact-eyebrow) {
	font-size: 16px;
	margin: 16px 0 30px;
}

.br-contact-form-card .wpcf7 {
	margin: 0;
}

.br-contact-form-card .wpcf7-form,
.br-contact-form-card .wpcf7-form > p {
	display: grid;
	gap: 16px;
	margin: 0;
}

.br-contact-form-card label {
	display: block;
	margin: 0;
	width: 100%;
}

.br-contact-form-card input[type="text"],
.br-contact-form-card input[type="email"],
.br-contact-form-card input[type="tel"],
.br-contact-form-card input[type="url"],
.br-contact-form-card textarea {
	background: var(--input-bg);
	border: var(--border-width) solid var(--input-border);
	border-radius: var(--radius-sm);
	color: var(--input-text);
	min-height: 52px;
	padding: 13px 15px;
	width: 100%;
}

.br-contact-form-card textarea {
	min-height: 150px;
	resize: vertical;
}

.br-contact-form-card input:focus,
.br-contact-form-card textarea:focus {
	border-color: var(--input-border-focus);
	box-shadow: 0 0 0 3px rgba(195, 44, 44, .12);
	outline: 0;
}

.br-contact-form-card .wpcf7-not-valid {
	border-color: var(--color-danger) !important;
}

.br-contact-form-card .wpcf7-not-valid-tip {
	color: var(--color-danger);
	font-size: 13px;
	margin-top: 6px;
}

.br-contact-form-card .wpcf7-submit {
	margin-top: 18px;
	width: min(100%, 250px);
}

.br-contact-form-card .wpcf7-response-output {
	border-color: var(--color-border);
	border-radius: var(--radius-sm);
	color: var(--color-text-secondary);
	margin: 18px 0 0;
	padding: 14px 16px;
}

/* ----------------------
   Contact map
   ---------------------- */

/*       Location heading and embedded map      */
.br-contact-map-section {
	background: var(--color-bg-page);
	padding-bottom: 0;
	scroll-margin-top: 90px;
}

.br-contact-map__head {
	align-items: end;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-bottom: 42px;
}

.br-contact-map__head h2 {
	max-width: 700px;
}

.br-contact-map__frame {
	background: var(--color-bg-muted);
	border-top: var(--border-width) solid var(--color-border);
	box-shadow: inset 0 20px 42px rgba(33, 24, 20, .06);
	overflow: hidden;
}

.br-contact-map__frame iframe {
	display: block;
	filter: saturate(.88) contrast(.96);
	min-height: 420px;
	width: 100%;
}

/* ----------------------
   Contact responsive rules
   ---------------------- */

/*       Tablet and mobile stacking      */
@media (max-width: 1100px) {
	.br-contact-card {
		padding: 30px 22px;
	}

	.br-contact-main__grid {
		grid-template-columns: minmax(290px, 370px) minmax(0, 1fr);
	}
}

@media (max-width: 980px) {
	.br-contact-card-grid,
	.br-contact-main__grid,
	.br-contact-map__head {
		grid-template-columns: 1fr;
	}

	.br-contact-map__head {
		align-items: start;
	}
}

@media (max-width: 768px) {
	.br-contact-section {
		padding: 72px 0;
	}

	.br-contact-hero {
		min-height: 440px;
		padding: 40px 0 96px;
	}

	.br-contact-breadcrumbs {
		margin-bottom: 18px;
	}

	.br-contact-overview {
		padding-top: 28px;
	}

	.br-contact-hero h1 {
		font-size: 46px;
	}

	.br-contact .br-contact-hero__lead {
		font-size: 18px;
	}

	.br-contact-section__head h2,
	.br-contact-info-panel h2,
	.br-contact-form-card h2,
	.br-contact-map__head h2 {
		font-size: 38px;
	}

	.br-contact-map-section {
		padding-bottom: 0;
	}
}

@media (max-width: 600px) {
	.br-contact__wrap {
		width: min(100% - 32px, var(--container-max-width));
	}

	.br-contact-hero {
		min-height: 370px;
		padding: 34px 0 48px;
	}

	.br-contact-hero::after {
		bottom: -62px;
		height: 104px;
		left: -8px;
		right: -8px;
	}

	.br-contact-hero h1 {
		font-size: 38px;
	}

	.br-contact-button,
	.br-contact .wpcf7-submit {
		width: 100%;
	}

	.br-contact-section__head h2,
	.br-contact-info-panel h2,
	.br-contact-form-card h2,
	.br-contact-map__head h2 {
		font-size: 32px;
	}

	.br-contact-info-panel,
	.br-contact-form-card {
		padding: 28px 22px;
	}

	.br-contact-detail {
		grid-template-columns: 40px minmax(0, 1fr);
		padding: 16px;
	}

	.br-contact-detail__icon {
		height: 40px;
		width: 40px;
	}

	.br-contact-map__frame iframe {
		min-height: 360px;
	}

}

@media (max-width: 480px) {
	.br-contact-hero h1 {
		font-size: 34px;
		max-width: 330px;
		overflow-wrap: break-word;
	}

	.br-contact .br-contact-hero__lead {
		font-size: 16px;
		max-width: 334px;
	}

	.br-contact-section__head h2,
	.br-contact-info-panel h2,
	.br-contact-form-card h2,
	.br-contact-map__head h2 {
		font-size: 29px;
		overflow-wrap: break-word;
	}

	.br-contact-card h3 {
		font-size: 24px;
	}

}



/* =======================
   VARIOUS
   ====================== */

/* Remove Captcha Sign */
.grecaptcha-badge,
.rc-anchor,
.rc-anchor-container,
iframe[src*="recaptcha"],
iframe[title*="reCAPTCHA"],
iframe[title*="recaptcha"] {
	display: none;
	visibility: hidden;
	opacity: 0;
}

/* Remove Footer Site Info */
.site-info {
	display: none
}
