.lla-hero {
	--lla-navy: #08264a;
	--lla-gold: #f6b90f;
	--lla-cream: #fff7df;
	--lla-white: #fff;
	--lla-overlay-color: #0b2345;
	--lla-overlay-opacity: 0.68;
	--lla-hero-height: 780px;
	--lla-content-max-width: 780px;
	--lla-content-left-spacing: 13vw;
	--lla-description-margin-left: 0;
	--lla-description-margin-right: auto;
	--lla-header-offset: 96px;
	--lla-button-justify: flex-start;
	--lla-button-icon-spacing: 10px;
	--lla-text-align: left;
	--lla-dot-active-color: var(--lla-gold);
	--lla-dot-active-hover-color: var(--lla-gold);
	--lla-dot-active-width: 36px;
	--lla-dot-bottom: 28px;
	--lla-dot-color: rgba(255, 255, 255, 0.55);
	--lla-dot-gap: 8px;
	--lla-dot-height: 8px;
	--lla-dot-hover-color: rgba(255, 255, 255, 0.85);
	--lla-dot-hover-scale: 1.08;
	--lla-dot-hover-transition: 0.35s;
	--lla-dot-hover-width: 18px;
	--lla-dot-active-hover-width: 42px;
	--lla-dot-radius: 999px;
	--lla-dot-width: 12px;
	--lla-transition-speed: 850ms;
	background: var(--lla-navy);
	box-sizing: border-box;
	color: var(--lla-white);
	height: var(--lla-hero-height);
	isolation: isolate;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.lla-hero__slides,
.lla-hero__slide {
	inset: 0;
	position: absolute;
}

.lla-hero__slides {
	background:
		linear-gradient(135deg, rgba(8, 38, 74, 0.94), rgba(11, 35, 69, 0.56)),
		radial-gradient(circle at 78% 24%, rgba(246, 185, 15, 0.22), transparent 30%),
		var(--lla-navy);
	z-index: 0;
}

.lla-hero__slide {
	align-items: center;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	box-sizing: border-box;
	display: flex;
	opacity: 0;
	padding: var(--lla-header-offset) clamp(24px, 6vw, 96px) 0 var(--lla-content-left-spacing);
	pointer-events: none;
	transform: scale(1.015);
	transition: opacity var(--lla-transition-speed) ease, transform var(--lla-transition-speed) ease;
	z-index: 0;
}

.lla-hero__slide::before {
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0)),
		var(--lla-overlay-color);
	content: "";
	inset: 0;
	opacity: var(--lla-overlay-opacity);
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.lla-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: scale(1);
	z-index: 1;
}

.lla-hero--align-top .lla-hero__slide {
	align-items: flex-start;
}

.lla-hero--align-middle .lla-hero__slide {
	align-items: center;
}

.lla-hero--align-bottom .lla-hero__slide {
	align-items: flex-end;
	padding-bottom: calc(var(--lla-dot-bottom) + var(--lla-dot-height) + 32px);
}

.lla-hero__content {
	box-sizing: border-box;
	max-width: var(--lla-content-max-width);
	opacity: 0;
	position: relative;
	text-align: var(--lla-text-align);
	transform: translateY(16px);
	transition: opacity var(--lla-transition-speed) ease, transform var(--lla-transition-speed) ease;
	z-index: 2;
}

.lla-hero__slide.is-active .lla-hero__content {
	opacity: 1;
	transform: translateY(0);
}

.lla-hero__eyebrow {
	color: var(--lla-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	line-height: 1.35;
	margin: 0 0 18px;
	text-align: var(--lla-text-align);
	text-transform: uppercase;
}

.lla-hero__title {
	color: var(--lla-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(4rem, 6.4vw, 5.125rem);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 0.98;
	margin: 0 0 24px;
	text-align: var(--lla-text-align);
	text-wrap: balance;
}

.lla-hero__highlight {
	color: var(--lla-gold);
	display: inline-block;
	font-style: italic;
}

.lla-hero__description {
	color: var(--lla-cream);
	font-size: clamp(1.05rem, 1.45vw, 1.25rem);
	font-weight: 400;
	line-height: 1.75;
	margin: 0 var(--lla-description-margin-right) 38px var(--lla-description-margin-left);
	max-width: 680px;
	text-align: var(--lla-text-align);
}

.lla-hero__description p {
	margin: 0;
}

.lla-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: var(--lla-button-justify);
}

.lla-hero__button {
	align-items: center;
	border: 2px solid transparent;
	border-radius: 999px;
	cursor: pointer;
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 800;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2;
	min-height: 56px;
	padding: 17px 30px;
	text-decoration: none;
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.lla-hero__button:hover,
.lla-hero__button:focus {
	text-decoration: none;
	transform: translateY(-2px);
}

.lla-hero__button:focus {
	outline: 3px solid rgba(246, 185, 15, 0.36);
	outline-offset: 4px;
}

.lla-hero__button--primary {
	background: var(--lla-gold);
	color: var(--lla-navy);
}

.lla-hero__button--primary:hover,
.lla-hero__button--primary:focus {
	background: #ffd76a;
	color: var(--lla-navy);
}

.lla-hero__button--secondary {
	background: transparent;
	border-color: var(--lla-white);
	color: var(--lla-white);
}

.lla-hero__button--secondary:hover,
.lla-hero__button--secondary:focus {
	background: var(--lla-white);
	border-color: var(--lla-white);
	color: var(--lla-navy);
}

.lla-hero__button-icon {
	display: inline-flex;
	margin-left: var(--lla-button-icon-spacing);
}

.lla-hero__button-icon svg {
	display: block;
	height: 1em;
	width: 1em;
}

.lla-hero__dots {
	align-items: center;
	bottom: var(--lla-dot-bottom);
	display: flex;
	flex-wrap: nowrap;
	gap: var(--lla-dot-gap);
	justify-content: center;
	left: 50%;
	line-height: 0;
	margin: 0;
	pointer-events: auto;
	position: absolute;
	transform: translateX(-50%);
	z-index: 5;
}

.lla-hero__dot {
	-webkit-appearance: none;
	appearance: none;
	background: var(--lla-dot-color);
	border: 0;
	border-radius: var(--lla-dot-radius);
	box-sizing: border-box;
	cursor: pointer;
	display: block;
	flex: 0 0 auto;
	font-size: 0;
	height: var(--lla-dot-height);
	line-height: 0;
	min-height: 0;
	min-width: 0;
	opacity: 1;
	outline-offset: 4px;
	padding: 0;
	transition: all var(--lla-dot-hover-transition, 0.35s) cubic-bezier(0.22, 1, 0.36, 1);
	width: var(--lla-dot-width);
}

.lla-hero__dot.is-active {
	background: var(--lla-dot-active-color);
	width: var(--lla-dot-active-width);
}

.lla-hero__dot:hover {
	background: var(--lla-dot-hover-color, rgba(255, 255, 255, 0.85));
	transform: scale(var(--lla-dot-hover-scale, 1.08));
	width: var(--lla-dot-hover-width, 18px);
}

.lla-hero__dot.is-active:hover {
	background: var(--lla-dot-active-hover-color, #f6b90f);
	width: var(--lla-dot-active-hover-width, 42px);
}

.lla-hero__dot:focus {
	outline: 2px solid var(--lla-white);
}

@media (max-width: 1024px) {
	.lla-hero {
		--lla-content-left-spacing: 48px;
		--lla-header-offset: 88px;
		--lla-hero-height: 680px;
	}

	.lla-hero__title {
		font-size: clamp(3.5rem, 7vw, 3.75rem);
	}
}

@media (max-width: 767px) {
	.lla-hero {
		--lla-content-left-spacing: 24px;
		--lla-header-offset: 74px;
		--lla-hero-height: 620px;
	}

	.lla-hero__slide {
		padding-right: 24px;
	}

	.lla-hero__title {
		font-size: clamp(2.5rem, 12vw, 2.625rem);
		line-height: 1.04;
	}

	.lla-hero__description {
		font-size: 1rem;
		line-height: 1.65;
	}

	.lla-hero__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.lla-hero__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lla-hero__slide,
	.lla-hero__content,
	.lla-hero__button,
	.lla-hero__dot {
		transition: none;
	}
}
