:root {
	--bg: #0c0c0c;
	--text: #e0e0e0;
	--accent: #9f7d63;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', sans-serif;
	margin: 0;
	line-height: 1.5;
}

h1,
h2 {
	font-family: 'Cinzel', serif;
	letter-spacing: 1px;
	color: var(--accent);
}

/* ─────────────────────────── */
/* --- Общая сетка контейнера --- */
/* ─────────────────────────── */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 25px;
}


/* ───────────────────────────── */
/* --- Cекция Hero --- */
/* ───────────────────────────── */
.hero {
	position: relative;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	background-color: #111;
	/* фоллбэк пока грузится фото */
	/* background-image УБРАН — теперь <img> */
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.hero .overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.3),
			rgba(0, 0, 0, 0.65));
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	max-width: 720px;
	padding: 0 20px;
}

.hero h1 {
	font-size: clamp(2rem, 5vw, 4rem);
	margin: 0;
	color: var(--accent);
}

.hero p {
	margin-top: 12px;
	font-weight: 300;
	font-size: clamp(0.95rem, 2vw, 1.15rem);
	color: rgba(255, 255, 255, 0.85);
}

/* мобильная адаптация */
@media (max-width: 768px) {
	.hero {
		height: 70vh;
	}
}

/* ── Плавающие сердца в Hero ── */
.hero-hearts {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
	overflow: hidden;
}

.hero-heart-float {
	position: absolute;
	color: var(--accent);
	opacity: 0;
	animation: heroHeartRise 12s ease-in-out infinite;
}

.hero-heart-float:nth-child(1) {
	left: 5%;
	font-size: 1rem;
	animation-delay: 0s;
	animation-duration: 10s;
}

.hero-heart-float:nth-child(2) {
	left: 15%;
	font-size: 1.6rem;
	animation-delay: 2s;
	animation-duration: 14s;
}

.hero-heart-float:nth-child(3) {
	left: 30%;
	font-size: 0.9rem;
	animation-delay: 5s;
	animation-duration: 11s;
}

.hero-heart-float:nth-child(4) {
	left: 48%;
	font-size: 1.3rem;
	animation-delay: 1s;
	animation-duration: 13s;
}

.hero-heart-float:nth-child(5) {
	left: 62%;
	font-size: 1.1rem;
	animation-delay: 4s;
	animation-duration: 10s;
}

.hero-heart-float:nth-child(6) {
	left: 75%;
	font-size: 1.5rem;
	animation-delay: 3s;
	animation-duration: 15s;
}

.hero-heart-float:nth-child(7) {
	left: 85%;
	font-size: 0.8rem;
	animation-delay: 6s;
	animation-duration: 12s;
}

.hero-heart-float:nth-child(8) {
	left: 93%;
	font-size: 1.2rem;
	animation-delay: 7s;
	animation-duration: 11s;
}

@keyframes heroHeartRise {
	0% {
		bottom: -5%;
		opacity: 0;
		transform: translateX(0) scale(0.6) rotate(0deg);
	}

	10% {
		opacity: 0.25;
		transform: translateX(10px) scale(1) rotate(20deg);
	}

	30% {
		opacity: 0.18;
		transform: translateX(-15px) scale(0.9) rotate(-10deg);
	}

	50% {
		opacity: 0.22;
		transform: translateX(20px) scale(1.05) rotate(15deg);
	}

	70% {
		opacity: 0.12;
		transform: translateX(-10px) scale(0.85) rotate(-20deg);
	}

	90% {
		opacity: 0.06;
	}

	100% {
		bottom: 105%;
		opacity: 0;
		transform: translateX(15px) scale(0.7) rotate(360deg);
	}
}

/* Уменьшенная яркость на мобильных — не отвлекать */
@media (max-width: 768px) {
	.hero-heart-float:nth-child(n+6) {
		display: none;
	}

	.hero-heart-float {
		font-size: 0.8rem !important;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-heart-float {
		animation: none;
		opacity: 0.04;
		bottom: 50%;
	}
}

/* ───────────────────────────── */
/* --- Секция Intro / О Love Story --- */
/* ───────────────────────────── */

.intro {
	border-top: 1px solid #222;
	padding: 80px 0;
	/* было 60 → больше воздуха */
}

.intro-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 48px;
	/* было 40 → чуть свободнее */
}

.intro-text {
	flex: 1 1 55%;
}

.intro-text h2 {
	color: var(--accent);
	margin-top: 0;
	margin-bottom: 20px;
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	/* адаптивный размер */
}

.intro-text p {
	color: #ccc;
	line-height: 1.75;
	/* было 1.7 → чуть просторнее */
	margin-bottom: 20px;
	max-width: 640px;
	/* было 600 → чуть шире */
}

.intro-list {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	/* отступ сверху от текста */
}

.intro-list li {
	position: relative;
	margin-bottom: 14px;
	/* было 10 → легче читать */
	padding-left: 20px;
	color: var(--text);
	font-size: 0.95rem;
	line-height: 1.6;
	/* добавлено — многострочные пункты */
}

.intro-list li::before {
	content: "•";
	color: var(--accent);
	position: absolute;
	left: 0;
	top: 0;
}

.intro-list li strong {
	color: #fff;
	/* выделение заголовков пунктов */
}

.intro-image {
	flex: 1 1 40%;
}

.intro-image img {
	width: 100%;
	height: auto;
	/* добавлено — корректный aspect ratio */
	border-radius: 8px;
	object-fit: cover;
	filter: brightness(0.9);
	transition: filter 0.3s ease;
}

.intro-image img:hover {
	filter: brightness(1);
}

/* ── Мобильная адаптация ── */
@media (max-width: 768px) {
	.intro {
		padding: 48px 0;
	}

	.intro-content {
		flex-direction: column;
	}

	.intro-text,
	.intro-image {
		flex: 1 1 100%;
	}

	.intro-image {
		order: -1;
		/* фото сверху на мобильном */
	}

	.intro-text p {
		max-width: 100%;
	}
}

/* ───────────────────────────── */
/* --- Секция Философия --- */
/* ───────────────────────────── */

.philosophy {
	border-top: 1px solid #222;
	padding: 80px 0;
	/* было 60 → больше воздуха */
	position: relative;
	background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
}

.philosophy-diagonal {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 0;
	align-items: center;
	position: relative;
}

/* ── Фото ── */
.philosophy-photo-section {
	position: relative;
	height: 70vh;
	min-height: 400px;
	/* добавлено — не схлопнется */
	max-height: 720px;
	/* добавлено — не улетит */
	overflow: hidden;
	clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}

.philosophy-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.9);
	transition: filter 0.6s ease, transform 0.6s ease;
	/* объединено */
}

.philosophy-photo:hover {
	filter: brightness(1);
	transform: scale(1.03);
	/* было 1.1 → мягче, не дёргает */
}

/* ── Контент ── */
.philosophy-content {
	padding: 60px 40px 60px 80px;
	position: relative;
	z-index: 2;
}

.philosophy-content h2 {
	font-family: 'Cinzel', serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	/* адаптивный размер */
	margin-top: 0;
	margin-bottom: 20px;
	letter-spacing: 2px;
	color: var(--accent);
	line-height: 1.3;
}

.philosophy-content p {
	font-size: 1rem;
	line-height: 1.75;
	color: #ccc;
	font-weight: 300;
	margin-bottom: 20px;
	position: relative;
	padding-left: 30px;
	border-left: 3px solid var(--accent);
}

.philosophy-content p:last-of-type {
	margin-bottom: 28px;
	/* отступ перед списком */
}

/* ── Список ── */
.philosophy-points {
	list-style: none;
	padding: 0;
	margin: 0;
}

.philosophy-points li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	color: var(--text);
	font-size: 0.95rem;
	line-height: 1.6;
}

.philosophy-points li::before {
	content: "—";
	color: var(--accent);
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 600;
}

/* ── Мобильная адаптация ── */
@media (max-width: 768px) {
	.philosophy {
		padding: 48px 0;
	}

	.philosophy-diagonal {
		grid-template-columns: 1fr;
	}

	.philosophy-photo-section {
		clip-path: none;
		height: 50vh;
		min-height: 280px;
	}

	.philosophy-content {
		padding: 32px 20px;
	}

	.philosophy-content p {
		padding-left: 20px;
		/* меньше отступ на мобильном */
	}

	.philosophy-content h2 {
		font-size: 1.4rem;
	}
}

/* ───────────────────────────── */
/* --- Секция Галлерея --- */
/* ───────────────────────────── */

.gallery {
	border-top: 1px solid #222;
	padding: 80px 0;
	/* было 60 */
}

/* ── Заголовок ── */
.gallery-header {
	text-align: center;
	margin-bottom: 48px;
	/* было 40 */
}

.gallery-header h2 {
	font-family: 'Cinzel', serif;
	font-size: clamp(1.5rem, 3vw, 2rem);
	/* адаптивный */
	margin-top: 0;
	margin-bottom: 16px;
	letter-spacing: 2px;
	color: var(--accent);
}

.gallery-header p {
	color: #ccc;
	font-size: 1rem;
	font-weight: 300;
	max-width: 620px;
	margin: 0 auto;
	line-height: 1.75;
}

/* ── Сетка ── */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

/* ── Карточка ── */
.gallery-card {
	position: relative;
	aspect-ratio: 4 / 5;
	/* вместо height: 350px */
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card:hover {
	transform: translateY(-6px);
	/* было -8 → мягче */
	box-shadow: 0 20px 50px rgba(159, 125, 99, 0.2);
}

.gallery-card a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.85);
	transition: filter 0.5s ease, transform 0.5s ease;
	/* конкретные свойства */
}

.gallery-card:hover img {
	filter: brightness(1);
	transform: scale(1.04);
	/* было 1.08 → мягче */
}

/* ── Подпись ── */
.gallery-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
	padding: 48px 20px 18px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.9rem;
	font-weight: 300;
	line-height: 1.5;
	transform: translateY(100%);
	transition: transform 0.4s ease;
	pointer-events: none;
	/* не мешает клику по ссылке */
}

.gallery-card:hover .gallery-caption {
	transform: translateY(0);
}

/* ── Адаптив ── */
@media (max-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.gallery {
		padding: 48px 0;
	}

	.gallery-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		max-width: 480px;
		/* центрируем одну колонку */
	}

	.gallery-card {
		aspect-ratio: 3 / 4;
		/* чуть вытянутее на мобильном */
	}

	.gallery-caption {
		transform: translateY(0);
		/* на мобильном всегда видна */
		background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
		padding: 36px 16px 14px;
	}
}


/* ───────────────────────────── */
/* --- Секция Как проходит съёмка --- */
/* ───────────────────────────── */

.details {
	background: var(--bg);
	border-top: 1px solid #222;
	padding: 80px 0;
	/* было 60 → больше воздуха */
}

/* ── Заголовок ── */
.details-header {
	text-align: center;
	margin-bottom: 40px;
}

.details-title {
	font-family: 'Cinzel', serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	/* адаптивный */
	margin-top: 0;
	margin-bottom: 16px;
	letter-spacing: 2px;
	color: var(--accent);
	line-height: 1.3;
}

.details-subtitle {
	color: #ccc;
	font-size: 1rem;
	font-weight: 300;
	max-width: 640px;
	/* было 600 → чуть шире */
	margin: 0 auto;
	line-height: 1.75;
}

/* ── Прогресс-бар ── */
.scroll-progress-container {
	margin: 30px auto 20px;
	max-width: 600px;
	/* ограничиваем ширину */
}

.scroll-progress-bar {
	width: 100%;
	height: 3px;
	background: rgba(159, 125, 99, 0.2);
	border-radius: 10px;
	overflow: hidden;
}

.scroll-progress-fill {
	height: 100%;
	background: var(--accent);
	width: 0%;
	border-radius: 10px;
	transition: width 0.3s ease;
	will-change: width;
	/* GPU-хинт */
}

/* ── Горизонтальный скролл ── */
.horizontal-scroll-wrapper {
	padding: 40px 0;
	overflow: hidden;
	position: relative;
}

.horizontal-scroll {
	display: flex;
	gap: 30px;
	padding: 0 250px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.horizontal-scroll::-webkit-scrollbar {
	display: none;
}

/* Фокус для клавиатурной навигации */
.horizontal-scroll:focus {
	outline: 2px solid var(--accent);
	outline-offset: 4px;
	border-radius: 8px;
}

.horizontal-scroll:focus:not(:focus-visible) {
	outline: none;
	/* убираем при клике мышью */
}

/* ── Карточка ── */
.scroll-card {
	min-width: 545px;
	max-width: 545px;
	flex-shrink: 0;
	scroll-snap-align: center;
	background: rgba(159, 125, 99, 0.05);
	border: 1px solid rgba(159, 125, 99, 0.15);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	transform: scale(0.85);
	opacity: 0.5;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 0.4s ease,
		box-shadow 0.4s ease;
	/* конкретные свойства вместо all */
	will-change: transform, opacity;
}

/* Активная карточка */
.scroll-card.active {
	transform: scale(1);
	opacity: 1;
	border-color: rgba(159, 125, 99, 0.3);
}

.scroll-card.active:hover {
	transform: translateY(-10px) scale(1);
	/* было -12 → мягче */
	border-color: var(--accent);
	box-shadow: 0 20px 50px rgba(159, 125, 99, 0.2);
}

/* Соседние карточки */
.scroll-card:not(.active):hover {
	transform: scale(0.9);
	opacity: 0.7;
	cursor: pointer;
}

/* ── Изображение карточки ── */
.scroll-card-image {
	width: 100%;
	height: 625px;
	position: relative;
	overflow: hidden;
}

.scroll-card-image img {
	display: block;
	/* убираем inline-gap */
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.9);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
		filter 0.4s ease;
}

.scroll-card.active .scroll-card-image img {
	filter: brightness(1);
}

.scroll-card.active:hover .scroll-card-image img {
	transform: scale(1.05);
	/* было 1.08 → мягче */
}

.scroll-card-image::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 65%;
	background: linear-gradient(to top, rgba(12, 12, 12, 0.95), transparent);
	pointer-events: none;
	/* не блокирует клик */
}

/* ── Контент карточки ── */
.scroll-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 35px;
	z-index: 2;
	transition: opacity 0.4s ease;
}

.scroll-card:not(.active) .scroll-card-content {
	opacity: 0.6;
}

.scroll-card-number {
	display: inline-block;
	font-family: 'Cinzel', serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent);
	opacity: 0.4;
	line-height: 1;
	margin-bottom: 10px;
	user-select: none;
	/* не выделяется */
}

.scroll-card-title {
	font-family: 'Cinzel', serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
	letter-spacing: 1px;
	color: var(--accent);
	line-height: 1.3;
}

.scroll-card-text {
	color: #ccc;
	font-size: 0.95rem;
	line-height: 1.75;
	/* было 1.7 → чуть свободнее */
	font-weight: 300;
	margin: 0;
}

/* ── Навигация ── */
.scroll-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 35px;
}

.scroll-btn {
	width: 50px;
	height: 50px;
	border: 2px solid rgba(159, 125, 99, 0.3);
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--accent);
	font-size: 1.2rem;
	transition: background 0.3s ease,
		border-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease;
	/* конкретные свойства */
}

.scroll-btn:hover {
	background: var(--accent);
	border-color: var(--accent);
	color: var(--bg);
	transform: scale(1.1);
}

.scroll-btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
}

.scroll-counter {
	color: rgba(159, 125, 99, 0.7);
	font-size: 0.95rem;
	font-weight: 300;
	min-width: 60px;
	text-align: center;
}

/* ── Адаптив ── */
@media (max-width: 1200px) {
	.horizontal-scroll {
		padding: 0 150px;
	}

	.scroll-card {
		min-width: 480px;
		max-width: 480px;
	}

	.scroll-card-image {
		height: 550px;
	}
}

@media (max-width: 768px) {
	.details {
		padding: 48px 0;
	}

	.horizontal-scroll {
		padding: 0 50px;
		gap: 20px;
	}

	.scroll-card {
		min-width: 340px;
		/* было 390 → помещается на 375px экран */
		max-width: 340px;
		transform: scale(0.92);
		/* было 0.9 → менее резкий скачок */
	}

	.scroll-card.active {
		transform: scale(1);
	}

	.scroll-card-image {
		height: 440px;
		/* пропорционально */
	}

	.scroll-card-content {
		padding: 24px 20px;
		/* компактнее по бокам */
	}

	.scroll-card-number {
		font-size: 1.8rem;
	}

	.scroll-card-title {
		font-size: 1rem;
	}

	.scroll-card-text {
		font-size: 0.88rem;
		line-height: 1.65;
	}

	.scroll-btn {
		width: 44px;
		height: 44px;
		/* минимум 44×44 для тач */
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.horizontal-scroll {
		padding: 0 24px;
		/* было 30 → ровнее */
	}

	.scroll-card {
		min-width: 300px;
		/* было 365 → не вылезает */
		max-width: 300px;
	}

	.scroll-card-image {
		height: 380px;
	}

	.scroll-card-content {
		padding: 20px 16px;
	}
}

/* ───────────────────────────── */
/* --- Секция Бэкстейдж --- */
/* ───────────────────────────── */

.backstage {
	border-top: 1px solid #222;
	padding: 80px 0;
	/* было 50/50 → больше воздуха */
}

/* ── Заголовок ── */
.backstage-header {
	max-width: 720px;
	margin-bottom: 36px;
}

.backstage-header h2 {
	font-family: 'Cinzel', serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	/* адаптивный */
	color: var(--accent);
	letter-spacing: 2px;
	margin-top: 0;
	margin-bottom: 16px;
	line-height: 1.3;
}

.backstage-header p {
	color: #ccc;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
	margin-bottom: 14px;
}

.backstage-header p:last-child {
	margin-bottom: 0;
}

/* ── Галерея ── */
.backstage-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	/* grid вместо flex */
	gap: 20px;
	margin-top: 32px;
}

/* ── Карточка (figure) ── */
.backstage-item {
	position: relative;
	margin: 0;
	/* сброс figure margin */
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.backstage-item img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	/* вместо max-height: 400px */
	object-fit: cover;
	filter: brightness(0.85);
	transition: filter 0.4s ease, transform 0.4s ease;
	/* конкретные свойства */
}

.backstage-item:hover img {
	filter: brightness(1);
	transform: scale(1.03);
	/* лёгкий зум */
}

/* ── Подпись ── */
.backstage-item figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 18px 14px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.88rem;
	font-weight: 300;
	line-height: 1.5;
	transform: translateY(100%);
	transition: transform 0.4s ease;
	pointer-events: none;
}

.backstage-item:hover figcaption {
	transform: translateY(0);
}

/* ── Адаптив ── */
@media (max-width: 768px) {
	.backstage {
		padding: 48px 0;
	}

	.backstage-gallery {
		grid-template-columns: 1fr;
		/* одна колонка */
		gap: 16px;
		max-width: 480px;
	}

	.backstage-item img {
		aspect-ratio: 3 / 2;
		/* чуть шире на мобильном */
	}

	.backstage-item figcaption {
		transform: translateY(0);
		/* всегда видна — нет hover */
		background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
	}

	.backstage-header h2 {
		font-size: 1.3rem;
	}
}

/* ───────────────────────────── */
/* --- FAQ --- */
/* ───────────────────────────── */

.faq {
	background: linear-gradient(180deg, #151015 0%, var(--bg) 20%, var(--bg) 100%);
	padding: 80px 0;
	border-top: 1px solid rgba(159, 125, 99, 0.12);
}

/* ── Заголовок ── */
.faq-header {
	text-align: center;
	margin-bottom: 48px;
}

.faq-title {
	font-family: 'Cinzel', serif;
	font-size: clamp(1.4rem, 3vw, 2rem);
	margin: 0 0 16px;
	letter-spacing: 2px;
	color: var(--accent);
	line-height: 1.3;
}

.faq-subtitle {
	color: #ccc;
	font-size: 1rem;
	font-weight: 300;
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.75;
}

.faq-link {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.3s ease;
}

.faq-link:hover {
	color: #c4a882;
}

/* ── Список вопросов ── */
.faq-list {
	max-width: 1060px;
	margin: 0 auto;
}

/* ── Карточка вопроса ── */
.faq-item {
	background: rgba(159, 125, 99, 0.03);
	border: 1px solid rgba(159, 125, 99, 0.15);
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: background 0.3s ease,
		border-color 0.3s ease,
		box-shadow 0.3s ease,
		transform 0.3s ease;
}

.faq-item:hover {
	background: rgba(159, 125, 99, 0.05);
	border-color: rgba(159, 125, 99, 0.3);
	transform: translateX(5px);
}

.faq-item[open] {
	background: rgba(159, 125, 99, 0.08);
	border-color: var(--accent);
	box-shadow: 0 10px 30px rgba(159, 125, 99, 0.1);
	transform: translateX(0);
}

/* ── Summary (вопрос) ── */
.faq-question {
	font-family: 'Cinzel', serif;
	color: var(--text);
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 500;
	outline: none;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 22px 56px 22px 28px;
	position: relative;
	user-select: none;
	line-height: 1.4;
}

/* Убираем стандартный маркер */
.faq-question::-webkit-details-marker {
	display: none;
}

.faq-question::marker {
	display: none;
	content: '';
}

/* Иконка-стрелка */
.faq-icon {
	position: absolute;
	right: 28px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	transition: transform 0.3s ease;
	pointer-events: none;
}

.faq-icon::before,
.faq-icon::after {
	content: '';
	position: absolute;
	background: var(--accent);
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
	width: 20px;
	height: 2px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.faq-icon::after {
	width: 2px;
	height: 20px;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
	transform: translateX(-50%) rotate(90deg);
	opacity: 0;
}

.faq-question:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: -2px;
	border-radius: 8px;
}

/* ── Ответ ── */
.faq-answer {
	padding: 0 28px 24px;
	max-width: 860px;
}

.faq-answer p {
	color: #ccc;
	margin: 0 0 12px;
	line-height: 1.75;
	font-size: 0.95rem;
	font-weight: 300;
}

.faq-answer p:last-child {
	margin-bottom: 0;
}

.faq-answer ul {
	color: #ccc;
	margin: 8px 0 12px;
	padding-left: 20px;
	line-height: 1.75;
	font-size: 0.95rem;
	font-weight: 300;
}

.faq-answer li {
	margin-bottom: 6px;
}

.faq-answer li::marker {
	color: var(--accent);
}

.faq-answer a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* ── Анимация открытия ── */
.faq-item[open] .faq-answer {
	animation: faqSlideDown 0.35s ease forwards;
}

@keyframes faqSlideDown {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── Адаптив ── */
@media (max-width: 768px) {
	.faq {
		padding: 48px 0;
	}

	.faq-header {
		margin-bottom: 32px;
	}

	.faq-item {
		margin-bottom: 10px;
	}

	.faq-item:hover {
		transform: translateX(0);
	}

	.faq-question {
		font-size: 0.95rem;
		padding: 16px 44px 16px 18px;
	}

	.faq-icon {
		right: 18px;
		width: 16px;
		height: 16px;
	}

	.faq-icon::before {
		width: 16px;
	}

	.faq-icon::after {
		height: 16px;
	}

	.faq-answer {
		padding: 0 18px 18px;
	}

	.faq-answer p,
	.faq-answer ul {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.faq-question {
		font-size: 0.9rem;
		padding: 14px 40px 14px 16px;
	}

	.faq-answer {
		padding: 0 16px 16px;
	}
}


/* ───────────────────────────── */
/* --- Секция Контакты --- */
/* ───────────────────────────── */
.contact {
	padding: clamp(3rem, 5vw, 5rem) 0;
	background: linear-gradient(180deg, #1a1410 0%, #1a1410 100%);
	position: relative;
	overflow: hidden;
}

/* ── Плавающие сердца ── */
.contact-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.contact-heart-float {
	position: absolute;
	color: var(--accent);
	opacity: 0;
	animation: floatHeart 8s ease-in-out infinite;
}

.contact-heart-float:nth-child(1) {
	left: 10%;
	font-size: 1.2rem;
	animation-delay: 0s;
}

.contact-heart-float:nth-child(2) {
	left: 25%;
	font-size: 1.8rem;
	animation-delay: 2s;
}

.contact-heart-float:nth-child(3) {
	left: 40%;
	font-size: 1rem;
	animation-delay: 4s;
}

.contact-heart-float:nth-child(4) {
	left: 60%;
	font-size: 1.5rem;
	animation-delay: 1s;
}

.contact-heart-float:nth-child(5) {
	left: 75%;
	font-size: 1.3rem;
	animation-delay: 3s;
}

.contact-heart-float:nth-child(6) {
	left: 90%;
	font-size: 1.6rem;
	animation-delay: 5s;
}

@keyframes floatHeart {
	0% {
		bottom: -10%;
		opacity: 0;
		transform: translateX(0) rotate(0deg);
	}

	25% {
		opacity: 0.3;
	}

	50% {
		opacity: 0.2;
		transform: translateX(20px) rotate(180deg);
	}

	75% {
		opacity: 0.15;
	}

	100% {
		bottom: 110%;
		opacity: 0;
		transform: translateX(-20px) rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {

	.contact-heart-float,
	.contact-heart {
		animation: none;
	}

	.contact-heart-float {
		opacity: 0.06;
		bottom: 50%;
	}

	.contact-item {
		opacity: 1;
		transform: none;
	}
}

/* ── Контейнер ── */
.contact .container {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* ── Заголовок ── */
.contact-title {
	font-family: 'Cinzel', serif;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 300;
	letter-spacing: 0.25em;
	color: var(--accent);
	margin: 0 0 0.6rem;
}

.contact-heart {
	display: inline-block;
	font-size: 0.75em;
	margin-left: 0.3em;
	animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

	0%,
	100% {
		transform: scale(1);
	}

	10% {
		transform: scale(1.1);
	}

	20% {
		transform: scale(1);
	}

	30% {
		transform: scale(1.15);
	}

	40% {
		transform: scale(1);
	}
}

.contact-subtitle {
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	line-height: 1.6;
	margin: 0 0 2.5rem;
}

/* ── Список ── */
.contact-list {
	list-style: none;
	padding: 0;
	margin: 0 auto 2rem;
	display: flex;
	justify-content: center;
	gap: 1.5rem;
}

.contact-item {
	opacity: 0;
	transform: translateY(14px);
	animation: contactIn 0.6s ease forwards;
	position: relative;
	flex: 1;
	max-width: 260px;
}

.contact-item:nth-child(1) {
	animation-delay: 0.15s;
}

.contact-item:nth-child(2) {
	animation-delay: 0.3s;
}

.contact-item:nth-child(3) {
	animation-delay: 0.45s;
}

@keyframes contactIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Сердечки вокруг при наведении */
.contact-item::before,
.contact-item::after {
	content: '♥';
	position: absolute;
	color: var(--accent);
	font-size: 1.2rem;
	opacity: 0;
	transition: all 0.4s ease;
	pointer-events: none;
}

.contact-item::before {
	top: -14px;
	left: -14px;
	transform: rotate(-15deg) scale(0);
}

.contact-item::after {
	bottom: -14px;
	right: -14px;
	transform: rotate(15deg) scale(0);
}

.contact-item:hover::before {
	opacity: 0.5;
	transform: rotate(-15deg) scale(1);
	animation: miniPulse 1s ease infinite;
}

.contact-item:hover::after {
	opacity: 0.5;
	transform: rotate(15deg) scale(1);
	animation: miniPulse 1s ease infinite 0.5s;
}

@keyframes miniPulse {

	0%,
	100% {
		transform: scale(1) rotate(15deg);
	}

	50% {
		transform: scale(1.2) rotate(15deg);
	}
}

/* ── Ссылка-карточка (увеличенная) ── */
.contact-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 2.4rem 1.8rem;
	min-height: 180px;
	color: var(--text);
	text-decoration: none;
	font-family: 'Cinzel', serif;
	letter-spacing: 0.1em;
	border: 1px solid rgba(159, 125, 99, 0.25);
	transition:
		border-color 0.3s ease,
		color 0.3s ease,
		transform 0.3s ease,
		box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* Фоновое сердце при ховере */
.contact-link::before {
	content: '♥';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	font-size: 5rem;
	color: var(--accent);
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 0;
	pointer-events: none;
}

.contact-link:hover {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-3px);
	box-shadow: 0 6px 24px rgba(159, 125, 99, 0.12);
}

.contact-link:hover::before {
	transform: translate(-50%, -50%) scale(1.5);
	opacity: 0.08;
}

.contact-link:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-color: var(--accent);
	color: var(--accent);
}

/* Иконка */
.contact-icon {
	width: 40px;
	height: 40px;
	color: var(--accent);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	transition: transform 0.3s ease;
}

.contact-link:hover .contact-icon {
	transform: scale(1.15);
}

/* Название */
.contact-label {
	font-size: 1.1rem;
	letter-spacing: 0.12em;
	position: relative;
	z-index: 1;
}

/* Подсказка */
.contact-hint {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.3);
	letter-spacing: 0.03em;
	font-family: sans-serif;
	position: relative;
	z-index: 1;
}

/* ── Гео ── */
.contact-geo {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.25);
	letter-spacing: 0.15em;
	margin: 0;
}

/* ── Мобильный ── */
@media (max-width: 700px) {
	.contact {
		padding: clamp(2.5rem, 5vw, 4rem) 0;
	}

	.contact-list {
		flex-direction: column;
		align-items: center;
		gap: 1rem;
	}

	.contact-item {
		max-width: 100%;
		width: 280px;
	}

	.contact-link {
		flex-direction: row;
		min-height: auto;
		padding: 1.4rem 1.6rem;
		gap: 12px;
		justify-content: flex-start;
	}

	.contact-icon {
		width: 28px;
		height: 28px;
	}

	.contact-label {
		font-size: 1rem;
	}

	.contact-hint {
		display: none;
	}

	.contact-title {
		letter-spacing: 0.15em;
	}
}


/* ───────────────────────────── */
/* --- 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(159, 125, 99, 0.3), transparent);
}

.footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at center top, rgba(159, 125, 99, 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(224, 224, 224, 0.9);
	font-weight: 500;
}

.logo-photo {
	color: var(--accent);
	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(224, 224, 224, 0.7);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-nav a:hover {
	color: var(--accent);
}

/* Соцсети в футере */
.footer-social {
	display: flex;
	justify-content: center;
	flex: 1;
}

.social-icons {
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: center;
}

.social-icons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(159, 125, 99, 0.12);
	border: 1px solid rgba(159, 125, 99, 0.35);
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.social-icons a:hover {
	transform: scale(1.12);
	background: rgba(159, 125, 99, 0.25);
	border-color: var(--accent);
}

.social-icons img {
	width: 20px;
	height: 20px;
}

/* Адаптив */
@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;
	}

	.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 credits --- */
/* ───────────────────────────── */
.site-footer {
	background: #050505;
	padding: 16px 20px 16px;
	border-top: 1px solid rgba(159, 125, 99, 0.4);
}

.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(224, 224, 224, 0.5);
	text-align: center;
}

.site-footer__credits span {
	color: var(--accent);
	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;
	}
}


/* ───────────────────────────── */
/* --- Разделение между секциями --- */
/* ───────────────────────────── */
section:not(:last-of-type) {
	margin-bottom: 80px;
}