h1 {
	margin-top: 3rem;
	font-weight: 900;
	font-size: 3rem;
	text-align: center;
	width: 75%;
	max-width: 960px;
}
h2 {
	font-weight: 600;
	margin-bottom: 1rem;
}
@media screen and (max-width: 648px) {
	h1 {
		font-size: 2rem;
		margin-top: 1rem;
	}
	h2 {
		font-size: 1.2rem;
	}
}

/* ----- CONTACT STYLING ----- */
.contact {
	margin: 2rem 0 6rem 0;
	width: 75%;
	max-width: 1400px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}
@media screen and (max-width: 1170px) {
	.contact {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}
}
@media screen and (max-width: 700px) {
	.contact {
		margin-top: 2rem;
		width: calc(100% - 3rem);
	}
}

/* ----- text section ----- */
.contact-section {
	width: 100%;
	height: fit-content;
}
.description {
	margin: 2rem 0;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	font-family: "Inria Serif", serif;
	font-size: 1.2rem;
	font-weight: 900;
	text-align: center;
}
.description p + p {
	margin-top: 0.5rem;
}
.phone {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	color: var(--brown);
}

.email-list {
	width: 100%;
	text-align: center;
	list-style: none;
}
.email-list li {
	margin-bottom: 1rem;
	line-height: 0.75;
}
.email-list p {
	font-family: "Inria Serif", serif;
	font-weight: 500;
}
.email-list a {
	color: var(--brown);
	text-decoration: underline;
}

/* ----- form ----- */
form {
	display: flex;
	flex-direction: column;
	align-items: baseline;
}
label {
	font-weight: 500;
	color: var(--brown);
	margin-bottom: 4px;
}
input[type="text"],
input[type="email"],
textarea {
	background-color: var(--background);
	border: 2px solid var(--brown);
	border-radius: 4px;
	padding: 14px 16px;
	font-family: "Montserrat", sans-serif;
	font-size: 1rem;
	outline: 0;
}
input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	margin-bottom: 1rem;
}
.input-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.input-wrapper div {
	width: calc(50% - 0.5rem);
}
textarea {
	resize: none;
	height: 251px;
}

.consent {
	margin-bottom: 1rem;
}
.consent input {
	transform: translate(2px, 1px);
	margin-right: 0.25rem;
	scale: 1.1;
}
.consent label {
	color: var(--text);
	font-weight: 400;
}
.consent a {
	color: var(--brown);
	text-decoration: underline;
}

#form-feedback {
	margin-top: 1rem;
}