@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
	--color-bg: #f7f0e8;
	--color-surface: #fffaf4;
	--color-surface-2: #efe2d5;
	--color-border: rgba(47, 37, 31, .13);
	--color-text: #2d241f;
	--color-muted: #71645c;
	--color-accent: #b87955;
	--color-accent-h: #8f5639;
	--color-accent-soft: rgba(184, 121, 85, .16);
	--color-deep: #241b17;
	--color-success: #6f9b7b;
	--color-danger: #b85d5d;
	--color-white: #ffffff;
	--font-base: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	--font-display: 'Cormorant Garamond', Georgia, serif;
	--radius: 20px;
	--radius-lg: 36px;
	--container: 1180px;
	--section-gap: 92px;
	--header-h: 78px;
	--shadow-sm: 0 18px 42px rgba(61, 43, 31, .10);
	--shadow-md: 0 34px 90px rgba(61, 43, 31, .18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-base);
	font-size: 16px;
	line-height: 1.72;
	color: var(--color-text);
	background:
		radial-gradient(circle at 12% 10%, rgba(255, 222, 190, .65), transparent 30%),
		radial-gradient(circle at 88% 12%, rgba(224, 186, 164, .42), transparent 34%),
		linear-gradient(180deg, #fbf6f0 0%, #f4eadf 48%, #fbf6f0 100%);
	overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea { font: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: var(--section-gap) 0; position: relative; }
.section:nth-child(even) { background: rgba(255, 255, 255, .35); }
.section__title {
	font-family: var(--font-display);
	font-size: clamp(2.25rem, 5vw, 4.15rem);
	line-height: .98;
	font-weight: 700;
	margin-bottom: 42px;
	text-align: center;
	letter-spacing: -.025em;
}
.section__title::after {
	content: '';
	display: block;
	width: 86px;
	height: 1px;
	margin: 22px auto 0;
	background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	border-radius: 999px;
	font-weight: 800;
	font-size: .95rem;
	letter-spacing: .01em;
	transition: background .22s, transform .16s, box-shadow .22s, color .22s, border-color .22s;
	text-align: center;
}
.btn--primary {
	background: #2d241f;
	color: var(--color-white);
	box-shadow: 0 18px 40px rgba(45, 36, 31, .22);
}
.btn--primary:hover { background: var(--color-accent-h); transform: translateY(-2px); box-shadow: 0 20px 52px rgba(143, 86, 57, .28); }
.btn--sm { padding: 10px 22px; font-size: .88rem; }
.btn--outline { border: 1px solid var(--color-accent); color: var(--color-accent); background: rgba(255,255,255,.70); }
.btn--outline:hover { background: var(--color-accent); color: var(--color-white); }

.grid { display: grid; gap: 24px; }
.grid--2, .grid--3 { grid-template-columns: 1fr; }
@media (min-width: 680px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card, .review-card, .case-card {
	background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,250,244,.64));
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 30px 28px;
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(14px);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover, .review-card:hover, .case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(184, 121, 85, .38); }
.card__icon { font-family: var(--font-display); font-size: 2.15rem; margin-bottom: 14px; color: var(--color-accent); }
.card__title { font-size: 1.18rem; font-weight: 800; margin-bottom: 10px; line-height: 1.35; }
.card__text { color: var(--color-muted); font-size: .96rem; }
.card__price { display: inline-flex; margin-top: 18px; padding: 8px 14px; border-radius: 999px; background: var(--color-accent-soft); color: var(--color-accent-h); font-weight: 800; }

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(255, 250, 244, .78);
	border-bottom: 1px solid var(--color-border);
	box-shadow: 0 10px 34px rgba(61, 43, 31, .08);
	backdrop-filter: blur(18px);
}
.header__inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.header__logo { font-family: var(--font-display); font-size: 1.72rem; font-weight: 700; letter-spacing: -.02em; white-space: nowrap; margin-right: auto; color: var(--color-text); }
.header__logo::before { content: '✦'; color: var(--color-accent); margin-right: 8px; font-family: var(--font-base); }
.header__nav { display: none; gap: 22px; }
.header__nav-link { font-size: .92rem; font-weight: 800; color: var(--color-muted); transition: color .2s; }
.header__nav-link:hover { color: var(--color-accent-h); }
.header__cta { display: none; white-space: nowrap; }
.header__burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
.header__burger span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.header__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2) { opacity: 0; }
.header__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.header__nav.open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 14px; right: 14px; background: rgba(255,250,244,.98); border: 1px solid var(--color-border); border-radius: 0 0 28px 28px; padding: 18px 22px; gap: 16px; box-shadow: var(--shadow-md); }
@media (min-width: 840px) { .header__nav { display: flex; } .header__burger { display: none; } .header__cta { display: inline-flex; } .header__logo { margin-right: 0; } }

.hero {
	min-height: calc(100vh - var(--header-h));
	display: flex;
	align-items: center;
	background:
		linear-gradient(135deg, rgba(251,246,240,.96), rgba(239,226,213,.82)),
		radial-gradient(circle at 82% 18%, rgba(184,121,85,.22), transparent 34%),
		radial-gradient(circle at 20% 84%, rgba(255,255,255,.90), transparent 36%);
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: auto auto 7% -130px;
	width: 330px;
	height: 330px;
	border: 1px solid rgba(184, 121, 85, .25);
	border-radius: 50%;
}
.hero::after {
	content: '';
	position: absolute;
	right: 6%;
	top: 16%;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: rgba(184,121,85,.12);
	filter: blur(1px);
}
.hero__inner { display: flex; flex-direction: column; gap: 48px; align-items: center; }
.hero__content { max-width: 650px; }
.hero__content::before { content: 'PHOTO STUDIO • CHELYABINSK'; display: inline-flex; margin-bottom: 18px; padding: 8px 14px; border: 1px solid rgba(184,121,85,.28); border-radius: 999px; color: var(--color-accent-h); font-size: .75rem; font-weight: 900; letter-spacing: .16em; background: rgba(255,255,255,.64); box-shadow: 0 16px 36px rgba(184,121,85,.10); }
.hero__title { font-family: var(--font-display); font-size: clamp(2.7rem, 7vw, 5.8rem); font-weight: 700; line-height: .9; letter-spacing: -.045em; margin-bottom: 24px; }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--color-muted); margin-bottom: 34px; max-width: 600px; }
.hero__image { width: 100%; max-width: 500px; border-radius: 48px; overflow: hidden; box-shadow: 0 34px 90px rgba(61,43,31,.18); border: 12px solid rgba(255,255,255,.72); position: relative; background: var(--color-surface); }
.hero__image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(45,36,31,.12)); pointer-events: none; }
.hero__image img { width: 100%; height: 460px; object-fit: cover; }
@media (min-width: 920px) { .hero__inner { flex-direction: row; justify-content: space-between; } .hero__image { max-width: 480px; flex-shrink: 0; transform: rotate(1deg); } }

.about__inner { display: grid; gap: 44px; align-items: start; }
.about__text { font-size: 1.04rem; color: var(--color-muted); }
.about__text p + p { margin-top: 18px; }
.about__stats { display: grid; grid-template-columns: repeat(1, 1fr); gap: 18px; }
.about__stat { text-align: center; padding: 26px 20px; background: rgba(255,255,255,.68); border: 1px solid var(--color-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.about__stat-value { display: block; font-family: var(--font-display); font-size: 2.7rem; font-weight: 700; color: var(--color-accent-h); line-height: 1; }
.about__stat-label { font-size: .92rem; color: var(--color-muted); margin-top: 8px; display: block; }
@media (min-width: 760px) { .about__inner { grid-template-columns: 1.1fr .9fr; } .about__stats { grid-template-columns: repeat(3, 1fr); } }

.stages__list { display: grid; gap: 16px; max-width: 980px; margin: 0 auto; counter-reset: step; }
.stages__item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: flex-start; padding: 22px; border: 1px solid var(--color-border); border-radius: 28px; background: rgba(255,255,255,.62); box-shadow: var(--shadow-sm); }
.stages__num { flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; background: var(--color-text); color: var(--color-white); font-weight: 800; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 28px rgba(45,36,31,.15); }
.stages__name { font-weight: 800; margin-bottom: 4px; }
.stages__desc { font-size: .95rem; color: var(--color-muted); }

.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: rgba(255,255,255,.65); box-shadow: var(--shadow-sm); }
.price-table, .cmp-table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 720px; }
.price-table th, .price-table td, .cmp-table th, .cmp-table td { padding: 18px 20px; text-align: left; border-bottom: 1px solid var(--color-border); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table th, .cmp-table th { font-weight: 800; background: rgba(184,121,85,.12); color: var(--color-text); white-space: nowrap; }
.price-table tr:hover td, .cmp-table tr:hover td { background: rgba(184,121,85,.08); }

.review-card { min-height: 260px; display: flex; flex-direction: column; gap: 18px; }
.review-card__text { color: var(--color-muted); flex: 1; font-size: 1rem; }
.review-card__text::before { content: '“'; font-family: var(--font-display); color: var(--color-accent); font-size: 3.4rem; line-height: .3; display: block; }
.review-card__author { border-top: 1px solid var(--color-border); padding-top: 16px; }
.review-card__name { display: block; font-weight: 800; color: var(--color-text); }
.review-card__role { display: block; font-size: .88rem; color: var(--color-muted); }

.slider { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--color-surface); touch-action: pan-y; box-shadow: var(--shadow-md); }
.slider__track { display: flex; transition: transform .4s ease; will-change: transform; }
.slider__slide { min-width: 100%; flex-shrink: 0; }
.slider__slide img { width: 100%; height: 420px; object-fit: cover; }
.slider__btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.88); border-radius: 50%; width: 46px; height: 46px; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); z-index: 2; }
.slider__btn--prev { left: 14px; } .slider__btn--next { right: 14px; }
.slider__dots { display: flex; justify-content: center; gap: 8px; padding: 14px 0; }
.slider__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); transition: background .2s; border: none; cursor: pointer; }
.slider__dot.active { background: var(--color-accent); }

.seo-text__inner { max-width: 870px; margin: 0 auto; color: var(--color-muted); }
.seo-text__inner p { background: rgba(255,255,255,.58); border: 1px solid var(--color-border); border-radius: 24px; padding: 20px 22px; }
.seo-text__inner p + p { margin-top: 14px; }

.error-card { display: flex; gap: 16px; padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--color-border); background: rgba(255,255,255,.65); }
.error-card--error { border-left: 4px solid var(--color-danger); } .error-card--tip { border-left: 4px solid var(--color-success); }
.error-card__badge { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.error-card__title { font-weight: 800; margin-bottom: 4px; } .error-card__text { font-size: .9rem; color: var(--color-muted); }

.faq__list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq__item { border: 1px solid var(--color-border); border-radius: 24px; background: rgba(255,255,255,.64); overflow: hidden; box-shadow: 0 10px 26px rgba(61,43,31,.06); }
.faq__question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; font-size: 1rem; font-weight: 800; text-align: left; gap: 12px; color: var(--color-text); }
.faq__arrow { flex-shrink: 0; transition: transform .3s; color: var(--color-accent); }
.faq__question[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }
.faq__answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s ease; color: var(--color-muted); }
.faq__answer > p { overflow: hidden; padding: 0 22px; transition: padding-bottom .45s ease; }
.faq__answer.open { grid-template-rows: 1fr; }
.faq__answer.open > p { padding-bottom: 22px; }

.cta { background: linear-gradient(135deg, #2d241f, #6f4a38 50%, #c7926f) !important; color: var(--color-white); }
.cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.cta__title { font-family: var(--font-display); color: var(--color-white); font-size: clamp(2.35rem, 5vw, 4rem); font-weight: 700; line-height: .98; margin-bottom: 14px; }
.cta__subtitle { margin-bottom: 30px; opacity: .84; }
.cta__form { display: flex; flex-direction: column; gap: 12px; margin-bottom: 14px; }
.cta__input { padding: 16px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.26); background: rgba(255,255,255,.94); font-size: 1rem; outline: 3px solid transparent; transition: outline .2s, background .2s; color: var(--color-text); }
.cta__input:focus { outline-color: rgba(255,255,255,.24); background: #fff; }
.cta .btn--primary { background: var(--color-white); color: #2d241f; box-shadow: none; }
.cta .btn--primary:hover { background: #f3dfcd; color: #2d241f; }
.cta__privacy { font-size: .8rem; opacity: .68; }
.cta__msg { margin-top: 12px; font-weight: 800; min-height: 24px; }
@media (min-width: 640px) { .cta__form { flex-direction: row; flex-wrap: nowrap; } .cta__input { flex: 1; } .cta__form .btn { flex-shrink: 0; white-space: nowrap; } }

.footer { background: var(--color-deep); color: rgba(255,255,255,.72); padding-top: 64px; }
.footer__inner { display: grid; gap: 40px; padding-bottom: 50px; }
.footer__logo { display: block; font-family: var(--font-display); font-size: 1.74rem; font-weight: 700; color: var(--color-white); margin-bottom: 14px; }
.footer__desc { font-size: .92rem; max-width: 420px; }
.footer__heading { font-size: 1rem; font-weight: 800; color: var(--color-white); margin-bottom: 14px; }
.footer__contact-link { display: block; margin-bottom: 7px; transition: color .2s; }
.footer__contact-link:hover { color: var(--color-white); }
.footer__hours, .footer__address { margin-top: 8px; font-size: .9rem; }
.footer__nav { display: flex; flex-direction: column; gap: 8px; }
.footer__nav-link { font-size: .9rem; transition: color .2s; }
.footer__nav-link:hover { color: var(--color-white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 17px 0; }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; align-items: center; font-size: .85rem; }

@media (min-width: 700px) { .footer__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr; } }

@media (max-width: 520px) {
	:root { --section-gap: 68px; --header-h: 72px; }
	.container { padding: 0 16px; }
	.hero__image img { height: 330px; }
	.card, .review-card, .case-card { padding: 24px 20px; border-radius: 26px; }
	.section__title { margin-bottom: 30px; }
	.header__logo { font-size: 1.42rem; }
}
