.wm-home-contact-band {
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-sizing: border-box;
}

.wm-home-contact {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: clamp(2.25rem, 4vw, 3rem) 0 clamp(2.5rem, 4vw, 3.25rem);
	color: #fff;
	background:
		linear-gradient(135deg, #0f2740 0%, #154a74 42%, #1b5e93 100%);
}

.wm-home-contact__backdrop {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 55% 45% at 15% 20%, rgba(255, 255, 255, 0.08), transparent 62%),
		radial-gradient(ellipse 45% 40% at 88% 78%, rgba(255, 255, 255, 0.06), transparent 65%);
}

.wm-home-contact__inner {
	position: relative;
	z-index: 1;
	max-width: var(--wm-content-max, 1240px);
	margin: 0 auto;
	padding: 0 var(--wm-content-padding, clamp(1.25rem, 3vw, 2rem));
	box-sizing: border-box;
}

.wm-home-contact__header {
	max-width: 720px;
	margin: 0 auto 1.75rem;
	text-align: center;
}

.wm-home-contact__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin: 0 0 0.65rem;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: rgba(255, 255, 255, 0.88);
}

.wm-home-contact__eyebrow::before,
.wm-home-contact__eyebrow::after {
	content: "";
	display: block;
	width: 34px;
	height: 2px;
	background: rgba(255, 255, 255, 0.55);
}

.wm-home-contact__title {
	margin: 0 0 0.65rem;
	font-family: "Open Sans", "Segoe UI", system-ui, sans-serif;
	font-size: clamp(1.45rem, 2.6vw, 1.9rem);
	line-height: 1.1;
	font-weight: 800;
	font-style: italic;
	text-transform: uppercase;
	color: #fff;
}

.wm-home-contact__lead {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.82);
}

.wm-home-contact__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.wm-home-contact__card {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	min-height: 100%;
	padding: 1rem 0.95rem 1.05rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(8, 20, 34, 0.14);
	backdrop-filter: blur(10px);
	transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
}

.wm-home-contact__card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.24);
	background: rgba(255, 255, 255, 0.11);
}

.wm-home-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
}

.wm-home-contact__card-title {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
}

.wm-home-contact__card-text {
	margin: 0;
	line-height: 1.55;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.86);
}

.watermota-site .wm-home-contact__card-text a,
.watermota-site .wm-home-contact__card-text a:hover,
.watermota-site .wm-home-contact__card-text a:focus,
.watermota-site .wm-home-contact__card-text a:visited {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 3px;
}

@media (max-width: 921px) {
	.wm-home-contact__grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
}