

/* Start:/contacts/contacts.css?17891598804554*/

:root {
	--contacts-primary: #feb05d;
	--contacts-primary-dark: #dc872c;
	--contacts-dark: #222222;
	--contacts-white: #ffffff;
	--contacts-bg: #f5f2f2;
	--contacts-text: #222222;
	--contacts-text-muted: #7b7b7b;
	--contacts-text-soft: #d9d9d9;
	--contacts-container-max: 1345px;
	--contacts-radius-card: 20px;
	--contacts-transition: 250ms ease;
}

.contacts-page {
	min-height: 100vh;
	background: var(--contacts-bg);
}

/* Контейнер (внутри hero и фото-блока) */
.contacts-container {
	width: 100%;
	max-width: var(--contacts-container-max);
	margin: 0 auto;
	padding: 0 24px;
}

/* ============================================
   HERO
   ============================================ */

.contacts-hero {
	position: relative;
	overflow: hidden;
	padding: 48px 0 104px;
	background: var(--contacts-dark);
	color: var(--contacts-white);
}

.contacts-hero::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 420px;
	height: 100%;
	background: repeating-linear-gradient(
		135deg,
		rgba(254, 176, 93, 0.14) 0 2px,
		transparent 2px 26px
	);
	pointer-events: none;
}

.contacts-hero .contacts-container {
	position: relative;
	z-index: 1;
}

.contacts-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 88px;
}

.contacts-breadcrumbs-link {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.55);
	transition: color 150ms ease;
}

.contacts-breadcrumbs-link:hover {
	color: var(--contacts-primary);
}

.contacts-breadcrumbs-arrow {
	opacity: 0.4;
}

.contacts-breadcrumbs-current {
	font-size: 14px;
	color: var(--contacts-white);
}

.contacts-hero-eyebrow {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	color: var(--contacts-primary);
}

.contacts-hero-eyebrow::before {
	content: "";
	width: 48px;
	height: 2px;
	background: var(--contacts-primary);
}

.contacts-hero-title {
	margin-bottom: 24px;
	font-size: clamp(56px, 7vw, 92px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--contacts-white);
}

.contacts-hero-subtitle {
	max-width: 640px;
	font-size: 20px;
	line-height: 1.4;
	color: var(--contacts-text-soft);
}

/* ============================================
   ФОТО МАГАЗИНА + КОНТАКТНАЯ СТРОКА
   ============================================ */

.contacts-main {
	padding: 0;
}

.contacts-photo {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: 560px;
	overflow: hidden;
}

.contacts-photo img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contacts-photo-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(34, 34, 34, 0) 42%,
		rgba(34, 34, 34, 0.35) 70%,
		rgba(34, 34, 34, 0.85) 100%
	);
}

.contacts-row {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	width: 100%;
	padding: 0 0 90px;
}

.contacts-row-item {
	flex: 1 1 auto;
}

.contacts-row-item + .contacts-row-item {
	margin-left: 64px;
	padding-left: 64px;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.contacts-row-label {
	display: block;
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--contacts-primary);
}

.contacts-row-value {
	font-size: 19px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--contacts-white);
}

.contacts-row-link {
	transition: color var(--contacts-transition);
}

.contacts-row-link:hover {
	color: var(--contacts-primary);
}

/* ============================================
   АДАПТИВ
   ============================================ */

@media (max-width: 1200px) {
	.contacts-hero::before {
		width: 260px;
	}

	.contacts-photo {
		min-height: 480px;
	}

	.contacts-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		padding: 0 0 48px;
	}

	.contacts-row-item + .contacts-row-item {
		margin-left: 0;
		padding-left: 0;
		border-left: none;
	}
}

@media (max-width: 768px) {
	.contacts-container {
		padding: 0 16px;
	}

	.contacts-hero {
		padding: 32px 0 72px;
	}

	.contacts-breadcrumbs {
		margin-bottom: 48px;
	}

	.contacts-hero-subtitle {
		font-size: 17px;
	}

	.contacts-main {
		padding: 0;
	}

	.contacts-photo {
		min-height: 440px;
	}

	.contacts-row {
		gap: 16px;
		padding: 0 0 32px;
	}

	.contacts-row-label {
		font-size: 11px;
		letter-spacing: 0.1em;
	}

	.contacts-row-value {
		font-size: 16px;
	}
}

/* End */
/* /contacts/contacts.css?17891598804554 */
