.hero {
	height: 100vh;
	min-height: 100svh;
}

.hero-card {
	width: 100%;
	height: 100%;
	min-height: 100svh;
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.7fr);
	margin: 0;
}

.hero-stripe {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem clamp(1.5rem, 5vw, 4.5rem);
	background: #050c18;
	color: #f8f5ef;
	position: relative;
	z-index: 2;
}

.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: min(74rem, calc(100% + 42rem));
	max-width: none;
	margin-right: -34rem;
	position: relative;
	z-index: 3;
}

.hero-media {
	position: relative;
	min-height: 100%;
}

.hero-media::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #050c18 0%, rgba(5, 12, 24, 0.78) 18%, rgba(5, 12, 24, 0.32) 38%, rgba(5, 12, 24, 0) 62%);
	pointer-events: none;
}

.hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-small-text {
	margin: 0;
	font-size: 0.85rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ldg-brand-gold);
	font-family: var(--ldg-font-body);
	font-weight: 500;
	margin-left: -0.1em;
}

.hero-title {
	margin: 0;
	font-size: clamp(3rem, 5.8vw, 6.3rem);
	line-height: 0.9;
	color: rgba(241, 242, 244, 0.65);
	max-width: 18ch;
	font-family: var(--ldg-font-display);
	font-weight: 500;
	margin-left: -0.07em;
}

.hero-mid-text {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	font-weight: 400;
	line-height: 1.25;
	color: var(--ldg-brand-gold);
	max-width: none;
	width: 100%;
	font-family: var(--ldg-font-serif);
	margin-left: -0.05em;
}

.hero-copy {
	max-width: 28rem;
	margin: 0;
	font-size: 1rem;
	color: var(--ldg-brand-white);
	font-family: var(--ldg-font-body);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
