.ks-scene {
	--kss-ink: #fff;
	--kss-muted: #ddd7cf;
	--kss-accent: #9a672d;
	--kss-accent-light: #c08a4b;
	--kss-proof-bg: #f4f0e8;
	--kss-proof-ink: #181512;
	--kss-overlay: 58%;
	--kss-focus-x: 50%;
	--kss-focus-y: 50%;
	--kss-pointer-x: 0px;
	--kss-pointer-y: 0px;
	position: relative;
	display: flex;
	width: 100%;
	min-height: 92vh;
	overflow: hidden;
	isolation: isolate;
	background: #151310;
	color: var(--kss-ink);
}

.ks-scene *,
.ks-scene *::before,
.ks-scene *::after {
	box-sizing: border-box;
}

.ks-scene__media,
.ks-scene__overlay,
.ks-scene__texture {
	position: absolute;
	inset: 0;
}

.ks-scene__media {
	z-index: -4;
	overflow: hidden;
}

.ks-scene__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--kss-focus-x) var(--kss-focus-y);
	transform: translate3d(var(--kss-pointer-x), var(--kss-pointer-y), 0) scale(1.035);
	transition: transform 500ms ease-out;
	will-change: transform;
}

.ks-scene.has-zoom.is-visible .ks-scene__image {
	animation: ks-scene-breathe 15s ease-in-out infinite alternate;
}

@keyframes ks-scene-breathe {
	from { transform: translate3d(var(--kss-pointer-x), var(--kss-pointer-y), 0) scale(1.035); }
	to { transform: translate3d(var(--kss-pointer-x), var(--kss-pointer-y), 0) scale(1.085); }
}

.ks-scene__overlay {
	z-index: -3;
	background:
		linear-gradient(90deg, rgba(10, 9, 8, 0.94) 0%, rgba(10, 9, 8, 0.76) 36%, rgba(10, 9, 8, 0.24) 70%, rgba(10, 9, 8, 0.42) 100%),
		linear-gradient(0deg, rgba(10, 9, 8, 0.72) 0%, transparent 43%),
		color-mix(in srgb, #000 var(--kss-overlay), transparent);
}

.ks-scene__texture {
	z-index: -2;
	opacity: 0;
	pointer-events: none;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
	mix-blend-mode: soft-light;
}

.ks-scene.has-texture .ks-scene__texture {
	opacity: 0.34;
}

.ks-scene__blade-lines {
	position: absolute;
	z-index: 2;
	top: 0;
	right: 4%;
	width: 32%;
	height: 8px;
	background: repeating-linear-gradient(135deg, var(--kss-accent-light) 0 7px, transparent 7px 14px);
}

.ks-scene__content {
	display: flex;
	width: 100%;
	min-height: inherit;
}

.ks-scene__content-inner {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
	padding: 120px 48px 150px;
}

.ks-scene__copy {
	position: relative;
	z-index: 3;
	width: 100%;
	max-width: 760px;
}

.ks-scene__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 27px;
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(15, 13, 11, 0.28);
	backdrop-filter: blur(8px);
	color: var(--kss-ink);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.2em;
	line-height: 1.3;
	text-transform: uppercase;
}

.ks-scene__eyebrow span {
	width: 17px;
	height: 5px;
	background: repeating-linear-gradient(135deg, var(--kss-accent-light) 0 4px, transparent 4px 7px);
}

.ks-scene__title {
	max-width: 900px;
	margin: 0;
	color: var(--kss-ink);
	font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
	font-size: clamp(3.8rem, 5.7vw, 4.9rem);
	font-weight: 850;
	letter-spacing: -0.055em;
	line-height: 0.91;
	text-wrap: balance;
}

.ks-scene__title em {
	display: block;
	width: fit-content;
	max-width: 100%;
	margin-top: 0.12em;
	color: var(--kss-accent-light);
	font-style: normal;
	font-weight: inherit;
}

.ks-scene__description {
	max-width: 640px;
	margin: 30px 0 0;
	color: var(--kss-muted);
	font-size: 18px;
	line-height: 1.62;
	text-wrap: pretty;
}

.ks-scene__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-top: 38px;
}

.ks-scene__button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	min-height: 56px;
	padding: 16px 24px;
	border: 1px solid transparent;
	color: #fff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.25;
	text-decoration: none;
	text-transform: uppercase;
	transition: 200ms ease;
}

.ks-scene__button--primary {
	background: var(--kss-accent);
	box-shadow: 6px 6px 0 rgba(255, 255, 255, 0.94);
}

.ks-scene__button--secondary {
	border-color: rgba(255, 255, 255, 0.42);
	background: rgba(15, 13, 11, 0.22);
	backdrop-filter: blur(8px);
}

.ks-scene__button:hover {
	color: #fff;
	transform: translate(-2px, -2px);
}

.ks-scene__button--primary:hover {
	background: #181512;
	box-shadow: 8px 8px 0 var(--kss-accent-light);
}

.ks-scene__button--secondary:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
}

.ks-scene__button svg {
	transition: transform 200ms ease;
}

.ks-scene__button:hover svg {
	transform: translateX(4px);
}

.ks-scene__button:focus-visible {
	outline: 3px solid var(--kss-accent-light);
	outline-offset: 5px;
}

.ks-scene__proof {
	position: absolute;
	z-index: 5;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--kss-proof-bg);
	color: var(--kss-proof-ink);
}

.ks-scene__proof::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 24%;
	height: 4px;
	background: var(--kss-accent);
}

.ks-scene__proof-inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	width: 100%;
	max-width: 1440px;
	margin-inline: auto;
}

.ks-scene__proof-item {
	display: flex;
	align-items: center;
	gap: 13px;
	min-width: 0;
	min-height: 88px;
	padding: 18px 25px;
	border-left: 1px solid rgba(24, 21, 18, 0.12);
}

.ks-scene__proof-item:first-child {
	border-left: 0;
}

.ks-scene__proof-icon {
	display: grid;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	place-items: center;
	color: var(--kss-accent);
}

.ks-scene__proof-icon svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.ks-scene__proof-item > span:last-child {
	display: grid;
	gap: 4px;
	min-width: 0;
}

.ks-scene__proof-title {
	font-family: "Arial Narrow", "Roboto Condensed", sans-serif;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.15;
	text-transform: uppercase;
}

.ks-scene__proof-item small {
	display: none;
	color: rgba(24, 21, 18, 0.58);
	font-size: 10px;
	line-height: 1.3;
}

.ks-scene.has-proof-text .ks-scene__proof-item small {
	display: block;
}

.ks-scene__scroll {
	position: absolute;
	z-index: 4;
	right: 30px;
	bottom: 112px;
	display: grid;
	justify-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.58);
}

.ks-scene__scroll span {
	position: relative;
	width: 1px;
	height: 42px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.24);
}

.ks-scene__scroll span::after {
	content: "";
	position: absolute;
	top: -100%;
	left: 0;
	width: 1px;
	height: 65%;
	background: var(--kss-accent-light);
	animation: ks-scroll-line 1.8s ease-in-out infinite;
}

@keyframes ks-scroll-line {
	to { top: 130%; }
}

.ks-scene__scroll small {
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.2em;
	writing-mode: vertical-rl;
}

/* Angular content plate for dense or visually busy photography. */
.ks-scene.layout-blade-panel .ks-scene__overlay {
	background: linear-gradient(90deg, rgba(8, 7, 6, 0.65), rgba(8, 7, 6, 0.12));
}

.ks-scene.layout-blade-panel .ks-scene__copy {
	max-width: 790px;
	padding: 48px 58px 51px;
	background: rgba(16, 14, 12, 0.88);
	box-shadow: 14px 14px 0 rgba(154, 103, 45, 0.75);
	clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 42px 100%, 0 calc(100% - 42px));
	backdrop-filter: blur(12px);
}

.ks-scene.layout-blade-panel .ks-scene__copy::before {
	content: "KS / 01";
	position: absolute;
	top: 17px;
	right: 25px;
	color: rgba(255, 255, 255, 0.34);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: 0.22em;
}

/* Centered mode for symmetrical, wide photography. */
.ks-scene.layout-centered .ks-scene__overlay {
	background:
		linear-gradient(0deg, rgba(8, 7, 6, 0.82), rgba(8, 7, 6, 0.25) 72%),
		color-mix(in srgb, #000 var(--kss-overlay), transparent);
}

.ks-scene.layout-centered .ks-scene__content-inner {
	justify-content: center;
}

.ks-scene.layout-centered .ks-scene__copy {
	max-width: 980px;
	text-align: center;
}

.ks-scene.layout-centered .ks-scene__title,
.ks-scene.layout-centered .ks-scene__title em,
.ks-scene.layout-centered .ks-scene__description {
	margin-right: auto;
	margin-left: auto;
}

.ks-scene.layout-centered .ks-scene__actions {
	justify-content: center;
}

/* Reveal only activates after JS confirms it is available. */
.ks-scene.has-reveal.is-reveal-ready:not(.is-visible) .ks-scene__copy > *,
.ks-scene.has-reveal.is-reveal-ready:not(.is-visible) .ks-scene__proof {
	opacity: 0;
	translate: 0 24px;
}

.ks-scene.has-reveal.is-reveal-ready.is-visible .ks-scene__copy > *,
.ks-scene.has-reveal.is-reveal-ready.is-visible .ks-scene__proof {
	opacity: 1;
	translate: 0;
	transition: opacity 600ms ease, translate 600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.ks-scene.is-visible .ks-scene__copy > :nth-child(2) { transition-delay: 70ms; }
.ks-scene.is-visible .ks-scene__copy > :nth-child(3) { transition-delay: 130ms; }
.ks-scene.is-visible .ks-scene__copy > :nth-child(4) { transition-delay: 190ms; }
.ks-scene.is-visible .ks-scene__proof { transition-delay: 220ms; }

@media (max-width: 900px) {
	.ks-scene__content-inner {
		padding: 110px 32px 145px;
	}

	.ks-scene__copy {
		max-width: 670px;
	}

	.ks-scene__proof-item {
		padding-inline: 17px;
	}

	.ks-scene.layout-blade-panel .ks-scene__copy {
		padding: 42px;
	}
}

@media (max-width: 767px) {
	.ks-scene {
		min-height: 760px;
	}

	.ks-scene__image {
		object-position: var(--kss-focus-x) var(--kss-focus-y);
	}

	.ks-scene__overlay,
	.ks-scene.layout-blade-panel .ks-scene__overlay,
	.ks-scene.layout-centered .ks-scene__overlay {
		background:
			linear-gradient(0deg, rgba(9, 8, 7, 0.93) 0%, rgba(9, 8, 7, 0.58) 55%, rgba(9, 8, 7, 0.22) 100%),
			color-mix(in srgb, #000 var(--kss-overlay), transparent);
	}

	.ks-scene__blade-lines {
		right: 0;
		width: 55%;
	}

	.ks-scene__content-inner {
		align-items: flex-end;
		padding: 104px 20px 196px;
	}

	.ks-scene__copy,
	.ks-scene.layout-centered .ks-scene__copy {
		max-width: none;
		text-align: left;
	}

	.ks-scene__eyebrow {
		margin-bottom: 19px;
		font-size: 8px;
	}

	.ks-scene__title {
		font-size: clamp(2.9rem, 12.2vw, 3.55rem);
		line-height: 0.93;
	}

	.ks-scene__description {
		margin-top: 22px;
		font-size: 15px;
		line-height: 1.55;
	}

	.ks-scene__actions,
	.ks-scene.layout-centered .ks-scene__actions {
		align-items: stretch;
		justify-content: flex-start;
		margin-top: 29px;
	}

	.ks-scene__button {
		flex: 1 1 100%;
		width: 100%;
	}

	.ks-scene.layout-blade-panel .ks-scene__copy {
		padding: 31px 24px 35px;
		box-shadow: 8px 8px 0 rgba(154, 103, 45, 0.75);
		clip-path: polygon(0 0, calc(100% - 27px) 0, 100% 27px, 100% 100%, 27px 100%, 0 calc(100% - 27px));
	}

	.ks-scene.layout-blade-panel .ks-scene__eyebrow {
		margin-top: 10px;
	}

	.ks-scene__proof-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ks-scene__proof-item {
		min-height: 73px;
		padding: 12px 10px;
		border-top: 1px solid rgba(24, 21, 18, 0.1);
	}

	.ks-scene__proof-item:nth-child(odd) {
		border-left: 0;
	}

	.ks-scene__proof-icon {
		flex-basis: 28px;
		width: 28px;
		height: 28px;
	}

	.ks-scene__proof-icon svg {
		width: 17px;
		height: 17px;
	}

	.ks-scene__proof-title {
		font-size: 9px;
		line-height: 1.25;
	}

	.ks-scene__proof-item small {
		font-size: 8px;
	}

	.ks-scene__scroll {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ks-scene *,
	.ks-scene *::before,
	.ks-scene *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}

	.ks-scene__image {
		transform: none !important;
	}
}
