/* Bottaro-inspired visual layer — Burmetal */

:root {
	--bm-navy: #0c2340;
	--bm-navy-2: #163258;
	--bm-red: #b5212a;
	--bm-red-dark: #931820;
	--bm-bg: #e6e5e2;
	--bm-cream: #e6e5e2;
	--bm-white: #fff;
	--wp--preset--color-base: #e6e5e2;
	--bm-text: #1c1c1c;
	--bm-muted: #5a5a5a;
	--bm-radius: 14px;
	--bm-font: "Montserrat", "Noto Sans", "Segoe UI", Arial, sans-serif;
	--bm-pad-left: 5%;
	--bm-pad-right: 5%;
}

html,
body.bm-site,
.bm-site,
.wp-site-blocks,
.bm-main,
.bm-page-shell,
.bm-page-shell .entry-content,
.bm-page-shell .wp-block-post-content {
	background: var(--bm-bg);
	background-color: var(--bm-bg);
}

body.bm-site,
.bm-site {
	font-family: var(--bm-font);
	color: var(--bm-text);
	letter-spacing: -0.01em;
}

/* Header: two rows, floating centered shell */
.bm-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	background: transparent;
	display: flex;
	justify-content: center;
	padding: 14px 4.5vw 0;
	pointer-events: none;
}

.bm-header-shell {
	width: min(1120px, 100%);
	margin: 0 auto;
	background: rgb(255 255 255 / 78%);
	backdrop-filter: blur(16px) saturate(1.2);
	-webkit-backdrop-filter: blur(16px) saturate(1.2);
	border: 1px solid rgb(255 255 255 / 35%);
	border-radius: 18px;
	box-shadow: 0 10px 40px #0c23401a;
	overflow: visible;
	pointer-events: auto;
}

.bm-header.is-scrolled .bm-header-shell {
	background: rgb(247 246 244 / 88%);
	box-shadow: 0 12px 36px #0c23402e;
}

.bm-header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.55rem 1.35rem 0.35rem;
	border-bottom: 0;
}

.bm-logo img {
	height: 30px;
	width: auto;
}

.bm-top-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 1.1rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: var(--bm-navy);
}

.bm-top-nav a {
	color: var(--bm-navy);
}

.bm-top-nav a.is-current {
	color: var(--bm-red);
}

.bm-top-nav a:hover,
.bm-product-nav a:hover {
	color: var(--bm-red);
}

.bm-lang {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-left: 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--bm-navy);
}

.bm-lang a,
.bm-lang .bm-lang-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--bm-navy);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.bm-lang a.is-muted {
	opacity: 0.42;
}

.bm-lang a.is-current {
	opacity: 1;
	color: var(--bm-navy);
}

.bm-lang a:hover {
	opacity: 1;
	color: var(--bm-red);
}

.bm-lang img {
	width: 16px;
	height: 11px;
	display: block;
	border-radius: 1px;
}

.bm-lang-sep {
	color: #b5b5b5;
	font-weight: 500;
}

.bm-mobile-nav .bm-lang {
	margin: 1.5rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid rgba(12, 35, 64, 0.12);
	font-size: 0.9rem;
}

.bm-burger {
	display: none;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

.bm-burger span {
	width: 16px;
	background: var(--bm-navy);
}

.bm-product-nav {
	background: transparent;
	border-bottom: 0;
}

.bm-product-nav-inner {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 0.28rem 1.35rem 0.65rem;
	font-size: 0.86rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--bm-navy);
}

.bm-product-nav-inner > a,
.bm-drop > a {
	color: var(--bm-navy);
}

.bm-drop > a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.bm-drop > a::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-top: -2px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.bm-drop:hover > a::after {
	transform: rotate(225deg);
	margin-top: 2px;
}

.bm-drop-panel {
	border: 0;
	border-radius: 12px;
	padding: 0.6rem 0;
	box-shadow: 0 18px 50px #0c234029;
	z-index: 90;
}

.bm-drop-panel a {
	text-transform: none;
	font-weight: 500;
	font-size: 0.9rem;
	letter-spacing: 0;
	color: var(--bm-navy);
}

.bm-cta {
	border-radius: 6px;
	background: var(--bm-red);
	margin-left: auto;
	padding: 0.55rem 1rem;
	font-size: 0.82rem;
}

/* Hero — bur-metal.vercel.app */
.bm-hero {
	position: relative;
	height: 78vh;
	min-height: 520px;
	overflow: hidden;
	color: #fff;
	display: block;
	text-align: left;
}

.bm-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, #000000d9 0%, #0000004d 55%, transparent 100%);
	pointer-events: none;
}

.bm-hero img,
.bm-hero .wp-block-image,
.bm-hero .wp-block-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
}

.bm-hero h1,
.bm-hero .wp-block-heading {
	position: absolute;
	left: 9.52%;
	bottom: 12%;
	z-index: 2;
	margin: 0;
	max-width: 14ch;
	font-size: clamp(2.2rem, 5vw, 4.3rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 12px #0000008c;
}

.bm-hero h1 em {
	font-style: normal;
	font-weight: 700;
}

.bm-hero-actions {
	display: flex;
	justify-content: center;
	gap: 0.85rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.bm-scroll {
	position: absolute;
	bottom: 1.6rem;
	left: 50%;
	z-index: 2;
	width: 22px;
	height: 34px;
	border: 2px solid #fff;
	border-radius: 12px;
	transform: translateX(-50%);
}

.bm-scroll span {
	display: block;
	width: 3px;
	height: 8px;
	margin: 6px auto 0;
	background: #fff;
	border-radius: 2px;
	animation: bm-scroll 1.6s ease-in-out infinite;
}

@keyframes bm-scroll {
	0% { opacity: 1; transform: translateY(0); }
	70% { opacity: 0; transform: translateY(10px); }
	100% { opacity: 0; transform: translateY(10px); }
}

/* Buttons */
.bm-btn {
	border-radius: 6px;
	padding: 0.95rem 1.6rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-top: 0;
}

.bm-btn-navy {
	background: var(--bm-navy);
	color: #fff !important;
}

.bm-btn-navy:hover {
	background: var(--bm-navy-2);
}

.wp-block-button.bm-btn,
.wp-block-button.bm-btn-navy {
	background: none !important;
	padding: 0 !important;
	border: 0 !important;
	margin: 0;
}

.wp-block-button.bm-btn .wp-block-button__link,
.wp-block-button.bm-btn-navy .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 0.95rem 1.6rem !important;
	border: 0 !important;
	border-radius: 6px !important;
	box-shadow: none !important;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #fff !important;
}

.wp-block-button.bm-btn .wp-block-button__link {
	background: var(--bm-red) !important;
}

.wp-block-button.bm-btn .wp-block-button__link:hover {
	background: var(--bm-red-dark) !important;
}

.wp-block-button.bm-btn-light {
	background: none !important;
	padding: 0 !important;
	border: 0 !important;
}

.wp-block-button.bm-btn-light .wp-block-button__link {
	background: #fff !important;
	color: #1a1a1a !important;
}

.wp-block-button.bm-btn-navy .wp-block-button__link {
	background: var(--bm-navy) !important;
}

.wp-block-button.bm-btn-navy .wp-block-button__link:hover {
	background: var(--bm-navy-2) !important;
}

body.home .entry-content,
body.home .wp-block-post-content,
body.page-template-page-ana-sayfa .entry-content,
body.page-template-page-ana-sayfa .wp-block-post-content {
	padding: 0 !important;
	max-width: none !important;
	margin: 0;
}

body.home .entry-content > .alignfull,
body.home .wp-block-post-content > .alignfull {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

body.home .entry-content.is-layout-flow > *,
body.home .wp-block-post-content.is-layout-flow > *,
body.page-template-page-ana-sayfa .entry-content.is-layout-flow > *,
body.page-template-page-ana-sayfa .wp-block-post-content.is-layout-flow > * {
	margin-block: 0 !important;
}

body.home .bm-products,
body.home .bm-split,
body.home .bm-sectors,
body.home .bm-why,
body.page-template-page-ana-sayfa .bm-products,
body.page-template-page-ana-sayfa .bm-split,
body.page-template-page-ana-sayfa .bm-sectors,
body.page-template-page-ana-sayfa .bm-why {
	width: auto !important;
	max-width: none !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: var(--bm-pad-left) !important;
	margin-right: var(--bm-pad-right) !important;
	padding-left: 0;
	padding-right: 0;
	box-sizing: border-box;
}

body.home .bm-products,
body.home .bm-sectors,
body.page-template-page-ana-sayfa .bm-products,
body.page-template-page-ana-sayfa .bm-sectors {
	padding-top: 5rem !important;
	padding-bottom: 5rem !important;
}

body.home .bm-why,
body.page-template-page-ana-sayfa .bm-why {
	padding-top: 5rem !important;
	padding-bottom: 7rem !important;
	padding-left: clamp(1.25rem, 3vw, 2.5rem) !important;
	padding-right: clamp(1.25rem, 3vw, 2.5rem) !important;
}

body.home .bm-export,
body.page-template-page-ana-sayfa .bm-export {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 4.5rem var(--bm-pad-right) 4.5rem var(--bm-pad-left) !important;
	box-sizing: border-box;
	background: #f3f3f3;
}

body.home .bm-section > .wp-block-heading,
body.home .bm-section-title,
body.page-template-page-ana-sayfa .bm-section > .wp-block-heading,
body.page-template-page-ana-sayfa .bm-section-title {
	color: var(--bm-red) !important;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.15;
	margin: 0 0 2.5rem !important;
}

body.home .bm-cta-banner,
body.page-template-page-ana-sayfa .bm-cta-banner,
.bm-closing .bm-cta-banner {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}

body.home .bm-stats,
body.page-template-page-ana-sayfa .bm-stats {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 3.25rem var(--bm-pad-right) 3.25rem var(--bm-pad-left) !important;
	box-sizing: border-box;
}

.wp-block-group.bm-product-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.wp-block-group.bm-product-card {
	position: relative;
	overflow: hidden;
	background: #111;
}

.bm-product-card .wp-block-image,
.bm-product-card .wp-block-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	margin: 0;
	object-fit: cover;
	transition: transform 0.45s ease;
}

body.home .bm-product-card,
body.page-template-page-ana-sayfa .bm-product-card {
	cursor: pointer;
}

body.home .bm-product-card:hover img,
body.page-template-page-ana-sayfa .bm-product-card:hover img {
	transform: scale(1.05);
}

body.home .bm-product-card::after,
body.page-template-page-ana-sayfa .bm-product-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 42%, #000000d4 100%);
}

body.home .bm-product-card-copy,
body.page-template-page-ana-sayfa .bm-product-card-copy {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.35rem 1.15rem 1.2rem;
	pointer-events: none;
}

.bm-product-card-copy {
	padding: 1rem 0.2rem 1.4rem;
}

body.home .bm-product-card h3,
body.home .bm-product-card h3 a,
body.page-template-page-ana-sayfa .bm-product-card h3,
body.page-template-page-ana-sayfa .bm-product-card h3 a {
	margin: 0 0 0.3rem;
	font-size: 1.15rem;
	color: #fff;
}

body.home .bm-product-card h3 a,
body.page-template-page-ana-sayfa .bm-product-card h3 a {
	pointer-events: auto;
}

body.home .bm-product-card h3 a::after,
body.page-template-page-ana-sayfa .bm-product-card h3 a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
}

body.home .bm-product-card h3 span,
body.page-template-page-ana-sayfa .bm-product-card h3 span {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

body.home .bm-product-card p,
body.home .bm-product-card p a,
body.page-template-page-ana-sayfa .bm-product-card p,
body.page-template-page-ana-sayfa .bm-product-card p a {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 600;
	color: #fff;
	pointer-events: none;
}

.wp-block-columns.bm-split {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 0 !important;
	min-height: 520px;
	margin: 0;
}

.bm-split-copy {
	background: var(--bm-bg);
	padding: 4rem 8%;
}

.bm-block {
	scroll-margin-top: 7.5rem;
}

.bm-split-media .wp-block-image,
.bm-split-media .wp-block-image img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	margin: 0;
	object-fit: cover;
}

.wp-block-columns.bm-export {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 3rem !important;
	align-items: center;
	margin: 0;
	background: #f3f3f3;
}

.bm-export-media,
.bm-export-media .wp-block-image,
.bm-export-media .wp-block-image img {
	width: 100%;
	height: auto;
	max-height: none;
	margin: 0;
	background: transparent !important;
	object-fit: contain;
	display: block;
}

.wp-block-group.bm-cta-banner {
	position: relative;
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	min-height: 280px;
	background: #1a1a1a;
	color: #fff;
	overflow: hidden;
}

.wp-block-group.bm-cta-banner .wp-block-image,
.wp-block-group.bm-cta-banner .wp-block-image img {
	position: static;
	inset: auto;
	width: 100%;
	height: 100%;
	min-height: 280px;
	margin: 0;
	object-fit: cover;
	display: block;
}

.wp-block-group.bm-cta-banner::after {
	content: none;
}

.bm-cta-copy {
	position: static;
	z-index: auto;
	max-width: none;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2.25rem 10%;
	background: #1a1a1a;
	color: #fff;
}

body.home .bm-cta-banner,
body.home .bm-cta-banner h2,
body.home .bm-cta-banner p,
body.home .bm-cta-copy,
body.home .bm-cta-copy h2,
body.home .bm-cta-copy p,
body.page-template-page-ana-sayfa .bm-cta-banner,
body.page-template-page-ana-sayfa .bm-cta-banner h2,
body.page-template-page-ana-sayfa .bm-cta-banner p,
body.page-template-page-ana-sayfa .bm-cta-copy,
body.page-template-page-ana-sayfa .bm-cta-copy h2,
body.page-template-page-ana-sayfa .bm-cta-copy p,
.bm-closing .bm-cta-banner,
.bm-closing .bm-cta-banner h2,
.bm-closing .bm-cta-banner p,
.bm-closing .bm-cta-copy,
.bm-closing .bm-cta-copy h2,
.bm-closing .bm-cta-copy p {
	color: #fff;
}

.wp-block-cover.bm-cta-banner {
	padding: 0;
}

.wp-block-cover.bm-cta-banner::after {
	content: none;
}

.wp-block-cover.bm-cta-banner .wp-block-cover__background {
	opacity: 1 !important;
}

.wp-block-group.bm-product-grid,
.wp-block-group.bm-sector-grid,
.wp-block-group.bm-why-grid,
.wp-block-group.bm-stats {
	margin-block: 0;
}

.wp-block-group.bm-product-grid > *,
.wp-block-group.bm-sector-grid > *,
.wp-block-group.bm-why-grid > *,
.wp-block-group.bm-stats > * {
	margin-block: 0 !important;
}

.wp-block-group.bm-cats {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 12px;
	background: var(--bm-white);
}

body.home .wp-block-group.bm-sector-card,
body.page-template-page-ana-sayfa .wp-block-group.bm-sector-card {
	position: relative;
	min-height: 0;
	overflow: hidden;
	background: #111;
	color: #fff;
}

body.home .bm-sector-card .wp-block-image,
body.home .bm-sector-card .wp-block-image img,
body.page-template-page-ana-sayfa .bm-sector-card .wp-block-image,
body.page-template-page-ana-sayfa .bm-sector-card .wp-block-image img {
	position: static;
	inset: auto;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	margin: 0;
	object-fit: cover;
	transition: transform 0.45s ease;
}

body.home .bm-sector-card:hover img,
body.page-template-page-ana-sayfa .bm-sector-card:hover img {
	transform: scale(1.05);
}

body.home .bm-sector-card::after,
body.page-template-page-ana-sayfa .bm-sector-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: linear-gradient(180deg, transparent 42%, #000000d4 100%);
}

body.home .bm-sector-card-copy,
body.page-template-page-ana-sayfa .bm-sector-card-copy {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.35rem 1.15rem 1.2rem;
}

body.home .bm-sector-card h3,
body.home .bm-sector-card h3 a,
body.page-template-page-ana-sayfa .bm-sector-card h3,
body.page-template-page-ana-sayfa .bm-sector-card h3 a {
	margin: 0 0 0.55rem;
	font-size: 1.15rem;
	color: #fff;
}

body.home .bm-sector-card p,
body.page-template-page-ana-sayfa .bm-sector-card p {
	margin: 0 0 0.45rem;
	font-size: 0.85rem;
	line-height: 1.45;
	color: #fff;
	opacity: 0.92;
}

body.home .bm-sector-card p a,
body.page-template-page-ana-sayfa .bm-sector-card p a {
	color: #fff;
	font-weight: 600;
	opacity: 1;
}

body.home .bm-sector-card p:last-child,
body.page-template-page-ana-sayfa .bm-sector-card p:last-child {
	margin-bottom: 0;
}

.wp-block-columns.bm-editorial {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 0 !important;
	min-height: 560px;
	margin: 0;
	background: var(--bm-bg);
}

.bm-editorial-media .wp-block-image,
.bm-editorial-media .wp-block-image img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	margin: 0;
	object-fit: cover;
}

.wp-block-group.bm-sector-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}


.wp-block-group.bm-why-grid {
	display: grid !important;
	grid-template-columns: 1fr 1fr;
	gap: 3.2rem 4.5rem;
}

.wp-block-group.bm-why-item {
	display: grid !important;
	grid-template-columns: auto 1fr;
	gap: 0.15rem 1rem;
	align-items: start;
	background: transparent;
}

.bm-why-num,
.bm-why-item h1.bm-why-num {
	margin: 0 0 0.4rem !important;
	color: #d5d3d0 !important;
	font-size: clamp(2.6rem, 4.4vw, 4rem) !important;
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 0.95;
}

.bm-why-copy {
	min-width: 0;
}

.bm-why-copy h3,
.bm-why-item h3 {
	margin: 0.35rem 0 0.7rem !important;
	color: #2a2a2a !important;
	font-size: 1.18rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.bm-why-copy p,
.bm-why-item p {
	margin: 0 !important;
	color: #5c5c5c !important;
	font-size: 0.95rem;
	line-height: 1.7;
	font-weight: 400;
}

.wp-block-group.bm-stats {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem 2rem;
	margin-top: 0;
	padding-top: 0;
	border-top: 0;
	background: #f3f2ef;
}

.bm-stat-value,
.bm-stat-value strong {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem;
	margin: 0;
	color: var(--bm-red);
	font-size: clamp(2rem, 3.4vw, 3rem);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.bm-stat-value .bm-unit,
.bm-unit {
	font-size: 0.42em;
	margin-left: 0;
	font-weight: 700;
	color: inherit;
	letter-spacing: 0;
}

.bm-stat-label {
	position: relative;
	display: inline-block;
	margin: 0.7rem 0 0;
	padding-bottom: 0.45rem;
	color: #7a7a7a;
	font-size: 0.82rem;
	font-weight: 500;
}

.bm-stat-label::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 2.4rem;
	height: 1px;
	background: #cfcfcf;
}

.wp-block-cover.bm-cta-banner {
	min-height: 280px;
}

.wp-block-cover.bm-cta-banner .wp-block-cover__inner-container {
	max-width: 42rem;
	margin-left: 5%;
	padding: 2.25rem 0;
}

/* Category panels */
.bm-cats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 12px;
	background: var(--bm-white);
}

.bm-cat {
	position: relative;
	min-height: 52vh;
	overflow: hidden;
	border-radius: var(--bm-radius);
	color: #fff;
}

.bm-cat img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	inset: 0;
	transition: transform 0.7s ease;
}

.bm-cat:hover img {
	transform: scale(1.06);
}

.bm-cat::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, #0c2340e6 100%);
}

.bm-cat div {
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 1;
}

.bm-cat h2 {
	margin: 0 0 0.35rem;
	font-size: clamp(1.6rem, 2.4vw, 2.2rem);
	font-weight: 700;
	letter-spacing: -0.03em;
}

.bm-cat span {
	font-size: 0.85rem;
	font-weight: 600;
	opacity: 0.9;
}

/* Editorial */
.bm-editorial {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 560px;
	background: var(--bm-bg);
}

.bm-editorial-copy {
	padding: 5rem 8% 5rem 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bm-editorial-copy h2 {
	font-size: clamp(2.1rem, 4vw, 3.4rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.08;
	margin: 0 0 1.2rem;
	color: var(--bm-navy);
}

.bm-editorial-copy p {
	color: var(--bm-muted);
	line-height: 1.7;
	font-size: 1.05rem;
	max-width: 36rem;
}

.bm-editorial-copy .bm-btn {
	margin-top: 1.6rem;
	align-self: flex-start;
}

.bm-editorial-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 420px;
}

.bm-kicker {
	color: var(--bm-red);
	font-weight: 700;
	letter-spacing: 0.14em;
}

/* Sections */
.bm-section {
	padding: 5.5rem var(--bm-pad-right) 5.5rem var(--bm-pad-left);
	background: var(--bm-bg);
}

.bm-section-title {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	color: var(--bm-red);
	margin: 0 0 2.8rem;
}

.bm-sector-grid {
	gap: 12px;
}

.bm-sector-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--bm-radius);
	background: #111;
	min-height: 420px;
	color: #fff;
}

.bm-sector-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	aspect-ratio: auto;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.bm-sector-card:hover img {
	transform: scale(1.05);
}

.bm-sector-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 20%, #0c2340f2 100%);
}

.bm-sector-card div {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	padding: 1.6rem 1.4rem 1.7rem;
}

.bm-sector-card h3,
.bm-sector-card p,
.bm-sector-card span {
	color: #fff;
}

.bm-sector-card p {
	opacity: 0.88;
}

/* Why */
.bm-why {
	background: var(--bm-bg);
	padding: 5rem clamp(1.75rem, 8vw, 6.5rem) 7rem;
	color: var(--bm-text);
}

.bm-why-head {
	display: flex !important;
	justify-content: space-between;
	align-items: baseline;
	gap: 1.5rem;
	margin: 0 0 2.8rem;
}

.bm-why-head h2,
.bm-why-head .bm-section-title {
	margin: 0 !important;
	color: var(--bm-red) !important;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 700;
	letter-spacing: -0.04em;
}

.bm-why-head p {
	margin: 0 !important;
}

.bm-why-head a {
	color: var(--bm-red) !important;
	font-size: 0.95rem;
	font-weight: 600;
	white-space: nowrap;
}

.bm-why-head a:hover {
	color: var(--bm-red-dark) !important;
}

.bm-closing {
	width: 100%;
	max-width: none;
	margin: 0;
	background: var(--bm-bg);
}

.bm-closing .bm-why,
.bm-closing .bm-cta-banner {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.bm-closing .bm-why {
	padding-left: clamp(1.75rem, 8vw, 6.5rem) !important;
	padding-right: clamp(1.75rem, 8vw, 6.5rem) !important;
	padding-bottom: 7rem !important;
}

.bm-why h3,
.bm-why p,
.bm-why a {
	color: inherit;
}

.bm-stats {
	background: #f3f2ef;
	border-top: 0;
}

/* CTA */
.bm-cta-banner {
	min-height: 280px;
}

.bm-cta-banner::after {
	content: none;
}

.bm-cta-banner .bm-cta-copy {
	max-width: none;
}

.bm-cta-banner h2 {
	margin: 0 0 1.1rem;
	font-size: clamp(1.8rem, 3.4vw, 3rem);
	letter-spacing: -0.03em;
	font-weight: 700;
	color: #fff;
}

.bm-cta-banner p {
	margin: 0 0 1.6rem;
	color: #fff;
}

/* Footer */
.bm-footer {
	background: #1a1a1a;
	color: #c8c8c8;
	padding: 4.75rem var(--bm-pad-right) 1.4rem var(--bm-pad-left);
}

.bm-footer-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr 1fr;
	gap: 2.5rem 3rem;
	align-items: start;
}

.bm-footer-brand img {
	display: block;
	height: 36px;
	width: auto;
	margin: 0 0 1.45rem;
}

.bm-footer-brand p {
	margin: 0;
}

.bm-footer-address {
	max-width: 17.5rem;
	margin-bottom: 1.15rem !important;
	font-size: 0.92rem;
	line-height: 1.55;
	color: #cfcfcf;
}

.bm-footer-mails a {
	display: block;
	margin: 0.12rem 0;
	font-size: 0.92rem;
	color: #cfcfcf;
}

.bm-footer-phones {
	margin-top: 1.2rem !important;
}

.bm-footer-phone {
	display: flex !important;
	align-items: center;
	gap: 0.7rem;
	margin: 0.55rem 0 !important;
	color: #fff !important;
	font-size: 0.95rem;
	font-weight: 500;
}

.bm-footer-phone-icon {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--bm-red);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
}

.bm-footer-col h4 {
	display: none;
}

.bm-footer a {
	display: block;
	margin: 0.5rem 0;
	color: #d4d4d4;
	font-size: 0.95rem;
	text-decoration: none;
}

.bm-footer a:hover {
	color: #fff;
}

.bm-footer .bm-map-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	margin-top: 1.4rem !important;
	margin-bottom: 1rem !important;
	padding: 0.78rem 1.2rem !important;
	border: 0;
	border-radius: 3px;
	background: var(--bm-red);
	color: #fff !important;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bm-footer .bm-map-btn:hover {
	background: var(--bm-red-dark);
	color: #fff !important;
}

.bm-footer-social {
	display: flex;
	align-items: center;
	gap: 0.9rem;
}

.bm-footer-social a {
	display: inline-flex !important;
	margin: 0 !important;
	color: #fff;
}

.bm-footer-social a:hover {
	color: var(--bm-red);
}

.bm-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin-top: 3.6rem;
	padding-top: 1.15rem;
	border-top: 1px solid #ffffff22;
	font-size: 0.82rem;
	color: #9a9a9a;
}

.bm-footer-bottom strong {
	color: #d0d0d0;
	font-weight: 700;
}

/* Inner pages */
.bm-inner-hero {
	height: 42vh;
	min-height: 280px;
	max-height: 420px;
}

.bm-inner-hero .wp-block-post-featured-image,
.bm-inner-hero img {
	height: 42vh;
	min-height: 280px;
	max-height: 420px;
}

.bm-inner-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, #0c23408c 0%, #0c2340b3 100%);
}

.bm-inner-hero .wp-block-post-title {
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	max-width: 80%;
	font-size: clamp(2rem, 5vw, 3.6rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	text-transform: none;
	z-index: 1;
}

.bm-inner-hero {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}

.bm-page-shell {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	background: var(--bm-bg);
}

.bm-page-shell,
.bm-page-shell .entry-content,
.bm-page-shell .wp-block-post-content,
.bm-page-shell .wp-block-columns,
.bm-page-shell .bm-split-copy,
.bm-page-shell .bm-split-row,
.bm-page-shell .has-base-background-color,
.bm-page-shell .has-white-background-color {
	background: var(--bm-bg) !important;
	background-color: var(--bm-bg) !important;
}

.bm-page-shell .entry-content {
	padding: 4rem var(--bm-pad-right) 5.5rem var(--bm-pad-left);
}

body.bm-site .wp-block-group.bm-contact-page,
.bm-contact-page {
	padding: 9.5rem 0 5.5rem !important;
	background: var(--bm-bg);
	min-height: 70vh;
}

body.bm-site .bm-contact-page .entry-content,
body.bm-site .bm-contact-page .wp-block-post-content,
.bm-contact-page .entry-content,
.bm-contact-page .wp-block-post-content {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 clamp(1.5rem, 5vw, 4rem) !important;
	box-sizing: border-box;
}

.bm-contact-page .alignfull {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	left: auto !important;
	position: relative !important;
}

.bm-contact-page .entry-content > h1,
.bm-contact-page .entry-content > .wp-block-heading:is(h1) {
	margin: 0 0 0.85rem;
	color: var(--bm-red);
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.1;
	text-transform: none;
	max-width: none;
}

.bm-contact-page .entry-content > h2,
.bm-contact-page .entry-content > .wp-block-heading:is(h2) {
	margin: 0 0 0.85rem;
	color: var(--bm-text);
	font-size: clamp(1.35rem, 2.2vw, 1.85rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	text-transform: none;
	max-width: none;
}

.bm-contact-page .entry-content > p {
	margin: 0 0 1.75rem;
	max-width: none;
	color: var(--bm-muted);
	font-size: 1.02rem;
	line-height: 1.65;
}

.wp-block-columns.bm-contact-layout,
.bm-contact-page .wp-block-columns.bm-contact-layout,
.bm-contact-page .wp-block-columns.bm-contact-layout.alignfull {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: flex-start !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding: 0 !important;
	gap: 2.25rem !important;
}

.bm-contact-layout > .wp-block-column,
.bm-contact-page .bm-contact-info,
.bm-contact-page .bm-contact-form-col {
	margin: 0 !important;
	padding: 0 !important;
	min-width: 0;
	background: var(--bm-bg);
}

.bm-contact-page .bm-contact-info {
	flex: 1 1 42% !important;
	width: 42% !important;
	max-width: none !important;
}

.bm-contact-page .bm-contact-form-col {
	flex: 1 1 58% !important;
	width: 58% !important;
	max-width: none !important;
}

.bm-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	margin: 0 0 1.55rem;
	padding: 0;
}

.bm-contact-item::before {
	content: none;
}

.bm-contact-ico,
.bm-contact-item .bm-contact-ico {
	flex: none;
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.15rem;
	color: var(--bm-red);
}

.bm-contact-ico svg {
	display: block;
	width: 100%;
	height: 100%;
}

.bm-contact-item-body {
	flex: 1;
	min-width: 0;
}

.bm-contact-item h3,
.bm-contact-page .bm-contact-item .wp-block-heading {
	margin: 0 0 0.35rem !important;
	color: var(--bm-text);
	font-size: 1.05rem !important;
	font-weight: 700;
	text-transform: none;
	max-width: none;
}

.bm-contact-item p {
	margin: 0;
	color: var(--bm-muted);
	line-height: 1.55;
}

.bm-contact-item a {
	color: var(--bm-text);
	font-weight: 600;
}

.bm-contact-item a:hover {
	color: var(--bm-red);
}

.bm-contact-map-wrap {
	margin: 1.6rem 0 0;
}

.bm-contact-page .bm-map-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.25rem;
	border-radius: 6px;
	background: var(--bm-navy);
	color: #fff !important;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.bm-contact-page .bm-map-btn:hover {
	background: var(--bm-red);
}

.bm-cf7-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 1.15rem;
}

.bm-cf7-field,
.bm-cf7-submit,
.bm-contact-page .wpcf7 p {
	margin: 0 0 1.05rem;
}

.bm-contact-page .wpcf7 .bm-cf7-grid p {
	margin: 0;
}

.bm-contact-page .wpcf7 label {
	display: block;
	margin: 0 0 1.05rem;
	color: var(--bm-navy);
	font-size: 0.82rem;
	font-weight: 600;
}

.bm-contact-page .wpcf7 input[type="text"],
.bm-contact-page .wpcf7 input[type="email"],
.bm-contact-page .wpcf7 input[type="tel"],
.bm-contact-page .wpcf7 textarea {
	display: block;
	width: 100%;
	margin-top: 0.4rem;
	padding: 0.85rem 1rem;
	border: 1px solid #d5d8de;
	border-radius: 8px;
	background: #fff;
	color: var(--bm-text);
	font: inherit;
	font-size: 0.95rem;
	font-weight: 500;
}

.bm-contact-page .wpcf7 textarea {
	min-height: 150px;
	resize: vertical;
}

.bm-contact-page .wpcf7 input:focus,
.bm-contact-page .wpcf7 textarea:focus {
	outline: none;
	border-color: var(--bm-navy);
	box-shadow: 0 0 0 3px #0c23401a;
}

.bm-contact-page .wpcf7 input[type="submit"],
.bm-contact-page .wpcf7-submit {
	appearance: none;
	margin-top: 0.35rem;
	padding: 0.95rem 2rem;
	border: 0;
	border-radius: 8px;
	background: var(--bm-red);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.bm-contact-page .wpcf7 input[type="submit"]:hover,
.bm-contact-page .wpcf7-submit:hover {
	background: var(--bm-red);
}

.bm-contact-page .wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.35rem;
	color: var(--bm-red);
	font-size: 0.75rem;
	font-weight: 500;
}

.bm-contact-page .wpcf7-response-output {
	margin: 1.25rem 0 0 !important;
	padding: 0.85rem 0 !important;
	border: 0 !important;
	font-size: 0.9rem;
	font-weight: 600;
}

.bm-page-shell .bm-split-copy h2,
.bm-page-shell .entry-content > .wp-block-heading:is(h2):first-child {
	letter-spacing: -0.03em;
}

.bm-blog-page {
	padding: 8.5rem 4% 5.5rem;
	background:
		radial-gradient(1200px 480px at 50% 0%, #e8eef6 0%, #f4f6f8 42%, #f7f6f4 100%);
	min-height: 70vh;
}

.bm-blog-intro {
	max-width: 1600px;
	margin: 0 auto 1.6rem;
}

.bm-blog-intro h1 {
	margin: 0;
	color: var(--bm-navy);
	font-size: clamp(3rem, 7vw, 5.2rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 0.95;
}

.bm-blog-intro p {
	margin: 0.9rem 0 0;
	color: var(--bm-navy);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	max-width: 36rem;
}

.bm-blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	max-width: 1600px;
	margin: 0 auto 2.2rem;
	padding-top: 1.2rem;
	border-top: 1px solid #0c234033;
}

.bm-blog-filters a {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 0.95rem;
	border-radius: 999px;
	border: 1px solid var(--bm-navy);
	color: var(--bm-navy);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	background: transparent;
}

.bm-blog-filters a.is-active,
.bm-blog-filters a:hover {
	background: var(--bm-navy);
	color: #fff;
	border-color: var(--bm-navy);
}

.bm-blog-page .bm-blog-grid {
	max-width: 1600px;
	margin: 0 auto;
	gap: 1.5rem 1.15rem;
}

.bm-blog-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(12, 35, 64, 0.07);
	border: 1px solid transparent;
	transition: border-color 0.2s ease;
}

.bm-blog-card:hover {
	border-color: #fff;
}

.bm-blog-card-media {
	display: block;
	border-radius: 0;
	overflow: hidden;
	background: #d9dee6;
}

.bm-blog-card-media img {
	width: 100%;
	aspect-ratio: 1735 / 906;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}

.bm-blog-card:hover .bm-blog-card-media img {
	transform: scale(1.04);
}

.bm-blog-card-body {
	padding: 1.05rem 1.15rem 1.25rem;
}

.bm-blog-meta {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	margin-bottom: 0.55rem;
}

.bm-blog-tag,
.bm-blog-date {
	display: inline-flex;
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
}

.bm-blog-tag.tone-teal { background: #2a9d8f; }
.bm-blog-tag.tone-orange { background: #e07a3d; }
.bm-blog-tag.tone-navy { background: var(--bm-navy); }
.bm-blog-tag.tone-red { background: var(--bm-red); }

.bm-blog-date {
	background: var(--bm-navy);
	font-weight: 600;
	text-transform: none;
	letter-spacing: 0;
}

.bm-blog-card h3 {
	margin: 0;
	font-size: 1.02rem;
	line-height: 1.35;
	font-weight: 600;
	color: var(--bm-navy);
}

.bm-blog-card h3 a:hover {
	color: var(--bm-red);
}

.bm-blog-page .bm-pagination {
	max-width: 1600px;
	margin: 2.4rem auto 0;
}

.bm-article {
	display: block;
	max-width: 1180px;
	margin: 0 auto;
	padding: 9.5rem 4% 5.5rem;
}

.bm-article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 0.85rem;
}

.bm-crumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0 0 1.4rem;
	font-size: 0.82rem;
	color: #6a7380;
}

.bm-crumbs a:hover {
	color: var(--bm-red);
}

.bm-article-title {
	margin: 0 0 1.3rem;
	color: var(--bm-navy);
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 300;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

.bm-article-lead {
	margin: 0 0 1.8rem;
	color: var(--bm-navy);
	font-size: 1.12rem;
	line-height: 1.7;
}

.bm-article-lead::first-letter {
	float: left;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 0.8;
	padding: 0.12rem 0.4rem 0 0;
	color: var(--bm-navy);
}

.bm-article-hero {
	margin: 0 0 2rem;
	border-radius: 12px;
	overflow: hidden;
}

.bm-article-hero img {
	width: 100%;
	height: auto;
	aspect-ratio: 1735 / 906;
	object-fit: cover;
	object-position: center;
	display: block;
}

.bm-article-body {
	color: #333;
	font-size: 1.05rem;
	line-height: 1.75;
}

.bm-article-body p {
	margin: 0 0 1.15rem;
}

.bm-article-body h2,
.bm-article-body h3 {
	color: var(--bm-navy);
	margin: 1.8rem 0 0.7rem;
}

.bm-mobile-nav a {
	color: var(--bm-navy);
	font-size: 1.05rem;
}

.bm-mobile-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
}

.bm-mobile-head img {
	height: 28px;
	width: auto;
}

.bm-mobile-label {
	margin: 1.4rem 0 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bm-red);
}

.bm-mobile-links {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.bm-mobile-acc-row {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.bm-mobile-acc-row a {
	flex: 1;
}

.bm-mobile-acc-btn {
	width: 40px;
	height: 40px;
	border: 0;
	background: transparent;
	position: relative;
	flex: none;
}

.bm-mobile-acc-btn::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 10px;
	border-right: 1.6px solid var(--bm-navy);
	border-bottom: 1.6px solid var(--bm-navy);
	transform: translate(-50%, -70%) rotate(45deg);
}

.bm-mobile-acc.is-open .bm-mobile-acc-btn::before {
	transform: translate(-50%, -30%) rotate(225deg);
}

.bm-mobile-acc-panel {
	display: none;
	padding: 0.15rem 0 0.5rem 0.85rem;
}

.bm-mobile-acc.is-open .bm-mobile-acc-panel {
	display: flex;
	flex-direction: column;
}

.bm-mobile-acc-panel a {
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.4rem 0;
	color: #445;
}

.bm-mobile-nav .bm-cta {
	margin: 1.5rem 0 0;
	display: inline-flex;
	justify-content: center;
	width: 100%;
}

/* Contact — Bottaro-inspired */
.bm-contact-hero {
	position: relative;
	min-height: 82vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}

.bm-contact-hero > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bm-contact-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #0c2340f0 0%, #0c2340b8 42%, #0c23404d 100%);
}

.bm-contact-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	padding: 10.5rem 6% 8.5rem;
}

.bm-contact-badge {
	display: inline-flex;
	padding: 0.42rem 0.85rem;
	border: 1px solid #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bm-contact-hero h1 {
	margin: 1.15rem 0 1.1rem;
	color: #fff;
	font-size: clamp(2.4rem, 5.4vw, 4.4rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.05;
	text-transform: uppercase;
}

.bm-contact-hero p {
	margin: 0;
	max-width: 38rem;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.55;
	color: #fffffff0;
}

.bm-contact-depts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	max-width: 1600px;
	margin: -6.5rem auto 0;
	padding: 0 4% 3.5rem;
	position: relative;
	z-index: 3;
}

.bm-contact-dept {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(12, 35, 64, 0.1);
	border: 1px solid transparent;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.bm-contact-dept:hover {
	border-color: #fff;
	transform: translateY(-3px);
}

.bm-contact-dept img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

.bm-contact-dept strong {
	display: block;
	padding: 0.95rem 1.05rem 1.15rem;
	color: var(--bm-navy);
	font-size: 1.02rem;
	font-weight: 700;
}

.bm-contact-block {
	max-width: 1600px;
	margin: 0 auto;
	padding: 4.2rem 4%;
	scroll-margin-top: 7rem;
}

.bm-contact-block h2 {
	margin: 0 0 0.7rem;
	color: var(--bm-navy);
	font-size: clamp(2rem, 4vw, 3.2rem);
	font-weight: 700;
	letter-spacing: -0.04em;
}

.bm-contact-lead {
	margin: 0 0 2rem;
	max-width: 40rem;
	color: #445;
	font-size: 1.05rem;
	line-height: 1.6;
}

.bm-contact-people {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.15rem;
}

.bm-person {
	background: #fff;
	border-radius: 16px;
	padding: 1.6rem 1.5rem 1.7rem;
	box-shadow: 0 8px 24px rgba(12, 35, 64, 0.07);
}

.bm-person-role {
	display: inline-flex;
	margin-bottom: 0.7rem;
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	background: var(--bm-navy);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bm-person h3 {
	margin: 0 0 0.85rem;
	color: var(--bm-navy);
	font-size: 1.45rem;
	font-weight: 700;
}

.bm-person p {
	margin: 0 0 1.1rem;
	color: #445;
	line-height: 1.55;
}

.bm-person a {
	display: block;
	color: var(--bm-navy);
	font-weight: 600;
	margin-top: 0.2rem;
}

.bm-person a:hover {
	color: var(--bm-red);
}

.bm-person .bm-btn {
	display: inline-flex;
	margin-top: 0.35rem;
}

.bm-contact-split {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 1.25rem;
	align-items: stretch;
}

.bm-contact-place {
	background: #fff;
	border-radius: 16px;
	padding: 1.8rem 1.6rem;
	box-shadow: 0 8px 24px rgba(12, 35, 64, 0.07);
}

.bm-contact-place h3 {
	margin: 0 0 0.8rem;
	color: var(--bm-navy);
	font-size: 1.35rem;
}

.bm-contact-place p {
	margin: 0 0 1rem;
	color: #445;
	line-height: 1.6;
}

.bm-contact-place .bm-btn {
	display: inline-flex;
}

.bm-contact-map {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(12, 35, 64, 0.07);
}

.bm-contact-map img {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}

.bm-contact-form-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 2.2rem;
	align-items: start;
}

.bm-contact-list {
	margin: 0 0 1.4rem;
	padding: 0;
	list-style: none;
	color: var(--bm-navy);
}

.bm-contact-list li {
	padding: 0.55rem 0;
	border-bottom: 1px solid #0c23401a;
	font-weight: 600;
}

.bm-contact-form input,
.bm-contact-form textarea {
	border: 0;
	border-bottom: 1px solid #0c234033;
	border-radius: 0;
	padding: 0.95rem 0.1rem;
	background: transparent;
}

.bm-contact-form input:focus,
.bm-contact-form textarea:focus {
	outline: 0;
	border-bottom-color: var(--bm-navy);
}

.bm-contact-form button {
	margin-top: 0.6rem;
	border-radius: 6px;
	background: var(--bm-navy);
}

.bm-contact-form button:hover {
	background: var(--bm-red);
}

.bm-contact-blog-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	max-width: none;
	margin: 0;
}

.bm-contact-blog-more {
	margin: 1.4rem 0 0;
}

.bm-contact-blog-more a {
	font-weight: 700;
	color: var(--bm-navy);
}

body:has(.bm-contact-hero) {
	background: #f4f6f8;
}

.wp-block-cover.bm-contact-hero {
	padding: 0;
}

.wp-block-cover.bm-contact-hero .wp-block-cover__background {
	background: linear-gradient(90deg, #0c2340f0 0%, #0c2340b8 42%, #0c23404d 100%) !important;
	opacity: 1 !important;
}

.wp-block-cover.bm-contact-hero .wp-block-cover__inner-container {
	max-width: 760px;
	margin-left: 6%;
	margin-right: auto;
	padding: 10.5rem 0 8.5rem;
}

.wp-block-columns.bm-contact-depts {
	gap: 1rem !important;
	max-width: 1600px;
	margin: -6.5rem auto 0 !important;
	padding: 0 4% 3.5rem;
	position: relative;
	z-index: 3;
}

.bm-contact-depts > .wp-block-column {
	margin: 0 !important;
}

.bm-contact-dept .wp-block-image,
.bm-contact-dept .wp-block-image img,
.bm-contact-map .wp-block-image,
.bm-contact-map img {
	margin: 0;
	width: 100%;
}

.bm-contact-dept h3 {
	margin: 0;
	padding: 0.95rem 1.05rem 1.15rem;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--bm-navy);
}

.wp-block-column.bm-contact-place {
	background: #fff;
	border-radius: 16px;
	padding: 1.8rem 1.6rem;
	box-shadow: 0 8px 24px rgba(12, 35, 64, 0.07);
}

.wp-block-column.bm-contact-map {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(12, 35, 64, 0.07);
}

.bm-contact-block .wp-block-button__link {
	background: var(--bm-red);
	border-radius: 6px;
	padding: 0.85rem 1.3rem;
}

.bm-contact-block .bm-btn-navy .wp-block-button__link {
	background: var(--bm-navy);
}

.bm-contact-blog-query .wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.bm-contact-blog .wp-block-post-terms,
.bm-contact-blog .wp-block-post-date {
	display: inline-flex;
	margin: 0 0 0.4rem;
}

.bm-contact-blog .wp-block-post-terms a {
	display: inline-flex;
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	background: var(--bm-navy);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.bm-contact-blog .wp-block-post-date {
	padding: 0.22rem 0.7rem;
	border-radius: 999px;
	background: var(--bm-navy);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 600;
}

@media (max-width: 1024px) {
	.bm-top-nav,
	.bm-product-nav {
		display: none !important;
	}

	.bm-burger {
		display: flex !important;
		flex-direction: column;
	}

	.bm-product-grid,
	.bm-sector-grid,
	.wp-block-group.bm-product-grid,
	.wp-block-group.bm-sector-grid,
	.wp-block-columns.bm-split,
	.wp-block-columns.bm-export,
	.wp-block-group.bm-cta-banner,
	.bm-cta-banner {
		grid-template-columns: 1fr;
	}

	.wp-block-group.bm-why-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.4rem 2rem;
	}

	.wp-block-group.bm-stats {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.bm-hero h1,
	.bm-hero .wp-block-heading {
		left: 1.25rem;
		max-width: 90%;
	}

	.bm-split-copy {
		padding: 3rem 1.5rem;
		max-width: none;
	}

	.bm-cta-copy {
		padding: 2rem 1.5rem;
		max-width: none;
	}

	.bm-editorial-copy {
		padding: 3rem 1.5rem;
	}

	.bm-contact-depts,
	.bm-contact-people,
	.bm-contact-split,
	.bm-contact-form-grid,
	.bm-contact-blog-grid,
	.wp-block-columns.bm-contact-layout,
	.bm-contact-page .wp-block-columns.bm-contact-layout {
		flex-wrap: wrap !important;
		gap: 2.5rem !important;
	}

	.bm-contact-page .bm-contact-info,
	.bm-contact-page .bm-contact-form-col {
		flex: 1 1 100% !important;
		width: 100% !important;
		max-width: none !important;
	}
}

@media (max-width: 767px) {
	.wp-block-group.bm-why-grid {
		grid-template-columns: 1fr !important;
		gap: 2rem;
	}

	.wp-block-group.bm-stats {
		grid-template-columns: 1fr 1fr !important;
	}

	.bm-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.bm-header {
		padding: 10px 8px 0;
	}

	.bm-header-shell {
		width: 100%;
	}

	.bm-hero-inner {
		padding-top: 7.5rem;
	}

	.bm-blog-page,
	body.bm-site .wp-block-group.bm-contact-page,
	.bm-contact-page {
		padding: 7.2rem 0 4rem !important;
	}

	body.bm-site .bm-contact-page .entry-content,
	.bm-contact-page .entry-content,
	.bm-contact-page .wp-block-post-content {
		padding: 0 1.15rem !important;
	}

	.bm-cf7-grid {
		grid-template-columns: 1fr;
	}

	body.bm-site .wp-block-group.bm-single {
		padding-top: 8.2rem;
	}

	.bm-article {
		padding: 8.2rem 1.15rem 4rem;
	}

	.bm-contact-hero {
		min-height: 78vh;
	}

	.bm-contact-hero-inner {
		padding: 8.2rem 1.15rem 7.5rem;
	}

	.bm-contact-depts {
		margin-top: -2.5rem;
		padding-left: 1.15rem;
		padding-right: 1.15rem;
	}

	.bm-contact-block {
		padding: 3rem 1.15rem;
	}

	.bm-contact-depts,
	.bm-contact-people,
	.bm-contact-split,
	.bm-contact-form-grid,
	.bm-contact-blog-grid,
	.bm-contact-blog-query .wp-block-post-template {
		grid-template-columns: 1fr;
	}

	.bm-hero {
		height: 62vh;
		min-height: 380px;
	}

	.bm-hero h1,
	.bm-hero .wp-block-heading {
		font-size: clamp(1.8rem, 8vw, 2.6rem);
		left: 1.15rem;
	}

	.bm-cta-copy {
		max-width: none;
		padding: 3rem 1.15rem;
	}

	.bm-inner-hero,
	.bm-inner-hero .wp-block-post-featured-image,
	.bm-inner-hero img {
		height: 34vh;
		min-height: 220px;
	}

	.bm-inner-hero .wp-block-post-title {
		left: 50%;
		max-width: 90%;
		font-size: 1.8rem;
	}
}
