/*
Theme Name: Alpine Silence
Author: Aleksandrlao
Description: Custom WordPress theme for Alpine Silence based on the provided static layout.
Version: 1.0.0
Text Domain: apline-silence
*/


:root {
	--black: #1e1a16;
	--dark: #2c211b;
	--brown: #695244;
	--light: #d8cbbd;
	--cream: #c8b9a7;
}


*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
			box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	scroll-behavior: smooth;
}
body {
	background: var(--cream) url("i/bg.jpg") center repeat;
	color: var(--black);
	font: 18px/1.35 'Playfair Display', Georgia, 'Times New Roman', serif;
}
.wrapper {
	width: 100%;
	min-width: 320px;
	overflow: hidden;
	position: relative;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1560px;
	padding-left: 30px;
	padding-right: 30px;
	margin: 0 auto;
	position: relative;
	border-top: 0px solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.flx--jcfs {
	justify-content: flex-start;
}
.flx--aic {
	align-items: center;
}


a {
	color: var(--black);
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
}


.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 22px;
}
.text p:last-child {
	margin-bottom: 0;
}
.text strong {
	font-weight: 700;
}


.head {
	margin-bottom: 36px;
	font-family: 'Playfair Display', Georgia, serif;
	font-weight: normal;
	font-size: 96px;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	color: var(--dark);
}
.head span {
	display: inline-block;
	position: relative;
	padding: 0 40px 20px 40px;
	border-bottom: 2px solid #A99A8D;
}
.head span::before,
.head span::after {
	content: '';
	position: absolute;
	bottom: -5px;
	width: 9px;
	height: 9px;
	background-color: #A99A8D;
	transform: rotate(45deg);
}
.head span::before {
	left: -8px;
}
.head span::after {
	right: -8px;
}
.subhead {
	margin-bottom: 80px;
	font-size: 36px;
	line-height: 1.35;
	text-align: center;
	color: var(--dark);
}
.section-label {
	font-weight: 700;
	font-size: 28px;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--dark);
}


.button {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	min-height: 34px;
	padding: 6px 22px 8px;
	border-radius: 28px;
	background: #5A4C3E;
	border: 1px solid transparent;
	font-size: 16px;
	line-height: 1.1;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
	color: #f2eadf;
	transition: all .3s ease;
}
.button:hover {
	background: var(--dark);
}

@media screen and (max-width:900px) {

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.head {
		font-size: 44px;
	}
	.subhead {
		font-size: 16px;
	}

}






/* Popup ----------------------------------------------------------------------------- */
body.popup-open {
	overflow: hidden;
}
.menu-item.filtered-hide {
	display: none;
}
.popup-overlay {
	position: fixed;
	inset: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 30px 15px;
	background: rgba(25, 25, 25, .96);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	overflow-y: auto;
	transition: all .3s ease;
	z-index: 1000;
}
.popup-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.popup {
	width: 100%;
	background: #eadfd3;
	position: relative;
	color: #292019;
	transform: translateY(20px);
	transition: all .3s ease;
}
.popup-overlay.active .popup {
	transform: translateY(0);
}
.popup-reservation {
	max-width: 850px;
	padding: 80px 56px 66px;
	border-radius: 20px;
}
.popup__close {
	position: absolute;
	top: 36px;
	right: 36px;
	width: 26px;
	height: 26px;
	padding: 0;
	border: none;
	outline: none;
	background: url('i/bg-icon-close.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	cursor: pointer;
	transition: all .3s ease;
}
.popup__close:hover {
	transform: rotate(90deg);
}
.popup__head {
	width: 100%;
	margin-bottom: 84px;
	position: relative;
	font-size: 49px;
	line-height: 1;
	font-weight: 400;
	text-align: center;
	text-transform: uppercase;
	color: #000;
}
.popup__head::after {
	content: '';
	position: absolute;
	top: calc(100% + 18px);
	left: 50%;
	width: 320px;
	height: 10px;
	background: url('i/bg-icon-round.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	transform: translateX(-50%);
}
.reservation-form__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0 32px;
}
.reservation-form__top .form-field {
	width: calc(33.3% - 22px);
}
.form-field {
	display: block;
	width: 100%;
	margin-bottom: 22px;
	font-family: 'Inter', Arial, sans-serif;
}
.form-field__name {
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 1.2;
	font-weight: 400;
	text-transform: uppercase;
	color: #292019;
}
.form-field__box {
	display: block;
	width: 100%;
	height: 58px;
	border: 1px solid #292019;
	border-radius: 8px;
	background: transparent;
	position: relative;
}
.form-field__box::before {
	content: '';
	position: absolute;
	top: calc(50% - 11px);
	left: 18px;
	width: 22px;
	height: 22px;
	background: #000;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
}
.form-field__box--calendar::before {
	-webkit-mask-image: url('i/bg-icon-calendar.svg');
	mask-image: url('i/bg-icon-calendar.svg');
}
.form-field__box--user::before,
.form-field__box--guest::before {
	-webkit-mask-image: url('i/bg-icon-user.svg');
	mask-image: url('i/bg-icon-user.svg');
}
.form-field__box--mail::before {
	-webkit-mask-image: url('i/bg-icon-mail.svg');
	mask-image: url('i/bg-icon-mail.svg');
}
.form-field__box--phone::before {
	-webkit-mask-image: url('i/bg-icon-phone-number.svg');
	mask-image: url('i/bg-icon-phone-number.svg');
}
.form-field input {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 18px 0 58px;
	border: none;
	outline: none;
	background: transparent;
	font: 400 15px/1.2 'Inter', Arial, sans-serif;
	color: #292019;
}
.form-field input::-webkit-input-placeholder {
	color: rgba(41, 32, 25, .45);
}
.form-field input::-moz-placeholder {
	color: rgba(41, 32, 25, .45);
}
.form-field input:-ms-input-placeholder {
	color: rgba(41, 32, 25, .45);
}
.form-field__box--guest {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	padding-left: 58px;
}
.form-field__box--guest input {
	width: 60px;
	padding: 0;
	text-align: center;
}
.reservation-form__minus,
.reservation-form__plus {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 56px;
	border: none;
	outline: none;
	background: transparent;
	font: 400 24px/1 'Inter', Arial, sans-serif;
	color: #292019;
	cursor: pointer;
}
.form-check {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin-top: 8px;
	margin-bottom: 28px;
	font: 400 14px/1.35 'Inter', Arial, sans-serif;
	color: #292019;
}
.form-check input {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	margin: 0;
	accent-color: #222b20;
	cursor: pointer;
}
.form-check a {
	color: #292019;
	text-decoration: underline;
}
.popup__button {
	width: 100%;
	min-height: 64px;
	border-radius: 8px;
	background: #222b20;
	border-color: #222b20;
	font-size: 31px;
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
}
.popup__button:hover {
	background: transparent;
	color: #222b20;
}
.popup-thanks {
	max-width: 482px;
	padding: 50px 34px 34px;
	border-radius: 8px;
	background: #cdbdaa url('i/bg.jpg') center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	text-align: center;
}
.popup-thanks .popup__close {
	top: 18px;
	right: 18px;
	width: 14px;
	height: 14px;
}
.popup__head--thanks {
	margin-bottom: 64px;
	font-size: 42px;
	text-transform: none;
}
.popup__head--thanks::after {
	top: calc(100% + 12px);
	width: 250px;
}
.popup-thanks__icon {
	width: 110px;
	height: 110px;
	margin: 0 auto 34px;
	background: url('i/bg-icon-thank-you.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.popup-thanks__text {
	margin-bottom: 38px;
	font-size: 24px;
	line-height: 1.2;
	color: #292019;
}
.popup__button--thanks {
	min-height: 34px;
	font-size: 14px;
}


@media screen and (max-width:900px) {

	.popup-reservation {
		max-width: 850px;
		padding: 70px 34px 44px;
	}
	.popup__head {
		margin-bottom: 64px;
		font-size: 42px;
	}
	.reservation-form__top {
		gap: 0 16px;
	}
	.reservation-form__top .form-field {
		width: calc(33.3% - 11px);
	}

}


@media screen and (max-width:700px) {

	.popup-overlay {
		align-items: flex-start;
		padding-top: 18px;
		padding-bottom: 18px;
	}
	.popup-reservation {
		padding: 64px 20px 30px;
		border-radius: 14px;
	}
	.popup__close {
		top: 22px;
		right: 22px;
	}
	.popup__head {
		margin-bottom: 54px;
		font-size: 36px;
	}
	.popup__head::after {
		width: 230px;
	}
	.reservation-form__top .form-field {
		width: 100%;
	}
	.form-field__box {
		height: 54px;
	}
	.form-check {
		align-items: flex-start;
		gap: 12px;
	}
	.popup__button {
		min-height: 56px;
		font-size: 25px;
	}
	.popup-thanks {
		padding: 52px 24px 34px;
	}
	.popup__head--thanks {
		font-size: 36px;
	}
	.popup-thanks__text {
		font-size: 21px;
	}

}


@media screen and (max-width:560px) {

	body {
		font-size: 16px;
	}
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.head {
		font-size: 34px;
	}
	.section-label {
		font-size: 22px;
	}

}






/* Header ----------------------------------------------------------------------------- */
.header {
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 54px;
	padding-bottom: 20px;
	z-index: 50;
}
.header .container {
	max-width: 1500px;
}
.logo {
	display: block;
	width: 193px;
	height: 125px;
	background: url('i/bg-logo.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	text-decoration: none;
	outline: none;
}
.nav--header {
	margin: 0 auto;
	padding: 16px 36px 10px;
	background: rgba(90, 76, 62, .66);
	border-radius: 8px;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	list-style: none;
	gap: 32px;
}
.nav a {
	display: block;
	padding: 0 12px 6px;
	position: relative;
	font-size: 18px;
	line-height: 1.1;
	text-transform: uppercase;
	text-decoration: none;
	color: #f5eee3;
	transition: all .3s ease;
}
.nav a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: #f5eee3;
	transition: all .3s ease;
}
.nav a:hover::after,
.nav a.active::after {
	width: 100%;
}
.nav a:hover {
	color: #fff;
}
.header__right {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
	align-items: center;
	gap: 26px;
}
.burger {
	display: none;
	width: 46px;
	height: 46px;
	min-width: 46px;
	flex: 0 0 46px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(90, 76, 62, .66);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	position: relative;
	cursor: pointer;
	z-index: 90;
	transition: all .3s ease;
}
.burger span {
	position: absolute;
	left: 13px;
	width: 20px;
	height: 1px;
	background: #f5eee3;
	transition: all .3s ease;
}
.burger span:nth-child(1) {
	top: 16px;
}
.burger span:nth-child(2) {
	top: 23px;
}
.burger span:nth-child(3) {
	top: 30px;
}
.burger.active span:nth-child(1) {
	top: 23px;
	transform: rotate(45deg);
}
.burger.active span:nth-child(2) {
	opacity: 0;
}
.burger.active span:nth-child(3) {
	top: 23px;
	transform: rotate(-45deg);
}
.header-lang {
	position: relative;
	z-index: 60;
}
.header-lang__current {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;
	padding: 0 18px 0 0;
	border: none;
	border-radius: 0;
	outline: none;
	background: transparent;
	position: relative;
	font-size: 30px;
	line-height: 1;
	text-transform: lowercase;
	color: #404040;
	cursor: pointer;
	transition: all .3s ease;
}
.header-lang__current::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 20px;
	background: url('i/bg-icon-lang-arrow.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	transform: translateY(-50%);
	transform-origin: center;
	transition: all .3s ease;
}
.header-lang.active .header-lang__current::after {
	transform: translateY(-50%) rotate(180deg);
}
.header-lang__other {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	width: 100%;
	padding: 8px 10px;
	border-radius: 8px;
	background: rgba(245, 238, 227, .92);
	opacity: 0;
	pointer-events: none;
	transform: translateY(-6px);
	transition: all .3s ease;
}
.header-lang.active .header-lang__other {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.header-lang__item {
	display: block;
	padding: 6px 8px;
	border-radius: 8px;
	font-size: 16px;
	line-height: 1.1;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	text-transform: lowercase;
	color: var(--dark);
	transition: all .3s ease;
}
.header-lang__item:hover {
	background: rgba(45, 35, 29, .12);
}











/* Hero ----------------------------------------------------------------------------- */
.hero {
	min-height: 100vh;
	padding-top: 220px;
	padding-bottom: 100px;
	background: url('i/bg-hero.jpg') center top no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(32, 25, 21, .08), rgba(24, 19, 16, .22) 58%, rgba(24, 19, 16, .1));
}
.hero .container {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 5;
}
.hero__logo {
	width: 100%;
	max-width: 665px;
	margin: 0 auto 32px;
}
.hero__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.hero__head {
	width: 100%;
	margin-bottom: 32px;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 300;
	text-align: center;
	color: #fff;
	text-shadow: 0 1px 16px rgba(0, 0, 0, .5);
}
.hero__head span {
	display: block;
	text-transform: uppercase;
}
.button--hero {
	min-width: 286px;
	min-height: 52px;
	margin-bottom: 24px;
	background: transparent;
	border-color: rgba(255, 255, 255, .58);
	font-size: 16px;
	text-transform: uppercase;
}
.button--hero:hover {
	background: #fff7ee;
	color: var(--dark);
}
.hero__arrow {
	display: block;
	width: 44px;
	height: 44px;
	background: url('i/bg-hero-arrow.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	transition: all .3s ease;
}
.hero__arrow:hover {
	transform: translateY(6px);
}






/* About ----------------------------------------------------------------------------- */
.about {
	padding-top: 132px;
	padding-bottom: 220px;
	background: url('i/bg-about.jpg') center top no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.head--about {
	font-size: 64px;
}
.about__box {
	width: 100%;
	max-width: 850px;
	font-size: 25px;
	line-height: 1.45;
}
.about__text h2 {
	margin-bottom: 32px;
	font-size: 80px;
	font-weight: normal;
	line-height: 1.2;
}
.about__box p {
	margin-bottom: 30px;
}





	/* Experiences ----------------------------------------------------------------------------- */
.experiences {
	padding-top: 90px;
	padding-bottom: 60px;
	background: #d2c4b4;
}
.experiences__list {
	justify-content: flex-start;
	align-items: stretch;
	width: calc(100% + 80px);
	margin-left: -40px;
}
.experiences-item {
	width: calc(33.3% - 80px);
	margin: 0 40px 80px;
	padding: 24px;
	border: 1px solid rgba(0, 0, 0, .9);
	border-radius: 32px;
	background: transparent;
	font-family: 'Inter', Arial, sans-serif;
}
.experiences-item__wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	border-radius: 32px;
	box-shadow: 0 6px 22px rgba(60, 44, 32, .08);
}
.experiences-item__photo {
	width: 100%;
	margin-bottom: 8px;
	border-radius: 32px 32px 0 0;
	overflow: hidden;
}
.experiences-item__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 1.34 / 1;
	object-fit: cover;
}
.experiences-item__box {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
	flex: 1;
	width: 100%;
	padding: 22px;
}
.experiences-item__middle {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	gap: 4px;
}
.experiences-item__name {
	width: calc(100% - 100px);
	padding-top: 8px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.15;
	color: var(--dark);
}
.experiences-item__subname {
	order: 1;
	width: 100%;
	font-size: 14px;
}
.experiences-item__price {
	width: 96px;
	color: var(--brown);
	font-weight: 700;
	font-size: 25px;
	text-align: right;
}
.experiences-item__text {
	flex: 1 1 auto;
	margin-bottom: 18px;
	font-size: 14px;
	line-height: 1.35;
	color: #292019;
}
.experiences-item__text ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	list-style: none;
}
.experiences-item__text ul li {
	width: 100%;
	padding-left: 20px;
	position: relative;
}
.experiences-item__text ul li:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	width: 12px;
	height: 12px;
	background: url("i/bg-icon-round.svg") center no-repeat;
	background-size: contain;
}
.experiences-item__check {
	color: #292019;
	font-size: 15px;
}
.experiences-item__button {
	width: 100%;
	min-height: 52px;
	padding-top: 9px;
	padding-bottom: 8px;
	background: #292019;
	font-size: 16px;
}
.experiences-item__button:hover {
	background: #000;
}






/* Menu ----------------------------------------------------------------------------- */
.menu {
	padding-top: 90px;
	padding-bottom: 90px;
	background: #d2c4b4;
}
.menu__head {
	margin-bottom: 132px;
}
.menu__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	max-width: 1380px;
	margin: 0 auto;
	position: relative;
}
.menu-sidebar,
.menu-list {
	background: rgba(42, 35, 30, .96);
	border: 1px solid rgba(255, 255, 255, .13);
	box-shadow: 0 10px 26px rgba(39, 30, 24, .18);
	color: #eee3d7;
}
.menu-sidebar {
	position: sticky;
	top: 20px;
	width: 280px;
	margin-top: 20px;
	padding: 18px;
	border-radius: 24px;
}
.menu-sidebar__title {
	margin-bottom: 14px;
	font-weight: 700;
	font-size: 22px;
	color: #fff;
}
.menu-sidebar ul {
	list-style: none;
}
.menu-sidebar li {
	margin-bottom: 10px;
}
.menu-sidebar a {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	min-height: 56px;
	padding: 16px 20px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	font-family: 'Inter', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.1;
	text-decoration: none;
	color: rgba(244, 235, 224, .8);
	transition: all .3s ease;
}
.menu-sidebar a.active,
.menu-sidebar a:hover {
	background: rgba(212, 175, 55, .08);
	border: 1px solid rgba(212, 175, 55, .25);
	color: #fff;
}

.menu-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	width: calc(100% - 336px);
	padding: 25px 20px;
	border-radius: 24px;
	overflow: hidden;
	font-family: 'Inter', Arial, sans-serif;
}
.menu-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	width: calc(50% - 9px);
	margin-bottom: 18px;
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, .08);
	background: rgba(255, 255, 255, .05);
	border-radius: 24px;
	position: relative;
}
.menu-item__name {
	width: calc(100% - 88px);
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.15;
	color: #fff0e4;
}
.menu-item__price {
	width: 80px;
	font-weight: 700;
	font-size: 20px;
	color: #AC7F5E;
	text-align: right;
}
.menu-item__desc {
	margin-bottom: 14px;
	font-size: 16px;
	line-height: 1.2;
	color: #B8B0A4;
}
.menu-item__tag-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	width: 100%;
	margin-top: auto;
}
.menu-item__tag {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	min-height: 32px;
	padding: 4px 12px;
	background: rgba(255, 255, 255, .03);
	border: 1px solid rgba(255, 255, 255, .08);
	border-radius: 12px;
	font-size: 12px;
	line-height: 1.1;
	text-decoration: none;
	color: rgba(244, 235, 224, .8);
	transition: all .3s ease;
}
.menu-item__tag--preorder {
	background: rgba(212, 175, 55, .08);
	border: 1px solid rgba(212, 175, 55, .25);
	color: #fff;
}
.menu-item__button {
	display: flex;
	width: 100%;
	margin-top: 14px;
	padding: 4px 20px;
	background: rgba(255, 255, 255, .02);
	border: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	font-size: 16px;
	text-transform: none;
}
.menu-item__button:hover {
	background: #000;
	border-color: transparent;
}


.menu__dish {
	position: absolute;
	z-index: 4;
	pointer-events: none;
}
.menu__dish img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 12px 14px rgba(32, 24, 18, .32));
}
.menu__dish--1 {
	top: -18px;
	left: -230px;
	width: 230px;
}
.menu__dish--2 {
	top: 180px;
	right: -250px;
	width: 260px;
}
.menu__dish--3 {
	top: 560px;
	left: -270px;
	width: 280px;
}
.menu__dish--4 {
	top: 620px;
	right: -235px;
	width: 235px;
}






/* Gallery ----------------------------------------------------------------------------- */
.gallery {
	padding-top: 74px;
	padding-bottom: 88px;
	background: #d2c4b4;
}
.gallery .container {
	max-width: 1400px;
}
.gallery__head {
	margin-bottom: 50px;
}
.gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 32px;
	width: 100%;
	margin: 0 auto;
}
.gallery-item {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 8px 22px rgba(54, 39, 28, .14);
	aspect-ratio: 1 / 0.8;
}
.gallery-item--wide {
	grid-column: 1 / -1;
	aspect-ratio: 1 / 0.38;
}
.gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 260px;
	object-fit: cover;
}
.gallery-item:not(.gallery-item--wide) img {
	aspect-ratio: 1.18 / 1;
	min-height: 0;
}






/* FAQ ----------------------------------------------------------------------------- */
.faq {
	padding-top: 80px;
	padding-bottom: 70px;
	background: #d2c4b4;
}
.faq__head {
	margin-bottom: 80px;
}
.faq-item {
	margin-bottom: 15px;
	border: 2px solid #292019;
	background: rgba(217, 208, 197, .28);
	padding: 30px 40px;
	border-radius: 14px;
}
.faq-item__head {
	min-height: 54px;
	padding: 5px 12px 5px 104px;
	position: relative;
	color: #000;
	font-size: 36px;
	line-height: 1.25;
	cursor: pointer;
}
.faq-item__head::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 54px;
	height: 42px;
	background: url("i/bg-icon-faq-arrow.svg") center no-repeat;
	background-size: contain;
	transition: all 0.4s ease;
}
.faq-item.active .faq-item__head::before {
	transform: rotate(180deg);
}
.faq-item__body {
	max-height: 0;
	overflow: hidden;
	transition: all .3s ease;
}
.faq-item.active .faq-item__body {
	max-height: 400px;
}
.faq-item__text {
	padding: 12px 20px 0 0;
	font-size: 32px;
	line-height: 1.35;
}






/* Footer ----------------------------------------------------------------------------- */
.footer {
	padding-top: 40px;
	background: #d2c4b4;
}
.footer::before {
	content: '';
	display: block;
	width: 100%;
	max-width: 900px;
	height: 1px;
	margin: 0 auto 58px;
	background: rgba(50, 39, 31, .28);
}
.footer .container {
	max-width: 1100px;
}

.footer__brand {
	width: 100%;
	max-width: 1060px;
	margin: 0 auto 80px;
}
.footer__brand img {
	display: block;
	width: 100%;
	height: auto;
}


.footer__contact {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}
.footer__col {
	width: 50%;
	min-height: 130px;
	padding: 44px 34px 60px;
	border-right: 1px solid rgba(50, 39, 31, .36);
}
.footer__col:first-child {
	padding-left: 0;
}
.footer__col:last-child {
	border-right: none;
	padding-right: 0;
}
.footer__title {
	margin-bottom: 62px;
	font-size: 24px;
	text-transform: uppercase;
}
.footer__contact-item {
	margin-bottom: 50px;
	padding-left: 60px;
	position: relative;
	font-size: 22px;
}
.footer__contact-item::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	width: 30px;
	height: 30px;
	background: url("i/bg-icon-phone.svg") center no-repeat;
	background-size: contain;
}
.footer__contact-item--mail::before {
	background-image: url("i/bg-icon-mail.svg");
}
.footer__contact-item--address::before {
	background-image: url("i/bg-icon-address.svg");
}
.footer__contact-name {
	text-transform: uppercase;
}
.footer__link,
.footer__text {
	display: block;
	margin-bottom: 14px;
	color: var(--dark);
	text-decoration: none;
}
.footer__link:hover {
	text-decoration: underline;
}



.footer__bottom {
	padding-top: 15px;
	padding-bottom: 15px;
	background: #292019;
	color: #fff;
}
.footer__bottom .container {
	align-items: center;
}
.footer__logo {
	display: block;
	width: 95px;
}
.footer__logo img {
	display: block;
	width: 100%;
	height: auto;
}
.footer__copyright {
	font-size: 16px;
}
.footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 32px;
	list-style: none;
}
.footer__nav ul li {
	position: relative;
}
.footer__nav ul li a {
	display: block;
	color: #fff;
	font-size: 16px;
	line-height: 1.2;
	text-decoration: none;
}
.footer__nav ul li a:hover {
	text-decoration: underline;
}








@media screen and (max-width:1190px) {

	.nav ul {
		gap: 18px;
	}
	.nav--header {
		padding-left: 20px;
		padding-right: 20px;
	}
	.menu__dish--1 {
		left: -150px;
		width: 190px;
	}
	.menu__dish--2 {
		right: -145px;
		width: 210px;
	}
	.menu__dish--3 {
		left: -155px;
		width: 210px;
	}
	.menu__dish--4 {
		right: -135px;
		width: 190px;
	}

}


@media screen and (max-width:980px) {

	.header {
		padding-top: 18px;
	}
	.header .container {
		justify-content: center;
		gap: 18px;
	}
	.logo {
		width: 150px;
		height: 97px;
	}
	.nav--header {
		order: 3;
		width: 100%;
	}
	.nav ul {
		gap: 12px 20px;
	}
	.hero {
		min-height: 700px;
		height: auto;
		padding-top: 230px;
	}
	.experiences-item {
		width: calc(50% - 34px);
	}
	.menu__wrap {
		max-width: 720px;
	}
	.menu__dish {
		display: none;
	}

}


@media screen and (max-width:760px) {

	.header {
		position: absolute;
	}
	.nav--header {
		padding: 12px 14px 10px;
		border-radius: 12px;
	}
	.nav ul {
		gap: 10px 14px;
	}
	.nav li {
		width: calc(33.3% - 10px);
		text-align: center;
	}
	.nav a {
		font-size: 12px;
	}
	.brand__name {
		font-size: 48px;
	}
	.brand__mark {
		font-size: 46px;
	}
	.brand__mount {
		width: 250px;
		height: 72px;
	}
	.brand__desc {
		letter-spacing: 5px;
		font-size: 13px;
	}
	.hero {
		min-height: 650px;
		padding-top: 235px;
		padding-bottom: 70px;
	}
	.hero__text {
		font-size: 18px;
	}
	.hero__logo {
		max-width: 320px;
		margin-bottom: 28px;
	}
	.hero__head {
		font-size: 34px;
	}
	.about {
		min-height: 640px;
		padding-top: 74px;
		padding-bottom: 70px;
		background-position: 56% top;
	}
	.about__box {
		max-width: 490px;
		margin-left: 0;
	}
	.about__label {
		padding-right: 0;
		text-align: left;
	}
	.about__head {
		font-size: 40px;
	}
	.about__text {
		font-size: 15px;
	}
	.experiences {
		padding-top: 70px;
	}
	.experiences__list {
		width: calc(100% + 24px);
		margin-left: -12px;
		margin-right: 0;
	}
	.experiences-item {
		width: calc(50% - 24px);
		margin-left: 12px;
		margin-right: 12px;
	}
	.menu-sidebar {
		display: none;
	}
	.menu-list {
		width: 100%;
		border-radius: 10px;
	}
	.gallery__grid {
		gap: 16px;
	}
	.gallery-item {
		border-radius: 14px;
	}
	.footer__col {
		width: 100%;
		min-height: 0;
		margin-bottom: 30px;
		padding: 0;
		border-right: none;
	}
	.footer__col--nav {
		margin-bottom: 0;
	}

}


@media screen and (max-width:560px) {

	.header__button {
		min-width: 106px;
		min-height: 34px;
		font-size: 12px;
	}
	.logo {
		width: 116px;
		height: 75px;
	}
	.header__right {
		gap: 10px;
	}
	.header-lang__current {
		min-width: 64px;
		min-height: 34px;
		padding: 8px 28px 7px 14px;
		font-size: 12px;
	}
	.header-lang__current::after {
		right: 12px;
	}
	.header-lang__item {
		font-size: 12px;
	}
	.hero {
		min-height: 620px;
		padding-top: 235px;
	}
	.hero__logo {
		max-width: 270px;
	}
	.hero__head {
		font-size: 30px;
	}
	.brand__name {
		font-size: 32px;
	}
	.brand__desc {
		letter-spacing: 3px;
	}
	.brand__mount {
		width: 210px;
		height: 62px;
	}
	.about {
		background-position: 49% top;
	}
	.about__box {
		padding: 22px 18px;
		background: rgba(210, 196, 180, .68);
		-webkit-backdrop-filter: blur(2px);
		backdrop-filter: blur(2px);
	}
	.about__label {
		margin-bottom: 18px;
	}
	.about__head {
		margin-bottom: 22px;
		font-size: 32px;
	}
	.experiences-item {
		width: calc(100% - 24px);
	}
	.menu-list {
		display: block;
		min-height: 0;
	}
	.menu-item {
		min-height: 0;
		border-right: none;
	}
	.gallery__grid {
		grid-template-columns: 1fr;
	}
	.gallery-item--wide {
		grid-column: auto;
	}
	.gallery-item img,
	.gallery-item:not(.gallery-item--wide) img {
		aspect-ratio: 1.25 / 1;
		min-height: 0;
	}
	.faq-item__head {
		padding-left: 42px;
		padding-right: 42px;
		font-size: 15px;
	}
	.faq-item__head::before {
		left: 14px;
	}
	.faq-item__head::after {
		right: 16px;
	}
	.faq-item__text {
		padding-left: 42px;
		padding-right: 42px;
	}
	.footer::before {
		margin-bottom: 38px;
	}
	.brand--footer {
		margin-bottom: 42px;
	}
	.footer__col--nav {
		grid-template-columns: 1fr;
	}

}

/* Responsive ----------------------------------------------------------------------------- */
@media screen and (max-width:1500px) {

	.container {
		max-width: 1200px;
		padding-left: 24px;
		padding-right: 24px;
	}
	.head {
		margin-bottom: 28px;
		font-size: 68px;
	}
	.head span {
		padding-left: 30px;
		padding-right: 30px;
	}
	.subhead {
		margin-bottom: 58px;
		font-size: 28px;
	}
	.header {
		padding-top: 34px;
	}
	.header .container {
		max-width: 1260px;
	}
	.logo {
		width: 154px;
		height: 100px;
	}
	.nav--header {
		padding: 13px 28px 9px;
	}
	.nav ul {
		gap: 22px;
	}
	.nav a {
		padding-left: 8px;
		padding-right: 8px;
		font-size: 16px;
	}
	.header-lang__current {
		font-size: 24px;
	}
	.hero {
		padding-top: 180px;
		padding-bottom: 80px;
	}
	.hero__logo {
		max-width: 520px;
	}
	.hero__head {
		font-size: 36px;
	}
	.about {
		padding-top: 96px;
		padding-bottom: 150px;
	}
	.head--about {
		font-size: 52px;
	}
	.about__box {
		max-width: 720px;
		padding: 20px 16px;
		background: rgba(210, 196, 180, .68);
	}
	.about__text {
		font-size: 21px;
	}
	.about__text h2 {
		font-size: 62px;
	}
	.experiences {
		padding-top: 74px;
	}
	.experiences__list {
		width: calc(100% + 36px);
		margin-left: -18px;
	}
	.experiences-item {
		width: calc(33.3% - 36px);
		margin-left: 18px;
		margin-right: 18px;
		padding: 18px;
	}
	.experiences-item__name {
		font-size: 19px;
	}
	.experiences-item__price {
		font-size: 22px;
	}
	.menu {
		padding-top: 74px;
	}
	.menu__wrap {
		max-width: 1160px;
	}
	.menu-sidebar {
		width: 240px;
	}
	.menu-list {
		width: calc(100% - 280px);
	}
	.menu-item__name {
		font-size: 19px;
	}
	.menu-item__price {
		font-size: 18px;
	}
	.faq__head {
		margin-bottom: 58px;
	}
	.faq-item {
		padding: 24px 30px;
	}
	.faq-item__head {
		padding-left: 78px;
		font-size: 28px;
	}
	.faq-item__head::before {
		width: 42px;
		height: 34px;
	}
	.faq-item__text {
		font-size: 24px;
	}
	.footer__brand {
		max-width: 820px;
	}

}


@media screen and (max-width:1400px) {

	.about {
		background-position: 62% top;
	}

}


@media screen and (max-width:1200px) {

	.container {
		max-width: 960px;
	}
	.head {
		font-size: 56px;
	}
	.subhead {
		margin-bottom: 44px;
		font-size: 22px;
	}
	.header {
		padding-top: 24px;
	}
	.logo {
		width: 124px;
		height: 80px;
	}
	.nav--header {
		padding: 11px 20px 8px;
	}
	.nav ul {
		gap: 12px;
	}
	.nav a {
		font-size: 14px;
	}
	.header__right {
		gap: 16px;
	}
	.header-lang__current {
		min-width: 50px;
		font-size: 20px;
	}
	.button--header {
		min-width: 145px;
		font-size: 10px;
	}
	.hero {
		min-height: 720px;
		padding-top: 150px;
	}
	.hero__logo {
		max-width: 430px;
	}
	.hero__head {
		font-size: 32px;
	}
	.about {
		padding-top: 80px;
		padding-bottom: 110px;
	}
	.about__box {
		max-width: 600px;
	}
	.about__text {
		font-size: 18px;
	}
	.about__text h2 {
		font-size: 50px;
	}
	.experiences__list {
		width: calc(100% + 28px);
		margin-left: -14px;
	}
	.experiences-item {
		width: calc(50% - 28px);
		margin-left: 14px;
		margin-right: 14px;
	}
	.menu__wrap {
		max-width: 940px;
	}
	.menu-sidebar {
		width: 220px;
	}
	.menu-sidebar a {
		min-height: 48px;
		padding: 12px 14px;
		font-size: 14px;
	}
	.menu-list {
		width: calc(100% - 260px);
		padding: 18px;
	}
	.menu-item {
		padding: 16px;
	}
	.menu-item__name {
		font-size: 18px;
	}
	.gallery .container {
		max-width: 960px;
	}
	.gallery__grid {
		gap: 24px;
	}
	.faq-item__head {
		font-size: 24px;
	}
	.faq-item__text {
		font-size: 20px;
	}

}


@media screen and (max-width:900px) {

	.container {
		max-width: 760px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.head {
		font-size: 46px;
	}
	.subhead {
		font-size: 18px;
	}
	.header {
		padding-top: 18px;
	}
	.header .container {
		justify-content: center;
		gap: 16px;
	}
	.logo {
		width: 118px;
		height: 76px;
	}
	.nav--header {
		order: 3;
		width: 100%;
		max-width: 620px;
		margin-left: auto;
		margin-right: auto;
	}
	.nav ul {
		gap: 10px 18px;
	}
	.hero {
		min-height: 650px;
		height: auto;
		padding-top: 210px;
		padding-bottom: 70px;
	}
	.hero__logo {
		max-width: 360px;
		margin-bottom: 26px;
	}
	.hero__head {
		font-size: 30px;
	}
	.button--hero {
		min-width: 240px;
	}
	.about {
		padding-top: 70px;
		padding-bottom: 80px;
	}
	.about__box {
		max-width: 560px;
	}
	.about__text h2 {
		font-size: 42px;
	}
	.experiences {
		padding-top: 60px;
		padding-bottom: 40px;
	}
	.experiences__list {
		width: calc(100% + 24px);
		margin-left: -12px;
	}
	.experiences-item {
		width: calc(50% - 24px);
		margin-left: 12px;
		margin-right: 12px;
		padding: 14px;
	}
	.menu {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.menu-sidebar {
		display: block;
		position: static;
		width: 100%;
		margin-top: 0;
	}
	.menu-sidebar ul {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}
	.menu-sidebar li {
		margin-bottom: 0;
	}
	.menu-sidebar a {
		min-height: 40px;
		padding: 10px 14px;
	}
	.menu-list {
		width: 100%;
	}
	.gallery {
		padding-top: 58px;
		padding-bottom: 64px;
	}
	.gallery__grid {
		gap: 18px;
	}
	.faq {
		padding-top: 60px;
		padding-bottom: 56px;
	}
	.faq__head {
		margin-bottom: 40px;
	}
	.faq-item {
		padding: 18px 22px;
	}
	.faq-item__head {
		min-height: 42px;
		padding-left: 58px;
		font-size: 21px;
	}
	.faq-item__head::before {
		top: 7px;
		width: 34px;
		height: 28px;
	}
	.faq-item__text {
		font-size: 18px;
	}
	.footer__brand {
		max-width: 680px;
		margin-bottom: 52px;
	}
	.footer__title {
		margin-bottom: 34px;
		font-size: 19px;
	}
	.footer__contact-item {
		margin-bottom: 30px;
		font-size: 18px;
	}
	.popup-reservation {
		padding: 60px 34px 44px;
	}
	.popup__head {
		margin-bottom: 60px;
		font-size: 40px;
	}

}


@media screen and (max-width:600px) {

	body {
		font-size: 16px;
	}
	.container {
		max-width: 100%;
		padding-left: 15px;
		padding-right: 15px;
	}
	.head {
		margin-bottom: 26px;
		font-size: 36px;
	}
	.head span {
		padding: 0 18px 14px;
	}
	.subhead {
		margin-bottom: 32px;
		font-size: 16px;
	}
	.header {
		padding-top: 12px;
	}
	.header .container {
		gap: 10px;
	}
	.logo {
		width: 96px;
		height: 62px;
	}
	.header__right {
		gap: 8px;
	}
	.header-lang__current {
		min-height: 30px;
		padding-right: 18px;
		font-size: 17px;
	}
	.button--header {
		min-width: 124px;
		min-height: 30px;
		padding-left: 12px;
		padding-right: 12px;
		font-size: 9px;
	}
	.nav--header {
		padding: 10px 12px 7px;
	}
	.nav li {
		width: calc(33.3% - 12px);
		text-align: center;
	}
	.nav a {
		padding-left: 0;
		padding-right: 0;
		font-size: 12px;
	}
	.hero {
		min-height: 580px;
		padding-top: 190px;
		padding-bottom: 50px;
	}
	.hero__logo {
		max-width: 270px;
		margin-bottom: 22px;
	}
	.hero__head {
		font-size: 26px;
	}
	.button--hero {
		min-width: 220px;
		min-height: 46px;
		font-size: 14px;
	}
	.about {
		padding-top: 54px;
		padding-bottom: 62px;
	}
	.about__text {
		font-size: 16px;
	}
	.about__text h2 {
		font-size: 34px;
	}
	.experiences-item {
		width: calc(100% - 24px);
	}
	.experiences-item__name {
		font-size: 18px;
	}
	.menu-sidebar__title {
		font-size: 18px;
	}
	.menu-list {
		display: block;
		padding: 14px;
	}
	.menu-item {
		width: 100%;
		min-height: 0;
	}
	.menu-item__name {
		font-size: 17px;
	}
	.menu-item__desc {
		font-size: 14px;
	}
	.gallery__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.gallery-item,
	.gallery-item--wide {
		grid-column: auto;
		aspect-ratio: 1.22 / 1;
	}
	.faq-item {
		padding: 14px 16px;
	}
	.faq-item__head {
		padding-left: 42px;
		font-size: 17px;
	}
	.faq-item__head::before {
		width: 26px;
		height: 22px;
	}
	.faq-item__text {
		font-size: 16px;
	}
	.footer__col {
		width: 100%;
		min-height: 0;
		padding: 0;
		border-right: none;
	}
	.footer__bottom .container {
		gap: 14px;
		justify-content: center;
		text-align: center;
	}
	.footer__nav ul {
		justify-content: center;
		gap: 14px;
	}
	.popup-overlay {
		align-items: flex-start;
		padding-top: 15px;
		padding-bottom: 15px;
	}
	.popup-reservation {
		padding: 56px 18px 28px;
		border-radius: 14px;
	}
	.popup__close {
		top: 22px;
		right: 22px;
		width: 20px;
		height: 20px;
	}
	.popup__head {
		margin-bottom: 48px;
		font-size: 34px;
	}
	.popup__head::after {
		width: 220px;
	}
	.reservation-form__top .form-field {
		width: 100%;
	}
	.form-field__box {
		height: 52px;
	}
	.form-check {
		align-items: flex-start;
		gap: 12px;
	}
	.popup__button {
		min-height: 54px;
		font-size: 24px;
	}
	.popup-thanks {
		padding: 50px 24px 32px;
	}
	.popup__head--thanks {
		font-size: 34px;
	}
	.popup-thanks__icon {
		width: 90px;
		height: 90px;
	}
	.popup-thanks__text {
		font-size: 20px;
	}

}


@media screen and (max-width:450px) {

	.head {
		font-size: 31px;
	}
	.header .container {
		align-items: flex-start;
	}
	.logo {
		width: 76px;
		height: 49px;
	}
	.header__right {
		width: auto;
		gap: 6px;
		justify-content: flex-end;
	}
	.header-lang__current {
		min-width: 0;
		min-height: 28px;
		padding-right: 14px;
		font-size: 15px;
	}
	.header-lang__current::after {
		right: 0;
		width: 9px;
		height: 15px;
	}
	.button--header {
		min-width: 94px;
		min-height: 28px;
		padding-left: 8px;
		padding-right: 8px;
		font-size: 8px;
	}
	.nav--header {
		margin-top: 0;
	}
	.nav ul {
		gap: 8px 12px;
	}
	.nav li {
		width: calc(50% - 8px);
	}
	.hero {
		min-height: 540px;
		padding-top: 185px;
	}
	.hero__logo {
		max-width: 230px;
	}
	.hero__head {
		font-size: 24px;
	}
	.hero__arrow {
		width: 36px;
		height: 36px;
	}
	.about__text h2 {
		font-size: 30px;
	}
	.experiences-item__middle {
		display: block;
	}
	.experiences-item__name {
		width: 100%;
	}
	.experiences-item__price {
		width: 100%;
		padding-top: 6px;
		text-align: left;
	}
	.menu-sidebar a {
		min-height: 36px;
		padding: 9px 12px;
		font-size: 13px;
	}
	.menu-item__name {
		width: 100%;
	}
	.menu-item__price {
		width: 100%;
		margin-bottom: 10px;
		text-align: left;
	}
	.popup-reservation {
		padding-left: 14px;
		padding-right: 14px;
	}
	.popup__head {
		font-size: 30px;
	}
	.popup__head::after {
		width: 190px;
	}
	.form-field {
		margin-bottom: 18px;
	}
	.form-field__name {
		font-size: 12px;
	}
	.form-field input {
		padding-left: 50px;
		font-size: 14px;
	}
	.form-field__box::before {
		left: 15px;
	}
	.form-field__box--guest {
		padding-left: 50px;
	}
	.popup__button {
		font-size: 21px;
	}
	.popup-thanks {
		padding-left: 18px;
		padding-right: 18px;
	}
	.popup__head--thanks {
		font-size: 30px;
	}
	.popup-thanks__text {
		font-size: 18px;
	}

}


/* Mobile Menu ----------------------------------------------------------------------------- */
body.menu-open {
	overflow: hidden;
}

@media screen and (max-width:900px) {

	.header .container {
		justify-content: space-between;
	}
	.burger {
		display: block;
	}
	.nav--header {
		position: fixed;
		inset: 0;
		z-index: 80;
		width: 100%;
		max-width: none;
		min-height: 100vh;
		margin: 0;
		padding: 120px 24px 40px;
		border-radius: 0;
		background: rgba(32, 25, 21, .96);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-16px);
		transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
	}
	.nav--header.active {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}
	.nav--header ul {
		width: 100%;
		min-height: calc(100vh - 160px);
		display: flex;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 24px;
	}
	.nav--header li {
		width: auto;
		text-align: center;
	}
	.nav--header a {
		padding: 0 12px 8px;
		font-size: 34px;
	}

}


@media screen and (max-width:600px) {

	.burger {
		width: 40px;
		height: 40px;
		min-width: 40px;
		flex-basis: 40px;
	}
	.burger span {
		left: 11px;
		width: 18px;
	}
	.burger span:nth-child(1) {
		top: 14px;
	}
	.burger span:nth-child(2) {
		top: 20px;
	}
	.burger span:nth-child(3) {
		top: 26px;
	}
	.burger.active span:nth-child(1),
	.burger.active span:nth-child(3) {
		top: 20px;
	}
	.header-lang__current::after {
		right: 0;
	}
	.nav--header {
		padding: 98px 18px 34px;
	}
	.nav--header ul {
		min-height: calc(100vh - 132px);
		gap: 20px;
	}
	.nav--header a {
		font-size: 28px;
	}

}


@media screen and (max-width:450px) {

	.burger {
		width: 36px;
		height: 36px;
		min-width: 36px;
		flex-basis: 36px;
	}
	.burger span {
		left: 10px;
		width: 16px;
	}
	.nav--header {
		padding-top: 92px;
	}
	.nav--header ul {
		gap: 18px;
	}
	.nav--header a {
		font-size: 25px;
	}

}
