:root {
	--bvt-black: #1f2426;
	--bvt-black-deep: #0d1011;
	--bvt-gold: #c99a3a;
	--bvt-bronze: #8a6728;
	--bvt-gold-light: #e7c35f;
	--bvt-ivory: #f7f1e5;
	--bvt-white: #ffffff;
	--bvt-text: #303437;
	--bvt-muted: #837a6d;
	--bvt-border: rgba(201, 154, 58, 0.26);
	--bvt-container: 1200px;
	--bvt-header-height: 78px;
	--bvt-radius: 6px;
	--bvt-shadow: 0 16px 38px rgba(7, 9, 10, 0.13);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bvt-ivory);
	color: var(--bvt-text);
	font-family: "Be Vietnam Pro", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.bvt-menu-open {
	overflow: hidden;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

.screen-reader-text,
.bvt-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bvt-skip-link:focus {
	z-index: 99999;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 12px 18px;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--bvt-white);
	color: var(--bvt-black);
	border-radius: 4px;
}

.bvt-container {
	width: min(calc(100% - 40px), var(--bvt-container));
	margin-inline: auto;
}

.bvt-site-main {
	min-height: 45vh;
	background: var(--bvt-white);
}

.bvt-content-shell {
	padding-block: 72px;
}

.bvt-entry-header h1,
.bvt-empty-state h1 {
	margin: 0 0 20px;
	color: var(--bvt-black);
	font-family: "Krona One", sans-serif;
	font-size: clamp(32px, 5vw, 60px);
	line-height: 1.18;
}

.bvt-empty-state {
	padding: 56px;
	border: 1px solid var(--bvt-border);
	background: var(--bvt-ivory);
	border-radius: var(--bvt-radius);
}

/* Header */
.bvt-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	min-height: var(--bvt-header-height);
	background:
		linear-gradient(90deg, rgba(201,154,58,.08), transparent 18%, transparent 82%, rgba(201,154,58,.06)),
		var(--bvt-black-deep);
	border-bottom: 1px solid rgba(231, 195, 95, 0.14);
	color: var(--bvt-white);
}

.admin-bar .bvt-site-header {
	top: 32px;
}

.bvt-header-inner {
	min-height: var(--bvt-header-height);
	display: grid;
	grid-template-columns: minmax(255px, auto) 1fr auto;
	align-items: center;
	gap: 36px;
}

.bvt-brand,
.bvt-brand-link {
	min-width: 0;
	display: flex;
	align-items: center;
}

.bvt-brand-link {
	gap: 13px;
}

.bvt-brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.bvt-brand .custom-logo {
	width: auto;
	max-width: 290px;
	max-height: 58px;
}

.bvt-brand-mark {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	object-fit: contain;
}

.bvt-brand-name {
	color: var(--bvt-white);
	font-family: "Krona One", sans-serif;
	font-size: 15px;
	letter-spacing: 0.045em;
	line-height: 1.1;
	white-space: nowrap;
}

.bvt-primary-navigation {
	justify-self: end;
}

.bvt-menu {
	display: flex;
	align-items: center;
	gap: 38px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.bvt-menu > li {
	position: relative;
	display: flex;
	align-items: center;
}

.bvt-menu a {
	position: relative;
	display: block;
	padding: 28px 0 24px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.025em;
	text-transform: uppercase;
	transition: color .2s ease;
}

.bvt-menu > li > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 2px;
	background: var(--bvt-gold);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.bvt-menu a:hover,
.bvt-menu a:focus-visible,
.bvt-menu .current-menu-item > a,
.bvt-menu .current-menu-ancestor > a {
	color: var(--bvt-gold-light);
}

.bvt-menu > li > a:hover::after,
.bvt-menu > li > a:focus-visible::after,
.bvt-menu .current-menu-item > a::after,
.bvt-menu .current-menu-ancestor > a::after {
	transform: scaleX(1);
}

.bvt-submenu-toggle {
	display: none;
}

.bvt-menu .sub-menu {
	position: absolute;
	top: calc(100% - 4px);
	left: 50%;
	width: 330px;
	margin: 0;
	padding: 12px;
	list-style: none;
	background: var(--bvt-black-deep);
	border: 1px solid rgba(201, 154, 58, 0.24);
	border-radius: var(--bvt-radius);
	box-shadow: var(--bvt-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.bvt-menu .menu-item-has-children:hover > .sub-menu,
.bvt-menu .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.bvt-menu .sub-menu a {
	padding: 11px 13px;
	color: rgba(255,255,255,.82);
	font-size: 13px;
	font-weight: 500;
	text-transform: none;
	border-radius: 4px;
}

.bvt-menu .sub-menu a:hover,
.bvt-menu .sub-menu a:focus-visible {
	background: rgba(201, 154, 58, 0.12);
	color: var(--bvt-gold-light);
}

.bvt-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bvt-button {
	min-height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 11px 22px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .025em;
	text-transform: uppercase;
	transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.bvt-button:hover {
	transform: translateY(-2px);
}

.bvt-button-gold {
	background: linear-gradient(135deg, var(--bvt-gold-light), var(--bvt-gold) 42%, var(--bvt-bronze));
	color: var(--bvt-black-deep);
	box-shadow: 0 8px 22px rgba(201, 154, 58, 0.2);
}

.bvt-button-gold:hover,
.bvt-button-gold:focus-visible {
	background: var(--bvt-ivory);
	color: var(--bvt-black-deep);
	border-color: var(--bvt-gold);
}

.bvt-header-phone {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	color: var(--bvt-gold);
	border: 1px solid rgba(201,154,58,.38);
	border-radius: 50%;
}

.bvt-header-phone svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.bvt-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 10px;
	background: transparent;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 4px;
	cursor: pointer;
}

.bvt-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: var(--bvt-white);
	transition: transform .2s ease, opacity .2s ease;
}

.bvt-menu-backdrop {
	display: none;
	position: fixed;
	z-index: 998;
	inset: 0;
	background: rgba(0,0,0,.54);
	backdrop-filter: blur(2px);
}

/* Footer CTA */
.bvt-footer-cta {
	position: relative;
	overflow: hidden;
	padding: 54px 0;
	background:
		radial-gradient(circle at 85% 50%, rgba(201,154,58,.15), transparent 25%),
		linear-gradient(115deg, #171b1d, #090b0c);
	color: var(--bvt-white);
	border-bottom: 1px solid rgba(201,154,58,.16);
}

.bvt-footer-cta::after {
	content: "";
	position: absolute;
	top: -70px;
	right: -30px;
	width: 330px;
	height: 330px;
	border: 1px solid rgba(201,154,58,.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 34px rgba(201,154,58,.035),
		0 0 0 72px rgba(201,154,58,.025);
	pointer-events: none;
}

.bvt-footer-cta-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.35fr .65fr;
	align-items: center;
	gap: 60px;
}

.bvt-eyebrow {
	margin: 0 0 8px;
	color: var(--bvt-gold);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.bvt-footer-cta h2 {
	max-width: 760px;
	margin: 0;
	font-family: "Krona One", sans-serif;
	font-size: clamp(25px, 3vw, 38px);
	line-height: 1.3;
}

.bvt-footer-cta-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}

.bvt-cta-phone {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--bvt-white);
	font-size: 20px;
}

.bvt-circle-icon {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--bvt-gold);
	border: 1px solid rgba(201,154,58,.55);
	border-radius: 50%;
}

.bvt-circle-icon svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* Footer */
.bvt-site-footer {
	position: relative;
	background:
		linear-gradient(90deg, rgba(201,154,58,.04), transparent 28%, transparent 72%, rgba(201,154,58,.04)),
		var(--bvt-black-deep);
	color: rgba(255,255,255,.72);
}

.bvt-footer-grid {
	display: grid;
	grid-template-columns: 1.2fr .9fr .72fr 1.3fr;
	gap: 56px;
	padding-top: 64px;
	padding-bottom: 54px;
}

.bvt-footer-brand-link {
	margin-bottom: 22px;
}

.bvt-footer-brand p {
	max-width: 330px;
	margin: 0 0 22px;
	font-size: 14px;
}

.bvt-footer-column h3 {
	margin: 4px 0 20px;
	color: var(--bvt-white);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.bvt-footer-links,
.bvt-footer-contact ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bvt-footer-links li + li,
.bvt-footer-contact li + li {
	margin-top: 11px;
}

.bvt-footer-links a,
.bvt-footer-contact a {
	transition: color .2s ease;
}

.bvt-footer-links a:hover,
.bvt-footer-links a:focus-visible,
.bvt-footer-contact a:hover,
.bvt-footer-contact a:focus-visible {
	color: var(--bvt-gold-light);
}

.bvt-footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	line-height: 1.55;
}

.bvt-footer-contact svg {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	fill: var(--bvt-gold);
}

.bvt-social-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bvt-social-links a {
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--bvt-white);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 50%;
	transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.bvt-social-links a:hover,
.bvt-social-links a:focus-visible {
	color: var(--bvt-black-deep);
	background: var(--bvt-gold);
	border-color: var(--bvt-gold);
}

.bvt-social-links svg {
	width: 17px;
	height: 17px;
	fill: currentColor;
}

.bvt-zalo-link span {
	font-weight: 800;
}

.bvt-footer-bottom {
	padding: 21px 0 28px;
	border-top: 1px solid rgba(255,255,255,.09);
	text-align: center;
}

.bvt-footer-bottom p {
	margin: 0;
	color: rgba(255,255,255,.52);
	font-size: 12px;
}

.bvt-back-to-top {
	position: fixed;
	z-index: 900;
	right: 24px;
	bottom: 24px;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--bvt-black-deep);
	color: var(--bvt-gold-light);
	border: 1px solid var(--bvt-gold);
	border-radius: 50%;
	box-shadow: var(--bvt-shadow);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .2s ease;
}

.bvt-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.bvt-back-to-top:hover {
	background: var(--bvt-gold);
	color: var(--bvt-black-deep);
}

@media (max-width: 1080px) {
	.bvt-header-inner {
		grid-template-columns: 1fr auto;
		gap: 18px;
	}

	.bvt-primary-navigation {
		position: fixed;
		z-index: 999;
		top: var(--bvt-header-height);
		right: 0;
		width: min(88vw, 390px);
		height: calc(100vh - var(--bvt-header-height));
		padding: 24px;
		overflow-y: auto;
		background: #101314;
		border-left: 1px solid rgba(201,154,58,.18);
		box-shadow: -18px 0 36px rgba(0,0,0,.28);
		transform: translateX(105%);
		transition: transform .25s ease;
	}

	.admin-bar .bvt-primary-navigation {
		top: calc(var(--bvt-header-height) + 32px);
		height: calc(100vh - var(--bvt-header-height) - 32px);
	}

	body.bvt-menu-open .bvt-primary-navigation {
		transform: translateX(0);
	}

	body.bvt-menu-open .bvt-menu-backdrop {
		display: block;
	}

	.bvt-menu {
		display: block;
	}

	.bvt-menu > li {
		display: block;
		border-bottom: 1px solid rgba(255,255,255,.08);
	}

	.bvt-menu > li > a {
		padding: 17px 42px 17px 4px;
		font-size: 14px;
	}

	.bvt-menu > li > a::after {
		display: none;
	}

	.bvt-submenu-toggle {
		position: absolute;
		top: 10px;
		right: 0;
		width: 38px;
		height: 38px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background: transparent;
		color: var(--bvt-gold);
		border: 0;
		cursor: pointer;
	}

	.bvt-menu .sub-menu {
		position: static;
		width: 100%;
		display: none;
		padding: 0 0 12px 14px;
		background: transparent;
		border: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.bvt-menu .menu-item-has-children.is-open > .sub-menu {
		display: block;
	}

	.bvt-menu .sub-menu a {
		padding: 9px 10px;
	}

	.bvt-header-phone,
	.bvt-menu-toggle {
		display: inline-flex;
	}

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

	.bvt-footer-contact {
		grid-column: span 3;
	}
}

@media (max-width: 782px) {
	.admin-bar .bvt-site-header {
		top: 46px;
	}

	.admin-bar .bvt-primary-navigation {
		top: calc(var(--bvt-header-height) + 46px);
		height: calc(100vh - var(--bvt-header-height) - 46px);
	}

	.bvt-container {
		width: min(calc(100% - 28px), var(--bvt-container));
	}

	.bvt-header-cta {
		display: none;
	}

	.bvt-brand-name {
		font-size: 13px;
	}

	.bvt-brand-mark {
		width: 44px;
		height: 44px;
	}

	.bvt-footer-cta-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.bvt-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 38px 28px;
	}

	.bvt-footer-contact {
		grid-column: span 2;
	}

	.bvt-empty-state {
		padding: 32px 24px;
	}
}

@media (max-width: 540px) {
	:root {
		--bvt-header-height: 70px;
	}

	.bvt-brand-name {
		font-size: 11px;
		letter-spacing: .025em;
	}

	.bvt-brand-mark {
		width: 40px;
		height: 40px;
	}

	.bvt-header-actions {
		gap: 8px;
	}

	.bvt-header-phone,
	.bvt-menu-toggle {
		width: 40px;
		height: 40px;
	}

	.bvt-footer-cta {
		padding: 42px 0;
	}

	.bvt-footer-cta h2 {
		font-size: 25px;
	}

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

	.bvt-footer-contact {
		grid-column: auto;
	}

	.bvt-footer-bottom {
		text-align: left;
	}

	.bvt-back-to-top {
		right: 14px;
		bottom: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
