.site-shell,
.site-main {
	position: static;
}

body {
	background:
		linear-gradient(115deg, rgba(228, 0, 127, 0.12), transparent 32%),
		linear-gradient(245deg, rgba(255, 202, 5, 0.18), transparent 28%),
		#fff8fb;
	font-family: "Segoe UI", Arial, sans-serif;
}

.site-header {
	position: fixed;
	top: 16px;
	left: calc(50% - 12px);
	z-index: 20;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	width: min(1180px, calc(100% - 32px));
	padding: 12px 14px 12px 18px;
	border: 1px solid rgba(228, 0, 127, 0.14);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(44, 16, 52, 0.12);
	backdrop-filter: none;
	transform: translateX(-50%);
}

.site-header__brand {
	grid-column: 1;
	grid-row: 1;
	display: flex;
	width: 174px;
	color: inherit;
	font-size: 0;
	line-height: 0;
}

.site-header__brand img {
	display: block;
	width: 100%;
	height: auto;
}

.site-header__actions {
	grid-column: 3;
	grid-row: 1;
	display: inline-flex;
	align-items: center;
	justify-self: end;
	gap: 10px;
}

.site-header__nav {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	color: var(--ukrsalon-ink);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.2s ease, background 0.2s ease;
}

.site-menu a:hover {
	color: var(--ukrsalon-pink);
	background: rgba(228, 0, 127, 0.08);
}

.lang-switch {
	display: inline-flex;
	padding: 3px;
	border: 1px solid var(--ukrsalon-line);
	border-radius: 7px;
	background: #fff;
}

.lang-switch ul {
	display: inline-flex;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.lang-switch .lang-item {
	margin: 0;
}

.lang-switch a,
.lang-switch__button {
	display: block;
	min-width: 42px;
	padding: 8px 10px;
	border: 0;
	border-radius: 5px;
	background: transparent;
	color: var(--ukrsalon-muted);
	font-size: 13px;
	font-weight: 800;
	font-family: inherit;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch .current-lang a,
.lang-switch__button.is-active {
	color: #fff;
	background: var(--ukrsalon-pink);
}

.site-header__menu-toggle {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--ukrsalon-line);
	border-radius: 7px;
	background: #fff;
}

.site-header__menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--ukrsalon-ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(2) {
	transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(3) {
	opacity: 0;
}

.site-header.is-menu-open .site-header__menu-toggle span:nth-child(4) {
	transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
	position: relative;
	padding: 156px 0 96px;
	overflow: hidden;
	background: transparent;
}

.hero-section__inner {
	position: relative;
	z-index: 1;
	grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
	gap: 56px;
}

.hero-section__content {
	position: relative;
	z-index: 2;
}

.hero-section__art {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero-section__accent {
	position: absolute;
	left: -60px;
	top: 0;
	width: 420px;
	max-width: none;
	opacity: 0.26;
	filter: drop-shadow(0 24px 44px rgba(228, 0, 127, 0.16));
	transform: scaleY(-1);
	user-select: none;
}

.hero-section__visual {
	position: relative;
	z-index: 1;
	width: min(760px, 100%);
	justify-self: end;
}

.hero-section__visual::before {
	content: none;
}

.hero-section__visual-decor {
	position: absolute;
	inset: -1% -12%;
	z-index: 0;
	pointer-events: none;
}

.hero-section__visual-decor img {
	position: absolute;
	left: -15%;
	top: -3%;
	display: block;
	width: 144%;
	max-width: none;
	opacity: 0.25;
	filter: drop-shadow(0 18px 34px rgba(228, 0, 127, 0.16));
	mix-blend-mode: screen;
	transform: rotate(-4deg);
}

.hero-section__image {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: auto;
	filter: none;
}

@media (max-width: 991px) {
	.site-header__brand {
		width: 150px;
	}

	.hero-section {
		padding-top: 186px;
	}

	.hero-section__inner {
		grid-template-columns: 1fr;
	}

	.hero-section h1 {
		font-size: 62px;
	}

	.hero-section__visual {
		max-width: 100%;
		justify-self: center;
	}
}

@media (max-width: 767px) {
	.site-header {
		left: 50%;
		top: 10px;
		width: calc(100% - 20px);
		gap: 12px;
		padding: 10px;
	}

	.site-header__brand {
		width: 132px;
	}

	.site-header__actions {
		gap: 8px;
	}

	.site-header__menu-toggle {
		display: inline-flex;
		width: 40px;
		height: 36px;
	}

	.site-header__nav {
		position: absolute;
		grid-column: auto;
		grid-row: auto;
		top: calc(100% + 8px);
		right: 10px;
		display: grid;
		gap: 3px;
		width: min(260px, calc(100vw - 20px));
		min-width: 0;
		padding: 8px;
		border: 1px solid rgba(228, 0, 127, 0.14);
		border-radius: 8px;
		background: #fff;
		box-shadow: 0 22px 54px rgba(44, 16, 52, 0.16);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-6px);
		visibility: hidden;
		transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
	}

	.site-header.is-menu-open .site-header__nav {
		display: grid;
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		visibility: visible;
	}

	.site-menu {
		display: grid;
		gap: 3px;
	}

	.site-menu a {
		padding: 11px 12px;
		font-size: 13px;
		white-space: nowrap;
	}

	.hero-section {
		padding: 174px 0 58px;
	}

	.hero-section__inner {
		gap: 34px;
	}

	.hero-section h1 {
		max-width: 100%;
		font-size: 34px;
		overflow-wrap: anywhere;
	}

	.hero-section__text {
		font-size: 16px;
		overflow-wrap: anywhere;
	}

	.hero-section__accent {
		left: -92px;
		top: 0;
		width: 380px;
		opacity: 0.28;
	}

	.hero-section__visual {
		max-width: 100%;
	}

	.hero-section__image {
		width: 100%;
	}

	.hero-section__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-section__actions .button {
		width: 100%;
	}
}
