.ves-hero,
.ves-hero * {
	box-sizing: border-box;
}

.ves-hero {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	min-height: 100vh;
	min-height: 100svh;
	overflow: hidden;
	padding: max(calc(var(--ves-header-height, 5.25rem) + 2rem), 24svh) 1.25rem 3rem;
	color: #ffffff;
	isolation: isolate;
}

.ves-hero__media,
.ves-hero__overlay {
	position: absolute;
	inset: 0;
}

.ves-hero__media {
	z-index: -2;
	transform: scale(1.015);
	animation: ves-hero-reveal 1.6s ease-out both;
}

.ves-hero__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 72% 56%;
}

.ves-hero__overlay {
	z-index: -1;
	background: linear-gradient(
		90deg,
		rgba(5, 21, 35, 0.72) 0%,
		rgba(7, 27, 43, 0.46) 34%,
		rgba(8, 29, 45, 0.12) 68%,
		rgba(8, 29, 45, 0.02) 100%
	);
}

.ves-hero__content {
	width: min(100%, 550px);
	margin: 0;
	text-align: left;
	animation: ves-hero-content-reveal 800ms 120ms ease-out both;
}

.ves-hero__title {
	max-width: 550px;
	margin: 0;
	color: inherit;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: clamp(2.15rem, 7.2vw, 4.2rem);
	font-weight: 500;
	line-height: 1.14;
	letter-spacing: -0.018em;
	text-wrap: balance;
}

.ves-hero__subtitle {
	max-width: 440px;
	margin: 2rem 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-family: Poppins, sans-serif;
	font-size: clamp(0.9rem, 2.2vw, 1.02rem);
	font-weight: 300;
	line-height: 1.9;
	text-wrap: balance;
}

.ves-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: stretch;
	max-width: 22rem;
	margin: 2.75rem 0 0;
}

.ves-hero .ves-eyebrow{margin-bottom:1rem}

.ves-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.35rem;
	padding: 1rem 1.85rem;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(5, 20, 32, 0.14);
	font-family: Poppins, sans-serif;
	font-size: 0.76rem;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0.1em;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.ves-hero__button:hover,
.ves-hero__button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 13px 28px rgba(5, 20, 32, 0.2);
}

.ves-hero__button:focus-visible {
	outline: 2px solid #ffffff;
	outline-offset: 4px;
}

.ves-hero__button--primary {
	color: #ffffff;
	background: #c7a45a;
}

.ves-hero__button--primary:hover,
.ves-hero__button--primary:focus-visible {
	color: #102a43;
	background: #d5b66f;
}

.ves-hero__button--secondary {
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.58);
	background: rgba(255, 255, 255, 0.08);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

.ves-hero__button--secondary:hover,
.ves-hero__button--secondary:focus-visible {
	color: #102a43;
	border-color: #ffffff;
	background: #ffffff;
}

@keyframes ves-hero-reveal {
	from {
		transform: scale(1.06);
	}

	to {
		transform: scale(1.015);
	}
}

@keyframes ves-hero-content-reveal {
	from {
		transform: translateY(10px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@media (min-width: 40rem) {
	.ves-hero {
		padding-top: max(calc(var(--ves-header-height, 5.25rem) + 2.5rem), 30svh);
		padding-right: 7vw;
		padding-left: 7vw;
	}

	.ves-hero__actions {
		flex-direction: row;
		justify-content: flex-start;
		max-width: none;
	}
}

@media (min-width: 62rem) {
	.ves-hero {
		padding-top: max(calc(var(--ves-header-height, 95px) + 2.5rem), 28vh);
		padding-right: 8vw;
		padding-left: 8vw;
	}

	.ves-hero__content {
		text-align: left;
	}

	.ves-hero__title {
		font-size: clamp(3.4rem, 4vw, 4.2rem);
	}

	.ves-hero__actions {
		justify-content: flex-start;
		margin-left: 0;
	}
}

@media (min-width: 62rem) and (max-height: 50rem) {
	.ves-hero {
		padding-top: max(calc(var(--ves-header-height, 95px) + 1.5rem), 25vh);
		padding-bottom: 2rem;
	}

	.ves-hero__subtitle {
		margin-top: 1.25rem;
	}

	.ves-hero__actions {
		margin-top: 1.75rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ves-hero__media {
		animation: none;
	}

	.ves-hero__content,
	.ves-hero__button {
		animation: none;
		transition-duration: 0.01ms;
	}
}
