* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Bodoni Moda', serif;
	background: #f5f5f5;
	color: #000;
	overflow-x: hidden;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}

a:hover {
	color: #2ab7e5;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 24px 118px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	background: rgba(0,0,0,0.6);
	color: #f5f5f5;
	backdrop-filter: blur(6px);
	transition: background 0.3s ease;
}

.logo {
	font-size: 24px;
	letter-spacing: 2px;
	transition: color 0.3s;
	position: relative;
}

.logoImg {
	position: absolute;
	height: 30px;
	margin-left: 3.5%;
	margin-top: 2px;
}

nav a {
	font-size: 14px;
	margin-left: 40px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #fff;
	cursor: pointer;
	transition: color 0.3s;
}

.hero {
	position: relative;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 3;
	padding: 40px;
}

.hero h1 {
	font-size: 96px;
	letter-spacing: 4px;
	line-height: 100px;
	margin-bottom: 30px;
	color: #fff;
}

.hero p {
	font-size: 18px;
	letter-spacing: 1px;
	color: #eaeaea;
}

section {
	padding: 220px 120px;
}

h2 {
	font-size: 48px;
	margin-bottom: 40px;
	line-height: 50px;
}

.bot-section p,
.service-section p {
	max-width: 500px;
	font-size: 18px;
	letter-spacing: 1px;
	margin-bottom: 30px;
}

.bot-img {
	position: absolute;
	cursor: pointer;
	width: 520px;
	top: 180px;
	right: 100px;
	filter: drop-shadow(0 40px 80px rgba(180,180,180,0.15))
	        drop-shadow(0 20px 40px rgba(0,0,0,0.6));
	transition: transform 0.6s ease;
}

.bot-img:hover {
	transform: scale(1.05);
}

.service-images {
	position: absolute;
	width: 500px;
	top: 229px;
	right: 117px;
}

.service-img,
.service-img-2,
.service-img-3 {
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}

.service-img {
	cursor: pointer;
	max-height: 350px;
	transition: transform 0.6s ease, opacity 0.6s ease;
}

#no {
	transform: none !important;
	cursor: default;
}

#webIMG {
	transition: none;
	cursor: default;
	transform: none !important;
}

.service-images-3 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.service-img-3 {
	top: 30px;
	width: 100%;
	height: 100%;
}

.list,
.order-btn {
	font-size: 18px;
	letter-spacing: 1px;
	text-decoration: underline;
	cursor: pointer;
	transition: color 0.3s ease-in-out;
}

.order-btn:hover {
	color: #2ab7e5;
}

.order-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 400px;
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	transition-delay: 0.2s;
}

.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}

footer {
	padding: 80px 120px;
	border-top: 1px solid #222;
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: #181818;
}

#cursor-circle {
	position: fixed;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(178,178,178,0.674);
	pointer-events: none;
	transform: translate(-47%, -35%);
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 9999;
}

#hover-hint,
#hover-star {
	position: fixed;
	padding: 8px 14px;
	background: rgba(0,0,0,0.7);
	color: #fff;
	font-size: 14px;
	border-radius: 20px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.2s ease;
	z-index: 10000;
	white-space: nowrap;
	backdrop-filter: blur(4px);
}

.modal {
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal.show {
	opacity: 1;
	pointer-events: auto;
}

.modal-content {
	background: rgba(255,255,255,0.97);
	padding: 30px;
	width: 600px;
	border-radius: 12px;
	animation: modalFade 0.3s ease;
}

.modal-content input,
.modal-content select {
	width: 100%;
	padding: 12px;
	margin: 6px 0;
	border-radius: 8px;
	border: 1px solid #ccc;
}

.submit-btn {
	width: 100%;
	padding: 12px;
	margin-top: 30px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 8px;
	cursor: pointer;
}

.close {
	float: right;
	font-size: 28px;
	cursor: pointer;
}

label.required::after {
	content: "*";
	color: red;
	margin-left: 4px;
	font-weight: bold;
}

@keyframes modalFade {
	from { opacity: 0; transform: scale(0.95); }
	to { opacity: 1; transform: scale(1); }
}

#catalogOverlay {
	position: fixed;
	top: 0;
	left: 25%;
	width: 50%;
	height: 100%;
	background: rgba(206,208,206,0.95);
	backdrop-filter: blur(10px);
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 2000;
	padding: 60px 80px;
	overflow-y: auto;
}

#catalogOverlay.show {
	display: flex;
	animation: catalogFade 0.35s ease forwards;
}

#catalogOverlay h2 {
	font-size: 48px;
	margin-bottom: 40px;
	letter-spacing: 2px;
}

#catalogOverlay ul {
	list-style: none;
	width: 100%;
	gap: 10px;
	max-width: 900px;
	counter-reset: catalog;
}

#catalogOverlay ul li a {
	counter-increment: catalog;
	display: block;
	width: 100%;
	padding: 24px 36px;
	margin-bottom: 15px;
	font-size: 26px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #000;
	border: 1px solid rgba(0,0,0,0.25);
}

#catalogOverlay ul li a::before {
	content: "0" counter(catalog);
	font-size: 14px;
	opacity: 0.5;
	margin-right: 22px;
}

#catalogOverlay ul li a:hover,
#catalogOverlay ul li a.active {
	background: #000;
	color: #fff;
}

#catalogOverlay .close-btn {
	position: absolute;
	top: 30px;
	right: 40px;
	font-size: 32px;
	cursor: pointer;
	color: #333;
}

#catalogOverlay::-webkit-scrollbar {
	display: none;
}

body.catalog-active > *:not(#catalogOverlay) {
	filter: blur(4px) brightness(0.7);
	pointer-events: none;
	user-select: none;
}

@keyframes catalogFade {
	from { opacity: 0; transform: translateY(-20px); }
	to { opacity: 1; transform: translateY(0); }
}

.burger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1100;
}

.burger span {
	width: 28px;
	height: 3px;
	background: #fff;
	border-radius: 4px;
	transition: 0.3s ease;
}

.burger.open span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

.burger.open span:nth-child(2) {
	opacity: 0;
}

.burger.open span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 70%;
	height: 100vh;
	background: rgba(0,0,0,0.9);
	backdrop-filter: blur(6px);
	display: flex;
	flex-direction: column;
	padding: 120px 40px;
	gap: 30px;
	transition: right 0.4s ease;
	z-index: 1050;
	align-items: center;
	text-align: center;
}

.mobile-menu a {
	color: #fff;
	font-size: 18px;
	letter-spacing: 2px;
}

.mobile-menu.open {
	right: 0;
}

@media (max-width: 900px) {

	body {
		text-align: center;
	}

	header {
		padding: 16px 40px;
	}

	nav {
		display: none;
	}

	.burger {
		display: flex;
	}

	#catalogOverlay {
		left: 0;
		width: 100%;
		height: 100svh;
		padding: 60px 20px;
		overflow-y: auto;
		align-items: flex-start;
		justify-content: flex-start;
	}

	#catalogOverlay h2 {
		font-size: 28px;
		margin: 30% auto 44px;
		text-align: center;
	}

	#catalogOverlay ul li a {
		font-size: 18px;
		padding: 16px;
		text-align: left;
	}

	#catalogOverlay ul li a::before {
		font-size: 12px;
	}

	#catalogOverlay .close-btn {
		top: 20px;
		right: 20px;
		font-size: 28px;
	}

	body.catalog-active > *:not(#catalogOverlay) {
		filter: blur(4px) brightness(0.6);
		pointer-events: none;
		user-select: none;
	}

	.hero h1 {
		font-size: 28px;
		line-height: 1.2;
		letter-spacing: 1px;
	}

	.hero p {
		font-size: 16px;
	}

	section {
		padding: 100px 40px;
	}

	h2 {
		font-size: 24px;
		line-height: 1.2;
		text-align: center;
		margin-bottom: 20px;
	}

	.bot-section p,
	.service-section p {
		max-width: 100%;
		font-size: 16px;
		line-height: 1.6;
		text-align: center;
	}

	.bot-images,
	.service-images,
	.service-images-3 {
		position: static;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0 auto 16px;
	}

	.bot-img,
	.service-img,
	.service-img-2,
	.service-img-3,
	#webIMG {
		position: static;
		width: 100%;
		height: auto;
		margin: 0 auto 16px;
		display: block;
		object-fit: contain;
		border-radius: 6px;
	}

	.order-btn {
		font-size: 16px;
		margin-bottom: 16px;
		padding: 10px 0;
	}

	footer {
		padding: 40px 20px;
		gap: 10px;
		text-align: center;
	}

	.modal-content {
		width: 100%;
		max-width: 420px;
		padding: 18px 12px;
		border-radius: 18px;
		box-shadow: 0 8px 32px rgba(0,0,0,0.13);
	}

	.form-group {
		margin-bottom: 12px;
		gap: 6px;
		align-items: center;
	}

	.modal-content input,
	.modal-content select {
		font-size: 15px;
		padding: 10px 8px;
		text-align: center;
	}

	.submit-btn {
		margin-top: 14px;
		font-size: 15px;
		padding: 10px;
	}

	.close {
		top: 18px;
		right: 18px;
		font-size: 28px;
	}

	*:not(.burger):not(.burger *):not(.mobile-menu):not(.mobile-menu *),
	*:not(.burger)::before,
	*:not(.burger)::after {
		animation: none;
		transition: none;
	}

	.fade-in,
	.fade-in.show {
		opacity: 1;
		transform: none;
	}

	#hover-hint {
		display: none;
	}

	.bot-img:hover,
	.service-img:hover {
		transform: none;
	}
}