.cp-contact {
	--cp-c-section-bg: #F4F4F5;
	--cp-c-accent: var(--cp-navy);

	background: var(--cp-c-section-bg);
	padding: 72px 5%;
}

.cp-contact__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 48px;
}

.cp-contact__heading {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	color: var(--cp-text-heading, #14141F);
}

.cp-contact__body {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	background: var(--cp-border);
	border: 1px solid var(--cp-border);
}

.cp-contact__info,
.cp-contact__form {
	background: #fff;
	padding: 36px;
}

.cp-contact__info h3 {
	margin: 0 0 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--cp-text-heading, #14141F);
}

.cp-contact__info p {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.7;
	color: var(--cp-text-body, #4B5563);
}

.cp-contact__info a {
	color: var(--cp-c-accent);
	text-decoration: none;
}

.cp-contact__info a:hover {
	text-decoration: underline;
}

.cp-contact__info hr {
	border: none;
	border-top: 1px solid var(--cp-border);
	margin: 0 0 18px;
}

.cp-contact__field {
	margin-bottom: 18px;
}

.cp-contact__field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--cp-text-heading, #14141F);
}

.cp-contact__field input,
.cp-contact__field textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--cp-border);
	border-radius: 6px;
	font-size: 14px;
	font-family: inherit;
	color: var(--cp-text-heading, #14141F);
	transition: border-color var(--cp-duration, 320ms) ease;
}

.cp-contact__field input:focus,
.cp-contact__field textarea:focus {
	outline: none;
	border-color: var(--cp-c-accent);
}

.cp-contact__field textarea {
	resize: vertical;
}

/* Honeypot: visually and accessibly hidden, but still present in the
   DOM/tab order removed via tabindex="-1" on the input itself. */
.cp-contact__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cp-contact__submit {
	width: 100%;
	justify-content: center;
	margin-top: 4px;
}

.cp-contact__status {
	margin: 12px 0 0;
	font-size: 14px;
	min-height: 1.4em;
}

.cp-contact__status--success {
	color: #1a7f4b;
}

.cp-contact__status--error {
	color: #C0392B;
}

@media (max-width: 900px) {
	.cp-contact__body {
		grid-template-columns: 1fr;
	}
}
