/* Dedicated ZENAUURA Path Quiz, adapted from the reference split-screen flow. */
.z-path-quiz-page {
	min-width: 0;
	overflow: clip;
	background: var(--z-color-warm-white, #fffdf8);
}

.z-path-quiz {
	--z-quiz-midnight: var(--z-color-midnight, #04101f);
	--z-quiz-navy: var(--z-color-royal-navy, #071a38);
	--z-quiz-copper: var(--z-color-copper, #a16d2c);
	--z-quiz-copper-hover: var(--z-color-copper-hover, #b47b35);
	--z-quiz-gold: var(--z-color-gold, #d2af69);
	--z-quiz-ivory: var(--z-color-ivory, #f7f2e9);
	--z-quiz-cream: var(--z-color-cream, #eee5d8);
	--z-quiz-white: var(--z-color-warm-white, #fffdf8);
	--z-quiz-ink: var(--z-color-ink, #1d211e);
	--z-quiz-muted: var(--z-color-muted, #676960);
	--z-quiz-line: rgba(29, 33, 30, .18);
	display: grid;
	grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
	min-height: 100vh;
	background: var(--z-quiz-white);
	color: var(--z-quiz-ink);
	font-family: var(--z-family-body, "Manrope", sans-serif);
}

.z-path-quiz *,
.z-path-quiz *::before,
.z-path-quiz *::after {
	box-sizing: border-box;
}

.z-path-quiz__art {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	background: var(--z-quiz-midnight);
}

.z-path-quiz__art > img:first-child {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.72);
}

.z-path-quiz__art-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(4, 16, 31, .28), rgba(4, 16, 31, .78));
}

.z-path-quiz__logo {
	position: absolute;
	z-index: 2;
	top: 100px;
	left: 50%;
	width: min(250px, 52%);
	height: auto;
	transform: translateX(-50%);
}

.z-path-quiz__art-copy {
	position: absolute;
	z-index: 2;
	right: clamp(28px, 4vw, 60px);
	bottom: clamp(35px, 5vw, 70px);
	left: clamp(28px, 4vw, 60px);
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .24);
	color: #fff;
}

.z-path-quiz__art-copy span {
	color: var(--z-quiz-gold);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.z-path-quiz__art-copy p {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, .76);
	font-size: 13px;
	line-height: 1.65;
}

.z-path-quiz__experience {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: clamp(135px, 9vw, 175px) clamp(44px, 8vw, 135px) clamp(80px, 7vw, 125px);
}

.z-path-quiz__header > p,
.z-path-quiz__step,
.z-path-quiz__result-eyebrow {
	margin: 0;
	color: var(--z-quiz-copper);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.z-path-quiz__header h1 {
	max-width: 850px;
	margin: 14px 0 38px;
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: clamp(3rem, 4.8vw, 4.6rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: .98;
}

.z-path-quiz__progress {
	width: 100%;
	height: 3px;
	margin-bottom: 28px;
	overflow: hidden;
	background: #dedbd5;
}

.z-path-quiz__progress span {
	display: block;
	height: 100%;
	background: var(--z-quiz-copper);
	transition: width .4s ease;
}

.z-path-quiz__step {
	margin-bottom: 15px;
}

.z-path-quiz__question {
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.z-path-quiz__question legend {
	max-width: 900px;
	margin: 0 0 30px;
	padding: 0;
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: clamp(2.6rem, 4.5vw, 4.35rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: .98;
}

.z-path-quiz__question legend:focus {
	outline: 0;
}

.z-path-quiz__options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.z-path-quiz__options button {
	display: grid;
	grid-template-columns: 22px minmax(0, 1fr) 24px;
	gap: 10px;
	align-items: center;
	min-height: 68px;
	padding: 12px 16px;
	border: 1px solid var(--z-quiz-line);
	border-radius: 0;
	background: transparent;
	color: var(--z-quiz-ink);
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: border-color .3s ease, background-color .3s ease;
}

.z-path-quiz__options button > span {
	width: 15px;
	height: 15px;
	border: 1px solid #999;
	border-radius: 50%;
}

.z-path-quiz__options button > strong {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
}

.z-path-quiz__options button svg,
.z-path-quiz__nav button svg,
.z-path-quiz__result-card a svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.z-path-quiz__options button:hover,
.z-path-quiz__options button.is-selected {
	border-color: var(--z-quiz-copper);
	background: #f3eadc;
}

.z-path-quiz__options button.is-selected > span {
	border: 4px solid var(--z-quiz-copper);
}

.z-path-quiz__options button:focus-visible,
.z-path-quiz__nav button:focus-visible,
.z-path-quiz__restart:focus-visible,
.z-path-quiz__result-card a:focus-visible {
	outline: 2px solid var(--z-quiz-copper);
	outline-offset: 3px;
}

.z-path-quiz__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 32px;
}

.z-path-quiz__nav button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 48px;
	padding: 12px 0;
	border: 0;
	background: transparent;
	color: var(--z-quiz-ink);
	font: inherit;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
	cursor: pointer;
}

.z-path-quiz__nav button:last-child {
	padding: 14px 20px;
	background: var(--z-quiz-copper);
	color: #fff;
}

.z-path-quiz__nav button:last-child:hover {
	background: var(--z-quiz-copper-hover);
}

.z-path-quiz__nav button:disabled {
	opacity: .35;
	cursor: not-allowed;
}

.z-path-quiz__results {
	width: min(100%, 920px);
}

.z-path-quiz__result.is-active {
	animation: zQuizReveal .42s ease both;
}

.z-path-quiz__result > h2 {
	margin: 12px 0 5px;
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: clamp(3.5rem, 6vw, 5.4rem);
	font-weight: 600;
	letter-spacing: -.03em;
	line-height: .94;
}

.z-path-quiz__result > h2:focus {
	outline: 0;
}

.z-path-quiz__result > p:not(.z-path-quiz__result-eyebrow) {
	margin: 0;
	color: var(--z-quiz-muted);
	font-size: 16px;
	line-height: 1.7;
}

.z-path-quiz__result-card {
	display: grid;
	grid-template-columns: minmax(220px, .8fr) minmax(0, 1.2fr);
	margin-top: 28px;
	background: var(--z-quiz-ivory);
}

.z-path-quiz__result-card > img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 330px;
	object-fit: cover;
}

.z-path-quiz__result-card > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(28px, 4vw, 48px);
}

.z-path-quiz__result-card span {
	color: var(--z-quiz-copper);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.z-path-quiz__result-card h3 {
	margin: 7px 0 12px;
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: clamp(2rem, 3vw, 2.8rem);
	font-weight: 600;
	line-height: 1;
}

.z-path-quiz__result-card p {
	margin: 0 0 24px;
	color: var(--z-quiz-muted);
	font-size: 13px;
	line-height: 1.75;
}

.z-path-quiz__result-card a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding-top: 14px;
	border-top: 1px solid var(--z-quiz-line);
	color: var(--z-quiz-copper);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .06em;
	text-decoration: none;
	text-transform: uppercase;
}

.z-path-quiz__restart {
	margin-top: 22px;
	padding: 8px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: var(--z-quiz-muted);
	font: inherit;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
}

.z-path-quiz__noscript {
	padding: 18px;
	background: var(--z-quiz-cream);
	color: var(--z-quiz-ink);
}

@keyframes zQuizReveal {
	from {
		opacity: .2;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 1020px) {
	.z-path-quiz {
		grid-template-columns: minmax(0, 1fr);
	}

	.z-path-quiz__art {
		min-height: 450px;
	}

	.z-path-quiz__logo {
		top: 120px;
		width: 210px;
	}

	.z-path-quiz__experience {
		min-height: 720px;
		padding: 85px clamp(32px, 7vw, 72px);
	}
}

@media (max-width: 680px) {
	.z-path-quiz__art {
		min-height: 350px;
	}

	.z-path-quiz__logo {
		top: 92px;
		width: 180px;
	}

	.z-path-quiz__art-copy {
		right: 20px;
		bottom: 24px;
		left: 20px;
	}

	.z-path-quiz__experience {
		min-height: 680px;
		padding: 70px 20px;
	}

	.z-path-quiz__header h1 {
		font-size: 43px;
	}

	.z-path-quiz__question legend {
		font-size: clamp(2.5rem, 12vw, 3.15rem);
	}

	.z-path-quiz__options {
		grid-template-columns: minmax(0, 1fr);
	}

	.z-path-quiz__options button {
		min-height: 64px;
	}

	.z-path-quiz__result > h2 {
		font-size: clamp(3.2rem, 14vw, 4.4rem);
	}

	.z-path-quiz__result-card {
		grid-template-columns: minmax(0, 1fr);
	}

	.z-path-quiz__result-card > img {
		height: 300px;
		min-height: 0;
	}

	.z-path-quiz__nav {
		align-items: stretch;
	}
}

@media (prefers-reduced-motion: reduce) {
	.z-path-quiz *,
	.z-path-quiz *::before,
	.z-path-quiz *::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}
