@charset "utf-8";
/* CSS Document

Tooplate 2152 Event Invitation
Adapted for Moscow Cleaning Service multi-page website

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #1a1614;
	--accent: #957c62;
	--accent-light: #b09686;
	--accent-dark: #7a6350;
	--bg-cream: #faf8f6;
	--bg-white: #ffffff;
	--bg-light: #f5f1ed;
	--text-primary: #1a1614;
	--text-secondary: #6b635c;
	--text-muted: #9d9690;
	--border: rgba(149, 124, 98, 0.15);
}

[data-theme="dark"] {
	--primary: #faf8f6;
	--accent: #d4a574;
	--accent-light: #e6c9a8;
	--accent-dark: #b8935f;
	--bg-cream: #0f0e0d;
	--bg-white: #1a1816;
	--bg-light: #252320;
	--text-primary: #faf8f6;
	--text-secondary: #b8b1a8;
	--text-muted: #7a766f;
	--border: rgba(212, 165, 116, 0.15);
}

body {
	font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg-cream);
	color: var(--text-primary);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	transition: background-color 0.3s ease, color 0.3s ease;
}

a {
	color: var(--accent-dark);
	text-decoration: none;
}

a:hover {
	color: var(--accent);
}

/* Dark Mode Toggle */
.theme-toggle {
	position: fixed;
	top: 13px;
	right: 24px;
	z-index: 1000;
	background: var(--bg-white);
	border: 1px solid var(--border);
	border-radius: 50px;
	padding: 4px;
	display: flex;
	align-items: center;
	gap: 4px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.theme-toggle:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .theme-toggle:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.theme-option {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	opacity: 0.35;
}

.light-option {
	background: #e8e5e1;
}

.dark-option {
	background: #3a3632;
}

.theme-option.active {
	opacity: 1;
	border-color: var(--accent);
	transform: scale(1.1);
}

/* Decorative Background Elements */
.bg-shapes {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.shape {
	position: absolute;
	opacity: 0.12;
}

.shape-1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, var(--accent), transparent);
	top: -200px;
	right: -100px;
	border-radius: 50%;
}

.shape-2 {
	width: 400px;
	height: 400px;
	background: linear-gradient(135deg, var(--accent-light), transparent);
	bottom: -150px;
	left: -100px;
	border-radius: 40% 60% 50% 50%;
}

.shape-3 {
	width: 280px;
	height: 280px;
	border: 2px solid var(--accent);
	top: 45%;
	left: 10%;
	border-radius: 30% 70% 70% 30%;
	transform: rotate(45deg);
}

.container {
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin: 0 auto;
}

/* Header / Navigation */
.site-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: color-mix(in srgb, var(--bg-white) 88%, transparent);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--border);
}

.nav-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 14px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.brand {
	font-family: 'Outfit', sans-serif;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--primary);
}

.brand span {
	color: var(--accent);
}

.nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--border);
	padding: 8px 12px;
	color: var(--text-primary);
	font-size: 0.9rem;
	cursor: pointer;
}

.nav-links {
	display: flex;
	gap: 20px;
	list-style: none;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nav-links a {
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--text-secondary);
	padding: 6px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
	color: var(--accent-dark);
	border-bottom-color: var(--accent);
}

/* Shared Layout */
main {
	padding-bottom: 30px;
}

.section-head {
	margin-bottom: 32px;
}

.section-head h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 2.6rem;
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 12px;
	letter-spacing: -1px;
}

.section-head p {
	max-width: 780px;
	color: var(--text-secondary);
	font-size: 1.05rem;
}

.section {
	padding: 90px 60px;
}

.section-light {
	background: var(--bg-white);
}

.section-dark {
	background: var(--primary);
	color: var(--bg-cream);
}

.section-dark .section-head p {
	color: var(--text-muted);
}

/* Hero Section */
.hero-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 74vh;
	align-items: center;
	gap: 80px;
	padding: 72px 60px;
	position: relative;
}

.hero-section::after {
	content: '';
	position: absolute;
	right: 50%;
	top: 10%;
	width: 1px;
	height: 80%;
	background: linear-gradient(to bottom, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.hero-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 40px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--accent-dark);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 24px;
}

.hero-badge::before {
	content: '';
	width: 40px;
	height: 2px;
	background: var(--accent);
}

.hero-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2.4rem, 7vw, 5.6rem);
	font-weight: 200;
	color: var(--primary);
	line-height: 0.95;
	margin-bottom: 28px;
	letter-spacing: -3px;
}

.hero-title strong {
	font-weight: 600;
	display: block;
	color: var(--accent);
}

.hero-description {
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--text-secondary);
	line-height: 1.8;
	max-width: 530px;
	margin-bottom: 30px;
}

.hero-cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

/* Cards */
.hero-details {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding-right: 40px;
}

.detail-card {
	background: var(--bg-white);
	padding: 34px;
	border-left: 4px solid var(--accent);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.detail-card::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	width: 120px;
	height: 100%;
	background: linear-gradient(135deg, transparent 0%, var(--accent) 100%);
	opacity: 0.13;
	transform: skewX(-15deg) translateX(40px);
	transition: all 0.3s ease;
}

.detail-card:hover {
	transform: translateX(-6px);
	box-shadow: 0 8px 32px rgba(149, 124, 98, 0.14);
}

.detail-card:nth-child(2) {
	margin-left: 50px;
}

.detail-card:nth-child(3) {
	margin-left: 100px;
}

.detail-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	position: relative;
	z-index: 1;
}

.detail-icon {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	border-radius: 14px;
	flex-shrink: 0;
	color: #fff;
	font-size: 1.35rem;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
}

.detail-icon svg {
	width: 30px;
	height: 30px;
	stroke: white;
	stroke-width: 2;
	fill: none;
}

.detail-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 6px;
}

.detail-value {
	font-family: 'Outfit', sans-serif;
	font-size: 1.5rem;
	font-weight: 300;
	color: var(--primary);
	letter-spacing: -0.5px;
}

.detail-text {
	color: var(--text-secondary);
	font-size: 0.98rem;
	margin-top: 6px;
}

/* Grids */
.cards-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.cards-grid.three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.trust-card,
.step-card,
.review-card,
.price-card,
.faq-item,
.blog-card,
.contact-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	padding: 26px;
	transition: 0.25s ease;
}

.service-card:hover,
.trust-card:hover,
.step-card:hover,
.review-card:hover,
.price-card:hover,
.blog-card:hover,
.contact-card:hover {
	border-color: var(--accent);
	transform: translateY(-4px);
}

.service-card h3,
.trust-card h3,
.step-card h3,
.review-card h3,
.price-card h3,
.blog-card h3,
.contact-card h3 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 1.35rem;
	margin-bottom: 12px;
	line-height: 1.2;
}

.service-card p,
.trust-card p,
.step-card p,
.review-card p,
.price-card p,
.blog-card p,
.contact-card p,
.faq-item p,
.service-checklist li,
.article-content p,
.article-content li {
	color: var(--text-secondary);
}

.service-meta {
	margin-top: 14px;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--accent-dark);
}

/* How it works */
.steps {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.step-card {
	position: relative;
	padding-top: 58px;
}

.step-card::before {
	counter-increment: step;
	content: "0" counter(step);
	position: absolute;
	top: 16px;
	left: 18px;
	font-family: 'Outfit', sans-serif;
	font-size: 1.45rem;
	font-weight: 600;
	color: var(--accent);
}

/* Before/After */
.examples-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.image-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.image-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	overflow: hidden;
}

.image-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
}

.image-card p {
	padding: 14px 16px 18px;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

.example-card {
	background: var(--bg-white);
	border: 1px solid var(--border);
	padding: 22px;
}

.example-head {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}

.badge {
	display: inline-block;
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	padding: 4px 8px;
}

.badge.before {
	background: #f3d8d0;
	color: #7c4639;
}

.badge.after {
	background: #d8efdd;
	color: #355f3d;
}

/* Countdown */
.countdown-wrapper {
	background: var(--primary);
	color: var(--bg-cream);
	padding: 70px 60px;
	position: relative;
	overflow: hidden;
}

.countdown-label {
	font-size: 0.86rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-align: center;
	margin-bottom: 34px;
	color: var(--accent-light);
}

.countdown {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
	max-width: 820px;
	margin: 0 auto;
}

.countdown-item {
	text-align: center;
	padding: 28px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(149, 124, 98, 0.3);
}

.countdown-number {
	font-family: 'Outfit', sans-serif;
	font-size: 3.6rem;
	font-weight: 200;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -2px;
}

.countdown-unit {
	font-size: 0.85rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

/* Forms */
.rsvp-section {
	padding: 100px 60px;
	background: var(--bg-white);
	position: relative;
}

.rsvp-inner {
	max-width: 820px;
	margin: 0 auto;
}

.form-header {
	margin-bottom: 42px;
}

.form-title {
	font-family: 'Outfit', sans-serif;
	font-size: clamp(2rem, 6vw, 4.2rem);
	font-weight: 200;
	color: var(--primary);
	margin-bottom: 16px;
	letter-spacing: -2px;
	line-height: 1;
}

.form-title strong {
	font-weight: 600;
	color: var(--accent);
}

.form-subtitle {
	font-size: 1.1rem;
	font-weight: 300;
	color: var(--text-secondary);
	line-height: 1.8;
}

.success-message {
	display: none;
	background: var(--accent);
	color: #fff;
	padding: 18px 24px;
	margin-bottom: 32px;
	align-items: center;
	gap: 12px;
	border-left: 4px solid var(--accent-dark);
}

.success-message.show {
	display: flex;
}

.success-icon {
	width: 30px;
	height: 30px;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	flex-shrink: 0;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
	margin-bottom: 26px;
}

.form-group {
	margin-bottom: 26px;
	position: relative;
}

label {
	display: block;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent-dark);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
	width: 100%;
	padding: 14px 0;
	font-size: 1.06rem;
	font-weight: 300;
	font-family: 'Work Sans', sans-serif;
	color: var(--text-primary);
	background: transparent;
	border: none;
	border-bottom: 2px solid var(--border);
	transition: all 0.25s ease;
	outline: none;
}

input:focus,
select:focus,
textarea:focus {
	border-bottom-color: var(--accent);
}

select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23957C62' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	padding-right: 32px;
}

textarea {
	min-height: 110px;
	resize: vertical;
	border: 2px solid var(--border);
	padding: 14px;
}

.submit-btn,
.ghost-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 15px 26px;
	font-family: 'Outfit', sans-serif;
	font-size: 0.92rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	cursor: pointer;
	transition: all 0.25s ease;
}

.submit-btn {
	color: #fff;
	background: var(--accent);
	border: 1px solid var(--accent);
}

.submit-btn:hover {
	background: var(--accent-dark);
	border-color: var(--accent-dark);
	transform: translateY(-2px);
}

.ghost-btn {
	color: var(--accent-dark);
	border: 1px solid var(--accent);
	background: transparent;
}

.ghost-btn:hover {
	background: var(--bg-light);
}

.submit-btn.block {
	width: 100%;
}

/* Lists */
.simple-list,
.service-checklist,
.article-content ul,
.article-content ol,
.price-list {
	padding-left: 22px;
}

.simple-list li,
.service-checklist li,
.article-content li,
.price-list li {
	margin-bottom: 10px;
}

.inline-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	font-size: 0.95rem;
}

.inline-links a {
	border-bottom: 1px dashed var(--accent);
}

/* FAQ */
.faq-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.faq-item h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.2rem;
	margin-bottom: 8px;
}

/* Blog */
.blog-meta {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.blog-thumb {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
	margin-bottom: 12px;
}

.article-layout {
	display: grid;
	grid-template-columns: 2.4fr 1fr;
	gap: 32px;
	padding: 72px 60px 90px;
}

.article-content {
	background: var(--bg-white);
	border: 1px solid var(--border);
	padding: 32px;
}

.article-content h1 {
	font-family: 'Outfit', sans-serif;
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 1.1;
	margin-bottom: 14px;
}

.article-content h2 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.7rem;
	font-weight: 500;
	margin: 28px 0 12px;
}

.article-content h3 {
	font-family: 'Outfit', sans-serif;
	font-size: 1.25rem;
	margin: 20px 0 8px;
}

.article-feature {
	width: 100%;
	height: 340px;
	object-fit: cover;
	margin: 8px 0 18px;
	border: 1px solid var(--border);
}

.article-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.article-sidebar .contact-card ul {
	list-style: none;
}

.article-sidebar .contact-card li+li {
	margin-top: 10px;
}

/* Footer */
footer {
	background: var(--primary);
	color: var(--text-muted);
	padding: 40px 60px;
	font-weight: 300;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 24px;
	margin-bottom: 18px;
}

footer h3 {
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	font-size: 1.15rem;
	color: var(--bg-cream);
	margin-bottom: 10px;
}

footer ul {
	list-style: none;
}

footer li + li {
	margin-top: 7px;
}

footer a {
	color: var(--accent-light);
}

footer a:hover {
	color: var(--bg-cream);
}

.footer-note {
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.9rem;
}

/* Floating UI Buttons */
.scroll-top-btn {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1200;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--bg-white);
	color: var(--text-primary);
	font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	opacity: 0;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.scroll-top-btn.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.scroll-top-btn:hover {
	background: var(--bg-light);
}

.article-back-btn {
	position: fixed;
	top: 74px;
	left: 24px;
	z-index: 1200;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--bg-white);
	color: var(--text-primary);
	font-size: 0.88rem;
	font-weight: 600;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	transition: background-color 0.25s ease;
}

.article-back-btn:hover {
	background: var(--bg-light);
	color: var(--text-primary);
}

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-content,
.hero-details,
.section,
.article-layout {
	animation: fadeInUp 0.55s ease-out;
}

/* Responsive */
@media (max-width: 1200px) {
	.nav-inner,
	.hero-section,
	.section,
	.rsvp-section,
	.countdown-wrapper,
	.article-layout,
	footer {
		padding-left: 36px;
		padding-right: 36px;
	}

	.cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.examples-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.hero-section {
		grid-template-columns: 1fr;
		min-height: auto;
		gap: 44px;
	}

	.hero-section::after,
	.detail-card:nth-child(2),
	.detail-card:nth-child(3) {
		display: none;
	}

	.hero-content,
	.hero-details {
		padding: 0;
	}

	.countdown {
		grid-template-columns: repeat(2, 1fr);
	}

	.article-layout {
		grid-template-columns: 1fr;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	.theme-toggle {
		top: 14px;
		right: 14px;
	}

	.article-back-btn {
		left: 14px;
		top: 74px;
	}

	.scroll-top-btn {
		right: 14px;
		bottom: 14px;
	}

	.nav-inner {
		padding-top: 12px;
		padding-bottom: 12px;
		align-items: flex-start;
		flex-direction: column;
	}

	.nav-toggle {
		display: inline-block;
	}

	.nav-links {
		display: none;
		width: 100%;
		flex-direction: column;
		gap: 9px;
		padding-top: 8px;
	}

	.nav-links.show {
		display: flex;
	}

	.hero-title {
		letter-spacing: -1px;
	}

	.form-row,
	.faq-grid,
	.cards-grid,
	.cards-grid.three,
	.steps,
	.examples-grid,
	.image-grid {
		grid-template-columns: 1fr;
	}

	.section,
	.rsvp-section,
	.countdown-wrapper,
	.article-layout,
	footer {
		padding-left: 22px;
		padding-right: 22px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}
}
