/* Buttons, hero, services, sectors, split, why, CTA, forms */

.bmc-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--bmc-font-heading);
	font-weight: 600;
	font-size: 0.94rem;
	line-height: 1;
	padding: 16px 24px;
	border-radius: 999px;
	border: 1px solid transparent;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	cursor: pointer;
	appearance: none;
	transition: transform 0.45s var(--bmc-ease), box-shadow 0.45s var(--bmc-ease), background 0.45s var(--bmc-ease), color 0.45s var(--bmc-ease), border-color 0.45s var(--bmc-ease);
}

.bmc-btn .bmc-icon {
	transition: transform 0.45s var(--bmc-ease);
}

.bmc-btn:hover {
	transform: translateY(-2px);
	color: inherit;
}

.bmc-btn:hover .bmc-icon {
	transform: translateX(5px);
}

.bmc-btn--primary {
	background: var(--bmc-primary);
	color: #fff;
	box-shadow: 0 14px 30px rgba(77, 107, 131, 0.28);
}

.bmc-btn--primary:hover {
	background: var(--bmc-primary-deep);
	color: #fff;
	box-shadow: 0 18px 36px rgba(77, 107, 131, 0.34);
}

.bmc-btn--secondary {
	background: rgba(255, 255, 255, 0.42);
	color: var(--bmc-primary-dark);
	border-color: rgba(77, 107, 131, 0.22);
	backdrop-filter: blur(12px);
}

.bmc-btn--secondary:hover {
	background: var(--bmc-primary-dark);
	color: #fff;
	border-color: var(--bmc-primary-dark);
}

.bmc-btn--gold {
	background: var(--bmc-accent);
	color: var(--bmc-charcoal);
	box-shadow: 0 14px 30px rgba(208, 198, 179, 0.28);
}

.bmc-btn--gold:hover {
	background: #ddd4c3;
	color: var(--bmc-charcoal);
}

.bmc-btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.bmc-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--bmc-font-heading);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--bmc-primary);
}

.bmc-text-link .bmc-icon {
	transition: transform 0.4s var(--bmc-ease);
}

.bmc-text-link:hover { color: var(--bmc-primary-dark); }
.bmc-text-link:hover .bmc-icon { transform: translateX(5px); }
.bmc-text-link--light { color: var(--bmc-accent); }

/* Cards */
.bmc-card-grid {
	display: grid;
	gap: 22px;
}

.bmc-card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bmc-card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.bmc-card {
	padding: 28px;
	height: 100%;
	transition: transform 0.5s var(--bmc-ease), box-shadow 0.5s var(--bmc-ease), border-color 0.5s var(--bmc-ease);
}

.bmc-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--bmc-shadow-hover);
	border-color: rgba(208, 198, 179, 0.7);
}

.bmc-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	background: rgba(77, 107, 131, 0.1);
	color: var(--bmc-primary);
	margin-bottom: 16px;
	transition: transform 0.45s var(--bmc-ease), background 0.45s var(--bmc-ease);
}

.bmc-card:hover .bmc-card__icon {
	transform: translateY(-2px);
	background: rgba(208, 198, 179, 0.45);
}

.bmc-card h3 { margin-bottom: 8px; }
.bmc-card p { color: var(--bmc-muted); margin-bottom: 16px; }

/* Hero */
.bmc-hero {
	position: relative;
	min-height: 100vh;
	padding: 148px 0 80px;
	overflow: hidden;
}

.bmc-hero__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.bmc-hero .bmc-blob--primary { top: -80px; right: 8%; }
.bmc-hero .bmc-blob--accent { top: 28%; left: -80px; }
.bmc-hero .bmc-blob--soft { bottom: 8%; right: 22%; }
.bmc-hero .bmc-geo--triangle { top: 22%; left: 38%; }
.bmc-hero .bmc-geo--wave { display: none; }

.bmc-hero__layout {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px 40px;
	align-items: center;
}

.bmc-hero__title {
	max-width: 11ch;
	margin-bottom: 22px;
}

.bmc-hero__stage {
	position: relative;
	min-height: 640px;
}

.bmc-hero__photo {
	position: relative;
	width: 82%;
	margin-left: auto;
	height: 680px;
	border-radius: 40px 40px 120px 40px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(77, 107, 131, 0.22);
}

.bmc-hero__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.04);
	transition: transform 1.4s var(--bmc-ease);
}

.bmc-hero__photo:hover img {
	transform: scale(1.09);
}

.bmc-hero__photo-glass {
	position: absolute;
	inset: auto 0 0 0;
	height: 38%;
	background: linear-gradient(180deg, transparent, rgba(44, 66, 84, 0.38));
	pointer-events: none;
}

.bmc-float-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	min-width: 210px;
	z-index: 2;
}

.bmc-float-card__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--bmc-accent);
	box-shadow: 0 0 0 4px rgba(208, 198, 179, 0.28);
	flex-shrink: 0;
}

.bmc-float-card__meta {
	margin: 0;
	font-family: var(--bmc-font-heading);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bmc-primary);
}

.bmc-float-card__label {
	margin: 2px 0 0;
	font-family: var(--bmc-font-heading);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--bmc-primary-dark);
	letter-spacing: -0.02em;
	line-height: 1.25;
}

.bmc-float-card--1 { top: 7%; left: 0; }
.bmc-float-card--2 { top: 32%; right: -4%; }
.bmc-float-card--3 { bottom: 26%; left: 2%; }
.bmc-float-card--4 { bottom: 6%; right: 6%; }

/* Trust rail */
.bmc-trust {
	position: relative;
	padding: 40px 0 100px;
	margin-top: -40px;
}

.bmc-trust-rail {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.bmc-trust-rail__item {
	padding: 28px 24px;
	transition: transform 0.5s var(--bmc-ease), border-color 0.5s var(--bmc-ease);
}

.bmc-trust-rail__item:hover {
	transform: translateY(-8px);
	border-color: rgba(208, 198, 179, 0.8);
}

.bmc-trust-rail__index {
	display: block;
	font-family: var(--bmc-font-heading);
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	color: var(--bmc-accent-dark);
	margin-bottom: 14px;
}

.bmc-trust-rail__item h3 {
	font-size: 1.15rem;
	margin-bottom: 8px;
}

.bmc-trust-rail__item p {
	margin: 0;
	color: var(--bmc-muted);
	font-size: 0.94rem;
}

/* Services modular */
.bmc-services {
	overflow: hidden;
}

.bmc-services__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.bmc-services .bmc-blob--accent {
	right: -80px;
	top: 20%;
}

.bmc-services__modular {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 22px;
	align-items: stretch;
}

.bmc-service-featured {
	position: relative;
	height: 100%;
	min-height: 640px;
	border-radius: var(--bmc-radius-lg);
	overflow: hidden;
	background: var(--bmc-primary-dark);
}

.bmc-service-featured__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--bmc-primary-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 1.1s var(--bmc-ease);
}

.bmc-service-featured__media img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center !important;
}

.bmc-service-featured:hover .bmc-service-featured__media {
	transform: scale(1.07);
}

.bmc-service-featured__panel {
	position: absolute;
	z-index: 1;
	left: 28px;
	right: 28px;
	bottom: 28px;
	padding: 28px;
	max-width: 460px;
	transition: transform 0.6s var(--bmc-ease);
}

.bmc-service-featured:hover .bmc-service-featured__panel {
	transform: translateY(-8px);
}

.bmc-service-featured__panel p {
	color: var(--bmc-muted);
}

.bmc-services__tiles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.bmc-service-tile {
	position: relative;
	padding: 26px 24px 28px;
	overflow: hidden;
	transition: transform 0.5s var(--bmc-ease), box-shadow 0.5s var(--bmc-ease), border-color 0.5s var(--bmc-ease);
}

.bmc-service-tile:hover {
	transform: translateY(-8px);
	box-shadow: var(--bmc-shadow-hover);
	border-color: rgba(208, 198, 179, 0.85);
}

.bmc-service-tile__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: rgba(77, 107, 131, 0.1);
	color: var(--bmc-primary);
	margin-bottom: 16px;
	transition: transform 0.45s var(--bmc-ease), background 0.45s var(--bmc-ease);
}

.bmc-service-tile:hover .bmc-service-tile__icon {
	transform: translateY(-3px);
	background: rgba(208, 198, 179, 0.5);
}

.bmc-service-tile h3 { font-size: 1.12rem; }
.bmc-service-tile p {
	color: var(--bmc-muted);
	font-size: 0.93rem;
	margin-bottom: 16px;
}

.bmc-service-tile__line {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 0;
	height: 2px;
	background: var(--bmc-accent);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.5s var(--bmc-ease);
}

.bmc-service-tile:hover .bmc-service-tile__line {
	transform: scaleX(1);
}

/* Sectors editorial */
.bmc-sectors__editorial {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	grid-auto-rows: 340px;
	gap: 18px;
}

.bmc-sector-panel:nth-child(1) { grid-row: span 2; min-height: 698px; }
.bmc-sector-panel:nth-child(4) { grid-column: 1 / -1; min-height: 320px; }

.bmc-sector-panel {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--bmc-radius-lg);
	color: inherit;
	min-height: 340px;
	background: var(--bmc-primary-dark);
	isolation: isolate;
}

.bmc-sector-panel__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--bmc-primary-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 1.4s var(--bmc-ease);
}

.bmc-sector-panel__media img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center !important;
}

.bmc-sector-panel:nth-child(1) .bmc-sector-panel__media,
.bmc-sector-panel:nth-child(1) .bmc-sector-panel__media img {
	background-position: center 28%;
	object-position: center 28% !important;
}

.bmc-sector-panel:hover .bmc-sector-panel__media {
	transform: scale(1.08);
}

.bmc-sector-panel__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(26, 31, 36, 0.08) 28%, rgba(26, 31, 36, 0.42) 100%);
	transition: background 0.6s var(--bmc-ease);
}

.bmc-sector-panel:hover .bmc-sector-panel__veil {
	background: linear-gradient(180deg, rgba(26, 31, 36, 0.18) 18%, rgba(26, 31, 36, 0.58) 100%);
}

.bmc-sector-panel__glass {
	position: absolute;
	z-index: 2;
	left: 20px;
	right: 20px;
	bottom: 20px;
	padding: 18px 20px;
	opacity: 1;
	transform: none;
	transition: background 0.5s var(--bmc-ease), transform 0.5s var(--bmc-ease), box-shadow 0.5s var(--bmc-ease);
}

.bmc-sector-panel:nth-child(1) .bmc-sector-panel__glass {
	right: auto;
	width: min(340px, calc(100% - 40px));
}

.bmc-sector-panel:hover .bmc-sector-panel__glass {
	transform: translateY(-4px);
	background: rgba(44, 66, 84, 0.58);
}

.bmc-sector-panel__icon {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: rgba(208, 198, 179, 0.18);
	color: var(--bmc-accent);
	margin-bottom: 12px;
}

.bmc-sector-panel h3 {
	color: #fff;
	margin-bottom: 6px;
	font-size: clamp(1.4rem, 2vw, 2rem);
}

.bmc-sector-panel__desc {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	transition: max-height 0.55s var(--bmc-ease), opacity 0.45s var(--bmc-ease), margin 0.45s var(--bmc-ease);
}

.bmc-sector-panel:hover .bmc-sector-panel__desc {
	max-height: 120px;
	opacity: 1;
	margin: 0 0 14px;
}

/* Split screen */
.bmc-split-wrap {
	padding: 40px 0 0;
}

.bmc-split-wrap__head {
	margin-bottom: 36px;
}

.bmc-split,
.bmc-split-screen {
	display: flex;
	min-height: 78vh;
	overflow: hidden;
}

.bmc-split-screen {
	height: 78vh;
	max-height: 920px;
}

.bmc-split-screen__side {
	position: relative;
	flex: 1 1 50%;
	min-height: 100%;
	overflow: hidden;
	background: var(--bmc-primary-dark);
	transition: flex 0.85s var(--bmc-ease);
}

.bmc-split-screen__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--bmc-primary-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 1.2s var(--bmc-ease);
}

.bmc-split-screen__side--left .bmc-split-screen__media {
	background-position: center 20%;
}

.bmc-split-screen__media img {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	object-fit: cover !important;
	object-position: center !important;
}

.bmc-split-screen__side--left .bmc-split-screen__media img {
	object-position: center 20% !important;
}

.bmc-split-screen__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(26, 31, 36, 0.18), rgba(26, 31, 36, 0.62));
	transition: background 0.6s var(--bmc-ease);
}

.bmc-split-screen__side--right .bmc-split-screen__veil {
	background: linear-gradient(180deg, rgba(77, 107, 131, 0.18), rgba(44, 66, 84, 0.58));
}

.bmc-split-screen__content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 48px 40px 56px;
	color: #fff;
}

.bmc-split-screen__content h3 {
	color: #fff;
	font-size: clamp(2.2rem, 4vw, 3.8rem);
	max-width: 8ch;
	margin-bottom: 18px;
}

.bmc-split-screen__panel {
	max-width: 420px;
	padding: 22px 24px;
	margin-top: 8px;
}

.bmc-split-screen__panel p {
	margin-bottom: 18px;
}

.bmc-split-screen__side--left .bmc-split-screen__panel p {
	color: rgba(255, 255, 255, 0.86);
}

@media (hover: hover) {
	.bmc-split-screen:hover .bmc-split-screen__side {
		flex: 0.86;
	}
	.bmc-split-screen .bmc-split-screen__side:hover {
		flex: 1.28;
	}
	.bmc-split-screen .bmc-split-screen__side:hover .bmc-split-screen__media {
		transform: scale(1.06);
	}
}

.bmc-split-screen__divider {
	position: relative;
	width: 0;
	z-index: 2;
}

.bmc-split-screen__divider span {
	position: absolute;
	top: 12%;
	bottom: 12%;
	left: -1px;
	width: 2px;
	background: linear-gradient(180deg, transparent, var(--bmc-accent), transparent);
	animation: bmc-divider 4.5s ease-in-out infinite;
}

@keyframes bmc-divider {
	0%, 100% { opacity: 0.45; transform: scaleY(0.92); }
	50% { opacity: 1; transform: scaleY(1); }
}

.bmc-split__media img {
	width: 100%;
	border-radius: 28px;
	object-fit: cover;
	height: 460px;
}

.bmc-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

/* Why orbit */
.bmc-why {
	overflow: hidden;
	padding-bottom: 120px;
}

.bmc-why__atmosphere {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.bmc-why .bmc-blob--primary { left: -100px; top: 10%; }
.bmc-why .bmc-blob--accent { right: -80px; bottom: 0; }

.bmc-why__orbit {
	position: relative;
	min-height: 760px;
	display: grid;
	place-items: center;
}

.bmc-why__core {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 640px;
	padding: 36px 28px;
}

.bmc-why__core h2 {
	font-size: clamp(2.2rem, 4.4vw, 4rem);
	margin-bottom: 16px;
}

.bmc-why__core .bmc-lead {
	margin-inline: auto;
}

.bmc-why__card {
	position: absolute;
	width: min(280px, 32%);
	padding: 22px 22px 24px;
	animation: bmc-float 8s ease-in-out infinite;
	transition: transform 0.5s var(--bmc-ease), border-color 0.5s var(--bmc-ease);
}

.bmc-why__card:hover {
	border-color: rgba(208, 198, 179, 0.9);
	z-index: 3;
}

.bmc-why__icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: rgba(77, 107, 131, 0.1);
	color: var(--bmc-primary);
	margin-bottom: 12px;
}

.bmc-why__card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.bmc-why__card p { margin: 0; color: var(--bmc-muted); font-size: 0.9rem; }

.bmc-why__card--1 { top: 4%; left: 2%; animation-delay: 0s; }
.bmc-why__card--2 { top: 8%; right: 2%; animation-delay: -1.4s; }
.bmc-why__card--3 { top: 42%; left: 0; animation-delay: -2.2s; }
.bmc-why__card--4 { top: 44%; right: 0; animation-delay: -3.1s; }
.bmc-why__card--5 { bottom: 4%; left: 10%; animation-delay: -1.8s; }
.bmc-why__card--6 { bottom: 2%; right: 8%; animation-delay: -2.8s; }

/* Immersive CTA */
.bmc-cta {
	position: relative;
	overflow: hidden;
	padding: 108px 0;
	background: var(--bmc-primary);
	color: rgba(255, 255, 255, 0.88);
}

.bmc-cta-immersive {
	position: relative;
	isolation: isolate;
	padding: 128px 0;
	background: var(--bmc-primary-dark);
	color: rgba(255, 255, 255, 0.88);
}

.bmc-cta--navy { background: var(--bmc-primary); }

.bmc-cta-immersive__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: var(--bmc-primary-dark);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

@media (hover: hover) and (min-width: 1025px) {
	.bmc-cta-immersive__bg {
		background-attachment: fixed;
	}
}

.bmc-cta-immersive__veil {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(44, 66, 84, 0.42) 0%, rgba(26, 31, 36, 0.7) 100%);
}

.bmc-cta-immersive .bmc-container {
	position: relative;
	z-index: 2;
}

.bmc-cta-immersive__panel {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin-inline: auto;
	text-align: center;
	padding: 64px 48px;
}

.bmc-cta-immersive__panel h2,
.bmc-cta--navy h2 {
	color: #fff;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.bmc-cta-immersive__panel p {
	max-width: 52ch;
	margin: 0 auto 28px;
}

.bmc-cta__inner {
	display: flex;
	justify-content: space-between;
	gap: 32px;
	align-items: center;
}

.bmc-option-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bmc-option {
	display: block;
	padding: 28px;
	color: inherit;
	transition: transform 0.5s var(--bmc-ease), box-shadow 0.5s var(--bmc-ease), border-color 0.5s var(--bmc-ease);
}

.bmc-option:hover {
	transform: translateY(-8px);
	box-shadow: var(--bmc-shadow-hover);
	color: inherit;
	border-color: rgba(208, 198, 179, 0.85);
}

.bmc-option .bmc-icon {
	color: var(--bmc-primary);
	margin-bottom: 14px;
	transition: transform 0.45s var(--bmc-ease);
}

.bmc-option:hover .bmc-icon { transform: translateY(-3px); }
.bmc-option p { color: var(--bmc-muted); margin: 0 0 16px; }

.bmc-quote {
	padding: 28px;
	margin: 0;
	transition: transform 0.5s var(--bmc-ease);
}

.bmc-quote:hover { transform: translateY(-6px); }
.bmc-quote__icon { color: var(--bmc-accent-dark); margin-bottom: 12px; }
.bmc-quote p { color: var(--bmc-charcoal); }
.bmc-quote footer {
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 18px;
}
.bmc-quote img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.bmc-quote cite {
	font-style: normal;
	font-family: var(--bmc-font-heading);
	font-weight: 600;
	color: var(--bmc-primary-dark);
	display: block;
}
.bmc-quote span { color: var(--bmc-muted); font-size: 0.88rem; }

.bmc-contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 24px;
}

.bmc-contact-grid--form-only {
	grid-template-columns: 1fr;
	max-width: 720px;
}

.bmc-contact-form-wrap,
.bmc-contact-aside {
	padding: 32px;
}

.bmc-contact-list { list-style: none; margin: 0 0 24px; padding: 0; }
.bmc-contact-list li {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
}
.bmc-contact-list .bmc-icon { color: var(--bmc-primary); }
.bmc-contact-list strong {
	display: block;
	font-family: var(--bmc-font-heading);
	color: var(--bmc-primary-dark);
}

.bmc-map,
.bmc-map iframe {
	width: 100%;
	min-height: 220px;
	border: 0;
	border-radius: 16px;
}

.bmc-map__placeholder {
	min-height: 220px;
	background: rgba(77, 107, 131, 0.08);
	border-radius: 16px;
	display: grid;
	place-items: center;
	text-align: center;
	color: var(--bmc-muted);
	padding: 24px;
}

.bmc-form__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.bmc-form__field { margin-bottom: 16px; }
.bmc-form__field label {
	display: block;
	font-family: var(--bmc-font-heading);
	font-size: 0.88rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--bmc-primary-dark);
}

.bmc-form input,
.bmc-form textarea,
.bmc-form select {
	width: 100%;
	border: 1px solid rgba(77, 107, 131, 0.16);
	border-radius: 12px;
	padding: 12px 14px;
	font-family: var(--bmc-font-body);
	font-size: 1rem;
	color: var(--bmc-charcoal);
	background: rgba(255, 255, 255, 0.72);
}

.bmc-form textarea { resize: vertical; }
.bmc-form__hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.bmc-form__notice {
	padding: 12px 14px;
	border-radius: 10px;
	margin-bottom: 16px;
}

.bmc-form__notice--success { background: #e8f6ee; color: #14532d; }
.bmc-form__notice--error { background: #fdecec; color: #7f1d1d; }
.bmc-req { color: #b42318; }

.bmc-page-hero {
	position: relative;
	min-height: 520px;
	display: grid;
	align-items: end;
	color: #fff;
	overflow: hidden;
}

.bmc-page-hero__bg {
	position: absolute;
	inset: 0;
}

.bmc-page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
}

.bmc-page-hero__veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(26, 31, 36, 0.62) 0%, rgba(77, 107, 131, 0.32) 70%);
}

.bmc-page-hero__inner {
	position: relative;
	z-index: 1;
	padding: 160px 0 72px;
}

.bmc-page-hero__panel {
	max-width: 760px;
	padding: 36px 36px 40px;
}

.bmc-page-hero h1,
.bmc-page-hero .bmc-lead { color: #fff; }

.bmc-page-hero--simple {
	background: var(--bmc-primary);
	color: #fff;
	padding: 72px 0 48px;
}

.bmc-page-hero--simple h1 { color: #fff; }

.bmc-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	font-size: 0.88rem;
}

.bmc-breadcrumbs a { color: rgba(255, 255, 255, 0.8); }
.bmc-breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 8px;
	opacity: 0.6;
}

.bmc-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.bmc-step { padding: 24px; }

.bmc-step__num {
	font-family: var(--bmc-font-heading);
	color: var(--bmc-accent-dark);
	font-weight: 700;
	display: block;
	margin-bottom: 10px;
	letter-spacing: 0.12em;
}

.bmc-ticks { list-style: none; padding: 0; }
.bmc-ticks li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	margin-bottom: 10px;
}
.bmc-ticks .bmc-icon { color: var(--bmc-primary); margin-top: 2px; }
.bmc-ticks--grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 24px;
}

.bmc-prose {
	max-width: 760px;
	margin: 0 auto;
	padding: 64px 0;
}

.bmc-prose--wide { max-width: 820px; }
.bmc-prose .bmc-featured { border-radius: 24px; margin-bottom: 28px; }

.bmc-404 {
	padding: 160px 0 120px;
	text-align: center;
}

.bmc-404__inner {
	max-width: 720px;
	margin: 0 auto;
	padding: 56px 40px;
}

.bmc-post-list { display: grid; gap: 24px; padding: 48px 0 80px; }

.bmc-nav__mobile-cta { display: none; }

.bmc-service-row { max-width: 760px; }
.bmc-empty { padding: 80px 0; text-align: center; }
.bmc-logo__mark { display: flex; }

.bmc-dual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.bmc-dual__panel {
	border-radius: 24px;
	overflow: hidden;
}

.bmc-dual__image img { width: 100%; height: 240px; object-fit: cover; }
.bmc-dual__body { padding: 28px; }

.bmc-candidate-cta { padding-top: 96px; }
.bmc-testimonials { padding-bottom: 40px; }
