.contact-page,
.contact-page h1,
.contact-page h2,
.contact-page h3,
.contact-page h4,
.contact-page h5,
.contact-page h6,
.contact-page p,
.contact-page a,
.contact-page span,
.contact-page label,
.contact-page input {
	font-family: var(--font-copy);
}

.contact-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background-image: url("/Resources/images/pexels-photo-257700-2880w.jpeg");
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}

.contact-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

.contact-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 24px;
	padding-top: 75px;
	padding-bottom: 75px;
}

.contact-hero__copy {
	padding-right: 16px;
}

.contact-hero__title {
	max-width: 408px;
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--color-white);
	text-align: left;
}

.contact-hero__text {
	max-width: 470px;
	margin: 0;
	font-size: 28px;
	line-height: 1.7;
	color: var(--color-light);
	text-align: left;
	font-weight: 300;
}

.contact-hero__location {
	margin-top: 18px;
	color: var(--color-white);
	text-align: center;
}

.contact-hero__label,
.contact-hero__address {
	margin: 0;
	font-size: 18px;
	line-height: 1.6;
}

.contact-hero__label {
	font-weight: 700;
}

.contact-page__form {
	width: 100%;
	max-width: 694px;
	margin-top: 2px;
	padding: 0;
}

.contact-form {
	display: grid;
	gap: 24px;
}

.contact-form__row--split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.contact-form__field {
	display: grid;
	gap: 10px;
	text-align: left;
}

.contact-form__label {
	font-family: var(--font-ui);
	font-size: 15px;
	color: var(--color-white);
}

.contact-form__input {
	width: 100%;
	padding: 10px 0 12px;
	border: 0;
	border-bottom: 1px solid #9b9b9b;
	background: transparent;
	color: var(--color-white);
}

.contact-form__input::placeholder {
	color: var(--color-white);
}

.contact-form__optin {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--color-white);
	text-align: left;
}

.contact-form__checkbox {
	margin-top: 2px;
	accent-color: var(--color-accent);
}

.contact-form__optin a {
	text-decoration: underline;
}

.contact-form__submit {
	width: 200px;
	min-height: 42px;
	padding-block: 10px;
}

.contact-form__feedback {
	margin: 0;
	font-family: var(--font-ui);
	font-size: 14px;
	color: var(--color-white);
}

@media (max-width: 1024px) {
	.contact-hero {
		background-attachment: scroll;
	}

	.contact-hero__grid {
		grid-template-columns: 1fr;
	}

	.contact-hero__copy {
		padding-right: 0;
	}

	.contact-hero__title {
		margin-top: 0;
	}

	.contact-page__form {
		max-width: none;
	}
}

@media (max-width: 768px) {
	.contact-hero__grid {
		padding-inline: 16px;
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.contact-page__form {
		margin-inline: 8px;
	}

	.contact-form__row--split {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-form__submit {
		width: 184px;
		min-height: 40px;
		padding-block: 9px;
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.contact-hero__title {
		font-size: 30px;
	}

	.contact-form__submit {
		width: 100%;
	}
}
