@charset "UTF-8";

@font-face {
	font-family: "larkenRegular";
	src: url("../fonts/larken-regular.otf") format("opentype");
	font-display: swap;
	font-weight: 400;
}

@font-face {
	font-family: "larkenBold";
	src: url("../fonts/larken-bold.otf") format("opentype");
	font-display: swap;
	font-weight: 700;
}

h1, h2, h3, h4, h5, h6,
.font-heading {
	font-family: 'Oswald', sans-serif !important;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #8C1C24;
}

body.single-du-an {
	background: #f7f3ef;
}

.no-scrollbar::-webkit-scrollbar {
	display: none;
}

.no-scrollbar {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

[hidden] {
	display: none !important;
}

.vmg-dropdown,
.vmg-reveal {
	transition: all 0.7s ease;
}

[data-floating-cta-panel] {
	transform-origin: top center;
}

[data-floating-cta].is-collapsed [data-floating-cta-panel] {
	opacity: 0 !important;
	pointer-events: none;
	transform: translateY(-0.75rem) scale(0.92);
}

[data-floating-cta].is-collapsed [data-floating-cta-toggle] {
	border-color: rgba(215, 176, 120, 0.5);
}

.vmg-nav-item:hover .vmg-dropdown,
.vmg-nav-item:focus-within .vmg-dropdown {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
}

.vmg-reveal {
	opacity: 0;
	transform: translateY(32px);
}

.vmg-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.vmg-site-header {
	transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.vmg-mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	border: none;
	background: transparent;
	color: #fff;
}

.vmg-mobile-backdrop {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: rgba(20, 9, 11, 0.46);
	backdrop-filter: blur(4px);
}

.vmg-mobile-panel {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	display: flex;
	flex-direction: column;
	width: min(320px, 84vw);
	padding: 20px 0 24px;
	background: linear-gradient(180deg, #5c1620 0%, #3c1218 100%);
	box-shadow: -18px 0 54px rgba(28, 10, 12, 0.36);
	transform: translateX(100%);
	transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

.vmg-mobile-panel[hidden],
.vmg-mobile-backdrop[hidden] {
	display: none !important;
}

.vmg-site-header.is-menu-open .vmg-mobile-panel {
	transform: translateX(0);
}

.vmg-mobile-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 20px;
	padding: 0 18px;
	flex-shrink: 0;
}

.vmg-mobile-panel__brand {
	display: inline-flex;
	align-items: center;
	max-width: 96px;
}

.vmg-mobile-panel__brand img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.vmg-mobile-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

/* ── Mobile Nav Area (scrollable) ── */
.vmg-mobile-panel__nav {
	flex: 1 1 auto;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	padding: 0 18px 16px;
	scrollbar-width: thin;
	scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.vmg-mobile-panel__nav::-webkit-scrollbar {
	width: 3px;
}

.vmg-mobile-panel__nav::-webkit-scrollbar-track {
	background: transparent;
}

.vmg-mobile-panel__nav::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.18);
	border-radius: 99px;
}

.vmg-mobile-panel__group {
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.vmg-mobile-panel__link,
.vmg-mobile-panel__child,
.vmg-mobile-panel__cta {
	text-decoration: none;
}

/* ── Top-level link ── */
.vmg-mobile-panel__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 4px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	position: relative;
	transition: color 0.2s ease;
}

.vmg-mobile-panel__link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #d7b078;
	transition: width 0.25s ease;
}

.vmg-mobile-panel__link:hover,
.vmg-mobile-panel__link.is-active {
	color: #f4d7a2;
}

.vmg-mobile-panel__link:hover::after,
.vmg-mobile-panel__link.is-active::after {
	width: 100%;
}

/* Arrow icon on links with sub */
.vmg-mobile-panel__toggle-icon {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: rgba(255,255,255,0.45);
	transition: transform 0.25s ease, color 0.2s ease;
}

.vmg-mobile-panel__group.is-open .vmg-mobile-panel__toggle-icon {
	transform: rotate(180deg);
	color: #d7b078;
}

/* ── Accordion children ── */
.vmg-mobile-panel__children {
	display: grid;
	gap: 0;
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1), padding 0.25s ease;
}

.vmg-mobile-panel__group.is-open .vmg-mobile-panel__children {
	max-height: 600px;
	padding: 6px 0 12px 12px;
}

/* ── Child link ── */
.vmg-mobile-panel__child {
	display: block;
	padding: 10px 4px;
	color: rgba(255, 242, 231, 0.6);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: color 0.2s ease, padding-left 0.2s ease;
}

.vmg-mobile-panel__child:hover {
	color: #f4d7a2;
	padding-left: 8px;
}

.vmg-mobile-panel__child:last-child {
	border-bottom: none;
}

/* ── Footer ── */
.vmg-mobile-panel__footer {
	margin-top: 0;
	padding: 18px 18px 0;
	flex-shrink: 0;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.vmg-mobile-panel__cta {
	display: inline-flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	border: 1px solid #d7b078;
	padding: 14px 16px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f4d7a2;
	transition: background 0.2s ease;
}

.vmg-mobile-panel__cta:hover {
	background: rgba(215, 176, 120, 0.12);
}

body.vmg-menu-open {
	overflow: hidden !important;
	touch-action: none;
}

.vmg-post-card-media {
	aspect-ratio: 3 / 2;
}

.vmg-pagination {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}

.vmg-pagination .page-numbers {
	display: inline-flex;
	min-width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border: 1px solid #e4d7ca;
	border-radius: 999px;
	background: #fff;
	padding: 0 1rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: #5c1c21;
	transition: all 0.25s ease;
}

.vmg-pagination .page-numbers.current {
	border-color: #7f1f2a;
	background: #7f1f2a;
	color: #f4d7a2;
	box-shadow: 0 16px 32px rgba(95, 29, 35, 0.16);
}

.vmg-pagination a.page-numbers:hover {
	border-color: #d7b078;
	background: #fff8f2;
	color: #7f1f2a;
}

.vmg-pagination .page-numbers.dots {
	min-width: auto;
	border-color: transparent;
	background: transparent;
	padding: 0;
	color: #9d7d61;
}

.vmg-post-card-media > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vmg-project-results.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.vmg-footer {
	background: linear-gradient(180deg, #fbf7f2 0%, #f7f1ea 100%);
	border-top: 1px solid #eadfd5;
}

.vmg-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 64px 24px 28px;
}

.vmg-footer__shell {
	border: 1px solid #eadfd5;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(12px);
	box-shadow: 0 24px 60px rgba(67, 38, 28, 0.08);
	overflow: hidden;
}

.vmg-footer__grid {
	display: grid;
	gap: 40px;
	padding: 38px 40px 30px;
}

.vmg-footer__brand-column,
.vmg-footer__column {
	min-width: 0;
}

.vmg-footer__brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
}

.vmg-footer__brand-mark {
	display: inline-flex;
	width: 52px;
	height: 52px;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #7f1f2a;
	box-shadow: 0 14px 32px rgba(105, 31, 40, 0.18);
	padding: 10px;
}

.vmg-footer__brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.vmg-footer__brand-text {
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #5c1c21;
}

.vmg-footer__description {
	max-width: 360px;
	margin: 18px 0 0;
	font-size: 0.975rem;
	line-height: 1.9;
	color: #6f6258;
}

.vmg-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

.vmg-footer__social {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid #e8dbcf;
	background: #fff;
	color: #5c1c21;
	text-decoration: none;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.vmg-footer__social span {
	width: 16px;
	height: 16px;
	display: inline-flex;
}

.vmg-footer__social:hover {
	transform: translateY(-2px);
}

.vmg-footer__social.is-facebook:hover {
	background: #1877f2;
	border-color: #1877f2;
	color: #fff;
}

.vmg-footer__social.is-youtube:hover {
	background: #ff0000;
	border-color: #ff0000;
	color: #fff;
}

.vmg-footer__social.is-zalo:hover {
	background: #0068ff;
	border-color: #0068ff;
	color: #fff;
}

.vmg-footer__eyebrow {
	margin: 0 0 16px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #9c7e64;
}

.vmg-footer__links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vmg-footer__links li + li {
	margin-top: 12px;
}

.vmg-footer__links a,
.vmg-footer__contact-list a {
	text-decoration: none;
	color: #4f3a33;
	font-weight: 600;
}

.vmg-footer__links a:hover,
.vmg-footer__contact-list a:hover {
	color: #5c1c21;
}

.vmg-footer__contact-list {
	display: grid;
	gap: 18px;
	color: #6f6258;
	font-size: 0.95rem;
	line-height: 1.7;
}

.vmg-footer__meta-label {
	display: block;
	margin-bottom: 4px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #b08a68;
}

.vmg-footer__contact-list p {
	margin: 0;
	font-weight: 600;
	color: #3f2923;
}

.vmg-footer__hours {
	border: 1px solid #eadfd4;
	border-radius: 24px;
	background: #fff;
	padding: 18px 18px 16px;
	box-shadow: 0 12px 28px rgba(77, 43, 28, 0.05);
}

.vmg-footer__hours-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 0.92rem;
	color: #6f6258;
}

.vmg-footer__hours-row + .vmg-footer__hours-row {
	margin-top: 10px;
}

.vmg-footer__hours-row strong {
	color: #3f2923;
	font-weight: 700;
}

.vmg-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 18px 40px 22px;
	border-top: 1px solid #eadfd5;
	background: rgba(255, 255, 255, 0.72);
	font-size: 0.9rem;
	color: #7a6c63;
}

.vmg-footer__bottom p {
	margin: 0;
}

.vmg-project-card {
	height: 100%;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 20px 54px rgba(45, 24, 18, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vmg-project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 64px rgba(45, 24, 18, 0.12);
}

.vmg-project-card__link {
	display: block;
	text-decoration: none;
}

.vmg-project-card__media {
	position: relative;
	aspect-ratio: 16 / 11;
	background: #efe4d9;
	overflow: hidden;
}

.vmg-project-card__media > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vmg-project-card__overlay {
	position: absolute;
	inset: auto 0 0;
	height: 110px;
	background: linear-gradient(180deg, rgba(31, 14, 12, 0) 0%, rgba(31, 14, 12, 0.58) 100%);
}

.vmg-project-card__topbar {
	position: absolute;
	inset: 18px 18px auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.vmg-project-card__badge,
.vmg-project-card__status {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 8px 12px 7px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.vmg-project-card__badge {
	background: rgba(255, 255, 255, 0.94);
	color: #5c1c21;
	box-shadow: 0 8px 20px rgba(34, 17, 14, 0.12);
}

.vmg-project-card__status {
	background: rgba(94, 29, 35, 0.88);
	color: #f4d7a2;
}

.vmg-project-card__body {
	padding: 28px 28px 26px;
}

.vmg-project-card__head {
	display: grid;
	gap: 12px;
}

.vmg-project-card__title {
	margin: 0;
	font-size: 2rem;
	font-weight: 700;
	font-style: italic;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #2f1d18;
}

.vmg-project-card__title a {
	color: inherit;
	text-decoration: none;
}

.vmg-project-card__location {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #78695f;
}

.vmg-project-card__location-icon {
	width: 16px;
	height: 16px;
	margin-top: 3px;
	flex: 0 0 auto;
	color: #c99b5f;
}

.vmg-project-card__excerpt {
	margin: 0;
	min-height: 5.6rem;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 0.93rem;
	line-height: 1.85;
	color: #6d6156;
}

.vmg-project-card__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 20px;
}

.vmg-project-card__meta-item {
	border-radius: 20px;
	background: #faf6f1;
	padding: 16px 16px 14px;
}

.vmg-project-card__meta-label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #9d7d61;
}

.vmg-project-card__meta-item strong {
	font-size: 0.95rem;
	color: #2f1d18;
}

.vmg-project-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 22px;
}

.vmg-project-card__primary,
.vmg-project-card__secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.vmg-project-card__primary {
	border-radius: 999px;
	padding: 14px 18px;
	background: #7f1f2a;
	color: #f4d7a2;
}

.vmg-project-card__primary:hover {
	background: #6a1822;
}

.vmg-project-card__secondary {
	color: #5e1d23;
}

.vmg-project-card__secondary:hover {
	color: #7f1f2a;
}

.vmg-project-card__action-icon {
	width: 16px;
	height: 16px;
	display: inline-flex;
}

.project-filter.is-active {
	background: #c99b5f;
	color: #1f130d;
}

.project-filter:not(.is-active) {
	background: rgba(83, 64, 55, 0.08);
	color: rgba(53, 48, 44, 0.72);
}

.vmg-prose > * + * {
	margin-top: 1.25rem;
}

.vmg-prose h2,
.vmg-prose h3,
.vmg-prose h4 {
	color: #171411;
	font-style: italic;
	font-weight: 700;
	line-height: 1.05;
}

.vmg-prose img {
	border-radius: 2rem;
	margin-top: 2rem;
}

.vmg-featured-projects-swiper .swiper-slide {
	height: auto;
}

.vmg-featured-projects-swiper .swiper-slide > article {
	height: 100%;
}

.vmg-featured-card {
	height: 100%;
	background: linear-gradient(135deg, #fffdfb 0%, #fff 100%);
	box-shadow: 0 28px 70px rgba(70, 39, 29, 0.12);
}

.vmg-featured-card__layout {
	display: grid;
	height: 100%;
}

.vmg-featured-card__media {
	position: relative;
	min-height: 320px;
	overflow: hidden;
	background: #e7ddd1;
}

.vmg-featured-card__media > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vmg-featured-card__content {
	min-width: 0;
	position: relative;
	background:
		radial-gradient(circle at top right, rgba(215, 176, 120, 0.12), transparent 34%),
		linear-gradient(180deg, rgba(255, 252, 247, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.vmg-featured-card__badge {
	box-shadow: 0 12px 28px rgba(95, 29, 35, 0.16);
}

.vmg-featured-card__title {
	letter-spacing: -0.04em;
}

.vmg-featured-card__location {
	color: #8c7767;
}

.vmg-featured-card__excerpt {
	max-width: 34ch;
}

.vmg-featured-card__stats {
	margin-top: 0.25rem;
}

.vmg-featured-card__stat {
	border: 1px solid rgba(196, 174, 153, 0.22);
	background: linear-gradient(180deg, #fdf9f5 0%, #faf5ef 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.vmg-featured-card__actions {
	border-top: 1px solid rgba(139, 113, 89, 0.14);
	padding-top: 1.25rem;
}

.vmg-featured-card__primary {
	box-shadow: 0 16px 32px rgba(95, 29, 35, 0.14);
}

.vmg-featured-card__secondary {
	position: relative;
	color: #5e1d23;
}

.vmg-featured-card__secondary::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.35rem;
	width: 100%;
	height: 1px;
	background: rgba(94, 29, 35, 0.2);
}

.vmg-featured-card:hover .vmg-featured-card__media > img {
	transform: scale(1.04);
}

.vmg-featured-card:hover .vmg-featured-card__primary {
	background: #6b1820;
}

.vmg-featured-carousel {
	position: relative;
}

.vmg-featured-pagination {
	position: absolute;
	left: auto !important;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 8;
	width: auto !important;
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem;
}

.vmg-featured-pagination .swiper-pagination-bullet {
	width: 0.625rem;
	height: 0.625rem;
	margin: 0 !important;
	border: 1px solid rgba(92, 28, 33, 0.28);
	background: rgba(92, 28, 33, 0.16);
	opacity: 1;
}

.vmg-featured-pagination .swiper-pagination-bullet-active {
	background: #d7b078;
	border-color: #d7b078;
	transform: scale(1.08);
}

.vmg-featured-section .swiper-slide {
	height: auto;
	opacity: 1;
}

.vmg-featured-section .swiper-slide > article {
	height: 100%;
}

.vmg-featured-nav {
	position: absolute;
	top: 50%;
	z-index: 8;
	transform: translateY(-50%);
	border-color: rgba(92, 28, 33, 0.14) !important;
	background: rgba(255, 248, 242, 0.96) !important;
	color: #5c1c21 !important;
	box-shadow: 0 18px 36px rgba(66, 28, 24, 0.18);
}

.vmg-featured-prev {
	left: 1rem;
}

.vmg-featured-next {
	right: 1rem;
}

.vmg-reveal.mx-auto.max-w-6xl > .vmg-featured-prev,
.vmg-reveal.mx-auto.max-w-6xl > .vmg-featured-next {
	display: none !important;
}

.vmg-featured-nav.swiper-button-disabled {
	cursor: default;
	opacity: 0.42;
}

.vmg-featured-nav:hover {
	background: #5c1c21 !important;
	border-color: #5c1c21 !important;
	color: #f4d7a2 !important;
}

.vmg-featured-section {
	padding-top: 5.75rem;
	padding-bottom: 7rem;
}

.vmg-featured-card {
	position: relative;
	border: 1px solid rgba(208, 191, 176, 0.62);
	border-radius: 36px;
	background:
		radial-gradient(circle at top right, rgba(215, 176, 120, 0.16), transparent 38%),
		linear-gradient(135deg, #fffdf9 0%, #ffffff 56%, #fbf4ec 100%);
	box-shadow: 0 30px 80px rgba(70, 39, 29, 0.12);
}

.vmg-featured-card__layout {
	display: grid;
	height: 100%;
}

.vmg-featured-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	min-height: 0;
	overflow: hidden;
	background: #e7ddd1;
}

.vmg-featured-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.vmg-featured-card__media-shadow {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(17, 14, 13, 0.06) 0%, rgba(17, 14, 13, 0.22) 100%),
		linear-gradient(180deg, rgba(17, 14, 13, 0) 36%, rgba(17, 14, 13, 0.58) 100%);
}

.vmg-featured-card__media-top,
.vmg-featured-card__media-bottom {
	position: absolute;
	left: 1.5rem;
	right: 1.5rem;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
}

.vmg-featured-card__media-top {
	top: 1.5rem;
}

.vmg-featured-card__media-bottom {
	bottom: 1.5rem;
}

.vmg-featured-card__pill,
.vmg-featured-card__region {
	display: inline-flex;
	align-items: center;
	border-radius: 999px;
	padding: 0.82rem 1rem 0.72rem;
	backdrop-filter: blur(10px);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vmg-featured-card__pill {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(20, 12, 11, 0.36);
	color: #fff8f1;
}

.vmg-featured-card__pill--brand {
	background: rgba(127, 31, 42, 0.9);
	color: #f4d7a2;
}

.vmg-featured-card__region {
	background: rgba(255, 248, 241, 0.92);
	color: #5c1c21;
	box-shadow: 0 12px 28px rgba(28, 13, 11, 0.18);
}

.vmg-featured-card__content {
	display: flex;
	flex-direction: column;
	gap: 0.78rem;
	min-width: 0;
	padding: 1.5rem 1.7rem 1.35rem;
}

.vmg-featured-card__eyebrow {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #9c7e64;
}

.vmg-featured-card__title {
	margin: 0;
	font-family: "larkenBold", Georgia, serif;
	font-size: clamp(1.65rem, 2.2vw, 2.3rem);
	line-height: 1.02;
	letter-spacing: -0.05em;
	color: #351c18;
}

.vmg-featured-card__location {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	align-self: flex-start;
	width: fit-content;
	max-width: 100%;
	padding: 0.42rem 0.82rem;
	margin: 0;
	border-radius: 999px;
	border: 1px solid rgba(200, 181, 163, 0.48);
	background: rgba(255, 252, 247, 0.92);
	font-size: 0.8rem;
	line-height: 1.5;
	color: #7d6c61;
}

.vmg-featured-card__location-icon,
.vmg-featured-card__action-icon {
	display: inline-flex;
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
}

.vmg-featured-card__location-icon {
	color: #c89b55;
}

.vmg-featured-card__excerpt {
	margin: 0;
	max-width: 100%;
	font-size: 0.86rem;
	line-height: 1.6;
	color: #675952;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vmg-featured-card__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.62rem;
	margin: 0.1rem 0 0;
}

.vmg-featured-card__stat {
	position: relative;
	margin: 0;
	border: 1px solid rgba(215, 203, 190, 0.88);
	border-radius: 16px;
	background: linear-gradient(180deg, #fffdfa 0%, #faf4ee 100%);
	padding: 0.68rem 0.78rem 0.64rem;
	box-shadow: 0 12px 30px rgba(64, 36, 26, 0.05);
}

.vmg-featured-card__stat::before {
	display: none;
}

.vmg-featured-card__stat dt {
	margin: 0 0 0.28rem;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #9d7d61;
}

.vmg-featured-card__stat dd {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 700;
	line-height: 1.35;
	color: #2f1d18;
}

.vmg-featured-card__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
	margin-top: 0.2rem;
	padding-top: 0.9rem;
	border-top: 1px solid rgba(139, 113, 89, 0.14);
}

.vmg-featured-card__primary,
.vmg-featured-card__secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	font-size: 0.64rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.vmg-featured-card__primary {
	padding: 0.82rem 1.08rem;
	border-radius: 999px;
	background: #7f1f2a;
	color: #f4d7a2;
	box-shadow: 0 18px 36px rgba(95, 29, 35, 0.14);
}

.vmg-featured-card__secondary {
	color: #5e1d23;
}

.vmg-featured-card__secondary::after {
	content: "";
	width: 1.75rem;
	height: 1px;
	background: rgba(94, 29, 35, 0.18);
}

.vmg-featured-card:hover .vmg-featured-card__image {
	transform: scale(1.05);
}

.vmg-featured-card:hover .vmg-featured-card__primary {
	background: #6b1820;
}

.vmg-featured-projects-swiper .swiper-wrapper {
	align-items: flex-start;
}

.vmg-featured-projects-swiper .swiper-slide,
.vmg-featured-projects-swiper .swiper-slide > article,
.vmg-featured-card,
.vmg-featured-card__layout {
	height: auto !important;
}

.vmg-home-contact-section {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
	background-color: #2a0a0d;
	background-image:
		linear-gradient(180deg, rgba(42, 10, 13, 0.7) 0%, rgba(42, 10, 13, 0.5) 50%, rgba(42, 10, 13, 0.8) 100%),
		linear-gradient(180deg, #2a0a0d 0%, #6b1820 50%, #2a0a0d 100%),
		var(--vmg-contact-bg-image, none);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.vmg-home-contact-section::before,
.vmg-home-contact-section::after {
	content: none;
}

.vmg-home-contact__container {
	position: relative;
	z-index: 1;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 24px;
}

.vmg-home-contact {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
	gap: 1.25rem;
	align-items: center;
}

.vmg-home-contact__column {
	min-width: 0;
}

.vmg-home-contact__title {
	max-width: 420px;
	margin: 0 auto 0.8rem;
	font-family: "larkenBold", Georgia, serif;
	font-size: clamp(1.08rem, 1.3vw, 1.4rem);
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-align: center;
	color: #ffffff;
}

.vmg-home-contact__notice {
	margin: 0 auto 0.65rem;
	max-width: 340px;
	border-radius: 18px;
	padding: 0.68rem 0.88rem;
	font-size: 0.8rem;
	font-weight: 600;
}

.vmg-home-contact__notice.is-success {
	background: rgba(16, 185, 129, 0.2);
	color: #ffffff;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.vmg-home-contact__notice.is-error {
	background: rgba(239, 68, 68, 0.25);
	color: #ffffff;
	border: 1px solid rgba(239, 68, 68, 0.3);
}

.vmg-home-contact__form {
	display: grid;
	gap: 0.52rem;
	max-width: 340px;
	margin: 0 auto;
}

.vmg-home-contact__field {
	display: grid;
	gap: 0;
}

.vmg-home-contact__field input,
.vmg-home-contact__field textarea {
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 7px;
	background: #ffffff;
	padding: 0.68rem 0.82rem;
	font-size: 0.84rem;
	color: #1e365e;
	outline: none;
	box-shadow: 0 4px 12px rgba(8, 20, 38, 0.05);
}

.vmg-home-contact__field textarea {
	min-height: 84px;
	resize: vertical;
}

.vmg-home-contact__field input::placeholder,
.vmg-home-contact__field textarea::placeholder {
	color: rgba(30, 54, 94, 0.7);
}

.vmg-home-contact__field input:focus,
.vmg-home-contact__field textarea:focus {
	box-shadow: 0 0 0 3px rgba(213, 163, 100, 0.38);
}

.vmg-home-contact__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.6rem;
	padding-top: 0.08rem;
}

.vmg-home-contact__submit {
	min-width: 126px;
	border: 0;
	padding: 0.62rem 0.82rem;
	background: linear-gradient(90deg, #e6b45f 0%, #d99a3d 100%);
	color: #2a0a0d;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	box-shadow: 0 12px 28px rgba(230, 180, 95, 0.3);
	cursor: pointer;
	transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, filter 0.24s ease;
}

.vmg-home-contact__submit:hover {
	transform: translateY(-2px);
	background: linear-gradient(90deg, #ebc37f 0%, #e6b45f 100%);
	filter: brightness(1.02);
	box-shadow: 0 16px 32px rgba(230, 180, 95, 0.34);
}

.vmg-home-contact__submit.is-loading {
	opacity: 0.7;
	pointer-events: none;
	cursor: wait;
}

.vmg-home-contact__column--visual {
	display: flex;
	justify-content: center;
	align-items: center;
}

.vmg-home-contact__visual-image {
	position: relative;
	right: -8%;
}

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

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

@media (max-width: 1023px) {
	.vmg-site-header {
		padding-top: 0.9rem;
		padding-bottom: 0.9rem;
	}

	.vmg-site-header nav .h-12.w-12 {
		width: 2.25rem;
		height: 2.25rem;
	}

	.vmg-mobile-toggle {
		width: 52px;
		height: 52px;
	}

	.vmg-mobile-toggle .h-6.w-6 {
		width: 1.65rem;
		height: 1.65rem;
	}

	.vmg-mobile-panel {
		width: min(300px, 82vw);
		padding: 18px 16px 22px;
	}

	.vmg-mobile-panel__brand {
		display: none;
	}
}

@media (max-width: 767px) {
	.vmg-mobile-panel__brand {
		display: inline-flex;
		max-width: 82px;
	}

	[data-floating-cta] {
		left: 0.6rem !important;
	}

	[data-floating-cta] [data-floating-cta-toggle] {
		width: 2.6rem;
		height: 2.6rem;
		border-radius: 0.8rem;
	}

	[data-floating-cta] [data-floating-cta-toggle] .h-6.w-6 {
		width: 1.15rem;
		height: 1.15rem;
	}

	[data-floating-cta] [data-floating-cta-panel] .h-12.w-12 {
		width: 2.25rem;
		height: 2.25rem;
		border-radius: 0.7rem;
	}

	.vmg-featured-nav {
		top: auto;
		bottom: -4.5rem;
		transform: none;
	}

	.vmg-featured-prev {
		left: calc(50% - 3.5rem);
	}

	.vmg-featured-next {
		right: calc(50% - 3.5rem);
	}

	.vmg-featured-pagination {
		right: 50%;
		bottom: -2.35rem;
		transform: translateX(50%);
	}

	.vmg-featured-section {
		padding-top: 4.75rem;
		padding-bottom: 6.75rem;
	}

	.vmg-featured-card__content {
		padding: 1.6rem 1.25rem 1.35rem;
	}

	.vmg-featured-card__title {
		font-size: 1.75rem;
	}

	.vmg-featured-card__excerpt {
		-webkit-line-clamp: 2;
	}

	.vmg-featured-card__stats {
		grid-template-columns: 1fr;
	}

	.vmg-featured-card__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.vmg-featured-card__primary,
	.vmg-featured-card__secondary {
		justify-content: center;
	}

	.vmg-featured-card__secondary::after {
		display: none;
	}

	.vmg-home-contact-section {
		padding: 5rem 0;
	}

	.vmg-home-contact__container {
		padding: 0 16px;
	}

	.vmg-home-contact {
		grid-template-columns: 1fr;
		gap: 1.8rem;
	}

	.vmg-home-contact__column--form {
		text-align: center;
	}

	.vmg-home-contact__column--form .max-w-md > div {
		justify-content: center;
		text-align: center;
	}

	.vmg-home-contact__column--form .max-w-md > div > span:first-child {
		min-width: 0 !important;
		margin-right: 0 !important;
	}

	.vmg-home-contact__title {
		max-width: 100%;
		font-size: 1.2rem;
		line-height: 1.25;
	}

}

@media (min-width: 768px) {
	.vmg-featured-card__layout {
		grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
	}

	.vmg-featured-card__media {
		min-height: 0;
	}

	.vmg-featured-prev {
		left: -1rem;
	}

	.vmg-featured-next {
		right: -1rem;
	}
}

@media (min-width: 1024px) {
	.vmg-footer__grid {
		grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
		align-items: start;
	}

	.vmg-footer__bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (max-width: 1023px) {
	.vmg-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vmg-featured-card__layout {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	.vmg-home-contact {
		grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
		gap: 1.1rem;
	}
}

@media (max-width: 767px) {
	.vmg-footer__inner {
		padding: 42px 16px 22px;
	}

	.vmg-footer__grid {
		grid-template-columns: 1fr;
		padding: 28px 22px 24px;
		gap: 28px;
	}

	.vmg-footer__bottom {
		padding: 16px 22px 18px;
	}

	.vmg-project-card__body {
		padding: 22px 20px 20px;
	}

	.vmg-project-card__title {
		font-size: 1.65rem;
	}

	.vmg-project-card__meta {
		grid-template-columns: 1fr;
	}

	.vmg-project-card__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.vmg-project-card__secondary {
		justify-content: center;
	}
}

.vmg-landing {
	background: #f7f2ec;
	color: #2f1f1d;
}

.vmg-landing-shell {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.vmg-landing-kicker {
	margin: 0 0 14px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: #ba8f62;
}

.vmg-landing-title {
	margin: 0;
	font-family: "larkenBold", Georgia, serif;
	font-size: clamp(2.2rem, 5vw, 4.4rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	color: #2f1f1d;
}

.vmg-landing-copy {
	margin: 20px 0 0;
	font-size: 1.02rem;
	line-height: 1.85;
	color: #685a56;
}

.vmg-landing-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.vmg-landing-hero__media,
.vmg-landing-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.vmg-landing-hero__image {
	object-fit: cover;
}

.vmg-landing-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at top right, rgba(199, 158, 97, 0.24), transparent 30%),
		linear-gradient(120deg, rgba(27, 14, 13, 0.84) 18%, rgba(70, 24, 27, 0.58) 48%, rgba(27, 14, 13, 0.22) 100%);
}

.vmg-landing-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	padding: 148px 24px 72px;
	min-height: 100vh;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.62fr);
	align-items: end;
	gap: 48px;
}

.vmg-landing-hero__title,
.vmg-landing-section--dark .vmg-landing-title,
.vmg-landing-section--contact .vmg-landing-title {
	color: #fffaf5;
}

.vmg-landing-hero__description {
	max-width: 680px;
	margin: 24px 0 0;
	font-size: 1.06rem;
	line-height: 1.9;
	color: rgba(255, 247, 239, 0.82);
}

.vmg-landing-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.vmg-landing-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

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

.vmg-landing-button--primary {
	background: linear-gradient(135deg, #d7b078, #f1cb9c);
	box-shadow: 0 20px 44px rgba(201, 160, 102, 0.28);
	color: #4f211f;
}

.vmg-landing-button--secondary {
	border: 1px solid rgba(255, 245, 235, 0.34);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
	color: #fff8f2;
}

.vmg-landing-hero__stats {
	display: grid;
	gap: 14px;
}

.vmg-landing-stat-card {
	border: 1px solid rgba(255, 244, 233, 0.18);
	border-radius: 28px;
	background: rgba(255, 249, 243, 0.08);
	backdrop-filter: blur(18px);
	padding: 20px 22px;
}

.vmg-landing-stat-card__label {
	display: block;
	margin-bottom: 8px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(241, 213, 175, 0.84);
}

.vmg-landing-stat-card strong {
	font-size: 1rem;
	line-height: 1.55;
	color: #fff9f4;
}

.vmg-landing-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	background: rgba(26, 35, 70, 0.92);
	backdrop-filter: blur(12px);
	box-shadow: 0 12px 28px rgba(16, 23, 46, 0.16);
}

.vmg-landing-header__inner {
	max-width: 1260px;
	margin: 0 auto;
	padding: 12px 24px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.vmg-landing-header__brand {
	display: inline-flex;
	align-items: center;
}

.vmg-landing-header__brand img {
	display: block;
	width: 180px;
	height: auto;
	object-fit: contain;
}

.vmg-landing-header__nav {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 16px;
}

.vmg-landing-header__nav a {
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: #f4efe9;
}

.vmg-landing-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.vmg-landing-header__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	background: #c99b56;
	box-shadow: 0 18px 36px rgba(201, 155, 86, 0.24);
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fffdf7;
}

.vmg-landing-header__mobile {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	border: 1px solid rgba(255, 250, 244, 0.18);
	color: #fff8f2;
}

.vmg-landing-section {
	padding: 96px 0;
}

.vmg-landing-section--tinted {
	background: linear-gradient(180deg, #fbf6f1 0%, #f4ede6 100%);
}

.vmg-landing-section--dark {
	background:
		radial-gradient(circle at top right, rgba(215, 176, 120, 0.18), transparent 24%),
		linear-gradient(180deg, #52242a 0%, #2f1719 100%);
}

.vmg-landing-section--contact {
	background:
		radial-gradient(circle at top left, rgba(215, 176, 120, 0.2), transparent 24%),
		linear-gradient(180deg, #4f1f25 0%, #2b1315 100%);
}

.vmg-landing-section__intro {
	max-width: 760px;
	margin-bottom: 42px;
}

.vmg-landing-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 40px;
	align-items: start;
}

.vmg-landing-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.vmg-landing-facts__item {
	border: 1px solid #e6d9cb;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.8);
	padding: 22px 24px;
	box-shadow: 0 18px 40px rgba(48, 24, 20, 0.05);
}

.vmg-landing-facts__item span {
	display: block;
	margin-bottom: 10px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #ac8260;
}

.vmg-landing-facts__item strong {
	font-size: 1rem;
	line-height: 1.6;
	color: #2f1f1d;
}

.vmg-landing-list {
	display: grid;
	gap: 14px;
	padding: 0;
	margin: 24px 0 0;
	list-style: none;
}

.vmg-landing-list li {
	position: relative;
	padding-left: 24px;
	font-size: 1rem;
	line-height: 1.75;
	color: #5f514d;
}

.vmg-landing-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75rem;
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, #d7b078, #f0cb9a);
	box-shadow: 0 0 0 5px rgba(215, 176, 120, 0.16);
}

.vmg-landing-list--light li {
	color: rgba(255, 245, 237, 0.82);
}

.vmg-landing-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.vmg-landing-card {
	height: 100%;
	border: 1px solid #eadbce;
	border-radius: 30px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 241, 234, 0.9) 100%);
	padding: 26px 24px;
	box-shadow: 0 22px 46px rgba(51, 25, 22, 0.06);
}

.vmg-landing-card--light {
	border-color: rgba(255, 245, 234, 0.12);
	background: rgba(255, 249, 242, 0.08);
	backdrop-filter: blur(10px);
}

.vmg-landing-card__index {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 64px;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(215, 176, 120, 0.18);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #8a5f39;
}

.vmg-landing-card h3 {
	margin: 18px 0 10px;
	font-family: "larkenBold", Georgia, serif;
	font-size: 1.4rem;
	line-height: 1.1;
	color: #fff9f4;
}

.vmg-landing-card p {
	margin: 16px 0 0;
	font-size: 0.98rem;
	line-height: 1.8;
	color: #645551;
}

.vmg-landing-card--light p {
	color: rgba(255, 243, 235, 0.76);
}

.vmg-landing-amenities {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.vmg-landing-panel {
	border: 1px solid rgba(255, 242, 228, 0.12);
	border-radius: 32px;
	background: rgba(255, 248, 242, 0.06);
	backdrop-filter: blur(12px);
	padding: 30px 28px;
}

.vmg-landing-panel h3,
.vmg-landing-amenity-group strong {
	color: #fff8f2;
}

.vmg-landing-amenity-groups {
	display: grid;
	gap: 18px;
}

.vmg-landing-amenity-group p {
	margin: 10px 0 0;
	line-height: 1.75;
	color: rgba(255, 243, 235, 0.76);
}

.vmg-landing-masterplan {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 34px;
	align-items: center;
}

.vmg-landing-masterplan__visual {
	border-radius: 34px;
	overflow: hidden;
	box-shadow: 0 26px 58px rgba(49, 24, 22, 0.1);
}

.vmg-landing-masterplan__image {
	display: block;
	width: 100%;
	height: 560px;
	object-fit: cover;
}

.vmg-landing-gallery-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.vmg-landing-gallery-strip__item {
	border-radius: 20px;
	overflow: hidden;
	background: #eee0d5;
}

.vmg-landing-gallery-strip__image {
	display: block;
	width: 100%;
	height: 120px;
	object-fit: cover;
}

.vmg-landing-pricing {
	display: grid;
	grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
	gap: 22px;
	align-items: start;
}

.vmg-landing-pricing__featured {
	border-radius: 34px;
	background: linear-gradient(160deg, #6d242b 0%, #3d161a 100%);
	padding: 32px 28px;
	box-shadow: 0 30px 56px rgba(68, 28, 31, 0.18);
}

.vmg-landing-pricing__featured strong {
	display: block;
	margin: 8px 0 24px;
	font-family: "larkenBold", Georgia, serif;
	font-size: clamp(2.1rem, 4vw, 3.5rem);
	line-height: 0.98;
	color: #fff7ef;
}

.vmg-landing-faq {
	display: grid;
	gap: 18px;
}

.vmg-landing-faq__item {
	border: 1px solid #eadbce;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.84);
	overflow: hidden;
}

.vmg-landing-faq__button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 24px;
	border: 0;
	background: transparent;
	font-size: 1rem;
	font-weight: 700;
	text-align: left;
	color: #2f1f1d;
	cursor: pointer;
}

.vmg-landing-faq__icon {
	width: 18px;
	height: 18px;
	color: #8a5f39;
	transition: transform 0.25s ease;
}

.vmg-landing-faq__item.is-active .vmg-landing-faq__icon {
	transform: rotate(180deg);
}

.vmg-landing-faq__answer {
	padding: 0 24px 22px;
}

.vmg-landing-faq__answer p {
	margin: 0;
	line-height: 1.85;
	color: #665854;
}

.vmg-landing-contact {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
	gap: 28px;
	align-items: start;
}

.vmg-landing-contact__form {
	border-radius: 34px;
	background: rgba(255, 249, 242, 0.08);
	border: 1px solid rgba(255, 240, 225, 0.12);
	padding: 28px;
	backdrop-filter: blur(12px);
}

.vmg-landing-form-placeholder {
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	padding: 22px 20px;
	color: rgba(255, 245, 237, 0.82);
	line-height: 1.8;
}

.vmg-landing-form-placeholder strong {
	display: block;
	margin-bottom: 10px;
	color: #fff9f4;
}

.vmg-landing-footer {
	position: relative;
	background: #192346;
	color: #fff8f2;
}

.vmg-landing-footer__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(25, 35, 70, 0.82) 0%, rgba(25, 35, 70, 0.96) 100%),
		url("../media/footer-bg.jpg") center/cover no-repeat;
	opacity: 0.32;
}

.vmg-landing-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	padding: 56px 24px 42px;
	display: grid;
	grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
	gap: 28px;
	align-items: center;
}

.vmg-landing-footer__logos {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	align-items: center;
}

.vmg-landing-footer__logos img {
	display: block;
	width: 100%;
	max-width: 240px;
	height: auto;
	object-fit: contain;
}

.vmg-landing-footer__seal {
	border: 1px solid rgba(255, 245, 235, 0.18);
	border-radius: 24px;
	padding: 24px 18px;
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.06);
}

.vmg-landing-footer__info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.vmg-landing-footer__item {
	border: 1px solid rgba(255, 243, 231, 0.12);
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.04);
	padding: 24px 22px;
}

.vmg-landing-footer__item h3 {
	margin: 0 0 12px;
	font-size: 1.1rem;
	color: #f5ddbd;
}

.vmg-landing-footer__item p {
	margin: 0;
	line-height: 1.8;
	color: rgba(255, 245, 235, 0.82);
}

.vmg-landing-footer__item .vmg-landing-header__button {
	margin-top: 18px;
}

.vmg-landing-footer__bottom {
	position: relative;
	z-index: 1;
	padding: 14px 20px;
	background: #192346;
	text-align: center;
	font-size: 0.88rem;
	color: rgba(255, 245, 237, 0.72);
}

.vmg-landing-footer__bottom p {
	margin: 0;
}

@media (max-width: 1023px) {
	.vmg-landing-hero__inner,
	.vmg-landing-grid,
	.vmg-landing-masterplan,
	.vmg-landing-pricing,
	.vmg-landing-contact,
	.vmg-landing-amenities,
	.vmg-landing-footer__inner,
	.vmg-landing-footer__info {
		grid-template-columns: 1fr;
	}

	.vmg-landing-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.vmg-landing-shell {
		padding-left: 16px;
		padding-right: 16px;
	}

	.vmg-landing-hero__inner {
		padding: 124px 16px 40px;
		gap: 28px;
	}

	.vmg-landing-section {
		padding: 72px 0;
	}

	.vmg-landing-facts,
	.vmg-landing-card-grid,
	.vmg-landing-gallery-strip {
		grid-template-columns: 1fr;
	}

	.vmg-landing-masterplan__image {
		height: 360px;
	}

	.vmg-landing-header__inner {
		grid-template-columns: auto auto;
		padding: 10px 16px;
	}

	.vmg-landing-header__nav,
	.vmg-landing-header__button {
		display: none;
	}

	.vmg-landing-header__actions {
		justify-content: flex-end;
	}

	.vmg-landing-header__mobile {
		display: inline-flex;
	}

	.vmg-landing-header__brand img {
		width: 138px;
	}

	.vmg-landing-footer__inner {
		padding: 42px 16px 28px;
	}

	.vmg-landing-footer__logos,
	.vmg-landing-footer__info {
		grid-template-columns: 1fr;
	}
}

.project-landing-body {
	background: #f3efe8;
	color: #1f274b;
	font-family: "Montserrat", sans-serif;
}

.project-landing-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 80;
	background: linear-gradient(90deg, rgba(36, 107, 212, 0.96) 0%, rgba(30, 50, 121, 0.96) 70%);
	backdrop-filter: blur(12px);
}

.project-landing-header__inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 12px 24px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

.project-landing-header__logo-image {
	display: block;
	width: 120px;
	height: auto;
	object-fit: contain;
}

.project-landing-header__nav {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: nowrap;
}

.project-landing-header__nav a {
	color: #fff8f1;
	text-decoration: none;
	font-size: 0.73rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.project-landing-header__right {
	display: flex;
	justify-content: flex-end;
}

.project-landing-header__hotline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 18px;
	border-radius: 10px;
	background: #f4d4bd;
	text-decoration: none;
	color: #1f274b;
}

.project-landing-header__hotline span {
	font-size: 0.68rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #1f274b;
}

.project-landing-header__hotline strong {
	font-size: 0.94rem;
	line-height: 1;
}

.project-landing {
	background: #f3efe8;
}

.project-landing-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.project-landing-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.project-landing-hero__media,
.project-landing-hero__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.project-landing-hero__image {
	object-fit: cover;
}

.project-landing-hero__shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(18, 29, 61, 0.86) 0%, rgba(18, 29, 61, 0.52) 45%, rgba(18, 29, 61, 0.2) 100%),
		linear-gradient(180deg, rgba(18, 29, 61, 0.12) 0%, rgba(18, 29, 61, 0.7) 100%);
}

.project-landing-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	padding: 180px 24px 96px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.project-landing-hero__content {
	max-width: 640px;
	color: #fff8f1;
}

.project-landing-section__eyebrow {
	margin: 0 0 16px;
	font-size: clamp(1.6rem, 2.2vw, 2.6rem);
	font-weight: 900;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #162e76;
}

.project-landing-hero__content .project-landing-section__eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	color: #d7b078;
}

.project-landing-hero__content h1,
.project-landing-section__heading h2 {
	margin: 0;
	font-family: "Arsenal", Georgia, serif;
	font-size: clamp(2.55rem, 6vw, 4.8rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: -0.03em;
}

.project-landing-hero__subtitle {
	margin: 22px 0 0;
	max-width: 620px;
	font-size: 1rem;
	line-height: 1.8;
	color: rgba(255, 248, 241, 0.82);
}

.project-landing-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 28px;
	min-height: 54px;
	padding: 0 26px;
	border-radius: 999px;
	background: #c89b55;
	color: #fffaf5;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 18px 38px rgba(200, 155, 85, 0.26);
}

.project-landing-section {
	padding: 92px 0;
	scroll-margin-top: 92px;
}

.project-landing-section--soft {
	background: #ede6dd;
}

.project-landing-section--dark {
	background: #192346;
	color: #fff8f1;
}

.project-landing-section__heading {
	max-width: 860px;
	margin: 0 auto 38px;
	text-align: center;
}

.project-landing-section__heading--light h2 {
	color: transparent;
	-webkit-text-stroke: 1px rgba(244, 208, 186, 0.9);
}

.project-landing-section__heading h2 {
	color: transparent;
	-webkit-text-stroke: 1px rgba(22, 46, 118, 0.28);
	text-transform: uppercase;
}

.project-landing-overview {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 28px;
	align-items: start;
}

.project-landing-overview--poster {
	align-items: stretch;
}

.project-landing-overview__visual {
	overflow: hidden;
	border-radius: 0 22px 0 22px;
	box-shadow: 0 22px 50px rgba(17, 32, 71, 0.14);
	background: #132033;
}

.project-landing-overview__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 560px;
	object-fit: cover;
}

.project-landing-overview__panel {
	background: #ffffff;
	border-radius: 6px;
	padding: 24px 28px;
	box-shadow: 0 24px 40px rgba(18, 29, 61, 0.08);
}

.project-landing-overview__description p,
.project-landing-location__content p,
.project-landing-product-card__content p,
.project-landing-amenity-card p,
.project-landing-footer__brand p,
.project-landing-footer__meta p {
	margin: 0 0 16px;
	font-size: 1rem;
	line-height: 1.85;
	color: #5b5d69;
}

.project-landing-overview__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.project-landing-overview__card {
	padding: 14px 0;
	border-radius: 0;
	background: transparent;
	border: 0;
	border-bottom: 1px solid #dfdfdf;
	box-shadow: none;
}

.project-landing-overview__card span {
	display: block;
	margin-bottom: 10px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #927052;
}

.project-landing-overview__card strong {
	font-size: 1rem;
	line-height: 1.6;
	color: #1f274b;
	display: block;
}

.project-landing-location {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	gap: 28px;
	align-items: stretch;
}

.project-landing-checklist {
	display: grid;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.project-landing-checklist li {
	position: relative;
	padding-left: 28px;
	font-size: 1rem;
	line-height: 1.75;
	color: #48506f;
}

.project-landing-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: linear-gradient(180deg, #66d28b 0%, #379b5f 100%);
	box-shadow: 0 0 0 3px rgba(102, 210, 139, 0.15);
}

.project-landing-location__map,
.project-landing-location__iframe,
.project-landing-location__map-image {
	width: 100%;
	height: 100%;
}

.project-landing-location__map {
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(31, 39, 75, 0.08);
	min-height: 420px;
}

.project-landing-location__iframe iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
}

.project-landing-location__map-image {
	display: block;
	object-fit: cover;
	min-height: 420px;
}

.project-landing-amenities {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.project-landing-amenity-card {
	padding: 26px 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid #e3d8cb;
}

.project-landing-amenity-card__icon {
	width: 62px;
	height: 62px;
	border-radius: 18px;
	background: #192346;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px;
	margin-bottom: 18px;
}

.project-landing-amenity-card__icon-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.project-landing-amenity-card h3,
.project-landing-product-card__content h3,
.project-landing-footer__meta h3 {
	margin: 0 0 12px;
	font-size: 1.28rem;
	line-height: 1.2;
	color: #1f274b;
}

.project-landing-products {
	display: grid;
	gap: 28px;
}

.project-landing-product-card {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: 28px;
	align-items: center;
	padding: 28px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid #dfd4c8;
}

.project-landing-product-card__media {
	overflow: hidden;
	border-radius: 18px;
	background: #d9d2c8;
}

.project-landing-product-card__image {
	display: block;
	width: 100%;
	height: 360px;
	object-fit: cover;
}

.project-landing-gallery-swiper {
	position: relative;
	overflow: hidden;
	padding-bottom: 38px;
}

.project-landing-gallery__slide {
	overflow: hidden;
	border-radius: 24px;
	background: #d9d2c8;
}

.project-landing-gallery__image {
	display: block;
	width: 100%;
	height: 540px;
	object-fit: cover;
}

.project-landing-gallery__pagination {
	margin-top: 18px;
	text-align: center;
}

.project-landing-gallery__prev,
.project-landing-gallery__next {
	position: absolute;
	top: calc(50% - 34px);
	z-index: 5;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: rgba(25, 35, 70, 0.84);
	color: #fff8f1;
	cursor: pointer;
}

.project-landing-gallery__prev {
	left: 16px;
	transform: rotate(180deg);
}

.project-landing-gallery__next {
	right: 16px;
}

.project-landing-contact {
	padding: 30px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-landing-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	gap: 28px;
	align-items: start;
}

.project-landing-contact-layout__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.85;
	color: rgba(255, 248, 241, 0.76);
}

.project-landing-contact__placeholder {
	color: rgba(255, 248, 241, 0.82);
	line-height: 1.8;
}

.project-landing-contact__placeholder strong {
	display: block;
	margin-bottom: 10px;
	color: #fff8f1;
}

#button-contact-vr {
	position: fixed;
	bottom: 10%;
	right: 0;
	z-index: 9999;
}

#gom-all-in-one .button-contact {
	transition: 1.6s all;
}

#button-contact-vr .button-contact {
	position: relative;
	margin-top: -5px;
}

#button-contact-vr .button-contact .phone-vr {
	position: relative;
	visibility: visible;
	background-color: transparent;
	width: 90px;
	height: 90px;
	cursor: pointer;
	z-index: 11;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transition: visibility 0.5s;
	left: 0;
	bottom: 0;
	display: block;
}

#fanpage-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 rgb(24 119 242 / 65%);
	background-color: rgb(24 119 242 / 70%);
}

.phone-vr-circle-fill {
	width: 65px;
	height: 65px;
	top: 13px;
	left: 12px;
	position: absolute;
	box-shadow: 0 0 0 0 #c31d1d;
	background-color: rgba(230, 8, 8, 0.7);
	border-radius: 50%;
	border: 2px solid transparent;
	transition: all 0.5s;
	transform-origin: 50% 50%;
	animation: zoom 1.3s infinite;
}

#fanpage-vr .phone-vr-img-circle {
	background-color: #1877f2;
}

.phone-vr-img-circle {
	background-color: #e60808;
	width: 40px;
	height: 40px;
	line-height: 40px;
	top: 25px;
	left: 25px;
	position: absolute;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	animation: phone-vr-circle-fill 1s infinite ease-in-out;
}

.phone-vr-img-circle a {
	display: block;
	line-height: 37px;
}

#fanpage-vr img {
	max-width: 35px;
	max-height: 35px;
}

.phone-vr-img-circle img {
	max-height: 25px;
	max-width: 27px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#ftiktok-vr .phone-vr-img-circle {
	background-color: #020202;
}

#tiktok-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 rgb(2 2 2 / 55%);
	background-color: rgb(2 2 2 / 60%);
}

#tiktok-vr .phone-vr-img-circle img {
	max-width: 90%;
	max-height: 90%;
}

#tiktok-vr .phone-vr-img-circle {
	background: #020202;
}

#messenger-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #6a4ffe;
	background-color: rgb(106 79 254 / 50%);
}

#messenger-vr .phone-vr-img-circle {
	background-color: #6a4ffe;
}

#messenger-vr .phone-vr-img-circle img {
	max-width: 100%;
	max-height: 100%;
}

#zalo-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #2196f3;
	background-color: rgba(33, 150, 243, 0.7);
}

#zalo-vr .phone-vr-img-circle {
	background-color: #2196f3;
}

#viber-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #714497;
	background-color: rgba(113, 68, 151, 0.8);
}

#viber-vr .phone-vr-img-circle {
	background-color: #714497;
}

#contact-vr .phone-vr-circle-fill {
	box-shadow: 0 0 0 0 #2196f3;
	background-color: rgba(33, 150, 243, 0.7);
}

#contact-vr .phone-vr-img-circle {
	background-color: #2196f3;
}

@keyframes zoom {
	0% {
		transform: scale(0.9);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 0 15px transparent;
	}
	100% {
		transform: scale(0.9);
		box-shadow: 0 0 0 0 transparent;
	}
}

@keyframes phone-vr-circle-fill {
	0% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}
	10% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	20% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	30% {
		-webkit-transform: rotate(-25deg) scale(1) skew(1deg);
	}
	40% {
		-webkit-transform: rotate(25deg) scale(1) skew(1deg);
	}
	50% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}
	100% {
		-webkit-transform: rotate(0) scale(1) skew(1deg);
	}
}

.project-landing-footer {
	position: relative;
	background: #192346;
	color: #fff8f1;
}

.project-landing-footer__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(25, 35, 70, 0.84) 0%, rgba(25, 35, 70, 0.96) 100%),
		url("../media/footer-bg.jpg") center/cover no-repeat;
	opacity: 0.36;
}

.project-landing-footer__inner {
	position: relative;
	z-index: 1;
	max-width: 1240px;
	margin: 0 auto;
	padding: 48px 24px;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 28px;
}

.project-landing-footer__logo-image {
	display: block;
	width: 140px;
	height: auto;
	object-fit: contain;
	margin-bottom: 18px;
}

.project-landing-footer__brand p,
.project-landing-footer__meta p,
.project-landing-footer__meta a {
	color: rgba(255, 248, 241, 0.82);
	text-decoration: none;
}

.project-landing-footer__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.project-landing-footer__meta h3 {
	color: #f0cf9c;
}

@media (max-width: 1023px) {
	.project-landing-overview,
	.project-landing-location,
	.project-landing-product-card,
	.project-landing-contact-layout,
	.project-landing-footer__inner,
	.project-landing-footer__meta {
		grid-template-columns: 1fr;
	}

	.project-landing-amenities {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.project-landing-header__inner {
		grid-template-columns: auto 1fr;
	}

	.project-landing-header__right {
		justify-content: flex-end;
	}
}

@media (max-width: 767px) {
	.project-landing-container {
		padding: 0 16px;
	}

	.project-landing-header__inner {
		padding: 12px 16px;
		grid-template-columns: auto 1fr;
		gap: 14px;
	}

	.project-landing-header__nav {
		justify-content: flex-start;
		gap: 12px;
		overflow-x: auto;
		padding-bottom: 4px;
		white-space: nowrap;
	}

	.project-landing-header__nav a {
		font-size: 0.64rem;
		flex: 0 0 auto;
	}

	.project-landing-header__logo-image {
		width: 96px;
	}

	.project-landing-header__right {
		display: none;
	}

	.project-landing-hero__inner {
		padding: 140px 16px 72px;
	}

	.project-landing-section {
		padding: 72px 0;
	}

	.project-landing-overview__grid,
	.project-landing-amenities {
		grid-template-columns: 1fr;
	}

	.project-landing-overview__image {
		min-height: 320px;
	}

	.project-landing-product-card__image,
	.project-landing-gallery__image {
		height: 300px;
	}

	.project-landing-footer__inner {
		padding: 42px 16px;
	}
}

/* Custom Header Box for Projects and Careers */
.vmg-hero-box {
	position: relative;
	z-index: 10;
	margin-top: 3.5rem;
	width: auto;
	min-width: 400px;
	margin-left: 1rem;
	margin-right: 1rem;
	background-color: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2rem 2.5rem;
	text-align: center;
	border-radius: 0;
	box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}
.vmg-hero-box > div:first-child {
	margin-bottom: 1.5rem !important;
}
@media (min-width: 768px) {
	.vmg-hero-box {
		width: auto;
		min-width: 400px;
		padding: 4.5rem 5.5rem;
		margin-left: 0;
		margin-right: 0;
	}
}
.vmg-hero-section {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	min-height: 300px;
	height: 35vh;
}
@media (min-width: 768px) {
	.vmg-hero-section {
		min-height: 400px;
		height: 50vh;
	}
}
@media (min-width: 1024px) {
	.vmg-hero-section {
		min-height: 500px;
		height: 65vh;
	}
}
.vmg-hero-title {
	font-family: 'Oswald', sans-serif !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.025em;
	color: #ffffff;
	line-height: 1.2;
}
/* Desktop */
@media (min-width: 1024px) {
	.vmg-hero-title {
		font-size: 3rem; /* equivalent to text-5xl */
	}
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
	.vmg-hero-title {
		font-size: 2.25rem; /* equivalent to text-4xl */
	}
}
/* Mobile */
@media (max-width: 767px) {
	.vmg-hero-title {
		font-size: 2.375rem; /* Increased to 38px */
	}
}
