/**
 * LBH Elementor Widgets - Styles
 *
 * @package LBH_Elementor_Widgets
 */

/* ==========================================================================
   Hero Section
   ========================================================================== */

.elementor-widget-lbh-hero-section .elementor-widget-container {
	margin: -10px;
}

.lbh-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 90vh;
	overflow: hidden;
}

.lbh-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.lbh-hero__overlay {
	position: absolute;
	inset: 0;
}

.lbh-hero__content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 2rem 1rem;
	max-width: 900px;
	margin: 0 auto;
}

.lbh-hero__heading {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	color: #fff;
}

.lbh-hero__subtext {
	font-size: clamp(1.125rem, 2vw, 1.5rem);
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 300;
}

.lbh-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.lbh-hero .lbh-wave-divider {
	display: none;
}

/* Hero Simple Mode (gradient only, no background image) */
.lbh-hero--simple {
	background: linear-gradient(to bottom, rgba(213, 204, 190, 0.5), var(--lbh-bg, #f5f2ed));
	min-height: 40vh;
}

.lbh-hero--simple .lbh-hero__content {
	padding-top: 4rem;
	padding-bottom: 2rem;
}

.lbh-hero--simple .lbh-hero__heading {
	color: var(--lbh-fg, #3d3830);
}

.lbh-hero--simple .lbh-hero__subtext {
	color: var(--lbh-muted, #7a7570);
}

.lbh-hero--simple .lbh-btn--ghost-light {
	background: transparent;
	border-color: var(--lbh-fg, #3d3830);
	color: var(--lbh-fg, #3d3830);
	backdrop-filter: none;
}

.lbh-hero--simple .lbh-btn--ghost-light:hover {
	background: var(--lbh-fg, #3d3830);
	color: #fff;
}

/* Ghost Light Button (for dark backgrounds) */
.lbh-btn--ghost-light {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	border-color: rgba(255, 255, 255, 0.3);
	color: #fff;
}

.lbh-btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
}

/* ==========================================================================
   Stats Counter
   ========================================================================== */

.lbh-stats__header {
	text-align: center;
	max-width: 56rem;
	margin: 0 auto 3rem;
}

.lbh-stats__heading {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 1.5rem;
}

.lbh-stats__desc {
	font-size: 1.125rem;
	line-height: 1.75;
	color: var(--lbh-muted, #7a7570);
}

.lbh-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

@media (min-width: 768px) {
	.lbh-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.lbh-stats__item {
	text-align: center;
}

.lbh-stats__value {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	font-weight: 700;
	color: var(--lbh-forest, #2d5a3d);
	margin-bottom: 0.5rem;
}

.lbh-stats__label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--lbh-muted, #7a7570);
}

/* ==========================================================================
   Services Grid
   ========================================================================== */

.lbh-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.lbh-services__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.lbh-services__card {
	overflow: hidden;
	transition: box-shadow 0.5s ease, transform 0.5s ease;
}

.lbh-services__card:hover {
	box-shadow: var(--lbh-shadow-lg, 0 20px 40px rgba(0, 0, 0, 0.1));
	transform: translateY(-4px);
}

.lbh-services__image {
	position: relative;
	height: 16rem;
	overflow: hidden;
}

.lbh-services__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.lbh-services__card:hover .lbh-services__image img {
	transform: scale(1.1);
}

.lbh-services__image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.lbh-services__icon {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	z-index: 1;
	color: #fff;
	font-size: 2.5rem;
}

.lbh-services__icon svg,
.lbh-services__icon i {
	width: 3rem;
	height: 3rem;
	font-size: 3rem;
}

.lbh-services__content {
	padding: 1.5rem;
}

.lbh-services__title {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.75rem;
}

.lbh-services__desc {
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.7;
	margin-bottom: 1rem;
}

.lbh-services__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--lbh-forest, #2d5a3d);
	text-decoration: none;
	transition: gap 0.3s ease;
}

.lbh-services__link:hover {
	gap: 0.75rem;
}

.lbh-services__link svg {
	transition: transform 0.3s ease;
}

.lbh-services__link:hover svg {
	transform: translateX(4px);
}

/* ==========================================================================
   Values Section
   ========================================================================== */

.lbh-values {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.lbh-values {
		grid-template-columns: 1fr 1fr;
	}

	.lbh-values--image-left .lbh-values__image {
		order: -1;
	}
}

.lbh-values__list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 2rem;
}

.lbh-values__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.lbh-values__check {
	flex-shrink: 0;
	margin-top: 0.25rem;
	color: var(--lbh-forest, #2d5a3d);
}

.lbh-values__title {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.25rem;
}

.lbh-values__desc {
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.6;
}

.lbh-values__image img {
	width: 100%;
	border-radius: 24px;
	box-shadow: var(--lbh-shadow-lg, 0 20px 40px rgba(0, 0, 0, 0.1));
}

/* ==========================================================================
   Process Steps
   ========================================================================== */

.lbh-process__list {
	max-width: 56rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.lbh-process__card {
	transition: box-shadow 0.3s ease;
}

.lbh-process__card:hover {
	box-shadow: var(--lbh-shadow-lg, 0 20px 40px rgba(0, 0, 0, 0.1));
}

.lbh-process__inner {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 2rem;
}

.lbh-process__number {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 3rem;
	font-weight: 700;
	color: var(--lbh-forest, #2d5a3d);
	opacity: 0.3;
	flex-shrink: 0;
	line-height: 1;
}

.lbh-process__title {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.75rem;
}

.lbh-process__timeline {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--lbh-muted, #7a7570);
	margin-bottom: 0.5rem;
}

.lbh-process__desc {
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.7;
}

.lbh-process__details {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.lbh-process__details li {
	position: relative;
	padding-left: 1.25rem;
	font-size: 0.875rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.6;
}

.lbh-process__details li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--lbh-primary, #b5572a);
}

.lbh-process__arrow {
	display: flex;
	justify-content: center;
	padding: 0.5rem 0;
	color: var(--lbh-muted, #7a7570);
	opacity: 0.4;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */

.lbh-cta {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
	color: #fff;
}

/* Force CTA full-width, breaking out of Elementor column padding */
.elementor-widget-lbh-cta-banner {
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
}

.lbh-cta__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}

.lbh-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.lbh-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}

.lbh-cta__heading {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	margin-bottom: 1.5rem;
	color: #fff;
}

.lbh-cta__text {
	font-size: 1.25rem;
	line-height: 1.7;
	opacity: 0.95;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.95);
}

.lbh-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	align-items: center;
}

.lbh-cta__actions .lbh-btn svg {
	margin-right: 0.5rem;
}

/* ==========================================================================
   Team Members
   ========================================================================== */

.lbh-team__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 48rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.lbh-team__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.lbh-team__card {
	text-align: center;
	padding: 2rem;
	transition: box-shadow 0.3s ease;
}

.lbh-team__card:hover {
	box-shadow: var(--lbh-shadow-lg, 0 20px 40px rgba(0, 0, 0, 0.1));
}

.lbh-team__photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1rem;
}

.lbh-team__initial {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 3rem;
	font-weight: 700;
	color: var(--lbh-forest, #2d5a3d);
	margin-bottom: 1rem;
}

.lbh-team__name {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.5rem;
}

.lbh-team__role {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--lbh-primary, #b5572a);
	margin-bottom: 1rem;
}

.lbh-team__bio {
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.7;
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.lbh-timeline__list {
	max-width: 48rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.lbh-timeline__item {
	transition: box-shadow 0.3s ease;
}

.lbh-timeline__item:hover {
	box-shadow: var(--lbh-shadow-lg, 0 20px 40px rgba(0, 0, 0, 0.1));
}

.lbh-timeline__inner {
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
	padding: 2rem;
}

.lbh-timeline__year {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 2rem;
	font-weight: 700;
	color: var(--lbh-forest, #2d5a3d);
	flex-shrink: 0;
	padding-top: 0.25rem;
}

.lbh-timeline__title {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.5rem;
}

.lbh-timeline__desc {
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.7;
}

/* ==========================================================================
   Portfolio Grid
   ========================================================================== */

.lbh-portfolio__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-bottom: 2rem;
}

.lbh-portfolio__filter-btn {
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid var(--lbh-border, #e2ddd6);
	border-radius: 9999px;
	background: transparent;
	color: var(--lbh-fg, #3d3830);
	cursor: pointer;
	transition: all 0.3s ease;
}

.lbh-portfolio__filter-btn:hover {
	border-color: var(--lbh-primary, #b5572a);
	color: var(--lbh-primary, #b5572a);
}

.lbh-portfolio__filter-btn.is-active {
	background-color: var(--lbh-primary, #b5572a);
	border-color: var(--lbh-primary, #b5572a);
	color: #fff;
}

.lbh-portfolio__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

@media (min-width: 640px) {
	.lbh-portfolio__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.lbh-portfolio__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.lbh-portfolio__item {
	position: relative;
	border-radius: var(--lbh-radius, 16px);
	overflow: hidden;
	aspect-ratio: 4 / 3;
	cursor: pointer;
}

.lbh-portfolio__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.lbh-portfolio__item:hover img {
	transform: scale(1.1);
}

.lbh-portfolio__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.5rem;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.lbh-portfolio__item:hover .lbh-portfolio__overlay {
	opacity: 1;
}

.lbh-portfolio__title {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 1.25rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.lbh-portfolio__cat {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 1rem;
}

.lbh-portfolio__link {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 9999px;
	color: #fff;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all 0.3s ease;
}

.lbh-portfolio__link:hover {
	background: #fff;
	color: var(--lbh-fg, #3d3830);
}

.lbh-portfolio__item[hidden] {
	display: none;
}

/* ==========================================================================
   Contact Info
   ========================================================================== */

.lbh-contact-info__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.lbh-contact-info__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.lbh-contact-info__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.lbh-contact-info__card {
	text-align: center;
	padding: 2rem;
	transition: box-shadow 0.3s ease;
}

.lbh-contact-info__card:hover {
	box-shadow: var(--lbh-shadow-lg, 0 20px 40px rgba(0, 0, 0, 0.1));
}

.lbh-contact-info__icon {
	color: var(--lbh-forest, #2d5a3d);
	margin-bottom: 1rem;
}

.lbh-contact-info__icon svg,
.lbh-contact-info__icon i {
	width: 3rem;
	height: 3rem;
	font-size: 3rem;
}

.lbh-contact-info__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.5rem;
}

.lbh-contact-info__detail {
	font-weight: 600;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.5rem;
	text-decoration: none;
}

a.lbh-contact-info__detail:hover {
	color: var(--lbh-primary, #b5572a);
}

.lbh-contact-info__desc {
	font-size: 0.875rem;
	color: var(--lbh-muted, #7a7570);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.lbh-faq__list {
	max-width: 48rem;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lbh-faq__item {
	transition: box-shadow 0.3s ease;
	overflow: hidden;
}

.lbh-faq__item:hover {
	box-shadow: var(--lbh-shadow-lg, 0 20px 40px rgba(0, 0, 0, 0.1));
}

.lbh-faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	color: var(--lbh-fg, #3d3830);
	transition: color 0.3s ease;
}

.lbh-faq__question {
	font-size: 1.125rem;
	font-weight: 700;
	flex: 1;
	padding-right: 1rem;
}

.lbh-faq__icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.lbh-faq__item.is-open .lbh-faq__icon {
	transform: rotate(45deg);
}

.lbh-faq__answer {
	overflow: hidden;
}

.lbh-faq__answer[hidden] {
	display: none;
}

.lbh-faq__answer-inner {
	padding: 0 2rem 1.5rem;
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.7;
}

/* ==========================================================================
   Wave Divider
   ========================================================================== */

.lbh-wave-divider {
	width: 100%;
	line-height: 0;
	overflow: hidden;
}

.lbh-wave-divider svg {
	width: 100%;
	height: 100%;
	display: block;
}

.lbh-wave-divider--standalone {
	height: 80px;
}

/* ==========================================================================
   Shared Section Header
   ========================================================================== */

.lbh-section-header {
	text-align: center;
	margin-bottom: 3rem;
	max-width: 42rem;
	margin-left: auto;
	margin-right: auto;
}

.lbh-section-header .lbh-heading-2 {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 1rem;
}

.lbh-section-header .lbh-text-lg {
	font-size: 1.125rem;
	line-height: 1.7;
}

.lbh-section-header .lbh-text-muted {
	color: var(--lbh-muted, #7a7570);
}

/* ==========================================================================
   Shared Components
   ========================================================================== */

.lbh-text-center {
	text-align: center;
}

/* Card used by multiple widgets */
.lbh-card {
	background-color: var(--lbh-card, #fcfbf9);
	border: 1px solid var(--lbh-border, #e2ddd6);
	border-radius: var(--lbh-radius, 16px);
	overflow: hidden;
}

/* ==========================================================================
   Contact Form (CF7 override)
   ========================================================================== */

.lbh-contact-form {
	max-width: 42rem;
	margin: 0 auto;
}

.lbh-contact-form .lbh-section-header {
	margin-bottom: 2rem;
}

.lbh-contact-form .wpcf7-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.lbh-contact-form .wpcf7-form label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 0.375rem;
}

.lbh-contact-form .wpcf7-form input[type="text"],
.lbh-contact-form .wpcf7-form input[type="email"],
.lbh-contact-form .wpcf7-form input[type="tel"],
.lbh-contact-form .wpcf7-form select,
.lbh-contact-form .wpcf7-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--lbh-border, #e2ddd6);
	border-radius: var(--lbh-radius, 16px);
	background: var(--lbh-card, #fcfbf9);
	font-family: var(--lbh-font-body, 'Urbanist', sans-serif);
	font-size: 1rem;
	color: var(--lbh-fg, #3d3830);
	transition: border-color 0.3s ease;
}

.lbh-contact-form .wpcf7-form input:focus,
.lbh-contact-form .wpcf7-form select:focus,
.lbh-contact-form .wpcf7-form textarea:focus {
	outline: none;
	border-color: var(--lbh-forest, #2d5a3d);
}

.lbh-contact-form .wpcf7-form textarea {
	min-height: 150px;
	resize: vertical;
}

.lbh-contact-form .wpcf7-form input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 2rem;
	background-color: var(--lbh-primary, #b5572a);
	color: #fff;
	border: none;
	border-radius: 9999px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
	width: 100%;
}

.lbh-contact-form .wpcf7-form input[type="submit"]:hover {
	background-color: var(--lbh-forest, #2d5a3d);
	transform: translateY(-1px);
}

/* ==========================================================================
   Site Header
   ========================================================================== */

.elementor-widget-lbh-site-header .elementor-widget-container {
	margin: -10px;
}

.lbh-site-header {
	background: #fff;
	border-bottom: 1px solid var(--lbh-border, #e2ddd6);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.lbh-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	max-width: var(--lbh-container, 1280px);
	margin: 0 auto;
}

.lbh-site-header__logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

.lbh-site-header__logo img {
	height: 50px;
	width: auto;
	display: block;
}

.lbh-site-header__logo-text {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
}

.lbh-site-header__nav {
	display: none;
	align-items: center;
	gap: 1.5rem;
}

@media (min-width: 1024px) {
	.lbh-site-header__nav {
		display: flex;
	}
}

.lbh-site-header__menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 0;
}

.lbh-site-header__menu-item a {
	display: block;
	padding: 0.5rem 0.875rem;
	font-family: var(--lbh-font-body, 'Urbanist', sans-serif);
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--lbh-fg, #3d3830);
	text-decoration: none;
	transition: color 0.3s ease;
}

.lbh-site-header__menu-item a:hover,
.lbh-site-header__menu-item--active a {
	color: var(--lbh-primary, #b5572a);
}

.lbh-site-header__cta {
	flex-shrink: 0;
}

/* Hamburger toggle */
.lbh-site-header__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	color: var(--lbh-fg, #3d3830);
}

@media (min-width: 1024px) {
	.lbh-site-header__toggle {
		display: none;
	}
}

/* Mobile nav */
.lbh-site-header__mobile-nav {
	background: #fff;
	border-top: 1px solid var(--lbh-border, #e2ddd6);
	padding: 1rem 1.5rem 1.5rem;
}

.lbh-site-header__mobile-nav[hidden] {
	display: none;
}

.lbh-site-header__mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.lbh-site-header__mobile-item a {
	display: block;
	padding: 0.75rem 0;
	font-family: var(--lbh-font-body, 'Urbanist', sans-serif);
	font-size: 1rem;
	font-weight: 500;
	color: var(--lbh-fg, #3d3830);
	text-decoration: none;
	border-bottom: 1px solid var(--lbh-border, #e2ddd6);
	transition: color 0.3s ease;
}

.lbh-site-header__mobile-item a:hover,
.lbh-site-header__mobile-item--active a {
	color: var(--lbh-primary, #b5572a);
}

.lbh-site-header__mobile-nav .lbh-btn {
	margin-top: 1rem;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */

.elementor-widget-lbh-site-footer .elementor-widget-container {
	margin: -10px;
}

.lbh-site-footer {
	background: var(--lbh-bg, #f5f2ed);
	border-top: 1px solid var(--lbh-border, #e2ddd6);
	padding-top: 4rem;
}

.lbh-site-footer__inner {
	max-width: var(--lbh-container, 1280px);
	margin: 0 auto;
	padding: 0 1.5rem;
}

.lbh-site-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
}

@media (min-width: 640px) {
	.lbh-site-footer__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.lbh-site-footer__grid {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
	}
}

.lbh-site-footer__brand {
	display: flex;
	flex-direction: column;
	margin-bottom: 1rem;
}

.lbh-site-footer__brand-name {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--lbh-fg, #3d3830);
	line-height: 1.2;
}

.lbh-site-footer__brand-sub {
	font-family: var(--lbh-font-display, 'Urbanist', sans-serif);
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.35em;
	color: var(--lbh-muted, #7a7570);
}

.lbh-site-footer__desc {
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.lbh-site-footer__social {
	display: flex;
	gap: 0.75rem;
}

.lbh-site-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--lbh-border, #e2ddd6);
	color: var(--lbh-fg, #3d3830);
	transition: background 0.3s ease, color 0.3s ease;
}

.lbh-site-footer__social a:hover {
	background: var(--lbh-primary, #b5572a);
	color: #fff;
}

.lbh-site-footer__heading {
	font-family: var(--lbh-font-body, 'Urbanist', sans-serif);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--lbh-fg, #3d3830);
	margin-bottom: 1.25rem;
}

.lbh-site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.lbh-site-footer__links li {
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
}

.lbh-site-footer__links a {
	color: var(--lbh-muted, #7a7570);
	text-decoration: none;
	transition: color 0.3s ease;
}

.lbh-site-footer__links a:hover {
	color: var(--lbh-primary, #b5572a);
}

.lbh-site-footer__contact {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lbh-site-footer__contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.9375rem;
	color: var(--lbh-muted, #7a7570);
	line-height: 1.5;
}

.lbh-site-footer__contact a {
	color: var(--lbh-muted, #7a7570);
	text-decoration: none;
	transition: color 0.3s ease;
}

.lbh-site-footer__contact a:hover {
	color: var(--lbh-primary, #b5572a);
}

.lbh-site-footer__icon {
	flex-shrink: 0;
	color: var(--lbh-forest, #2d5a3d);
	margin-top: 0.125rem;
}

.lbh-site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 3rem;
	padding: 1.5rem 0;
	border-top: 1px solid var(--lbh-border, #e2ddd6);
}

.lbh-site-footer__copyright {
	font-size: 0.875rem;
	color: var(--lbh-muted, #7a7570);
	margin: 0;
}

.lbh-site-footer__legal {
	display: flex;
	gap: 1.5rem;
}

.lbh-site-footer__legal a {
	font-size: 0.875rem;
	color: var(--lbh-muted, #7a7570);
	text-decoration: none;
	transition: color 0.3s ease;
}

.lbh-site-footer__legal a:hover {
	color: var(--lbh-primary, #b5572a);
}

/* ==========================================================================
   Responsive overrides for Elementor mobile
   ========================================================================== */

@media (max-width: 767px) {
	.lbh-hero {
		min-height: 70vh;
	}

	.lbh-hero__heading {
		font-size: 2rem;
	}

	.lbh-hero__subtext {
		font-size: 1rem;
	}

	.lbh-hero__actions {
		flex-direction: column;
	}

	.lbh-hero__actions .lbh-btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.lbh-cta {
		padding: 3rem 0;
	}

	.lbh-cta__text {
		font-size: 1rem;
	}

	.lbh-cta__actions {
		flex-direction: column;
	}

	.lbh-cta__actions .lbh-btn {
		width: 100%;
		text-align: center;
		justify-content: center;
	}

	.lbh-process__inner {
		flex-direction: column;
		gap: 0.5rem;
		padding: 1.5rem;
	}

	.lbh-process__number {
		font-size: 2rem;
	}

	.lbh-timeline__inner {
		flex-direction: column;
		gap: 0.5rem;
		padding: 1.5rem;
	}

	.lbh-stats__grid {
		gap: 1.5rem;
	}

	.lbh-services__grid {
		grid-template-columns: 1fr !important;
		gap: 1.5rem;
	}

	.lbh-contact__grid {
		gap: 1.5rem;
	}

	.lbh-contact__card {
		padding: 1.5rem;
	}

	.lbh-site-footer__grid {
		gap: 2rem;
	}

	.lbh-site-header__inner {
		padding: 0.5rem 1rem;
	}

	.lbh-site-header__logo img {
		height: 40px;
	}
}
