.front-contact {
	position: relative;
	margin-right: calc(50% - 50vw);
	margin-bottom: -75px;
	margin-left: calc(50% - 50vw);
	padding: clamp(86px, 11vw, 150px) max(24px, calc((100vw - 1180px) / 2));
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(39, 28, 25, 0.78), rgba(39, 28, 25, 0.48)),
		url("images/background.webp") center / cover no-repeat;
	color: #fff;
	text-align: center;
}

.front-contact::before {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.12), transparent 42%);
	content: "";
	pointer-events: none;
}

.front-contact__inner {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	margin: 0 auto;
}

.front-contact__script {
	margin: 0;
	color: rgba(207, 156, 72, 0.74);
	font-family: "Times New Roman", serif;
	font-size: clamp(64px, 8vw, 116px);
	font-style: italic;
	line-height: 0.9;
}

.front-contact__title {
	margin: -8px 0 0;
	background: transparent;
	color: #fff;
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 500;
	line-height: 1.35;
}

.front-contact__title::after {
	display: block;
	width: 76px;
	height: 1px;
	margin: 20px auto 0;
	background: linear-gradient(90deg, transparent, rgba(207, 156, 72, 0.9), transparent);
	content: "";
}

.front-contact__lead {
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(16px, 1.7vw, 19px);
	line-height: 2;
}

.front-contact__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	width: min(420px, 100%);
	margin-top: 40px;
	padding: 15px 30px;
	border: 1px solid rgba(233, 190, 128, 0.82);
	border-radius: 999px;
	background: linear-gradient(90deg, #ca858d, #a8384e);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28), inset 0 0 0 3px rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 16px;
	line-height: 1.5;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.front-contact__button:hover,
.front-contact__button:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.32), inset 0 0 0 3px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 640px) {
	.front-contact {
		padding-top: 84px;
		padding-bottom: 108px;
	}

	.front-contact__button {
		width: 100%;
	}
}
