/******************************************************************************
 * CONTACT PAGE
 ******************************************************************************/

.contact-page {
	

	padding: 45px 50px 50px;
	background-color: var(--contact-background);
}

.contact-page__container {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(45px, 6vw, 95px);

	width: min(100%, 1360px);
	margin: 0 auto;
}

/******************************************************************************
 * CONTENT
 ******************************************************************************/

.contact-page__content {
	min-width: 0;
}

.contact-page__header {
	width: fit-content;
	margin: 0 auto 22px;
}

/******************************************************************************
 * TITLE
 ******************************************************************************/

.contact-page__title {
	margin: 0;

	color: var(--contact-color);

	font-family: "Bodoni XT", Georgia, "Times New Roman", serif;
	font-size: clamp(3rem, 5vw, 4.7rem);
	font-size: clamp(3rem, 4vw, 5rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: .08em;
	text-align: center;
	text-transform: uppercase;
}

/******************************************************************************
 * TITLE SEPARATOR
 ******************************************************************************/

.contact-page__separator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;

	margin-top: 20px;
}

.contact-page__separator span {
	display: block;

	width: clamp(90px, 10vw, 140px);
	height: 1px;

	background-color: rgba(109, 7, 26, .3);
}

.contact-page__separator i {
	display: block;

	width: 7px;
	height: 7px;

	border-radius: 50%;
	background-color: var(--contact-color);
}

/******************************************************************************
 * INTRODUCTION
 ******************************************************************************/

.contact-page__intro {
	margin: 0 0 18px;

	color: var(--contact-color);

	font-family: "Qwitcher Grypen";
	
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 1.1;
	/*font-weight: bold;*/
}

.contact-page__description {
	margin-bottom: 36px;
}

.contact-page__description p {
	margin: 0 0 14px;

	color: var(--contact-text-color);

	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.08rem;
	line-height: 1.55;
}

.contact-page__description p:last-child {
	margin-bottom: 0;
}

/******************************************************************************
 * FORM
 ******************************************************************************/

.contact-form {
	width: 100%;
}

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

.contact-form__field {
	margin-bottom: 18px;
}

.contact-form__field label {
	display: block;

	margin-bottom: 8px;

	color: var(--contact-color);

	font-family: Georgia, "Times New Roman", serif;
	font-size: .84rem;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field textarea {
	display: block;

	width: 100%;
	box-sizing: border-box;

	border: 1px solid var(--contact-border-color);
	border-radius: 0;
	outline: none;

	background-color: rgba(255, 255, 255, .15);
	color: var(--contact-text-color);

	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1rem;

	transition:
		border-color .25s ease,
		background-color .25s ease,
		box-shadow .25s ease;
}

.contact-form__field input {
	height: 48px;
	padding: 8px 12px;
}

.contact-form__field textarea {
	min-height: 120px;
	padding: 12px;

	resize: vertical;
	line-height: 1.5;
}

.contact-form__field input:hover,
.contact-form__field textarea:hover {
	border-color: rgba(109, 7, 26, .48);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	border-color: var(--contact-color);
	background-color: rgba(255, 255, 255, .35);
	box-shadow: 0 0 0 2px rgba(109, 7, 26, .08);
}

/******************************************************************************
 * SUBMIT BUTTON
 ******************************************************************************/

.contact-form__submit {
	display: block;

	width: min(100%, 245px);
	min-height: 48px;
	margin-top: 14px;
	padding: 12px 24px;

	border: 1px solid var(--contact-color);
	border-radius: 4px;
	cursor: pointer;

	background-color: var(--contact-color);
	color: #fff;

	font-family: Georgia, "Times New Roman", serif;
	font-size: .92rem;
	font-weight: 400;
	letter-spacing: .03em;
	text-align: center;
	text-transform: uppercase;

	transition:
		background-color .25s ease,
		color .25s ease,
		transform .25s ease;
}

.contact-form__submit:hover {
	background-color: #8b1023;
	transform: translateY(-1px);
}

.contact-form__submit:active {
	transform: translateY(0);
}

/******************************************************************************
 * IMAGE
 ******************************************************************************/

.contact-page__visual {
	min-width: 0;
}

.contact-page__visual img {
	display: block;

	width: 100%;
	aspect-ratio: 1.05 / 1;
	aspect-ratio: 1.15 / 1;
	object-fit: cover;
	object-position: center;

	border-radius: 18px;
}

/******************************************************************************
 * LARGE SCREENS
 ******************************************************************************/

@media screen and (min-width: 1500px) {

	.contact-page {
		padding-top: 45px;
		padding-bottom: 50px;
	}

	.contact-page__container {
		width: min(100%, 1450px);
	}

	.contact-page__description p {
		font-size: 1.12rem;
	}

	.contact-page__visual img {
		max-height: 680px;
	}

}

/******************************************************************************
 * MEDIUM SCREENS
 ******************************************************************************/

@media screen and (max-width: 1100px) {

	.contact-page {
		padding: 42px 35px 45px;
	}

	.contact-page__container {
		grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
		gap: 45px;
	}

	.contact-page__title {
		font-size: clamp(2.8rem, 5vw, 4rem);
	}

	.contact-page__intro {
		font-size: 2.1rem;
	}

	.contact-page__description p {
		font-size: 1rem;
	}

}

/******************************************************************************
 * TABLET
 ******************************************************************************/

@media screen and (max-width: 850px) {

	.contact-page {
		padding: 36px 24px 42px;
	}

	.contact-page__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-page__content {
		width: min(100%, 680px);
		margin: 0 auto;
	}

	.contact-page__visual {
		width: min(100%, 680px);
		margin: 0 auto;
	}

	.contact-page__visual img {
		aspect-ratio: 16 / 10;
	}

	.contact-page__intro {
		text-align: center;
	}

	.contact-page__description {
		text-align: center;
	}

	.contact-form__submit {
		margin-right: auto;
		margin-left: auto;
	}

}

/******************************************************************************
 * MOBILE
 ******************************************************************************/

@media screen and (max-width: 600px) {

	.contact-page {
		padding: 30px 18px 36px;
	}

	.contact-page__header {
		margin-bottom: 18px;
	}

	.contact-page__title {
		font-size: clamp(2.35rem, 12vw, 3rem);
	}

	.contact-page__separator {
		gap: 9px;
		margin-top: 14px;
	}

	.contact-page__separator span {
		width: 72px;
	}

	.contact-page__separator i {
		width: 6px;
		height: 6px;
	}

	.contact-page__intro {
		margin-bottom: 16px;
		font-size: 1.9rem;
	}

	.contact-page__description {
		margin-bottom: 30px;
	}

	.contact-page__description p {
		font-size: .96rem;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form__field {
		margin-bottom: 16px;
	}

	.contact-form__field input {
		height: 46px;
	}

	.contact-form__field textarea {
		min-height: 150px;
	}

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

	.contact-page__visual img {
		aspect-ratio: 4 / 3;
		border-radius: 12px;
	}

}

/******************************************************************************
 * SMALL MOBILE
 ******************************************************************************/

@media screen and (max-width: 380px) {

	.contact-page {
		padding-right: 14px;
		padding-left: 14px;
	}

	.contact-page__title {
		font-size: 2.1rem;
	}

	.contact-page__separator span {
		width: 60px;
	}

	.contact-page__intro {
		font-size: 1.7rem;
	}

}