/* Vercel-matched ZENAUURA homepage attention section. */
.z-attention {
	--z-attention-ink: var(--z-color-ink, #1d211e);
	--z-attention-muted: var(--z-color-muted, #676960);
	--z-attention-copper: var(--z-color-copper, #a16d2c);
	width: 100%;
	min-width: 0;
	padding: clamp(90px, 9vw, 150px) clamp(22px, 6vw, 112px);
	overflow: clip;
	background: var(--z-color-ivory, #f7f2e9);
	color: var(--z-attention-ink);
	font-family: var(--z-family-body, "Manrope", sans-serif);
}

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

.z-attention__intro {
	max-width: var(--z-width-heading, 940px);
	margin: 0 auto 65px;
	text-align: center;
}

.z-attention__eyebrow {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	margin: 0;
	color: var(--z-attention-copper);
	font-size: clamp(.75rem, .72rem + .13vw, .875rem);
	font-weight: 800;
	letter-spacing: .18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.z-attention__eyebrow svg {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.45;
}

.z-attention__intro h2 {
	max-width: var(--z-width-heading, 940px);
	margin: 14px 0 15px;
	color: var(--z-attention-ink);
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: clamp(2.625rem, 2rem + 2.8vw, 4.875rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: .98;
}

.z-attention__copy {
	max-width: var(--z-width-copy, 760px);
	margin: 0 auto;
	color: var(--z-attention-muted);
	font-size: clamp(1.0625rem, 1.02rem + .18vw, 1.1875rem);
	font-weight: 400;
	line-height: 1.8;
}

.z-attention__grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 18px;
	width: min(100%, var(--z-width-grid, 1600px));
	margin: 0 auto;
}

.z-attention__item {
	display: block;
	min-width: 0;
	color: var(--z-attention-ink);
	text-decoration: none;
}

.z-attention__media {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 140px 140px 8px 8px;
	aspect-ratio: 4 / 5;
	background: var(--z-color-cream, #eee5d8);
}

.z-attention__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 45%, rgba(4, 16, 31, .48));
	content: "";
	pointer-events: none;
}

.z-attention__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.82);
	transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.z-attention__media > span {
	position: absolute;
	z-index: 1;
	left: 18px;
	bottom: 14px;
	color: var(--z-color-white, #fff);
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: 22px;
	font-weight: 600;
	line-height: 1;
}

.z-attention__item h3 {
	margin: 20px 0 7px;
	color: var(--z-attention-ink);
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: 27px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.05;
}

.z-attention__item > p {
	min-height: 44px;
	margin: 0 0 14px;
	color: var(--z-attention-muted);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.65;
}

.z-attention__item > b {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	color: var(--z-attention-copper);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.35;
	text-transform: uppercase;
}

.z-attention__item > b svg {
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: transform .35s ease;
}

.z-attention__item:hover .z-attention__image,
.z-attention__item:focus-visible .z-attention__image {
	filter: saturate(1);
	transform: scale(1.07);
}

.z-attention__item:hover > b svg,
.z-attention__item:focus-visible > b svg {
	transform: translate(2px, -2px);
}

.z-attention__item:focus-visible {
	outline: 2px solid var(--z-attention-copper);
	outline-offset: 5px;
}

@media (max-width: 1320px) {
	.z-attention__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 30px;
	}

	.z-attention__media {
		aspect-ratio: 1;
	}
}

@media (max-width: 680px) {
	.z-attention {
		padding: 80px 20px;
	}

	.z-attention__intro {
		margin-bottom: 42px;
	}

	.z-attention__eyebrow {
		font-size: 11px;
		letter-spacing: .14em;
	}

	.z-attention__intro h2 {
		font-size: 45px;
	}

	.z-attention__copy {
		font-size: 15px;
	}

	.z-attention__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 12px;
	}

	.z-attention__media {
		border-radius: 90px 90px 6px 6px;
		aspect-ratio: 4 / 5;
	}

	.z-attention__item h3 {
		font-size: 22px;
	}

	.z-attention__item > p {
		min-height: 58px;
		font-size: 11px;
	}

	.z-attention__item > b {
		font-size: 8px;
	}
}

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

/* Homepage Guided Discovery, adapted from the Vercel mini finder. */
.z-home-pathfinder {
	--z-pathfinder-ink: var(--z-color-ink, #1d211e);
	--z-pathfinder-muted: var(--z-color-muted, #676960);
	--z-pathfinder-copper: var(--z-color-copper, #a16d2c);
	--z-pathfinder-navy: var(--z-color-royal-navy, #071a38);
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
	gap: clamp(60px, 8vw, 145px);
	align-items: center;
	position: relative;
	width: 100%;
	min-width: 0;
	padding: clamp(90px, 9vw, 150px) clamp(22px, 6vw, 112px);
	overflow: clip;
	background: #e4ddd0;
	color: var(--z-pathfinder-ink);
	font-family: var(--z-family-body, "Manrope", sans-serif);
}

.z-home-pathfinder::before {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 8% 18%, rgba(255, 255, 255, .72), transparent 30%),
		repeating-linear-gradient(90deg, transparent 0 85px, rgba(161, 109, 44, .045) 86px);
	content: "";
	pointer-events: none;
}

.z-home-pathfinder *,
.z-home-pathfinder *::before,
.z-home-pathfinder *::after {
	box-sizing: border-box;
}

.z-home-pathfinder__intro,
.z-home-pathfinder__visual {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.z-home-pathfinder__intro {
	max-width: 790px;
}

.z-home-pathfinder__eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: var(--z-pathfinder-copper);
	font-size: clamp(.75rem, .72rem + .13vw, .875rem);
	font-weight: 800;
	letter-spacing: .18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.z-home-pathfinder__eyebrow svg {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.45;
}

.z-home-pathfinder__intro h2 {
	max-width: 780px;
	margin: 17px 0 20px;
	color: var(--z-pathfinder-ink);
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: clamp(3.125rem, 2.2rem + 3vw, 5.125rem);
	font-weight: 600;
	letter-spacing: -.025em;
	line-height: .98;
}

.z-home-pathfinder__lead {
	max-width: 700px;
	margin: 0;
	color: #565a54;
	font-size: clamp(1rem, .94rem + .22vw, 1.125rem);
	line-height: 1.75;
}

.z-home-pathfinder__options {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 38px 0 0;
}

.z-home-pathfinder__option {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 24px;
	gap: 8px;
	align-items: center;
	width: 100%;
	min-height: 72px;
	padding: 18px 10px;
	border: 0;
	border-bottom: 1px solid rgba(29, 33, 30, .18);
	border-radius: 0;
	background: transparent;
	color: #4f534d;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition: padding .35s ease, background-color .35s ease, color .35s ease;
}

.z-home-pathfinder__option > span {
	color: var(--z-pathfinder-copper);
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: 17px;
	font-weight: 600;
}

.z-home-pathfinder__option > strong {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.4;
	text-transform: uppercase;
}

.z-home-pathfinder__option svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: transform .35s ease;
}

.z-home-pathfinder__option:hover,
.z-home-pathfinder__option.is-active {
	padding-left: 20px;
	background: var(--z-color-warm-white, #fffdf8);
	color: var(--z-pathfinder-navy);
}

.z-home-pathfinder__option:hover svg,
.z-home-pathfinder__option.is-active svg {
	transform: translateX(3px);
}

.z-home-pathfinder__option:focus-visible {
	position: relative;
	z-index: 2;
	outline: 2px solid var(--z-pathfinder-copper);
	outline-offset: 3px;
}

.z-home-pathfinder__quiz-cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	min-height: 56px;
	margin-top: 32px;
	padding: 14px 20px;
	background: var(--z-pathfinder-navy);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1.4;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color .3s ease;
}

.z-home-pathfinder__quiz-cta:hover {
	background: var(--z-pathfinder-copper);
	color: #fff;
}

.z-home-pathfinder__quiz-cta:focus-visible {
	outline: 2px solid var(--z-pathfinder-copper);
	outline-offset: 4px;
}

.z-home-pathfinder__quiz-cta svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
}

.z-home-pathfinder__meta {
	max-width: 570px;
	margin: 13px 0 0;
	color: var(--z-pathfinder-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.6;
	text-transform: uppercase;
}

.z-home-pathfinder__visual {
	width: min(100%, 570px);
	justify-self: end;
	background: var(--z-pathfinder-navy);
	box-shadow: 0 35px 80px rgba(7, 26, 56, .25);
	transform: rotate(2deg);
}

.z-home-pathfinder__panel {
	margin: 0;
	padding: 18px 18px 30px;
	background: var(--z-pathfinder-navy);
	color: #fff;
}

.z-home-pathfinder__panel.is-active {
	animation: zPathfinderReveal .42s ease both;
}

.z-home-pathfinder__media {
	width: 100%;
	height: clamp(330px, 29vw, 430px);
	overflow: hidden;
	background: #102746;
}

.z-home-pathfinder__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(.82);
	transition: filter .45s ease, transform .6s cubic-bezier(.2, .8, .2, 1);
}

.z-home-pathfinder__panel:hover .z-home-pathfinder__media img {
	filter: saturate(.96);
	transform: scale(1.018);
}

.z-home-pathfinder__content {
	padding: 25px 8px 0;
}

.z-home-pathfinder__content > span {
	display: block;
	margin: 0 0 8px;
	color: var(--z-color-gold, #d2af69);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .15em;
	line-height: 1.4;
	text-transform: uppercase;
}

.z-home-pathfinder__content h3 {
	margin: 0 0 8px;
	color: #fff;
	font-family: var(--z-family-heading, "Cormorant Garamond", serif);
	font-size: clamp(1.75rem, 1.3rem + 1vw, 2.35rem);
	font-weight: 600;
	letter-spacing: -.015em;
	line-height: 1.14;
}

.z-home-pathfinder__content > p {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, .72);
	font-size: 14px;
	line-height: 1.7;
}

.z-home-pathfinder__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .18);
	color: var(--z-color-gold-light, #e9c67f);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	line-height: 1.4;
	text-decoration: none;
	text-transform: uppercase;
}

.z-home-pathfinder__cta svg {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.5;
	transition: transform .35s ease;
}

.z-home-pathfinder__cta:hover svg,
.z-home-pathfinder__cta:focus-visible svg {
	transform: translate(2px, -2px);
}

.z-home-pathfinder__cta:focus-visible {
	outline: 2px solid var(--z-color-gold-light, #e9c67f);
	outline-offset: 5px;
}

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

@media (max-width: 1180px) {
	.z-home-pathfinder {
		grid-template-columns: minmax(0, 1fr) minmax(350px, .82fr);
		gap: clamp(45px, 6vw, 80px);
	}

	.z-home-pathfinder__intro h2 {
		font-size: clamp(3rem, 5.8vw, 4.5rem);
	}
}

@media (max-width: 1020px) {
	.z-home-pathfinder {
		grid-template-columns: minmax(0, 1fr);
		gap: 70px;
	}

	.z-home-pathfinder__intro {
		max-width: 820px;
	}

	.z-home-pathfinder__visual {
		width: min(100%, 680px);
		justify-self: center;
	}

	.z-home-pathfinder__media {
		height: clamp(380px, 64vw, 540px);
	}
}

@media (max-width: 680px) {
	.z-home-pathfinder {
		gap: 52px;
		padding: 80px 20px;
	}

	.z-home-pathfinder__eyebrow {
		font-size: 11px;
		letter-spacing: .14em;
	}

	.z-home-pathfinder__intro h2 {
		font-size: clamp(43px, 12vw, 51px);
	}

	.z-home-pathfinder__lead {
		font-size: 15px;
	}

	.z-home-pathfinder__options {
		grid-template-columns: minmax(0, 1fr);
		margin-top: 30px;
	}

	.z-home-pathfinder__option {
		grid-template-columns: 35px minmax(0, 1fr) 22px;
		min-height: 67px;
		padding: 16px 8px;
	}

	.z-home-pathfinder__option:hover,
	.z-home-pathfinder__option.is-active {
		padding-left: 14px;
	}

	.z-home-pathfinder__option > strong {
		font-size: 12px;
	}

	.z-home-pathfinder__visual {
		transform: none;
	}

	.z-home-pathfinder__panel {
		padding: 12px 12px 25px;
	}

	.z-home-pathfinder__media {
		height: clamp(310px, 94vw, 430px);
	}

	.z-home-pathfinder__content {
		padding: 22px 6px 0;
	}

	.z-home-pathfinder__content h3 {
		font-size: clamp(27px, 7.5vw, 34px);
	}

	.z-home-pathfinder__cta {
		min-height: 48px;
		font-size: 10px;
	}

	.z-home-pathfinder__quiz-cta {
		width: 100%;
	}
}

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