/* === Базовая сброска стилей === */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* === Базовые стили страницы === */
html,
body {
	height: 100%;
	font-family: 'Helvetica Neue', sans-serif;
	background: black;
	color: white;
}

/* === Секция hero (главный экран) === */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
	margin-bottom: clamp(12px, 2.5vw, 20px);
}

/* === Контент внутри hero-блока === */
.hero-content {
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.hero-content h1 {
	font-size: clamp(1.5rem, 5vw, 3rem);
	margin-bottom: 40px;
}

/* === Эффект печатной машинки для h2 === */
.hero-content h2 {
	color: #000;
	font-size: clamp(22px, 4.5vw, 42px);
	line-height: 1.15;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	margin: 0 auto;
	border-right: 3px solid #000;
	animation:
		typewriter 2s steps(13) 0.5s forwards,
		blink 0.75s step-end infinite;
}

@keyframes typewriter {
	from {
		width: 0;
	}

	to {
		width: 100%;
	}
}

@keyframes blink {
	50% {
		border-color: transparent;
	}
}

/* === Контактный блок внутри hero === */
.contact-inside-hero {
	position: absolute;
	bottom: clamp(20px, 3vw, 40px);
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	opacity: 0;
	animation: fadeIn 1s ease-out 3s forwards;
}

.contact-inside-hero p {
	margin: 12px 0;
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.5;
}

.contact-inside-hero p:first-child {
	margin-top: 0;
}

.contact-inside-hero a {
	color: #000;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.contact-inside-hero a:hover {
	opacity: 0.7;
}

@keyframes fadeIn {
	to {
		opacity: 1;
	}
}

/* === Анимация социальных иконок === */
.social-icons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
}

.hero .social-icons a {
	opacity: 0;
	transform: translateY(10px);
	animation: iconFadeIn 0.5s ease-out forwards;
}

.hero .social-icons a:nth-child(1) {
	animation-delay: 3.2s;
}

.hero .social-icons a:nth-child(2) {
	animation-delay: 3.4s;
}

.hero .social-icons a:nth-child(3) {
	animation-delay: 3.6s;
}

@keyframes iconFadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.social-icons img {
	width: 28px;
	height: 28px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover img {
	transform: scale(1.15);
	opacity: 0.8;
}

/* === Мобильная адаптация === */
@media (max-width: 768px) {
	.contact-inside-hero {
		bottom: clamp(15px, 2.5vw, 30px);
		padding: 0 20px;
	}

	.contact-inside-hero p {
		margin: 10px 0;
		font-size: 1rem;
	}

	.social-icons {
		gap: 16px;
		margin-top: 16px;
	}
}

/* === Отключение анимации для пользователей с prefers-reduced-motion === */
@media (prefers-reduced-motion: reduce) {

	.hero-content h2,
	.contact-inside-hero,
	.social-icons a {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
		border-right: none !important;
	}
}

/* ===============================
ABOUT — светлая цветовая схема
=============================== */
.about {
	background: #000;
}

.about-inner {
	max-width: clamp(960px, 85vw, 1150px);
	margin-inline: auto;
	padding: clamp(40px, 8vw, 100px) 20px;
	overflow: hidden;
}

/* Основной блок: фото и текст */
.about-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	border-radius: 20px;
	background: #f5f5f0;
	padding: clamp(40px, 6vw, 80px);
}

/* Чередование сторон */
.about-row:nth-of-type(even) {
	flex-direction: row-reverse;
	background: #faf9f6;
}

/* -------- Фото -------- */
.about-photo {
	flex: 1;
}

.about-photo img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	filter: brightness(0.95) contrast(1.05);
	transition: transform .6s ease, filter .4s ease;
}

.about-photo img:hover {
	transform: scale(1.03);
	filter: brightness(1) contrast(1.1);
}

/* -------- Текст -------- */
.about-text {
	flex: 1;
	max-width: 520px;
}

.about-text h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color: #1a1a1a;
}

.about-text p {
	color: #4a4a4a;
	line-height: 1.75;
	margin-bottom: 1rem;
	font-size: 1rem;
}

/* -------- Мобильная версия -------- */
@media (max-width: 900px) {
	.about-row {
		flex-direction: column;
		padding: 32px 20px;
	}

	.about-text {
		max-width: 100%;
	}
}


/* ===============================
SHOOT TYPES — Фото слева / описание 
справа с чередованием фонов
=============================== */
.shoot-types-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto clamp(60px, 8vw, 80px) auto;
	position: relative;
}

.shoot-types-header h2 {
	color: #caa57f;
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	margin-bottom: 1.5rem;
	font-weight: 300;
	letter-spacing: 0.02em;
}

.shoot-types-header .muted {
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0;
}

/* Декоративная линия */
.shoot-types-header::after {
	content: '';
	display: block;
	width: 80px;
	height: 1px;
	background: #caa57f;
	margin: 3rem auto 0;
	opacity: 0.5;
}

/* ===============================
Каждая услуга (строка)
=============================== */
.shoot-types .container {
	margin-bottom: clamp(30px, 5vw, 50px);
}

.shoot-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 3rem;
	padding: clamp(40px, 6vw, 80px);
	border-radius: 20px;
}

/* расстояние между блоками */
.shoot-row+.shoot-row {
	margin-top: clamp(24px, 4vw, 40px);
}

/* ===============================
ЧЕРЕДОВАНИЕ ФОНОВ
=============================== */
/* нечётные — тёмный фон */
.shoot-row:nth-of-type(odd) {
	background: #0b0b0b;
}

/* чётные — светлый фон, фото справа */
.shoot-row:nth-of-type(even) {
	background: #ffffff;
	flex-direction: row-reverse;
}

/* ===============================
Изображение
=============================== */
.shoot-row-image {
	flex: 1;
}

.shoot-row-image img {
	width: 100%;
	border-radius: 14px;
	object-fit: cover;
	filter: brightness(0.9);
	transition: transform .6s ease, filter .4s ease;
}

.shoot-row-image img:hover {
	transform: scale(1.03);
	filter: brightness(1);
}

/* ===============================
Контент
=============================== */
.shoot-row-content {
	flex: 1;
	max-width: 480px;
}

.shoot-row-content h3 {
	font-size: 1.8rem;
	margin-bottom: 1rem;
}

.shoot-row-content p {
	line-height: 1.75;
	margin-bottom: 1.75rem;
}

/* ===============================
ЦВЕТА ПОД ФОН
=============================== */
/* тёмный фон */
.shoot-row:nth-of-type(odd) h3 {
	color: #ffffff;
}

.shoot-row:nth-of-type(odd) p {
	color: rgba(255, 255, 255, 0.75);
}

.shoot-row:nth-of-type(odd) .btn-link {
	color: #caa57f;
}

/* светлый фон */
.shoot-row:nth-of-type(even) h3 {
	color: #111111;
}

.shoot-row:nth-of-type(even) p {
	color: rgba(0, 0, 0, 0.65);
}

.shoot-row:nth-of-type(even) .btn-link {
	color: #8a6b4f;
}

/* ===============================
Кнопка-ссылка
=============================== */
.btn-link {
	display: inline-block;
	font-weight: 500;
	text-decoration: none;
	transition: color .3s ease, transform .3s ease;
}

.btn-link:hover {
	transform: translateY(-2px);
}

/* ===============================
Мобильная версия
=============================== */
@media (max-width: 900px) {

	.shoot-row,
	.shoot-row:nth-of-type(even) {
		flex-direction: column;
	}

	.shoot-row {
		padding: 32px 20px;
	}

	.shoot-row-content {
		max-width: 100%;
	}
}


/* ===============================
BEFORE/AFTER COMPARISON
=============================== */
.comparison {
	background: #ffffff;
	padding: clamp(60px, 8vw, 120px) 20px;
}

.comparison-inner {
	max-width: clamp(960px, 85vw, 1400px);
	margin-inline: auto;
}

.comparison h2 {
	font-family: 'Cinzel', serif;
	font-size: clamp(2rem, 4vw, 3rem);
	color: #0b0b0b;
	text-align: center;
	margin-bottom: clamp(20px, 3vw, 40px);
	font-weight: 300;
	letter-spacing: 1px;
}

.comparison-subtitle {
	text-align: center;
	color: rgba(11, 11, 11, 0.7);
	font-size: 1.1rem;
	margin-bottom: clamp(40px, 6vw, 80px);
}

/* -------- Контейнер -------- */
.comparison-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

/* -------- Обёртка -------- */
.comparison-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	/* Предотвращаем скролл при перетаскивании на мобильных */
	touch-action: none;
	-webkit-touch-callout: none;
	/* Фон пока грузятся картинки */
	background: #1a1a1a;
}

.comparison-wrapper:active {
	cursor: grabbing;
}

/* -------- Изображения -------- */
.before-image,
.after-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	-webkit-user-drag: none;
	user-drag: none;
}

.after-image {
	clip-path: polygon(50% 0%, 100% 0%, 100% 100%, 50% 100%);
	/* Убрал transition — JS обновляет мгновенно, без лага */
}

/* -------- Ползунок (линия) -------- */
.comparison-slider {
	position: absolute;
	top: 0;
	left: 50%;
	width: 4px;
	height: 100%;
	background: #E6B89C;
	transform: translateX(-50%);
	cursor: col-resize;
	z-index: 10;
	user-select: none;
	-webkit-user-select: none;
	touch-action: none;
	/* Убрал transition — без лага при перетаскивании */
}

/* Круг */
.comparison-slider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	background: #E6B89C;
	border: 3px solid #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Стрелки — SVG вместо юникода (одинаково на всех платформах) */
.comparison-slider::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 30px;
	height: 30px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='10,8 4,15 10,22'/%3E%3Cpolyline points='20,8 26,15 20,22'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
}

/* -------- Лейблы -------- */
.comparison-labels {
	position: absolute;
	top: 24px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: space-between;
	padding: 0 30px;
	z-index: 5;
	pointer-events: none;
}

.label {
	background: rgba(0, 0, 0, 0.6);
	color: #E6B89C;
	padding: 8px 18px;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

/* -------- Фокус для клавиатуры -------- */
.comparison-wrapper:focus-visible {
	outline: none;
}

.comparison-wrapper:focus-visible .comparison-slider::before {
	outline: 3px solid #E6B89C;
	outline-offset: 4px;
}

/* ===============================
RESPONSIVE
=============================== */
/* Большие мониторы */
@media (min-width: 1400px) {
	.comparison-container {
		max-width: 1400px;
	}

	.comparison-wrapper {
		aspect-ratio: 2 / 1;
	}
}

/* Планшеты */
@media (max-width: 1024px) {
	.comparison-wrapper {
		aspect-ratio: 4 / 3;
	}

	.comparison-labels {
		padding: 0 24px;
	}
}

/* Телефоны */
@media (max-width: 768px) {
	.comparison {
		padding: clamp(40px, 6vw, 80px) 16px;
	}

	.comparison-container {
		border-radius: 14px;
	}

	.comparison-wrapper {
		aspect-ratio: 3 / 4;
	}

	.comparison-labels {
		padding: 0 16px;
		top: 16px;
	}

	.label {
		font-size: 0.8rem;
		padding: 6px 12px;
	}

	.comparison-slider::before {
		width: 44px;
		height: 44px;
	}

	.comparison-slider::after {
		width: 24px;
		height: 24px;
	}
}

/* Маленькие телефоны */
@media (max-width: 400px) {
	.comparison-wrapper {
		aspect-ratio: 9 / 16;
	}

	.label {
		font-size: 0.75rem;
		padding: 5px 10px;
	}

	.comparison-slider::before {
		width: 38px;
		height: 38px;
	}

	.comparison-slider::after {
		width: 20px;
		height: 20px;
	}
}

/* Телефон горизонтально */
@media (max-width: 900px) and (orientation: landscape) {
	.comparison-wrapper {
		aspect-ratio: 16 / 9;
	}
}


/* ===============================
FAQ + КОНТАКТЫ
=============================== */
.faq-contact-section {
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
	color: #ffffff;
	padding: clamp(60px, 8vw, 100px) 20px;
}

.faq-contact-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	gap: clamp(40px, 6vw, 80px);
	align-items: flex-start;
}

/* ────────────────────────────────
ЛЕВАЯ КОЛОНКА — FAQ
──────────────────────────────── */
.faq-column {
	flex: 1.4;
	min-width: 0;
}

.faq-column h2 {
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	font-weight: 600;
	margin-bottom: 40px;
	color: #ffffff;
	position: relative;
	padding-left: 20px;
}

.faq-column h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 60%;
	background: linear-gradient(180deg, #E6B89C, #d4a589);
	border-radius: 2px;
}

/* Обёртка вопросов */
.faq-items-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Один вопрос */
.faq-item {
	border-left: 3px solid transparent;
	padding: 20px 0 20px 24px;
	cursor: pointer;
	transition: border-left-color 0.3s ease, padding-left 0.3s ease;
}

.faq-item:hover {
	border-left-color: rgba(230, 184, 156, 0.3);
	padding-left: 28px;
}

.faq-item.active {
	border-left-color: #E6B89C;
}

/* Заголовок вопроса */
.faq-item h3 {
	font-size: clamp(1.05rem, 2vw, 1.2rem);
	font-weight: 500;
	color: #ffffff;
	line-height: 1.5;
	margin: 0;
	position: relative;
	padding-right: 50px;
	transition: color 0.3s ease;
}

.faq-item.active h3 {
	color: #E6B89C;
}

/* Стрелка */
.faq-item h3::after {
	content: '›';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
	font-size: 1.8rem;
	color: #666;
	transition: transform 0.3s ease, color 0.3s ease;
	pointer-events: none;
}

.faq-item.active h3::after {
	transform: translateY(-50%) rotate(-90deg);
	color: #E6B89C;
}

/* Ответ */
.faq-item p {
	margin-top: 16px;
	padding-top: 16px;
	font-size: 0.98rem;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.7);
	display: none;
}

.faq-item.active p {
	display: block;
	animation: faqSlideDown 0.3s ease;
}

@keyframes faqSlideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Отключить анимацию для тех, кто попросил */
@media (prefers-reduced-motion: reduce) {
	.faq-item.active p {
		animation: none;
	}

	.faq-item,
	.faq-item h3,
	.faq-item h3::after,
	.contact-icons a {
		transition: none;
	}
}

/* ────────────────────────────────
ПРАВАЯ КОЛОНКА — КОНТАКТЫ
──────────────────────────────── */
.contact-column {
	flex: 1;
	min-width: 0;
	max-width: 480px;
}

.contact-content {
	position: -webkit-sticky;
	position: sticky;
	top: 100px;
	background: linear-gradient(135deg, rgba(230, 184, 156, 0.08) 0%, rgba(230, 184, 156, 0.02) 100%);
	border-radius: 24px;
	padding: clamp(50px, 6vw, 80px) clamp(40px, 5vw, 60px);
	text-align: center;
	overflow: hidden;
	height: fit-content;
}

/* Рамка-градиент */
.contact-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, #E6B89C, #d4a589, #E6B89C);
	padding: 2px;
	border-radius: 24px;
	mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	mask-composite: exclude;
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	pointer-events: none;
}

.contact-content h2 {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 600;
	margin-bottom: 25px;
	background: linear-gradient(135deg, #ffffff 0%, #E6B89C 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	line-height: 1.2;
}

.contact-content>p {
	font-size: clamp(1.05rem, 2.5vw, 1.3rem);
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 50px;
	line-height: 1.6;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}

/* Иконки соцсетей */
.contact-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(30px, 5vw, 50px);
	flex-wrap: wrap;
}

.contact-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(55px, 8vw, 70px);
	height: clamp(55px, 8vw, 70px);
	border-radius: 50%;
	background: linear-gradient(135deg, rgba(230, 184, 156, 0.15) 0%, rgba(230, 184, 156, 0.05) 100%);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(230, 184, 156, 0.3);
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
		background 0.4s ease,
		border-color 0.4s ease,
		box-shadow 0.4s ease;
	position: relative;
	overflow: hidden;
}

/* Блик при наведении */
.contact-icons a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(230, 184, 156, 0.2), transparent);
	transition: left 0.5s ease;
}

.contact-icons a:hover::before {
	left: 100%;
}

.contact-icons a:hover {
	transform: translateY(-5px) scale(1.1);
	background: linear-gradient(135deg, rgba(230, 184, 156, 0.25) 0%, rgba(230, 184, 156, 0.1) 100%);
	border-color: #E6B89C;
	box-shadow: 0 10px 25px rgba(230, 184, 156, 0.2);
}

/* Тач-устройства — нет :hover залипания */
@media (hover: none) {
	.contact-icons a:hover {
		transform: none;
		background: linear-gradient(135deg, rgba(230, 184, 156, 0.15) 0%, rgba(230, 184, 156, 0.05) 100%);
		border-color: rgba(230, 184, 156, 0.3);
		box-shadow: none;
	}

	.contact-icons a:hover::before {
		left: -100%;
	}

	.contact-icons a:active {
		transform: scale(0.95);
	}
}

.contact-icons a img {
	width: clamp(24px, 4vw, 32px);
	height: clamp(24px, 4vw, 32px);
	filter: brightness(0) invert(1);
	transition: transform 0.3s ease, filter 0.3s ease;
	position: relative;
	z-index: 1;
}

.contact-icons a:hover img {
	transform: scale(1.1);
	filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(230, 184, 156, 0.6));
}

/* ===============================
RESPONSIVE
=============================== */
/* Планшеты */
@media (max-width: 1024px) {
	.faq-contact-container {
		flex-direction: column;
		gap: 60px;
	}

	.faq-column,
	.contact-column {
		flex: 1;
		max-width: none;
	}

	.contact-content {
		position: static;
		max-width: 600px;
		margin: 0 auto;
	}
}

/* Телефоны */
@media (max-width: 768px) {
	.faq-contact-section {
		padding: 40px 15px;
	}

	.faq-contact-container {
		gap: 40px;
	}

	.contact-content {
		padding: 40px 30px;
		max-width: 100%;
	}

	.contact-icons {
		gap: 25px;
	}
}

/* Маленькие телефоны */
@media (max-width: 480px) {
	.faq-contact-section {
		padding: 30px 12px;
	}

	.faq-column h2 {
		margin-bottom: 28px;
	}

	.faq-item {
		padding: 16px 0 16px 18px;
	}

	.faq-item h3 {
		padding-right: 40px;
	}

	.contact-content {
		padding: 35px 20px;
		border-radius: 18px;
	}

	.contact-content>p {
		max-width: 100%;
		margin-bottom: 35px;
	}

	.contact-icons {
		gap: 20px;
	}
}


/* === Footer === */
.footer {
	background: linear-gradient(135deg, #0a0a0a 0%, #151515 50%, #0a0a0a 100%);
	padding: 0 20px 20px;
	position: relative;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(230, 184, 156, 0.3), transparent);
}

.footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at center top, rgba(230, 184, 156, 0.04) 0%, transparent 70%);
	pointer-events: none;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

/* === Лого === */
.footer-logo {
	font-family: 'Times New Roman', Times, serif;
	font-size: 1.15rem;
	letter-spacing: 0.05em;
	text-transform: lowercase;
	font-weight: 400;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	flex: 1;
}

.logo-memei {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
}

.logo-photo {
	color: #E6B89C;
	opacity: 0.8;
	margin-left: 2px;
	transition: opacity 0.3s ease;
}

.footer-logo:hover .logo-photo {
	opacity: 1;
}

.footer-logo:hover {
	transform: translateY(-2px);
}

.footer-nav {
	display: flex;
	gap: 32px;
	flex: 1;
	justify-content: flex-end;
}

.footer-nav a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: #E6B89C;
}

/* Соцсети в футере */
.footer-social {
	display: flex;
	justify-content: center;
	flex: 1;
}

.footer-social-icons {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
}

.footer-social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(230, 184, 156, 0.12);
	border: 1px solid rgba(230, 184, 156, 0.35);
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.footer-social-icons a:hover {
	transform: scale(1.12);
	background: rgba(230, 184, 156, 0.25);
	border-color: #E6B89C;
}

.footer-social-icons img {
	width: 20px;
	height: 20px;
	filter: brightness(0) invert(1);
}

/* Адаптив для футера */
@media (max-width: 768px) {
	.footer {
		padding: 0 20px 40px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 24px;
		text-align: center;
		margin-top: 0;
	}

	.footer-logo,
	.footer-social,
	.footer-nav {
		flex: none;
	}

	.footer-logo {
		font-size: 1.05rem;
		order: 1;
	}

	.footer-social {
		order: 2;
	}

	.footer-nav {
		order: 3;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
	}

	.footer-social-icons {
		gap: 16px;
	}
}

@media (max-width: 480px) {
	.footer {
		padding: 0 15px 30px;
	}

	.footer-logo {
		font-size: 0.95rem;
		letter-spacing: 0.03em;
	}
}

/* === Подвал сайта (Powered by) === */
.site-footer {
	background-color: #0a0a0a;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
	padding: clamp(10px, 2vw, 20px) clamp(8px, 2vw, 10px);
	font-size: clamp(0.75rem, 1.5vw, 0.85rem);
	letter-spacing: 0.5px;
	border-top: 1px solid rgba(230, 184, 156, 0.2);
}

.site-footer__content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.site-footer__credits {
	text-align: center;
	width: 100%;
}

.site-footer__credits p {
	margin: 0;
	font-size: 0.8rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	text-align: center;
}

.site-footer span {
	color: #E6B89C;
	font-weight: 500;
}

@media (max-width: 480px) {
	.site-footer {
		padding: 14px 15px 24px;
	}

	.site-footer__credits p {
		font-size: 0.75rem;
		letter-spacing: 0.12em;
	}
}

/* === Соцсети в hero и footer === */

/* === Соцсети в Hero === */
.hero .social-icons {
    margin-top: 20px;
    filter: invert(0);
}

/* === Соцсети в Footer === */
.footer .social-icons {
    margin-top: 0;
    filter: invert(0);
}

.social-icons a {
	margin: 0 10px;
}

.social-icons img {
	width: 28px;
	height: 28px;
	transition: transform 0.3s;
	filter: invert(0);
}

.social-icons a:hover img {
	transform: scale(1.1);
}