/**
 * Блок reb/contacts-hero (блок 02 страницы «Контакты»).
 * Светлый заголовок: крошки, H1, лид, кнопки «Позвонить» / «Написать в MAX».
 */

.reb-contacts-hero {
	background: #fff;
}

.reb-contacts-hero__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	padding-top: 40px;
	padding-bottom: 8px;
}

/* Крошки. */
.reb-contacts-hero__crumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px 8px;
	font-size: 13px;
	color: var(--reb-text-faint);
}

.reb-contacts-hero__crumb {
	color: var(--reb-text-muted);
}

.reb-contacts-hero__crumb:hover {
	color: var(--reb-accent);
}

.reb-contacts-hero__crumb + .reb-contacts-hero__crumb::before {
	content: '/';
	margin-right: 8px;
	color: var(--reb-text-faint);
}

.reb-contacts-hero__crumb--current {
	color: var(--reb-text-faint);
}

.reb-contacts-hero__title {
	margin: 0;
	max-width: 720px;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
}

.reb-contacts-hero__lead {
	margin: 0;
	max-width: 640px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--reb-text-muted);
}

.reb-contacts-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.reb-contacts-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 16px 24px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	transition: background 0.2s, color 0.2s;
}

.reb-contacts-hero__btn--call {
	background: var(--reb-accent);
	color: #fff;
}

.reb-contacts-hero__btn--call:hover {
	background: var(--reb-accent-dark);
	color: #fff;
}

.reb-contacts-hero__btn--messenger {
	background: #5F2EEA;
	color: #fff;
}

.reb-contacts-hero__btn--messenger:hover {
	background: #4B22C4;
	color: #fff;
}

.reb-contacts-hero__btn-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #fff;
	color: #5F2EEA;
	font-size: 10px;
	font-weight: 800;
}

/* Адаптив. */
@media (max-width: 768px) {
	.reb-contacts-hero__inner {
		padding-top: 28px;
		gap: 14px;
	}

	.reb-contacts-hero__title {
		font-size: 27px;
		line-height: 1.15;
	}

	.reb-contacts-hero__lead {
		font-size: 15px;
	}

	.reb-contacts-hero__btn {
		flex: 1 1 100%;
		justify-content: center;
	}
}
