/* ===== Страница Контакты (cp-*) ===== */
.contacts-page {
	padding: 40px 0 0;
}
.contacts-page h1 {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 36px;
	letter-spacing: 1px;
}
.contacts-page h2 {
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

/* Карточки каналов связи */
.cp-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-bottom: 50px;
}
.cp-card {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 22px 20px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 16px;
	text-decoration: none;
	color: #0D0D0D;
	transition: background 0.3s, color 0.3s, transform 0.2s;
}
a.cp-card:hover {
	background: #0D0D0D;
	color: #F4EDDB;
	transform: translateY(-2px);
}
.cp-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
}
.cp-card__label {
	display: block;
	font-size: 13px;
	opacity: 0.6;
	margin-bottom: 2px;
}
.cp-card__value {
	display: block;
	font-size: 15px;
	font-weight: 600;
}

/* Адрес */
.cp-address {
	margin-bottom: 10px;
}
.cp-address p {
	font-size: 18px;
}

/* Карта */
.cp-map {
	margin-bottom: 50px;
	border-radius: 16px;
	overflow: hidden;
	border: 1.5px solid rgba(13,13,13,0.25);
}
.cp-map iframe {
	display: block;
	width: 100%;
	height: 400px;
	border: none;
}

/* Форма обратной связи */
.cp-form-section {
	max-width: 640px;
	margin: 0 auto 50px;
	text-align: center;
}
.cp-form-subtitle {
	font-size: 15px;
	opacity: 0.6;
	margin-bottom: 24px;
}
.cp-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}
.cp-form__field {
	margin-bottom: 14px;
}
.cp-form__row .cp-form__field {
	margin-bottom: 0;
}
.cp-form input[type="text"],
.cp-form input[type="email"],
.cp-form input[type="tel"],
.cp-form textarea {
	width: 100%;
	box-sizing: border-box;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 12px;
	padding: 14px 16px;
	font-size: 15px;
	font-family: inherit;
	color: #0D0D0D;
	resize: vertical;
}
.cp-form input:focus,
.cp-form textarea:focus {
	outline: none;
	border-color: #347D48;
}
.cp-form__bottom {
	text-align: center;
}
.cp-form__btn {
	display: inline-block;
	background: #0D0D0D;
	color: #F4EDDB;
	border: none;
	border-radius: 60px;
	padding: 16px 48px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}
.cp-form__btn:hover {
	background: #347D48;
	transform: translateY(-2px);
}
.cp-form__privacy {
	font-size: 12px;
	opacity: 0.5;
	margin-top: 12px;
}
.cp-form__privacy a {
	color: inherit;
	text-decoration: underline;
}
.cp-form__status {
	margin-top: 16px;
	font-size: 15px;
	font-weight: 500;
}
.cp-form__status--ok {
	color: #347D48;
}
.cp-form__status--err {
	color: #c0392b;
}

/* Соцсети */
.cp-socials {
	text-align: center;
	margin-bottom: 50px;
}
.cp-socials__list {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.cp-social-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	background: #F4EDDB;
	border: 1.5px solid rgba(13,13,13,0.25);
	border-radius: 60px;
	text-decoration: none;
	color: #0D0D0D;
	font-size: 15px;
	font-weight: 500;
	transition: background 0.3s, color 0.3s, transform 0.2s;
}
.cp-social-link:hover {
	background: #0D0D0D;
	color: #F4EDDB;
	transform: translateY(-2px);
}

/* Юридическая информация */
.cp-legal {
	text-align: center;
	padding: 30px 0 40px;
	border-top: 1px solid rgba(13, 13, 13, 0.15);
}
.cp-legal p {
	font-size: 13px;
	color: #0D0D0D;
	opacity: 0.5;
	margin: 4px 0;
}
.cp-legal__name {
	font-weight: 600;
	opacity: 0.6 !important;
}

/* Адаптив планшет */
@media (max-width: 900px) {
	.cp-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Адаптив мобильный */
@media (max-width: 600px) {
	.contacts-page {
		padding: 24px 0 0;
	}
	.contacts-page h1 {
		font-size: 26px;
		margin-bottom: 24px;
	}
	.contacts-page h2 {
		font-size: 20px;
	}
	.cp-cards {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-bottom: 36px;
	}
	.cp-card {
		padding: 16px;
	}
	.cp-form__row {
		grid-template-columns: 1fr;
	}
	.cp-map iframe {
		height: 280px;
	}
	.cp-social-link {
		padding: 12px 18px;
		font-size: 14px;
	}
}
