.siteHeader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	transition: .35s ease;
	border-bottom: 1px solid rgba(255, 255, 255, .12)
}
.siteHeader.scrolled, .siteHeader.open {
	background: rgba(21, 25, 31, .96);
	backdrop-filter: blur(16px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .16)
}
.headerInner {
	width: min(1440px, calc(100% - 48px));
	height: 88px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px
}
.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #fff;
	flex-shrink: 0
}
/*.brandMark {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, var(--gold), var(--gold2));
	color: #171b20;
	font-family: var(--eng);
	font-size: 24px;
	font-weight: 700;
	clip-path: polygon(0 0, 100% 0, 100% 78%, 78% 100%, 0 100%)
}*/

.brandMark{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.brandMark img{
    width:100%;
    height:100%;
    display:block;
    object-fit:contain;
}

.brandText {
	padding-top: 10px;
}

.brandText strong {
	display: block;
	font-size: 21px;
	letter-spacing: .08em;
	line-height: 1.2
}
.brandText small {
	display: block;
	font-family: var(--eng);
	letter-spacing: .18em;
	color: rgba(255, 255, 255, .62);
	font-size: 12px;
	margin-top: 4px
}
.mainNav>ul {
	display: flex;
	align-items: center;
	gap: 4px
}
.mainNav>ul>li {
	position: relative
}
.mainNav>ul>li>a {
	display: block;
	color: #fff;
	padding: 31px 15px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .05em;
	transition: .25s
}
.mainNav>ul>li>a:hover, .mainNav>ul>li>a.active {
	color: var(--gold)
}
.hasMenu>a:after {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 1px solid currentColor;
	border-bottom: 1px solid currentColor;
	transform: rotate(45deg);
	margin-left: 8px;
	vertical-align: 3px
}
.megaMenu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 18px);
	width: 520px;
	background: rgba(24, 29, 35, .98);
	border: 1px solid rgba(255, 255, 255, .12);
	padding: 22px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	opacity: 0;
	visibility: hidden;
	transition: .28s ease;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .3)
}
.hasMenu:hover .megaMenu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0)
}
.megaMenu a {
	color: #fff;
	padding: 12px 14px;
	background: rgba(255, 255, 255, .045);
	transition: .25s
}
.megaMenu a:hover {
	background: var(--gold);
	color: #1b1f24
}
.megaMenu span {
	font-family: var(--eng);
	color: var(--gold);
	margin-right: 10px
}
.megaMenu a:hover span {
	color: #1b1f24
}
.headerAction {
	display: flex;
	align-items: center;
	gap: 10px
}
.telLink {
	color: #fff;
	font-family: var(--eng);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .05em
}
.lineBtn {
	height: 42px;
	display: grid;
	place-items: center;
	background: rgba(214, 177, 108, .16);
	border: 1px solid rgba(214, 177, 108, .45);
	color: var(--gold);
	padding: 0 16px;
	font-weight: 700
}
.lineBtn:hover {
	background: var(--gold);
	color: #1b1f24
}
.menuBtn {
	display: none;
	width: 48px;
	height: 48px;
	border: 0;
	background: rgba(255, 255, 255, .08);
	position: relative
}
.menuBtn span {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	margin: 5px auto;
	transition: .3s
}
.menuBtn.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg)
}
.menuBtn.active span:nth-child(2) {
	opacity: 0
}
.menuBtn.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg)
}