.vldg-gallery-section,
.vldg-gallery-section * {
	box-sizing: border-box;
}

.vldg-gallery-section {
	--vldg-accent: #147d92;
	--vldg-columns: 4;
	--vldg-radius: 18px;
	width: min(100%, 1320px);
	margin: 0 auto;
	padding: clamp(48px, 7vw, 92px) clamp(16px, 3vw, 38px);
	color: #17222d;
	font-family: inherit;
}

.vldg-section-header {
	max-width: 760px;
	margin: 0 auto clamp(42px, 6vw, 72px);
	text-align: center;
}

.vldg-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: var(--vldg-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.vldg-eyebrow::before,
.vldg-eyebrow::after {
	width: 22px;
	height: 2px;
	content: "";
	background: currentColor;
}

.vldg-section-header h2 {
	margin: 0;
	color: #152636;
	font-size: clamp(32px, 5vw, 58px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.vldg-section-header p {
	max-width: 620px;
	margin: 18px auto 0;
	color: #64717d;
	font-size: clamp(15px, 1.8vw, 18px);
	line-height: 1.7;
}

.vldg-destination-cards {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: clamp(18px, 2.7vw, 32px);
}

.vldg-destination-card {
	position: relative;
	display: flex;
	min-width: 0;
	height: 100%;
	padding: 0;
	border: 1px solid rgba(21, 38, 54, .1);
	border-radius: var(--vldg-radius);
	color: #152636;
	background: #fff;
	box-shadow: 0 16px 45px rgba(21, 38, 54, .1);
	text-align: left;
	cursor: pointer;
	overflow: hidden;
	flex-direction: column;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
	-webkit-appearance: none;
	appearance: none;
}

.vldg-destination-card:hover {
	border-color: color-mix(in srgb, var(--vldg-accent) 36%, white);
	box-shadow: 0 24px 65px rgba(21, 38, 54, .16);
	transform: translateY(-6px);
}

.vldg-destination-card:focus-visible {
	outline: 3px solid var(--vldg-accent);
	outline-offset: 4px;
}

.vldg-destination-cover {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	background: #eaf0f3;
	overflow: hidden;
}

.vldg-destination-cover img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .55s cubic-bezier(.2, .75, .25, 1);
}

.vldg-destination-card:hover .vldg-destination-cover img {
	transform: scale(1.055);
}

.vldg-card-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 52%, rgba(8, 22, 32, .5));
}

.vldg-card-count {
	position: absolute;
	top: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	min-height: 31px;
	padding: 6px 12px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 999px;
	color: #fff;
	background: rgba(9, 27, 40, .62);
	box-shadow: 0 7px 20px rgba(0, 0, 0, .14);
	font-size: 12px;
	font-weight: 750;
	backdrop-filter: blur(7px);
}

.vldg-card-content {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 20px 21px 21px;
	align-items: flex-start;
	flex-direction: column;
}

.vldg-card-location {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 7px;
	color: var(--vldg-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.vldg-card-pin {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 15px;
	border: 2px solid currentColor;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg) scale(.8);
}

.vldg-card-pin::after {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	content: "";
	background: currentColor;
}

.vldg-card-content strong {
	display: block;
	margin: 0;
	color: #152636;
	font-size: clamp(23px, 2.4vw, 31px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.18;
}

.vldg-card-groups {
	display: block;
	min-height: 22px;
	margin-top: 7px;
	color: #73808b;
	font-size: 13px;
	line-height: 1.55;
}

.vldg-card-action {
	display: flex;
	width: 100%;
	margin-top: 19px;
	padding-top: 15px;
	border-top: 1px solid rgba(21, 38, 54, .09);
	color: var(--vldg-accent);
	font-size: 13px;
	font-weight: 800;
	align-items: center;
	justify-content: space-between;
}

.vldg-card-action span {
	font-size: 20px;
	transition: transform .25s ease;
}

.vldg-destination-card:hover .vldg-card-action span {
	transform: translateX(4px);
}

.vldg-destination-modal[hidden] {
	display: none !important;
}

.vldg-destination-modal {
	position: fixed;
	inset: 0;
	z-index: 999990;
	display: grid;
	place-items: center;
	padding: clamp(12px, 3vw, 34px);
	opacity: 0;
	transition: opacity .22s ease;
}

.vldg-destination-modal.is-open {
	opacity: 1;
}

.vldg-destination-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(5, 14, 21, .84);
	backdrop-filter: blur(8px);
}

.vldg-destination-dialog {
	position: relative;
	z-index: 1;
	display: flex;
	width: min(1320px, 100%);
	height: min(900px, calc(100vh - 40px));
	border-radius: var(--vldg-radius);
	background: #f8fafb;
	box-shadow: 0 35px 100px rgba(0, 0, 0, .38);
	overflow: hidden;
	flex-direction: column;
	transform: translateY(14px) scale(.985);
	transition: transform .22s ease;
}

.vldg-destination-modal.is-open .vldg-destination-dialog {
	transform: translateY(0) scale(1);
}

.vldg-modal-header {
	display: flex;
	min-height: 105px;
	padding: 22px clamp(20px, 3vw, 38px);
	border-bottom: 1px solid rgba(21, 38, 54, .1);
	background: #fff;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.vldg-modal-header h2 {
	margin: 2px 0 0;
	color: #152636;
	font-size: clamp(28px, 3.4vw, 45px);
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.08;
}

.vldg-modal-header p {
	margin: 6px 0 0;
	color: #73808b;
	font-size: 13px;
}

.vldg-modal-close {
	display: inline-grid;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #152636;
	background: #edf2f4;
	box-shadow: none;
	font: inherit;
	font-size: 31px;
	line-height: 1;
	cursor: pointer;
	place-items: center;
	transition: color .2s ease, background .2s ease, transform .2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.vldg-modal-close:hover,
.vldg-modal-close:focus-visible {
	color: #fff;
	background: var(--vldg-accent);
	transform: rotate(5deg) scale(1.05);
}

.vldg-modal-close:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--vldg-accent) 45%, white);
	outline-offset: 3px;
}

.vldg-modal-content {
	padding: clamp(20px, 3vw, 38px);
	overflow: auto;
	overscroll-behavior: contain;
}

.vldg-modal-group + .vldg-modal-group {
	margin-top: clamp(34px, 5vw, 58px);
	padding-top: clamp(30px, 4vw, 48px);
	border-top: 1px solid rgba(21, 38, 54, .1);
}

.vldg-modal-group .vldg-group-header {
	margin-bottom: 17px;
}

.vldg-modal-group .vldg-group-header h3 {
	margin: 0;
	color: #152636;
	font-size: clamp(21px, 2vw, 29px);
	font-weight: 800;
	letter-spacing: -.02em;
	line-height: 1.2;
}

.vldg-destinations {
	display: grid;
	gap: clamp(46px, 7vw, 82px);
}

.vldg-destination-heading {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 22px;
}

.vldg-destination-heading h3 {
	flex: 0 0 auto;
	margin: 0;
	color: #152636;
	font-size: clamp(25px, 3vw, 38px);
	font-weight: 800;
	letter-spacing: -.025em;
	line-height: 1.2;
}

.vldg-location-pin {
	position: relative;
	width: 25px;
	height: 31px;
	flex: 0 0 25px;
	border: 3px solid var(--vldg-accent);
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg) scale(.72);
}

.vldg-location-pin::after {
	position: absolute;
	top: 7px;
	left: 7px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	content: "";
	background: var(--vldg-accent);
}

.vldg-heading-line {
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(20, 125, 146, .35), rgba(20, 125, 146, 0));
}

.vldg-group-list {
	display: grid;
	gap: 28px;
}

.vldg-group-card {
	margin: 0;
	padding: clamp(16px, 2.4vw, 28px);
	border: 1px solid rgba(21, 38, 54, .09);
	border-radius: var(--vldg-radius);
	background: #fff;
	box-shadow: 0 18px 55px rgba(21, 38, 54, .09);
	overflow: hidden;
}

.vldg-group-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 20px;
}

.vldg-group-kicker {
	display: block;
	margin-bottom: 4px;
	color: var(--vldg-accent);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.vldg-group-header h4 {
	margin: 0;
	color: #152636;
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 750;
	line-height: 1.25;
}

.vldg-photo-count {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	min-height: 30px;
	padding: 5px 12px;
	border-radius: 999px;
	color: var(--vldg-accent);
	background: rgba(20, 125, 146, .1);
	background: color-mix(in srgb, var(--vldg-accent) 10%, white);
	font-size: 12px;
	font-weight: 750;
}

.vldg-image-grid {
	display: grid;
	grid-template-columns: repeat(var(--vldg-columns), minmax(0, 1fr));
	gap: clamp(9px, 1.4vw, 16px);
}

.vldg-image-card {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
	padding: 0;
	border: 0;
	border-radius: calc(var(--vldg-radius) * .65);
	background: #eaf0f3;
	box-shadow: none;
	aspect-ratio: 4 / 3;
	cursor: zoom-in;
	overflow: hidden;
	-webkit-appearance: none;
	appearance: none;
}

.vldg-image-card img {
	display: block;
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform .45s cubic-bezier(.2, .75, .25, 1), filter .35s ease;
}

.vldg-image-overlay {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, transparent 40%, rgba(9, 22, 32, .62));
	opacity: .55;
	transition: opacity .3s ease;
}

.vldg-zoom-icon {
	position: relative;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(255, 255, 255, .82);
	border-radius: 50%;
	background: rgba(255, 255, 255, .18);
	box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
	backdrop-filter: blur(7px);
	opacity: 0;
	transform: scale(.75);
	transition: opacity .3s ease, transform .3s ease;
}

.vldg-zoom-icon::before {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 13px;
	height: 13px;
	border: 2px solid #fff;
	border-radius: 50%;
	content: "";
}

.vldg-zoom-icon::after {
	position: absolute;
	top: 26px;
	left: 26px;
	width: 9px;
	height: 2px;
	content: "";
	background: #fff;
	transform: rotate(45deg);
	transform-origin: left center;
}

.vldg-image-card:hover img,
.vldg-image-card:focus-visible img {
	transform: scale(1.055);
	filter: saturate(1.08);
}

.vldg-image-card:hover .vldg-image-overlay,
.vldg-image-card:focus-visible .vldg-image-overlay {
	opacity: 1;
}

.vldg-image-card:hover .vldg-zoom-icon,
.vldg-image-card:focus-visible .vldg-zoom-icon {
	opacity: 1;
	transform: scale(1);
}

.vldg-image-card:focus-visible {
	outline: 3px solid var(--vldg-accent);
	outline-offset: 3px;
}

.vldg-empty-state {
	max-width: 620px;
	margin: 0 auto;
	padding: 52px 28px;
	border: 1px dashed rgba(21, 38, 54, .23);
	border-radius: var(--vldg-radius);
	background: #f8fafb;
	text-align: center;
}

.vldg-empty-icon {
	display: block;
	margin-bottom: 12px;
	font-size: 38px;
}

.vldg-empty-state h3 {
	margin: 0 0 8px;
	font-size: 22px;
}

.vldg-empty-state p {
	margin: 0;
	color: #687681;
}

body.vldg-destination-open,
body.vldg-lightbox-open {
	overflow: hidden !important;
}

.vldg-lightbox[hidden],
.vldg-lightbox-button[hidden] {
	display: none !important;
}

.vldg-lightbox {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: center;
	padding: 20px;
	opacity: 0;
	transition: opacity .22s ease;
}

.vldg-lightbox.is-open {
	opacity: 1;
}

.vldg-lightbox-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(4, 10, 15, .94);
	backdrop-filter: blur(10px);
}

.vldg-lightbox-dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr) 58px;
	grid-template-rows: minmax(0, 1fr) auto;
	align-items: center;
	width: min(1500px, 100%);
	height: min(920px, calc(100vh - 40px));
	transform: scale(.975);
	transition: transform .22s ease;
}

.vldg-lightbox.is-open .vldg-lightbox-dialog {
	transform: scale(1);
}

.vldg-lightbox-stage {
	position: relative;
	display: grid;
	grid-column: 2;
	grid-row: 1;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 0;
}

.vldg-lightbox-stage img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	border-radius: 10px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .42);
	opacity: 1;
	object-fit: contain;
	transition: opacity .16s ease;
}

.vldg-lightbox.is-loading .vldg-lightbox-stage img {
	opacity: .18;
}

.vldg-lightbox-loader {
	position: absolute;
	z-index: -1;
	width: 38px;
	height: 38px;
	border: 3px solid rgba(255, 255, 255, .18);
	border-top-color: #fff;
	border-radius: 50%;
	opacity: 0;
	animation: vldg-spin .75s linear infinite;
}

.vldg-lightbox.is-loading .vldg-lightbox-loader {
	opacity: 1;
}

@keyframes vldg-spin {
	to { transform: rotate(360deg); }
}

.vldg-lightbox-button {
	position: relative;
	z-index: 2;
	display: inline-grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin: 0;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .25);
	border-radius: 50%;
	color: #fff;
	background: rgba(255, 255, 255, .09);
	box-shadow: none;
	font: inherit;
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.vldg-lightbox-button:hover,
.vldg-lightbox-button:focus-visible {
	color: #fff;
	background: var(--vldg-accent);
	transform: scale(1.06);
}

.vldg-lightbox-button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.vldg-lightbox-prev {
	grid-column: 1;
	grid-row: 1;
}

.vldg-lightbox-next {
	grid-column: 3;
	grid-row: 1;
	justify-self: end;
}

.vldg-lightbox-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 44px;
	height: 44px;
	font-size: 31px;
}

.vldg-lightbox-footer {
	display: flex;
	grid-column: 2;
	grid-row: 2;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 46px;
	padding-top: 12px;
	color: rgba(255, 255, 255, .84);
}

.vldg-lightbox-footer p {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

.vldg-lightbox-footer span {
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: .08em;
}

@media (max-width: 1024px) {
	.vldg-image-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.vldg-gallery-section {
		padding-right: 14px;
		padding-left: 14px;
	}

	.vldg-destination-cards {
		grid-template-columns: 1fr;
	}

	.vldg-destination-modal {
		padding: 0;
	}

	.vldg-destination-dialog {
		height: 100vh;
		height: 100dvh;
		border-radius: 0;
	}

	.vldg-modal-header {
		min-height: 90px;
		padding: 17px 16px;
	}

	.vldg-modal-content {
		padding: 18px 14px 30px;
	}

	.vldg-image-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.vldg-group-card {
		padding: 12px;
	}

	.vldg-group-header {
		align-items: center;
		margin: 5px 3px 14px;
	}

	.vldg-lightbox {
		padding: 10px;
	}

	.vldg-lightbox-dialog {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: minmax(0, 1fr) 54px auto;
		height: calc(100vh - 20px);
	}

	.vldg-lightbox-stage {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.vldg-lightbox-prev,
	.vldg-lightbox-next {
		grid-row: 2;
		align-self: center;
	}

	.vldg-lightbox-prev {
		grid-column: 1;
		justify-self: start;
	}

	.vldg-lightbox-next {
		grid-column: 2;
		justify-self: end;
	}

	.vldg-lightbox-footer {
		grid-column: 1 / -1;
		grid-row: 3;
	}
}

@media (max-width: 430px) {
	.vldg-photo-count {
		display: none;
	}

	.vldg-image-grid {
		gap: 8px;
	}

	.vldg-image-card {
		border-radius: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vldg-destination-card,
	.vldg-destination-cover img,
	.vldg-destination-modal,
	.vldg-destination-dialog,
	.vldg-image-card img,
	.vldg-image-overlay,
	.vldg-zoom-icon,
	.vldg-lightbox,
	.vldg-lightbox-dialog {
		transition: none;
	}
}
