/* Front page hero */
.front-hero {
	position: relative;
	width: 100%;
	min-height: 400px;
	overflow: visible;
}

@media (max-width: 767px) {
	.front-hero {
		min-height: 300px;
		overflow: hidden;
	}
}

.front-hero__stage {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: inherit;
	overflow: hidden;
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem;
	padding-left: clamp(1rem, 5vw, 5rem);
}

@media (max-width: 767px) {
	.front-hero__stage {
		padding-left: 1rem;
	}
}

.front-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	z-index: 1;
	width: 100%;
}

@media (max-width: 767px) {
	.front-hero__content {
		padding-right: clamp(140px, 42%, 200px);
	}
}

.front-hero__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.25rem;
	border-radius: 9999px;
	background-color: #e3e3fa;
	color: var(--brand-navy);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-top:20px;
}

@media (max-width: 767px) {
	.front-hero__badge {
		padding: 0.25rem 0.75rem;
		font-size: 0.75rem;
		letter-spacing: 0.05em;
	}
}

.front-hero__title {
	font-family: var(--font-homepage-section-title);
	color: var(--brand-navy);
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 2.5rem;
	line-height: 1.05;
	margin: 0;
	font-style: italic;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.front-hero__title {
		font-size: 1.75rem;
	}
}

@media (min-width: 768px) {
	.front-hero__title {
		font-size: 3.5rem;
	}
}

@media (min-width: 1024px) {
	.front-hero__title {
		font-size: 4rem;
	}
}

.front-hero__title-brand {
	font-size: 0.55em;
	letter-spacing: 0.02em;
}

.front-hero__subtitle {
	margin: 0;
	max-width: 28rem;
	color: rgba(35, 29, 88, 0.75);
	font-size: 1rem;
	line-height: 1.5;
	text-shadow: 0 0 12px rgba(255, 255, 255, 1), 0 0 4px rgba(255, 255, 255, 1);
}

@media (min-width: 768px) {
	.front-hero__subtitle {
		font-size: 1.125rem;
	}
}

/* Content (mobile & tablet) vs. desktop Content */
.front-hero__subtitle--mobile {
	display: none;
}

@media (max-width: 768px) {
	.front-hero__subtitle--desktop {
		display: none;
	}

	.front-hero__subtitle--mobile {
		display: block;
		width: 40%;
	}
	.front-hero__cta-group {
		max-width:300px;
	}
	.front-hero__art {
		height:80%!important;
	}
}

.front-hero__cta-group {
	display: flex;
	flex-direction: column;
	align-items:flex-start;
	gap: 0.75rem;
	align-self: flex-start;
	margin-top: 0.5rem;
}

.front-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 280px;
	padding: 1rem 2rem;
	border-radius: 9999px;
	color: #fff;
	background: linear-gradient(180deg, #fc6819 0%, #fd8225 100%);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 0.5rem 1.25rem rgba(252, 104, 25, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

@media (min-width: 768px) {
	.front-hero__cta {
		min-width: 320px;
		font-size: 1.125rem;
		padding: 1.125rem 2.5rem;
	}
}

.front-hero__cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.75rem 1.5rem rgba(252, 104, 25, 0.45);
	filter: brightness(1.05);
	color: #fff;
}

.front-hero__disclaimer {
	color: var(--color-text-muted);
	font-size: 0.875rem;
	max-width: 28rem;
	margin: 0;
}

@media (max-width: 767px) {
	.front-hero__disclaimer {
		font-size: 0.75rem;
	}
}

.front-hero__art {
	position: absolute;
	right: 0;
	bottom: 0;
	width: clamp(300px, 45%, 560px);
	z-index: 2;
}

@media (min-width: 768px) {
	.front-hero__art {
		right: -1rem;
		width: auto;
		height: 114%;
		z-index: 0;
	}
}

@media (max-width: 767px) {
	.front-hero__art {
		top: auto;
		right: 0;
		bottom: 0;
		left: auto;
		width: auto;
		height: 100%;
		z-index: 0;
	}
}

.front-hero__art-shape {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: clamp(150px, 30%, 560px);
	height: 100%;
	object-fit: cover;
	object-position: top right;
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

.front-hero__art-glow {
	position: absolute;
	top: 110%;
	right: 4%;
	transform: translateY(-50%);
	width: clamp(300px, 45%, 560px);
	height: auto;
	z-index: 0;
	pointer-events: none;
	user-select: none;
}

.front-hero__art-img {
	position: relative;
	width: 100%;
	height: auto;
	object-fit: contain;
	pointer-events: none;
	user-select: none;
	z-index: 1;
}

@media (min-width: 768px) {
	.front-hero__art-img {
		width: auto;
		height: 100%;
	}
}

@media (max-width: 767px) {
	.front-hero__art-img {
		width: auto;
		height: 100%;
	}
	.front-hero__art {
		height:69%!important;
	}
}

@media (max-width: 500px) {
	.front-hero__subtitle--mobile {
		width:75%;
	}
}

.front-hero__art-img--desktop {
	display: block;
}

@media (max-width: 767px) {
	.front-hero__art-img--desktop {
		display: none;
	}
}

.front-hero__art-img--mobile {
	display: none;
}

@media (max-width: 767px) {
	.front-hero__art-img--mobile {
		display: block;
	}
}

.front-hero__art-tix {
	position: absolute;
	top: 24%;
	right: 0;
	width: 20%;
	height: auto;
	z-index: 2;
	pointer-events: none;
	user-select: none;
}

@media (max-width: 767px) {
	.front-hero__art-tix {
		top: 74%;
		right: 55%;
	}
}

/* Front page pages grid */
.front-pages {
	width: 100%;
	padding-left: var(--home-content-padding-x);
	padding-right: var(--home-content-padding-x);
}

.front-pages__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
	width: 100%;
}

.front-pages__title {
	font-family: var(--font-homepage-section-title);
	color: var(--brand-navy);
	text-align: center;
	text-transform: uppercase;
	font-size: 1.75rem;
	line-height: 1.1;
	margin: 0;
}

@media (min-width: 768px) {
	.front-pages__title {
		font-size: 2rem;
	}
}

@media (min-width: 1024px) {
	.front-pages__title {
		font-size: 2.5rem;
	}
}

@media (max-width: 767px) {
	.front-pages__title-brand {
		display: block;
		font-size: 1.35em;
		line-height: 1;
	}
}

.front-pages__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	width: 100%;
}

@media (min-width: 640px) {
	.front-pages__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.front-pages__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.front-pages__card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: #fff;
	border: 2px solid #e3e2fb;
	border-radius: 1.75rem;
}

.front-pages__card-media {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	text-decoration: none;
}

.front-pages__card-arc {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translateX(-50%);
	width: 200%;
	aspect-ratio: 821 / 643;
	border-radius: 50%;
	background-color: #ecebfb;
	z-index: 0;
	pointer-events: none;
}

.front-pages__card-image {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.front-pages__card-image--promo {
	object-position: center 15%;
}

.front-pages__card-image--territories {
	object-fit: contain;
	padding: 1.25rem 1.5rem 0;
	background-color: #ecebfb;
}

.front-pages__card-image--featured {
	object-fit: cover;
}

.front-pages__card-image--fallback {
	object-fit: contain;
	padding: 2rem;
	background-color: #ecebfb;
}

.front-pages__card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1.25rem 1.25rem 1.5rem;
	flex: 1;
}

.front-pages__card-title {
	margin: 0;
	font-family: var(--font-homepage-section-title);
	color: var(--brand-navy);
	font-size: 1.125rem;
	line-height: 1.2;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.front-pages__card-title {
		font-size: 1.25rem;
	}
}

.front-pages__card-title a {
	color: inherit;
	text-decoration: none;
	transition: opacity var(--transition-base);
}

.front-pages__card-title a:hover {
	opacity: 0.75;
}

.front-pages__card-excerpt {
	margin: 0;
	color: rgba(35, 29, 88, 0.75);
	font-size: 0.9375rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.front-pages__card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: auto;
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	color: #fff;
	background: linear-gradient(180deg, #fc6819 0%, #fd8225 100%);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 0.35rem 0.85rem rgba(252, 104, 25, 0.3);
	transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

@media (min-width: 768px) {
	.front-pages__card-button {
		font-size: 1rem;
		padding: 0.875rem 1.75rem;
	}
}

.front-pages__card-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 0.5rem 1rem rgba(252, 104, 25, 0.4);
	filter: brightness(1.05);
	color: #fff;
}

/* Editable front page content (FAQ blocks, etc.) */
.front-page-content {
	width: 100%;
}

.front-page-content > *:last-child {
	margin-bottom: 0;
}
