/*
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;
}

/*       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;
	}
}

/* ----------------------
   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;
	}
}
/* =======================================================
   [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: center;
	background: center 52% / cover no-repeat url("assets/images/homdev/Frame-Tent-with-Pole-Drapes.jpg");
	display: flex;
	isolation: isolate;
	min-height: 610px;
	overflow: hidden;
	padding: 138px 20px 168px;
	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;
}

/*       Hero demo example 1 - 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);
}

/*       Hero demo example 2 - translucent dark background behind heading and subtitle      */
.br-hero--demo-2 .br-hero__copy {
	background: rgba(20, 16, 14, .62);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 8px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, .26);
	padding: clamp(26px, 3.4vw, 46px) clamp(24px, 4.8vw, 72px);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .52);
}

/*       Hero demo example 3 - light translucent background with darker title treatment      */
.br-hero--demo-3 .br-hero__copy {
	background: rgba(255, 255, 255, .86);
	border: 1px solid rgba(255, 255, 255, .72);
	border-radius: 8px;
	box-shadow: 0 26px 70px rgba(28, 24, 20, .24);
	padding: clamp(26px, 3.4vw, 46px) clamp(24px, 4.8vw, 72px);
}

.br-hero--demo-3 h1 {
	color: #251c18;
	text-shadow: 0 2px 0 rgba(255, 255, 255, .6);
}

.br-hero--demo-3 .br-hero__subtitle {
	color: #4d423b;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .65);
}

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

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

.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;
}

/* ----------------------
   Demo footer
   ---------------------- */

/*       Footer demo 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);
}

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

/*       Footer demo example 2 - light footer with horizontal separators and compact contact rows      */
.br-page-footer--demo-2 {
	background: var(--color-bg-muted);
	border-top: 1px solid var(--color-border);
	color: var(--color-text-primary);
	padding-top: 70px;
}

.br-page-footer--demo-2 .br-page-footer__shell {
	margin: 0 auto;
	max-width: var(--container-max-width);
	width: 100%;
}

.br-page-footer--demo-2 .br-page-footer__top {
	align-items: center;
	display: grid;
	gap: 34px;
	grid-template-columns: 1fr auto;
	padding-bottom: 30px;
}

.br-page-footer--demo-2 .br-page-footer__brand {
	align-items: center;
	display: flex;
	gap: 28px;
	max-width: none;
}

.br-page-footer--demo-2 .br-page-footer__logo {
	box-shadow: var(--shadow-sm);
	margin: 0;
}

.br-page-footer--demo-2 .br-page-footer__text {
	color: var(--color-text-secondary);
	max-width: 420px;
}

.br-page-footer--demo-2 .br-page-footer__nav {
	border: 0;
	color: var(--color-text-primary);
	justify-content: flex-end;
	margin: 0;
	padding: 0;
}

.br-page-footer--demo-2 .br-page-footer__contact-grid {
	border-bottom: 1px solid var(--color-border);
	border-top: 1px solid var(--color-border);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 0;
}

.br-page-footer--demo-2 .br-page-footer__contact-card {
	padding: 30px 28px;
}

.br-page-footer--demo-2 .br-page-footer__contact-card + .br-page-footer__contact-card {
	border-left: 1px solid var(--color-border);
}

.br-page-footer--demo-2 .br-page-footer__heading {
	color: var(--color-text-primary);
	font-size: 23px;
	margin-bottom: 16px;
}

.br-page-footer--demo-2 .br-page-footer__item {
	color: var(--color-text-secondary);
}

.br-page-footer--demo-2 .br-page-footer__icon {
	background: rgba(182, 37, 42, .1);
}

.br-page-footer--demo-2 .br-page-footer__bar {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 24px 0 30px;
}

/* ----------------------
   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: 620px;
		padding-top: 64px;
	}

	.br-card-grid,
	.br-testimonial-grid,
	.br-page-footer__grid,
	.br-page-footer--demo-2 .br-page-footer__top,
	.br-page-footer--demo-2 .br-page-footer__contact-grid {
		grid-template-columns: 1fr;
	}

	.br-page-footer__grid,
	.br-page-footer--demo-2 .br-page-footer__brand {
		text-align: center;
	}

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

	.br-page-footer--demo-2 .br-page-footer__brand {
		flex-direction: column;
	}

	.br-page-footer--demo-2 .br-page-footer__nav {
		justify-content: center;
	}

	.br-page-footer--demo-2 .br-page-footer__contact-card + .br-page-footer__contact-card {
		border-left: 0;
		border-top: 1px solid var(--color-border);
	}
}

@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: 600px;
		padding: 118px 16px;
	}

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

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

	.br-hero--demo-2 .br-hero__copy,
	.br-hero--demo-3 .br-hero__copy {
		padding: 24px 18px;
	}

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

	.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);
	}
}



.site-info {
	display: none
}