:root {
	--kj-bg: #0c0c0d;
	--kj-panel: #141416;
	--kj-panel-soft: #1c1c20;
	--kj-text: #f4f1ea;
	--kj-muted: #b8b0a2;
	--kj-line: rgba(255,255,255,.12);
	--kj-accent: #d9b46a;
	--kj-accent-dark: #87662f;
	--kj-max: 1180px;
	--kj-radius: 22px;
	--kj-shadow: 0 30px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--kj-bg);
	color: var(--kj-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
a:hover, a:focus { color: var(--kj-accent); }
img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	clip: auto !important;
	clip-path: none;
	display: block;
	height: auto;
	left: 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
	background: var(--kj-text);
	color: var(--kj-bg);
	padding: .75rem 1rem;
}

.kj-container {
	width: min(100% - 40px, var(--kj-max));
	margin-inline: auto;
}

.kj-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(12,12,13,.86);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--kj-line);
}
.kj-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 1rem 0;
}
.kj-site-title {
	font-size: clamp(1.1rem, 2vw, 1.45rem);
	font-weight: 700;
	letter-spacing: .02em;
}
.kj-site-description {
	margin: .1rem 0 0;
	font-size: .82rem;
	color: var(--kj-muted);
}
.kj-menu {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: .9rem;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.kj-menu-toggle { display: none; }

.kj-site-main { min-height: 60vh; }
.kj-hero {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	padding: clamp(4rem, 10vw, 8rem) 0;
}
.kj-eyebrow {
	margin: 0 0 .9rem;
	color: var(--kj-accent);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
}
.kj-hero h1, .kj-entry-header h1, .kj-section-heading h1, .kj-section-heading h2 {
	margin: 0;
	line-height: 1.02;
	letter-spacing: -.04em;
}
.kj-hero h1 {
	font-size: clamp(2.8rem, 7vw, 6.8rem);
	max-width: 10ch;
}
.kj-hero p:not(.kj-eyebrow) {
	max-width: 720px;
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
	color: var(--kj-muted);
}
.kj-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	margin-top: 2rem;
}
/* Stage 7.6.1 unified CTA / button system. Use one primary CTA per page. */
.kj-button,
.kj-btn-primary,
.kj-btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: .82rem 1.18rem;
	border-radius: 0;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.1;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid var(--kj-accent);
	transition: background .24s ease, color .24s ease, border-color .24s ease, transform .24s ease;
}
.kj-button,
.kj-btn-primary {
	background: var(--kj-accent);
	color: #050505;
}
.kj-button:hover,
.kj-button:focus,
.kj-btn-primary:hover,
.kj-btn-primary:focus {
	background: var(--kj-text);
	border-color: var(--kj-text);
	color: #050505;
}
.kj-button--ghost,
.kj-btn-secondary {
	background: transparent;
	color: var(--kj-text);
	border-color: var(--kj-line);
}
.kj-button--ghost:hover,
.kj-button--ghost:focus,
.kj-btn-secondary:hover,
.kj-btn-secondary:focus {
	background: rgba(255,255,255,.08);
	border-color: var(--kj-accent);
	color: var(--kj-accent);
}
.kj-text-link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	color: var(--kj-accent);
	font-size: .82rem;
	font-weight: 800;
	letter-spacing: .12em;
	line-height: 1.4;
	text-transform: uppercase;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .32em;
}
.kj-text-link:hover,
.kj-text-link:focus {
	color: var(--kj-text);
}
.kj-button:focus-visible,
.kj-btn-primary:focus-visible,
.kj-btn-secondary:focus-visible,
.kj-text-link:focus-visible {
	outline: 2px solid var(--kj-accent);
	outline-offset: 4px;
}

.kj-hero-panel {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.kj-photo-tile {
	min-height: 220px;
	border-radius: var(--kj-radius);
	background:
		linear-gradient(145deg, rgba(217,180,106,.35), rgba(255,255,255,.04)),
		linear-gradient(45deg, #202026, #080809);
	box-shadow: var(--kj-shadow);
	border: 1px solid var(--kj-line);
}
.kj-photo-tile--large { grid-row: span 2; min-height: 460px; }

.kj-section { padding: clamp(3rem, 6vw, 6rem) 0; }
.kj-section-heading { margin-bottom: 2rem; max-width: 780px; }
.kj-section-heading h1, .kj-section-heading h2 { font-size: clamp(2rem, 4vw, 4.1rem); }
.kj-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}
.kj-card {
	background: var(--kj-panel);
	border: 1px solid var(--kj-line);
	border-radius: var(--kj-radius);
	padding: clamp(1.25rem, 3vw, 2rem);
	box-shadow: 0 16px 40px rgba(0,0,0,.18);
}
.kj-card h2, .kj-card h3 { margin-top: 0; line-height: 1.1; }
.kj-card p { color: var(--kj-muted); margin-bottom: 0; }
.kj-card-image { margin: -2rem -2rem 1.2rem; overflow: hidden; border-radius: var(--kj-radius) var(--kj-radius) 0 0; }
.kj-card-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

.kj-entry-wrap { padding: clamp(3rem, 7vw, 7rem) 0; }
.kj-entry { max-width: 960px; margin-inline: auto; }
.kj-entry-header { margin-bottom: 2rem; }
.kj-entry-header h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
.kj-featured-image { margin: 0 0 2rem; border-radius: var(--kj-radius); overflow: hidden; border: 1px solid var(--kj-line); }
.kj-entry-content { color: #e8e3d8; }
.kj-entry-content a { color: var(--kj-accent); text-decoration: underline; text-underline-offset: .18em; }
.kj-entry-content h2, .kj-entry-content h3 { line-height: 1.15; margin-top: 2rem; }

.kj-pagination { margin-top: 2rem; }
.kj-site-footer {
	border-top: 1px solid var(--kj-line);
	background: #080809;
	padding: 3rem 0 1.5rem;
}
.kj-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr .8fr 1fr;
	gap: 2rem;
}
.kj-site-footer h2 { margin: 0 0 .75rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .13em; color: var(--kj-accent); }
.kj-site-footer p { color: var(--kj-muted); margin-top: 0; }
.kj-footer-menu { margin: 0; padding: 0; list-style: none; display: grid; gap: .4rem; }
.kj-footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--kj-line); color: var(--kj-muted); font-size: .9rem; }

@media (max-width: 860px) {
	.kj-menu-toggle {
		display: inline-flex;
		background: transparent;
		border: 1px solid var(--kj-line);
		border-radius: 999px;
		color: var(--kj-text);
		padding: .55rem .8rem;
	}
	.kj-primary-nav {
		display: none;
		position: absolute;
		left: 20px;
		right: 20px;
		top: 100%;
		padding: 1rem;
		background: var(--kj-panel);
		border: 1px solid var(--kj-line);
		border-radius: 18px;
	}
	.kj-primary-nav.is-open { display: block; }
	.kj-menu { align-items: flex-start; flex-direction: column; gap: .7rem; }
	.kj-hero { grid-template-columns: 1fr; }
	.kj-card-grid, .kj-footer-grid { grid-template-columns: 1fr; }
	.kj-photo-tile--large { min-height: 320px; }
}

/* Stage 2 custom post type views */
.kj-card-meta,
.kj-entry-meta {
	margin: 0 0 .8rem;
	color: var(--kj-accent);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.kj-card-meta a,
.kj-entry-meta a {
	color: var(--kj-accent);
}
.kj-empty-state {
	padding: 2rem;
	border: 1px solid var(--kj-line);
	border-radius: var(--kj-radius);
	background: var(--kj-panel);
	color: var(--kj-muted);
}
.kj-featured-image--wide img {
	width: 100%;
	max-height: 760px;
	object-fit: cover;
}
.kj-cta-panel,
.kj-related-placeholder {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	padding: clamp(1.5rem, 4vw, 3rem);
	border: 1px solid var(--kj-line);
	border-radius: var(--kj-radius);
	background: linear-gradient(145deg, rgba(217,180,106,.12), rgba(255,255,255,.03));
}
.kj-cta-panel h2,
.kj-related-placeholder h2 {
	margin: 0 0 .75rem;
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	line-height: 1.05;
	letter-spacing: -.03em;
}
.kj-cta-panel p,
.kj-related-placeholder p {
	max-width: 760px;
	color: var(--kj-muted);
}
.kj-service-hero {
	padding: clamp(3.5rem, 8vw, 7rem) 0;
	border-bottom: 1px solid var(--kj-line);
	background: radial-gradient(circle at 80% 10%, rgba(217,180,106,.18), transparent 34%), #09090a;
}
.kj-service-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(280px, .85fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
.kj-service-hero h1 {
	margin: 0;
	font-size: clamp(2.6rem, 6vw, 6rem);
	line-height: 1;
	letter-spacing: -.05em;
}
.kj-service-excerpt {
	max-width: 680px;
	font-size: clamp(1.05rem, 1.8vw, 1.3rem);
	color: var(--kj-muted);
}
.kj-service-hero-image {
	margin: 0;
	border: 1px solid var(--kj-line);
	border-radius: var(--kj-radius);
	overflow: hidden;
	box-shadow: var(--kj-shadow);
}
.kj-service-hero-image img {
	width: 100%;	aspect-ratio: 4 / 5;
	object-fit: cover;
}
.kj-card-grid--portfolio .kj-card,
.kj-card-grid--services .kj-card {
	overflow: hidden;
}

@media (max-width: 860px) {
	.kj-service-hero-grid {
		grid-template-columns: 1fr;
	}
}

/* Stage 3 selected gallery image grid */
.kj-gallery-image-section {
	margin-top: clamp(2.5rem, 6vw, 5rem);
}
.kj-gallery-image-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(.8rem, 2vw, 1.4rem);
}
.kj-gallery-image-card {
	margin: 0;
	position: relative;
	background: var(--kj-panel);
	border: 1px solid var(--kj-line);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0,0,0,.24);
}
.kj-gallery-image-card img {
	width: 100%;
	height: auto;
	min-height: 260px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
	transition: transform .35s ease, opacity .35s ease;
}
.kj-gallery-image-card:hover img {
	transform: scale(1.025);
	opacity: .96;
}
.kj-gallery-image-card figcaption {
	padding: .75rem .9rem;
	font-size: .85rem;
	color: var(--kj-muted);
	border-top: 1px solid var(--kj-line);
	background: rgba(8,8,9,.92);
}
@media (max-width: 980px) {
	.kj-gallery-image-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 620px) {
	.kj-gallery-image-grid {
		grid-template-columns: 1fr;
	}
	.kj-gallery-image-card img {
		min-height: 220px;
	}
}

/* Stage 4 service landing page sections */
.kj-service-content-wrap {
	display: grid;
	gap: clamp(2.5rem, 5vw, 4.5rem);
}
.kj-service-section {
	max-width: 980px;
	margin-inline: auto;
	width: 100%;
}
.kj-service-intro-headline {
	max-width: 720px;
	margin: 1.2rem 0 .8rem;
	font-size: clamp(1.25rem, 2.2vw, 1.8rem);
	line-height: 1.25;
	color: var(--kj-text);
}
.kj-related-gallery-card {
	display: grid;
	grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
	gap: clamp(1.2rem, 3vw, 2rem);
	align-items: center;
	padding: clamp(1rem, 2.5vw, 1.5rem);
	background: var(--kj-panel);
	border: 1px solid var(--kj-line);
	border-radius: var(--kj-radius);
	box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.kj-related-gallery-image {
	margin: 0;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--kj-line);
}
.kj-related-gallery-image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.kj-related-gallery-copy h3,
.kj-faq-item h3 {
	margin-top: 0;
	line-height: 1.15;
}
.kj-related-gallery-copy p,
.kj-faq-answer,
.kj-related-service-card p {
	color: var(--kj-muted);
}
.kj-text-link {
	display: inline-block;
	margin-top: .7rem;
	color: var(--kj-accent);
	font-weight: 800;
	letter-spacing: .03em;
	text-transform: uppercase;
	font-size: .82rem;
}
.kj-faq-list {
	display: grid;
	gap: 1rem;
}
.kj-faq-item {
	padding: clamp(1rem, 2vw, 1.4rem);
	background: var(--kj-panel);
	border: 1px solid var(--kj-line);
	border-radius: 18px;
}
.kj-faq-item p:last-child {
	margin-bottom: 0;
}
.kj-related-services .kj-section-heading {
	margin-bottom: 1.2rem;
}
.kj-related-service-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.kj-cta-panel {
	padding: clamp(1.5rem, 4vw, 2.4rem);
	background: linear-gradient(135deg, rgba(217,180,106,.17), rgba(255,255,255,.03));
	border: 1px solid var(--kj-line);
	border-radius: var(--kj-radius);
	box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.kj-cta-panel h2 {
	margin-top: 0;
	font-size: clamp(2rem, 4vw, 3.6rem);
	line-height: 1;
	letter-spacing: -.04em;
}
@media (max-width: 780px) {
	.kj-related-gallery-card,
	.kj-related-service-grid {
		grid-template-columns: 1fr;
	}
}

/* Stage 5 editable footer settings */
.kj-footer-seo p:last-child {
	margin-bottom: 0;
}
.kj-footer-seo a,
.kj-footer-contact a,
.kj-footer-social a {
	color: var(--kj-accent);
	text-decoration: underline;
	text-underline-offset: .18em;
}
.kj-footer-contact,
.kj-footer-social {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: .35rem;
	color: var(--kj-muted);
}
.kj-footer-menu--fallback {
	margin-top: .75rem;
	padding-top: .75rem;
	border-top: 1px solid var(--kj-line);
}

/* Stage 6 polished homepage and footer connection */
.kj-home-hero {
	padding-top: clamp(4rem, 8vw, 7.5rem);
	padding-bottom: clamp(4rem, 8vw, 7.5rem);
}
.kj-hero-panel--portfolio {
	align-items: stretch;
}
.kj-photo-tile--image {
	position: relative;
	min-height: 220px;
	overflow: hidden;
	color: var(--kj-text);
}
.kj-photo-tile--image img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	transition: transform .45s ease, opacity .45s ease;
}
.kj-photo-tile--image:hover img,
.kj-photo-tile--image:focus img {
	transform: scale(1.035);
	opacity: .9;
}
.kj-photo-tile--image span {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 2;
	font-size: .8rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-shadow: 0 2px 16px rgba(0,0,0,.75);
}
.kj-photo-tile--image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.68), transparent 58%);
	pointer-events: none;
}
.kj-home-intro-links {
	padding-top: clamp(2rem, 4vw, 4rem);
	padding-bottom: clamp(2rem, 4vw, 4rem);
	border-top: 1px solid var(--kj-line);
	border-bottom: 1px solid var(--kj-line);
}
.kj-link-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: .65rem;
}
.kj-link-cloud a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: .58rem .9rem;
	border: 1px solid var(--kj-line);
	border-radius: 999px;
	background: rgba(255,255,255,.035);
	color: var(--kj-text);
	font-size: .84rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.kj-link-cloud a:hover,
.kj-link-cloud a:focus {
	border-color: rgba(217,180,106,.85);
	background: rgba(217,180,106,.13);
	color: var(--kj-accent);
}
.kj-section-heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	max-width: none;
}
.kj-section-heading--split > div {
	max-width: 820px;
}
.kj-card--featured {
	position: relative;
	min-height: 100%;
}
.kj-card-arrow {
	display: inline-block;
	margin-top: 1.2rem;
	color: var(--kj-accent);
	font-size: .8rem;
	font-weight: 900;
	letter-spacing: .09em;
	text-transform: uppercase;
}
.kj-card-arrow::after {
	content: " →";
}
.kj-card-image--placeholder {
	display: flex;
	align-items: end;
	min-height: 280px;
	padding: 1.2rem;
	background:
		linear-gradient(135deg, rgba(217,180,106,.22), rgba(255,255,255,.035)),
		linear-gradient(45deg, #1c1c20, #080809);
	color: var(--kj-text);
}
.kj-card-image--placeholder span {
	font-size: .9rem;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.kj-home-cta {
	padding-top: clamp(2.5rem, 5vw, 5rem);
}
.kj-home-cta-panel {
	padding: clamp(1.5rem, 5vw, 4rem);
	border: 1px solid rgba(217,180,106,.28);
	border-radius: calc(var(--kj-radius) + 8px);
	background:
		radial-gradient(circle at top right, rgba(217,180,106,.22), transparent 38%),
		linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
	box-shadow: var(--kj-shadow);
}
.kj-home-cta-panel h2 {
	max-width: 920px;
	margin: 0 0 1.4rem;
	font-size: clamp(2rem, 4.5vw, 4.4rem);
	line-height: 1;
	letter-spacing: -.045em;
}
.kj-footer-topline {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--kj-line);
}
.kj-footer-topline h2 {
	max-width: 880px;
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 3rem);
	line-height: 1.05;
	letter-spacing: -.035em;
	color: var(--kj-text);
	text-transform: none;
}
.kj-footer-grid--stage6 {
	grid-template-columns: minmax(280px, 1.25fr) minmax(180px, .8fr) minmax(180px, .75fr) minmax(220px, .8fr);
}
.kj-button--small {
	min-height: 40px;
	padding: .68rem .95rem;
	font-size: .72rem;
}
.kj-footer-menu li + li {
	margin-top: .1rem;
}
.kj-footer-menu a {
	color: var(--kj-muted);
}
.kj-footer-menu a:hover,
.kj-footer-menu a:focus {
	color: var(--kj-accent);
}
@media (max-width: 1040px) {
	.kj-footer-grid--stage6 {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 860px) {
	.kj-section-heading--split,
	.kj-footer-topline {
		align-items: flex-start;
		flex-direction: column;
	}
}
@media (max-width: 620px) {
	.kj-footer-grid--stage6 {
		grid-template-columns: 1fr;
	}
	.kj-link-cloud a {
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

/* Stage 7.5 homepage carousel */
.kj-home-hero--carousel {
	grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
	align-items: center;
}
.kj-home-hero--carousel .kj-hero-copy h1 {
	max-width: 11ch;
}
.kj-hero-carousel-column {
	min-width: 0;
}
.kj-home-carousel {
	position: relative;
	min-height: min(var(--kj-carousel-height, 620px), 72vh);
	height: min(var(--kj-carousel-height, 620px), 72vh);
	overflow: hidden;
	border-radius: calc(var(--kj-radius) + 8px);
	border: 1px solid var(--kj-line);
	background: linear-gradient(145deg, rgba(217,180,106,.18), rgba(255,255,255,.04)), #111113;
	box-shadow: var(--kj-shadow);
	isolation: isolate;
}
.kj-carousel-track,
.kj-carousel-slide,
.kj-carousel-slide-link {
	height: 100%;
}
.kj-carousel-track {
	position: relative;
	width: 100%;
}
.kj-carousel-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition-property: opacity, visibility, transform;
	transition-timing-function: ease;
}
.kj-carousel-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}
.kj-carousel-slide-link {
	display: block;
}
.kj-carousel-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.01);
	transition: transform 6s ease;
}
.kj-carousel-caption {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	z-index: 4;
	margin: 0;
	padding: .75rem 1rem;
	border-radius: 999px;
	background: rgba(0,0,0,.42);
	backdrop-filter: blur(12px);
	color: var(--kj-text);
	font-size: .85rem;
}
.kj-carousel-arrow {
	position: absolute;
	top: 50%;
	z-index: 6;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,.3);
	background: rgba(0,0,0,.36);
	color: var(--kj-text);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
}
.kj-carousel-arrow:hover,
.kj-carousel-arrow:focus {
	background: var(--kj-accent);
	color: #111;
}
.kj-carousel-arrow--prev { left: 1rem; }
.kj-carousel-arrow--next { right: 1rem; }
.kj-carousel-dots {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	z-index: 7;
	display: flex;
	gap: .45rem;
	transform: translateX(-50%);
}
.kj-carousel-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 1px solid rgba(255,255,255,.7);
	border-radius: 999px;
	background: rgba(255,255,255,.18);
	cursor: pointer;
}
.kj-carousel-dot.is-active,
.kj-carousel-dot:hover,
.kj-carousel-dot:focus {
	background: var(--kj-accent);
	border-color: var(--kj-accent);
}
.kj-home-carousel--slide .kj-carousel-track {
	display: flex;
	position: relative;
	height: 100%;
	transition-property: transform;
	transition-timing-function: ease;
}
.kj-home-carousel--slide .kj-carousel-slide {
	position: relative;
	inset: auto;
	flex: 0 0 100%;
	opacity: 1;
	visibility: visible;
}
.kj-home-carousel--ken-burns .kj-carousel-slide.is-active .kj-carousel-image {
	animation: kjKenBurns 9s ease forwards;
}
.kj-home-carousel--zoom-in .kj-carousel-slide.is-active .kj-carousel-image {
	animation: kjZoomIn 7s ease forwards;
}
.kj-home-carousel--zoom-out .kj-carousel-slide.is-active .kj-carousel-image {
	animation: kjZoomOut 7s ease forwards;
}
.kj-home-carousel--fallback .kj-carousel-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kj-carousel-placeholder {
	display: grid;
	place-items: center;
	align-content: center;
	height: 100%;
	padding: 2rem;
	text-align: center;
}
.kj-carousel-placeholder span {
	color: var(--kj-accent);
	font-size: clamp(1.4rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -.03em;
}
.kj-carousel-placeholder p {
	max-width: 360px;
	color: var(--kj-muted);
}
@keyframes kjKenBurns {
	0% { transform: scale(1.05) translate3d(-1.5%, -1%, 0); }
	100% { transform: scale(1.17) translate3d(1.5%, 1%, 0); }
}
@keyframes kjZoomIn {
	0% { transform: scale(1.02); }
	100% { transform: scale(1.16); }
}
@keyframes kjZoomOut {
	0% { transform: scale(1.16); }
	100% { transform: scale(1.02); }
}
@media (prefers-reduced-motion: reduce) {
	.kj-carousel-slide,
	.kj-carousel-track,
	.kj-carousel-image {
		transition: none !important;
		animation: none !important;
	}
}
@media (max-width: 980px) {
	.kj-home-hero--carousel {
		grid-template-columns: 1fr;
	}
	.kj-home-carousel {
		height: min(620px, 72vh);
	}
}
@media (max-width: 560px) {
	.kj-home-carousel {
		min-height: 420px;
		height: 420px;
		border-radius: 20px;
	}
	.kj-carousel-arrow {
		width: 38px;
		height: 38px;
		font-size: 1.5rem;
	}
}


/* Stage 7.5.1 carousel/layout fixes */
.kj-site-header {
	margin: 0;
	padding: 0;
}
.kj-site-header .kj-container,
.kj-header-inner {
	width: 100%;
	max-width: none;
	margin: 0;
}
.kj-header-inner {
	padding: 0 clamp(1rem, 2vw, 2rem) 0 0;
}
.kj-branding,
.custom-logo-link,
.custom-logo {
	display: block;
	margin: 0;
	padding: 0;
}
.kj-site-title {
	display: inline-block;
	padding: .85rem 0 .85rem 0;
}
.kj-site-description {
	margin-left: 0;
}

.kj-home-hero--carousel.kj-container {
	width: 100%;
	max-width: none;
	margin: 0;
}
.kj-home-hero--carousel {
	--kj-home-hero-height: clamp(720px, 85vh, var(--kj-carousel-height, 1200px));
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	min-height: var(--kj-home-hero-height);
	padding: 0;
}
.kj-home-hero--carousel .kj-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-width: 0;
	min-height: var(--kj-home-hero-height);
	padding: clamp(3rem, 7vw, 8rem);
}
.kj-home-hero--carousel .kj-hero-copy h1 {
	max-width: 12ch;
}
.kj-hero-carousel-column {
	min-width: 0;
	min-height: var(--kj-home-hero-height);
	height: auto;
}
.kj-home-hero--carousel .kj-home-carousel {
	width: 100%;
	height: 100%;
	min-height: 100%;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.kj-home-carousel,
.kj-carousel-track,
.kj-carousel-slide,
.kj-carousel-slide-link,
.kj-carousel-image,
.kj-home-carousel--fallback .kj-carousel-image,
.kj-carousel-placeholder {
	border-radius: 0 !important;
}
.kj-carousel-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 980px) {
	.kj-home-hero--carousel {
		--kj-home-hero-height: auto;
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.kj-home-hero--carousel .kj-hero-copy {
		min-height: auto;
		padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 6vw, 4rem);
	}
	.kj-hero-carousel-column {
		min-height: clamp(420px, 70vh, 760px);
	}
	.kj-home-hero--carousel .kj-home-carousel {
		min-height: clamp(420px, 70vh, 760px);
		height: clamp(420px, 70vh, 760px);
	}
}
@media (max-width: 560px) {
	.kj-header-inner {
		padding-right: 1rem;
	}
	.kj-home-hero--carousel .kj-hero-copy {
		padding: 2.5rem 1.25rem;
	}
	.kj-hero-carousel-column,
	.kj-home-hero--carousel .kj-home-carousel {
		min-height: 420px;
		height: 420px;
	}
}


/* Stage 7.5.3 Studio Rental service page */
.kj-studio-featured-images,
.kj-studio-feature-grid-section,
.kj-studio-uses-section,
.kj-studio-editorial-block,
.kj-studio-details,
.kj-studio-location,
.kj-studio-links {
	max-width: 1180px;
}
.kj-studio-image-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
	gap: clamp(1rem, 2.4vw, 1.8rem);
	align-items: stretch;
}
.kj-studio-image-layout figure,
.kj-studio-detail-grid figure,
.kj-studio-editorial-image,
.kj-studio-location-image {
	margin: 0;
	background: var(--kj-panel);
	border: 1px solid var(--kj-line);
	overflow: hidden;
	box-shadow: 0 18px 48px rgba(0,0,0,.22);
}
.kj-studio-image-layout figure,
.kj-studio-image-layout img,
.kj-studio-detail-grid figure,
.kj-studio-detail-grid img,
.kj-studio-editorial-image,
.kj-studio-editorial-image img,
.kj-studio-location-image,
.kj-studio-location-image img {
	border-radius: 0;
}
.kj-studio-image-feature img {
	width: 100%;
	height: 100%;
	min-height: clamp(420px, 54vw, 720px);
	object-fit: cover;
	display: block;
}
.kj-studio-image-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(.75rem, 1.6vw, 1.1rem);
}
.kj-studio-image-grid img,
.kj-studio-detail-grid img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	display: block;
}
.kj-studio-feature-grid,
.kj-studio-use-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--kj-line);
	border: 1px solid var(--kj-line);
}
.kj-studio-feature-card,
.kj-studio-use-card {
	padding: clamp(1rem, 2.2vw, 1.5rem);
	background: #101012;
	min-height: 118px;
	display: flex;
	align-items: flex-end;
}
.kj-studio-feature-card h3,
.kj-studio-use-card {
	margin: 0;
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	line-height: 1.12;
	letter-spacing: -.02em;
	color: var(--kj-text);
}
.kj-studio-editorial-block,
.kj-studio-location {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(280px, .75fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	padding: clamp(1.4rem, 3.5vw, 2.6rem);
	background: linear-gradient(135deg, rgba(217,180,106,.12), rgba(255,255,255,.025));
	border: 1px solid var(--kj-line);
}
.kj-studio-editorial-copy h2,
.kj-studio-location-copy h2 {
	margin-top: 0;
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: .98;
	letter-spacing: -.045em;
}
.kj-studio-editorial-copy p,
.kj-studio-location-copy p {
	color: var(--kj-muted);
	font-size: 1.05rem;
}
.kj-studio-editorial-image img,
.kj-studio-location-image img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}
.kj-studio-detail-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(.9rem, 2vw, 1.25rem);
}
.kj-studio-links .kj-link-cloud {
	justify-content: flex-start;
}
@media (max-width: 980px) {
	.kj-studio-image-layout,
	.kj-studio-editorial-block,
	.kj-studio-location {
		grid-template-columns: 1fr;
	}
	.kj-studio-feature-grid,
	.kj-studio-use-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 620px) {
	.kj-studio-image-grid,
	.kj-studio-detail-grid,
	.kj-studio-feature-grid,
	.kj-studio-use-grid {
		grid-template-columns: 1fr;
	}
	.kj-studio-image-feature img {
		min-height: 300px;
	}
}


/* Stage 7.5.4 About page */
.kj-page-about {
	max-width: none;
}
.kj-page-about > .kj-entry-header {
	width: min(100%, var(--kj-max));
	margin-inline: auto;
}
.kj-about-page {
	display: grid;
	gap: clamp(3rem, 6vw, 6rem);
}
.kj-about-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 4rem);
}
.kj-about-hero-copy h2,
.kj-about-split h2,
.kj-about-studio-copy h2,
.kj-about-approach h2,
.kj-about-links h2 {
	margin: 0 0 1rem;
	font-size: clamp(2.1rem, 5vw, 5.6rem);
	line-height: .98;
	letter-spacing: -.05em;
}
.kj-about-lede {
	font-size: clamp(1.08rem, 1.7vw, 1.36rem);
	color: var(--kj-muted);
	max-width: 760px;
}
.kj-about-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: .85rem;
	margin-top: 2rem;
}
.kj-about-portrait {
	margin: 0;
	background: var(--kj-panel);
	border: 1px solid var(--kj-line);
	overflow: hidden;
	box-shadow: var(--kj-shadow);
}
.kj-about-portrait img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
}
.kj-about-portrait figcaption {
	padding: .9rem 1rem;
	color: var(--kj-muted);
	font-size: .9rem;
	border-top: 1px solid var(--kj-line);
}
.kj-about-section {
	width: min(100%, var(--kj-max));
	margin-inline: auto;
}
.kj-about-split {
	display: grid;
	grid-template-columns: minmax(240px, .72fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	padding: clamp(2rem, 5vw, 4rem);
	background: linear-gradient(135deg, rgba(217,180,106,.11), rgba(255,255,255,.025));
	border: 1px solid var(--kj-line);
}
.kj-about-split p,
.kj-about-studio p,
.kj-about-approach p {
	color: var(--kj-muted);
	font-size: 1.05rem;
}
.kj-about-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	background: var(--kj-line);
	border: 1px solid var(--kj-line);
}
.kj-about-card-grid article {
	background: #101012;
	padding: clamp(1.25rem, 3vw, 2rem);
	min-height: 280px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.kj-about-card-grid h3 {
	margin: 0 0 .8rem;
	font-size: clamp(1.35rem, 2.2vw, 2.2rem);
	line-height: 1;
	letter-spacing: -.035em;
}
.kj-about-card-grid p {
	color: var(--kj-muted);
}
.kj-about-card-grid a,
.kj-about-studio .kj-text-link {
	margin-top: .7rem;
	color: var(--kj-accent);
	font-weight: 800;
	text-decoration: none;
}
.kj-about-studio {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.kj-about-stat-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	background: var(--kj-line);
	border: 1px solid var(--kj-line);
}
.kj-about-stat-grid div {
	background: var(--kj-panel);
	padding: clamp(1.1rem, 3vw, 2rem);
	min-height: 160px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.kj-about-stat-grid strong {
	display: block;
	font-size: clamp(2rem, 4vw, 4.5rem);
	line-height: .9;
	letter-spacing: -.06em;
	color: var(--kj-accent);
}
.kj-about-stat-grid span {
	color: var(--kj-muted);
	font-size: .95rem;
}
.kj-about-approach {
	max-width: 940px;
}
.kj-about-links .kj-link-cloud {
	justify-content: flex-start;
}
@media (max-width: 980px) {
	.kj-about-hero,
	.kj-about-split,
	.kj-about-studio {
		grid-template-columns: 1fr;
	}
	.kj-about-card-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 620px) {
	.kj-about-stat-grid {
		grid-template-columns: 1fr;
	}
	.kj-about-split {
		padding: 1.25rem;
	}
}


/* Stage 7.5.5 Contact page */
.kj-contact-page {
	background: #050505;
	color: #f5f2ec;
	margin-left: calc(50% - 50vw);
	width: 100vw;
	overflow: hidden;
}

.kj-contact-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: clamp(760px, 88vh, 1120px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kj-contact-hero-copy,
.kj-contact-form-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(52px, 7vw, 120px);
}

.kj-contact-hero-copy h1 {
	font-size: clamp(3rem, 5.4vw, 7.2rem);
	line-height: 0.92;
	letter-spacing: -0.06em;
	max-width: 880px;
	margin: 0 0 34px;
	font-weight: 500;
}

.kj-contact-lede {
	font-size: clamp(1.08rem, 1.45vw, 1.45rem);
	line-height: 1.72;
	color: rgba(245, 242, 236, 0.78);
	max-width: 720px;
	margin: 0 0 34px;
}

.kj-contact-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kj-contact-quick-links a,
.kj-contact-info-band a,
.kj-contact-card-grid a {
	color: #f5f2ec;
	text-decoration-color: #b7a46a;
	text-underline-offset: 4px;
}

.kj-contact-quick-links a {
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 12px 16px;
	text-decoration: none;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kj-contact-form-panel {
	background: #101010;
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.kj-contact-form-card {
	width: 100%;
	max-width: 740px;
	margin: 0 auto;
}

.kj-contact-form-card h2 {
	font-size: clamp(2rem, 3.2vw, 4.4rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
	margin: 0 0 22px;
	font-weight: 400;
}

.kj-contact-form-card p {
	color: rgba(245, 242, 236, 0.72);
	line-height: 1.75;
}

.kj-contact-form-embed,
.kj-contact-form-placeholder {
	margin-top: 30px;
	padding: clamp(24px, 3vw, 42px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.035);
}

.kj-contact-form-embed form,
.kj-contact-form-embed .jet-form-builder {
	margin: 0;
}

.kj-contact-form-embed input,
.kj-contact-form-embed textarea,
.kj-contact-form-embed select {
	width: 100%;
	background: #050505;
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #f5f2ec;
	padding: 14px 16px;
	border-radius: 0;
}

.kj-contact-form-embed button,
.kj-contact-form-embed input[type='submit'],
.kj-contact-form-embed .jet-form-builder__action-button {
	background: #b7a46a;
	border: 1px solid #b7a46a;
	color: #050505;
	padding: 14px 22px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	border-radius: 0;
	cursor: pointer;
}

.kj-contact-info-band {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kj-contact-info-band > div {
	padding: 34px 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.kj-contact-info-band > div:last-child {
	border-right: 0;
}

.kj-contact-info-band span {
	display: block;
	color: #b7a46a;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	margin-bottom: 12px;
}

.kj-contact-info-band strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 400;
	margin-bottom: 12px;
}

.kj-contact-info-band p {
	color: rgba(245, 242, 236, 0.68);
	line-height: 1.65;
	margin: 0;
}

.kj-contact-section {
	padding: clamp(64px, 8vw, 130px) clamp(28px, 7vw, 110px);
	max-width: 1600px;
	margin: 0 auto;
}

.kj-contact-split {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: clamp(42px, 7vw, 110px);
	align-items: start;
}

.kj-contact-split h2,
.kj-contact-final-cta h2 {
	font-size: clamp(2.2rem, 4.6vw, 5.6rem);
	line-height: 0.96;
	letter-spacing: -0.055em;
	margin: 0;
	font-weight: 400;
}

.kj-contact-split p,
.kj-contact-final-cta p {
	color: rgba(245, 242, 236, 0.74);
	font-size: 1.06rem;
	line-height: 1.85;
}

.kj-contact-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.14);
	max-width: none;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.kj-contact-card-grid article {
	background: #050505;
	padding: clamp(36px, 5vw, 70px);
	min-height: 340px;
}

.kj-contact-card-grid h3 {
	font-size: clamp(1.5rem, 2vw, 2.4rem);
	line-height: 1;
	letter-spacing: -0.04em;
	font-weight: 400;
	margin: 0 0 22px;
}

.kj-contact-card-grid p {
	color: rgba(245, 242, 236, 0.68);
	line-height: 1.75;
}

.kj-contact-final-cta {
	text-align: center;
	max-width: 1080px;
}

.kj-contact-final-cta p {
	max-width: 740px;
	margin: 24px auto 34px;
}

@media (max-width: 980px) {
	.kj-contact-hero,
	.kj-contact-info-band,
	.kj-contact-split,
	.kj-contact-card-grid {
		grid-template-columns: 1fr;
	}

	.kj-contact-form-panel {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.kj-contact-info-band > div {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}
}

@media (max-width: 640px) {
	.kj-contact-hero-copy,
	.kj-contact-form-panel {
		padding: 42px 24px 52px;
	}

	.kj-contact-quick-links {
		flex-direction: column;
	}

	.kj-contact-quick-links a {
		width: 100%;
		text-align: center;
	}
}

/* Stage 7.5.6 Contact template fix: CSS lives in the theme, not the page editor. */
.kj-contact-page-template {
	background: #050505;
	color: #f5f2ec;
	font-family: inherit;
	overflow: hidden;
	width: 100%;
}

.kj-contact-page-template * {
	box-sizing: border-box;
}

.kj-contact-page-template a {
	color: inherit;
}

.kj-contact-page-template .kj-eyebrow {
	color: #b7a46a;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.76rem;
	margin: 0 0 22px;
}

.kj-contact-page-template .kj-contact-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: clamp(760px, 88vh, 1080px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: #050505;
}

.kj-contact-page-template .kj-contact-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(54px, 7vw, 120px);
}

.kj-contact-page-template .kj-contact-hero-copy h1 {
	font-size: clamp(3rem, 5.8vw, 7.4rem);
	line-height: 0.9;
	letter-spacing: -0.065em;
	font-weight: 500;
	margin: 0 0 34px;
	max-width: 880px;
}

.kj-contact-page-template .kj-contact-lede {
	max-width: 700px;
	font-size: clamp(1.08rem, 1.45vw, 1.45rem);
	line-height: 1.72;
	color: rgba(245, 242, 236, 0.78);
	margin: 0 0 34px;
}

.kj-contact-page-template .kj-contact-quick-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kj-contact-page-template .kj-contact-quick-links a {
	display: inline-flex;
	align-items: center;
	color: #b7a46a;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .32em;
	text-transform: uppercase;
	letter-spacing: 0.11em;
	font-size: 0.74rem;
	transition: color 0.25s ease;
}

.kj-contact-page-template .kj-contact-quick-links a:hover,
.kj-contact-page-template .kj-contact-quick-links a:focus {
	color: #f5f2ec;
}

.kj-contact-page-template .kj-btn {
	border-radius: 0;
}

.kj-contact-page-template .kj-contact-form-panel {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(40px, 5vw, 90px);
	border-left: 1px solid rgba(255, 255, 255, 0.12);
	background: radial-gradient(circle at top right, rgba(183, 164, 106, 0.16), transparent 38%), #0d0d0d;
}

.kj-contact-page-template .kj-contact-form-card {
	width: 100%;
	max-width: 680px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.13);
	padding: clamp(30px, 4vw, 56px);
}

.kj-contact-page-template .kj-contact-form-card h2 {
	font-size: clamp(2rem, 3.2vw, 4rem);
	line-height: 0.98;
	letter-spacing: -0.045em;
	font-weight: 400;
	margin: 0 0 22px;
}

.kj-contact-page-template .kj-contact-form-card p {
	color: rgba(245, 242, 236, 0.7);
	line-height: 1.7;
	margin: 0 0 28px;
}

.kj-contact-page-template .kj-contact-form-embed {
	margin-top: 28px;
}

.kj-contact-page-template .kj-contact-form-embed input,
.kj-contact-page-template .kj-contact-form-embed textarea,
.kj-contact-page-template .kj-contact-form-embed select {
	width: 100%;
	background: #050505;
	color: #f5f2ec;
	border: 1px solid rgba(255, 255, 255, 0.18);
	padding: 14px 15px;
	border-radius: 0;
}

.kj-contact-page-template .kj-contact-form-embed button,
.kj-contact-page-template .kj-contact-form-embed input[type="submit"] {
	background: #b7a46a;
	color: #050505;
	border: 1px solid #b7a46a;
	padding: 14px 24px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	cursor: pointer;
	border-radius: 0;
}

.kj-contact-page-template .kj-contact-info-band {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	background: #080808;
}

.kj-contact-page-template .kj-contact-info-item {
	padding: 34px 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	color: rgba(245, 242, 236, 0.68);
	font-size: 0.92rem;
	line-height: 1.6;
}

.kj-contact-page-template .kj-contact-info-item:last-child {
	border-right: 0;
}

.kj-contact-page-template .kj-contact-info-item span {
	display: block;
	color: #b7a46a;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.72rem;
	margin-bottom: 14px;
}

.kj-contact-page-template .kj-contact-info-item strong {
	display: block;
	color: #f5f2ec;
	font-weight: 400;
	font-size: 1.08rem;
	margin-bottom: 10px;
}

.kj-contact-page-template .kj-contact-info-item p {
	margin: 0;
}

.kj-contact-page-template .kj-contact-info-item a {
	color: #f5f2ec;
	text-decoration: none;
	border-bottom: 1px solid rgba(183, 164, 106, 0.55);
}

.kj-contact-page-template .kj-contact-map-clean {
	background: #050505;
	color: #f5f2ec;
	padding: clamp(54px, 7vw, 110px) clamp(24px, 6vw, 100px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kj-contact-page-template .kj-contact-map-clean-inner {
	max-width: 1500px;
	margin: 0 auto;
}

.kj-contact-page-template .kj-contact-map-clean h2 {
	font-size: clamp(2.2rem, 4.5vw, 5.4rem);
	line-height: 0.92;
	letter-spacing: -0.055em;
	font-weight: 400;
	margin: 0 0 26px;
	max-width: 980px;
}

.kj-contact-page-template .kj-contact-map-clean-text {
	max-width: 920px;
	margin-bottom: 36px;
}

.kj-contact-page-template .kj-contact-map-clean-text p {
	color: rgba(245, 242, 236, 0.74);
	line-height: 1.75;
	font-size: 1.05rem;
	margin: 0 0 18px;
}

.kj-contact-page-template .kj-contact-map-clean-text a {
	color: #b7a46a;
	text-decoration: none;
	border-bottom: 1px solid rgba(183, 164, 106, 0.55);
}

.kj-contact-page-template .kj-map-frame {
	width: 100%;
	height: 560px;
	max-height: 70vh;
	min-height: 360px;
	background: #111;
	border: 1px solid rgba(255, 255, 255, 0.14);
	overflow: hidden;
	position: relative;
}

.kj-contact-page-template .kj-map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	filter: grayscale(1) contrast(1.05) brightness(0.88);
}

.kj-contact-page-template .kj-contact-services {
	padding: clamp(54px, 7vw, 110px) clamp(24px, 6vw, 100px);
	background: #0b0b0b;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.kj-contact-page-template .kj-contact-services-inner {
	max-width: 1500px;
	margin: 0 auto;
}

.kj-contact-page-template .kj-contact-services h2 {
	font-size: clamp(2rem, 4vw, 4.8rem);
	line-height: 0.95;
	letter-spacing: -0.05em;
	font-weight: 400;
	margin: 0 0 34px;
	max-width: 850px;
}

.kj-contact-page-template .kj-service-link-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.kj-contact-page-template .kj-service-link-grid a {
	background: #050505;
	color: #f5f2ec;
	text-decoration: none;
	padding: 28px;
	min-height: 130px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: background 0.25s ease;
}

.kj-contact-page-template .kj-service-link-grid a:hover {
	background: #151515;
}

.kj-contact-page-template .kj-service-link-grid strong {
	font-weight: 400;
	font-size: 1.05rem;
}

.kj-contact-page-template .kj-service-link-grid span {
	color: #b7a46a;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.kj-contact-page-template .kj-contact-final {
	padding: clamp(60px, 8vw, 130px) clamp(24px, 6vw, 100px);
	text-align: center;
	background: radial-gradient(circle at center, rgba(183, 164, 106, 0.12), transparent 42%), #050505;
}

.kj-contact-page-template .kj-contact-final h2 {
	font-size: clamp(2.4rem, 5vw, 6rem);
	line-height: 0.94;
	letter-spacing: -0.055em;
	font-weight: 400;
	margin: 0 auto 24px;
	max-width: 980px;
}

.kj-contact-page-template .kj-contact-final p {
	color: rgba(245, 242, 236, 0.72);
	line-height: 1.75;
	font-size: 1.08rem;
	margin: 0 auto 34px;
	max-width: 720px;
}

@media (max-width: 980px) {
	.kj-contact-page-template .kj-contact-hero {
		grid-template-columns: 1fr;
	}

	.kj-contact-page-template .kj-contact-form-panel {
		border-left: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
	}

	.kj-contact-page-template .kj-contact-info-band {
		grid-template-columns: repeat(2, 1fr);
	}

	.kj-contact-page-template .kj-service-link-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.kj-contact-page-template .kj-contact-hero-copy,
	.kj-contact-page-template .kj-contact-form-panel {
		padding: 42px 24px;
	}

	.kj-contact-page-template .kj-contact-info-band {
		grid-template-columns: 1fr;
	}

	.kj-contact-page-template .kj-contact-info-item {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.kj-contact-page-template .kj-contact-quick-links {
		flex-direction: column;
	}

	.kj-contact-page-template .kj-contact-quick-links a,
	.kj-contact-page-template .kj-btn {
		width: 100%;
	}

	.kj-contact-page-template .kj-map-frame {
		height: 420px;
	}
}


/* Stage 7.5.7 About page template: no duplicate page title */
.kj-about-page-template,
.kj-entry--about-template,
.kj-entry-content--about {
	margin: 0;
	padding: 0;
	max-width: none;
}
.kj-entry--about-template .kj-entry-content > *:first-child {
	margin-top: 0;
}


/* Stage 7.5.8 frontend gallery grid and lightbox */
.kj-gallery-image-section {
	margin-top: clamp(2.5rem, 6vw, 5rem);
}
.kj-gallery-image-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(6px, .8vw, 12px);
}
@media (min-width: 1500px) {
	.kj-gallery-image-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}
@media (max-width: 1100px) {
	.kj-gallery-image-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 720px) {
	.kj-gallery-image-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 420px) {
	.kj-gallery-image-grid {
		grid-template-columns: 1fr;
	}
}
.kj-gallery-image-card {
	margin: 0;
	position: relative;
	background: transparent;
	border: 0;
	border-radius: 0;
	overflow: hidden;
	box-shadow: none;
}
.kj-gallery-lightbox-trigger {
	appearance: none;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	cursor: zoom-in;
	overflow: hidden;
}
.kj-gallery-image-card img,
.kj-gallery-lightbox-trigger img,
.kj-gallery-image {
	width: 100%;
	height: 100%;
	min-height: 0;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
	border-radius: 0;
	transition: transform .28s ease, opacity .28s ease;
}
.kj-gallery-lightbox-trigger:hover img,
.kj-gallery-lightbox-trigger:focus-visible img {
	transform: scale(1.025);
	opacity: .94;
}
.kj-gallery-lightbox-trigger:focus-visible {
	outline: 2px solid var(--kj-accent);
	outline-offset: 3px;
}
.kj-gallery-image-card figcaption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: .65rem .75rem;
	font-size: .78rem;
	line-height: 1.35;
	color: var(--kj-text);
	background: linear-gradient(180deg, rgba(5,5,5,0), rgba(5,5,5,.86));
	border: 0;
	border-radius: 0;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity .25s ease, transform .25s ease;
	pointer-events: none;
}
.kj-gallery-image-card:hover figcaption,
.kj-gallery-image-card:focus-within figcaption {
	opacity: 1;
	transform: translateY(0);
}
.kj-gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	grid-template-rows: 1fr auto;
	place-items: center;
	padding: clamp(1rem, 3vw, 2.5rem);
	background: rgba(0, 0, 0, .94);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .22s ease, visibility .22s ease;
}
.kj-gallery-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
body.kj-lightbox-open {
	overflow: hidden;
}
.kj-gallery-lightbox-stage {
	grid-row: 1;
	display: grid;
	place-items: center;
	width: min(100%, 1500px);
	height: min(82vh, 980px);
}
.kj-gallery-lightbox-image {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 0;
	box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.kj-gallery-lightbox-close,
.kj-gallery-lightbox-nav {
	appearance: none;
	-webkit-appearance: none;
	position: absolute;
	z-index: 3;
	border: 1px solid rgba(255,255,255,.24);
	border-radius: 0;
	background: rgba(5,5,5,.58);
	color: #fff;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease;
}
.kj-gallery-lightbox-close:hover,
.kj-gallery-lightbox-nav:hover,
.kj-gallery-lightbox-close:focus-visible,
.kj-gallery-lightbox-nav:focus-visible {
	background: rgba(183,164,106,.92);
	border-color: rgba(183,164,106,.92);
	color: #050505;
	outline: none;
}
.kj-gallery-lightbox-close {
	top: 18px;
	right: 18px;
	width: 46px;
	height: 46px;
	font-size: 2rem;
	line-height: 1;
}
.kj-gallery-lightbox-nav {
	top: 50%;
	transform: translateY(-50%);
	width: 54px;
	height: 72px;
	font-size: 3rem;
	line-height: 1;
}
.kj-gallery-lightbox-prev {
	left: 18px;
}
.kj-gallery-lightbox-next {
	right: 18px;
}
.kj-gallery-lightbox-footer {
	grid-row: 2;
	width: min(100%, 1100px);
	padding-top: 1rem;
	text-align: center;
	color: rgba(255,255,255,.82);
}
.kj-gallery-lightbox-counter {
	display: inline-block;
	margin-bottom: .35rem;
	color: var(--kj-accent);
	font-size: .75rem;
	letter-spacing: .14em;
	text-transform: uppercase;
}
.kj-gallery-lightbox-caption {
	margin: 0;
	font-size: .95rem;
	line-height: 1.55;
	color: rgba(255,255,255,.76);
}
@media (max-width: 720px) {
	.kj-gallery-lightbox {
		padding: 4rem .85rem 1.2rem;
	}
	.kj-gallery-lightbox-stage {
		height: 74vh;
	}
	.kj-gallery-lightbox-nav {
		top: auto;
		bottom: 1rem;
		transform: none;
		width: 48px;
		height: 48px;
		font-size: 2.2rem;
	}
	.kj-gallery-lightbox-prev {
		left: .85rem;
	}
	.kj-gallery-lightbox-next {
		right: .85rem;
	}
	.kj-gallery-lightbox-footer {
		padding-inline: 3.5rem;
	}
}


/* Stage 7.6.1 CTA cleanup overrides */
.kj-home-cta {
	display: none;
}
.kj-hero-actions .kj-text-link {
	align-self: center;
}
.kj-service-hero .kj-button,
.kj-service-hero .kj-btn-primary {
	display: none;
}
.kj-about-page-template .kj-button--ghost,
.kj-about-page-template .kj-btn-secondary {
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--kj-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .32em;
}
.kj-about-page-template .kj-button--ghost:hover,
.kj-about-page-template .kj-button--ghost:focus,
.kj-about-page-template .kj-btn-secondary:hover,
.kj-about-page-template .kj-btn-secondary:focus {
	background: transparent;
	color: var(--kj-text);
}
.kj-contact-page-template .kj-contact-final-link {
	margin-top: 0;
}
.kj-site-footer .kj-button,
.kj-site-footer .kj-btn-primary {
	background: transparent;
	border: 0;
	min-height: 0;
	padding: 0;
	color: var(--kj-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .32em;
}


/* Stage 7.6.1 Studio Rental hero carousel and Gallery hero image display controls */
.kj-service-hero--studio-carousel {
	padding: 0;
	background: #050505;
}
.kj-service-hero--studio-carousel .kj-service-hero-grid {
	width: 100%;
	max-width: none;
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	min-height: clamp(720px, 85vh, var(--kj-carousel-height, 900px));
}
.kj-service-hero--studio-carousel .kj-service-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 7vw, 8rem);
	min-width: 0;
}
.kj-studio-hero-media {
	min-width: 0;
	min-height: clamp(720px, 85vh, var(--kj-carousel-height, 900px));
	background: #111;
}
.kj-studio-hero-carousel {
	width: 100%;
	height: 100%;
	min-height: clamp(720px, 85vh, var(--kj-carousel-height, 900px));
	border: 0;
	border-radius: 0 !important;
	box-shadow: none;
}
.kj-studio-hero-carousel .kj-carousel-track,
.kj-studio-hero-carousel .kj-carousel-slide,
.kj-studio-hero-carousel .kj-carousel-slide-link,
.kj-studio-hero-carousel .kj-carousel-image,
.kj-studio-hero-media,
.kj-service-hero--studio-carousel .kj-service-hero-image,
.kj-service-hero--studio-carousel .kj-service-hero-image img {
	border-radius: 0 !important;
}
.kj-gallery-hero-image {
	position: relative;
	height: var(--kj-gallery-hero-height, clamp(520px, 70vh, 900px));
	border-radius: 0 !important;
	overflow: hidden;
}
.kj-gallery-hero-image img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: var(--kj-gallery-hero-position, center center);
	border-radius: 0 !important;
}
.kj-gallery-hero-image::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: rgba(0,0,0,.32);
}
.kj-gallery-hero-image--overlay-none::after { opacity: 0; }
.kj-gallery-hero-image--overlay-light::after { background: rgba(0,0,0,.16); }
.kj-gallery-hero-image--overlay-medium::after { background: rgba(0,0,0,.32); }
.kj-gallery-hero-image--overlay-dark::after { background: rgba(0,0,0,.52); }
@media (max-width: 980px) {
	.kj-service-hero--studio-carousel .kj-service-hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.kj-service-hero--studio-carousel .kj-service-hero-copy {
		padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 6vw, 4rem);
	}
	.kj-studio-hero-media,
	.kj-studio-hero-carousel {
		min-height: clamp(420px, 70vh, 760px);
		height: clamp(420px, 70vh, 760px);
	}
}
@media (max-width: 560px) {
	.kj-studio-hero-media,
	.kj-studio-hero-carousel {
		min-height: 420px;
		height: 420px;
	}
	.kj-gallery-hero-image {
		height: clamp(360px, 60vh, 620px);
	}
}

/* Stage 7.6.1 final portfolio gallery polish */
.kj-gallery-image-grid {
	align-items: stretch;
}
.kj-gallery-lightbox-trigger {
	position: relative;
	aspect-ratio: 4 / 5;
	touch-action: manipulation;
}
.kj-gallery-lightbox-trigger img,
.kj-gallery-image-card img,
.kj-gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 0 !important;
}
.kj-gallery-image-card,
.kj-gallery-lightbox-trigger,
.kj-gallery-lightbox-stage,
.kj-gallery-lightbox-image {
	border-radius: 0 !important;
}
.kj-gallery-lightbox {
	touch-action: pan-y;
}
.kj-gallery-lightbox-image {
	height: auto;
	object-fit: contain;
}
@media (max-width: 640px) {
	.kj-gallery-lightbox-close {
		top: .85rem;
		right: .85rem;
		width: 52px;
		height: 52px;
	}
	.kj-gallery-lightbox-caption {
		font-size: .86rem;
	}
}

/* Stage 7.7.1 launch cleanup: refined gallery display, hidden labels, simplified footer/contact CTA output. */
.kj-gallery-single .kj-entry-header .kj-eyebrow,
.kj-gallery-single .kj-entry-header .kj-entry-meta,
.kj-gallery-single .kj-gallery-entry-header .kj-eyebrow,
.kj-gallery-single .kj-gallery-entry-header .kj-entry-meta {
	display: none !important;
}
.kj-gallery-image-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(5px, .55vw, 8px);
	align-items: stretch;
}
@media (min-width: 1600px) {
	.kj-gallery-image-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}
@media (max-width: 1100px) {
	.kj-gallery-image-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
@media (max-width: 720px) {
	.kj-gallery-image-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px;
	}
}
@media (max-width: 360px) {
	.kj-gallery-image-grid {
		grid-template-columns: 1fr;
	}
}
.kj-gallery-image-card,
.kj-gallery-lightbox-trigger {
	border-radius: 0 !important;
}
.kj-gallery-lightbox-trigger {
	aspect-ratio: 1 / 1 !important;
	overflow: hidden;
}
.kj-gallery-lightbox-trigger img,
.kj-gallery-image-card img,
.kj-gallery-image {
	aspect-ratio: 1 / 1 !important;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	border-radius: 0 !important;
}
.kj-gallery-hero-image,
.kj-gallery-hero-image img,
.kj-featured-image.kj-gallery-hero-image,
.kj-featured-image.kj-gallery-hero-image img {
	border-radius: 0 !important;
}
.kj-gallery-lightbox-stage {
	width: 100%;
	max-width: none;
	height: calc(100vh - 140px);
	max-height: calc(100vh - 140px);
	padding: 0 clamp(.75rem, 5vw, 5rem);
}
.kj-gallery-lightbox-image {
	width: auto !important;
	height: auto !important;
	max-width: min(96vw, 1800px) !important;
	max-height: calc(100vh - 140px) !important;
	object-fit: contain !important;
	object-position: center center;
	border-radius: 0 !important;
}
.kj-gallery-lightbox-footer {
	max-height: 120px;
	overflow: auto;
}
@media (max-width: 720px) {
	.kj-gallery-lightbox-stage {
		height: calc(100vh - 120px);
		max-height: calc(100vh - 120px);
		padding: 0 .5rem;
	}
	.kj-gallery-lightbox-image {
		max-width: 94vw !important;
		max-height: calc(100vh - 120px) !important;
	}
	.kj-gallery-lightbox-footer {
		max-height: 108px;
	}
}


/* Stage 7.7.1 service hero gallery restoration */
.kj-service-hero-media,
.kj-service-hero-image,
.kj-service-hero-image img,
.kj-service-hero-image__img,
.kj-service-hero-carousel,
.kj-service-hero-carousel .kj-carousel-track,
.kj-service-hero-carousel .kj-carousel-slide,
.kj-service-hero-carousel .kj-carousel-slide-link,
.kj-service-hero-carousel .kj-carousel-image {
	border-radius: 0 !important;
}
.kj-service-hero-media {
	min-width: 0;
	width: 100%;
	background: #111;
}
.kj-service-hero-image {
	margin: 0;
	border: 1px solid var(--kj-line);
	box-shadow: var(--kj-shadow);
	overflow: hidden;
}
.kj-service-hero-image img,
.kj-service-hero-image__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 5;
	height: auto;
	object-fit: cover;
}
.kj-service-hero-carousel {
	min-height: min(var(--kj-carousel-height, 620px), 72vh);
	height: min(var(--kj-carousel-height, 620px), 72vh);
	border: 1px solid var(--kj-line);
	box-shadow: var(--kj-shadow);
}
.kj-service-hero-carousel .kj-carousel-image {
	display: block;
}
@media (max-width: 860px) {
	.kj-service-hero-carousel {
		min-height: clamp(420px, 70vh, 720px);
		height: clamp(420px, 70vh, 720px);
	}
}

/* Stage 7.7.1 service hero media carousel: match homepage/studio split layout and support video slides. */
.kj-service-hero--media-carousel {
	padding: 0;
	background: #050505;
}
.kj-service-hero--media-carousel .kj-service-hero-grid {
	width: 100%;
	max-width: none;
	margin: 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	min-height: clamp(720px, 88vh, 1080px);
}
.kj-service-hero--media-carousel .kj-service-hero-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(3rem, 7vw, 8rem);
	min-width: 0;
}
.kj-service-hero--media-carousel .kj-service-hero-media {
	min-width: 0;
	min-height: var(--kj-carousel-height, clamp(720px, 88vh, 1080px));
	height: var(--kj-carousel-height, clamp(720px, 88vh, 1080px));
	background: #080808;
	border: 0;
	box-shadow: none;
	overflow: hidden;
}
.kj-service-hero--media-carousel .kj-service-hero-carousel,
.kj-service-hero--media-carousel .kj-service-hero-single,
.kj-service-hero--media-carousel .kj-service-hero-image,
.kj-service-hero--media-carousel .kj-service-hero-fallback {
	width: 100%;
	height: var(--kj-carousel-height, clamp(720px, 88vh, 1080px));
	min-height: var(--kj-carousel-height, clamp(720px, 88vh, 1080px));
	border: 0;
	box-shadow: none;
	background: #080808;
}
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-track,
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-slide,
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-slide-link,
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-image,
.kj-service-hero--media-carousel .kj-service-hero-single .kj-carousel-slide,
.kj-service-hero--media-carousel .kj-service-hero-single .kj-carousel-slide-link,
.kj-service-hero--media-carousel .kj-service-hero-single .kj-carousel-image,
.kj-service-hero--media-carousel .kj-service-hero-image,
.kj-service-hero--media-carousel .kj-service-hero-image img,
.kj-service-hero--media-carousel .kj-service-hero-image__img,
.kj-service-hero-carousel__video,
.kj-service-hero-video-frame,
.kj-service-hero-video-frame iframe {
	border-radius: 0 !important;
}
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-track,
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-slide,
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-slide-link,
.kj-service-hero--media-carousel .kj-service-hero-single .kj-carousel-slide,
.kj-service-hero--media-carousel .kj-service-hero-single .kj-carousel-slide-link {
	height: 100%;
}
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-image,
.kj-service-hero--media-carousel .kj-service-hero-single .kj-carousel-image,
.kj-service-hero--media-carousel .kj-service-hero-image img,
.kj-service-hero--media-carousel .kj-service-hero-image__img {
	width: 100%;
	height: 100%;
	max-height: none;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center center;
	display: block;
}
.kj-service-hero-carousel__video,
.kj-service-hero-video-frame {
	width: 100%;
	height: 100%;
	background: #000;
	display: flex;
	align-items: center;
	justify-content: center;
}
.kj-service-hero-video-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}
.kj-service-hero--media-carousel .kj-carousel-caption {
	background: linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,0));
}
@media (max-width: 980px) {
	.kj-service-hero--media-carousel .kj-service-hero-grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.kj-service-hero--media-carousel .kj-service-hero-copy {
		padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 6vw, 4rem);
	}
	.kj-service-hero--media-carousel .kj-service-hero-media,
	.kj-service-hero--media-carousel .kj-service-hero-carousel,
	.kj-service-hero--media-carousel .kj-service-hero-single,
	.kj-service-hero--media-carousel .kj-service-hero-image,
	.kj-service-hero--media-carousel .kj-service-hero-fallback {
		min-height: clamp(420px, 70vh, 760px);
		height: clamp(420px, 70vh, 760px);
	}
}
@media (max-width: 560px) {
	.kj-service-hero--media-carousel .kj-service-hero-media,
	.kj-service-hero--media-carousel .kj-service-hero-carousel,
	.kj-service-hero--media-carousel .kj-service-hero-single,
	.kj-service-hero--media-carousel .kj-service-hero-image,
	.kj-service-hero--media-carousel .kj-service-hero-fallback {
		min-height: 420px;
		height: 420px;
	}
}


/* Stage 7.7.1 service hero video layout fix: keep video slides inside the media column and preserve hero text. */
.kj-service-hero--media-carousel .kj-service-hero-grid {
	position: relative;
	isolation: isolate;
}
.kj-service-hero--media-carousel .kj-service-hero-content,
.kj-service-hero--media-carousel .kj-service-hero-copy {
	position: relative;
	z-index: 5;
	min-width: 0;
}
.kj-service-hero--media-carousel .kj-service-hero-media {
	position: relative;
	z-index: 1;
	overflow: hidden;
	isolation: isolate;
	border-radius: 0 !important;
}
.kj-service-hero--media-carousel .kj-service-hero-single,
.kj-service-hero--media-carousel .kj-service-hero-carousel,
.kj-service-hero--media-carousel .kj-service-hero-image,
.kj-service-hero--media-carousel .kj-service-hero-fallback {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-radius: 0 !important;
}
.kj-service-hero--media-carousel .kj-service-hero-single > .kj-carousel-slide,
.kj-service-hero--media-carousel .kj-service-hero-carousel .kj-carousel-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.kj-service-hero--media-carousel .kj-service-hero-carousel__video,
.kj-service-hero--media-carousel .kj-service-hero-video-frame {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: #000;
	overflow: hidden;
	border-radius: 0 !important;
}
.kj-service-hero--media-carousel .kj-service-hero-video-frame iframe,
.kj-service-hero--media-carousel .kj-service-hero-video-frame .kj-service-hero-video-iframe {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	border: 0;
	display: block;
	border-radius: 0 !important;
}
.kj-service-hero--media-carousel .kj-service-hero-video-frame > * {
	max-width: none !important;
}
@media (max-width: 980px) {
	.kj-service-hero--media-carousel .kj-service-hero-grid {
		grid-template-columns: 1fr;
	}
	.kj-service-hero--media-carousel .kj-service-hero-content,
	.kj-service-hero--media-carousel .kj-service-hero-copy {
		order: 1;
	}
	.kj-service-hero--media-carousel .kj-service-hero-media {
		order: 2;
	}
}

/* Stage 7.7.1 Gallery compact hero and homepage hero containment fix */
.kj-gallery-single-wrap {
	max-width: none;
	padding-inline: clamp(1rem, 3vw, 3rem);
}
.kj-gallery-compact-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(1.5rem, 4vw, 4rem);
	align-items: start;
	padding: clamp(3rem, 7vw, 7rem) 0 clamp(1.75rem, 4vw, 3.5rem);
	border-bottom: 1px solid var(--kj-line);
}
.kj-gallery-hero-copy {
	min-width: 0;
	max-width: 760px;
	padding-top: clamp(.35rem, 1vw, 1rem);
}
.kj-gallery-hero-copy h1 {
	margin: 0 0 1.25rem;
	font-size: clamp(2.75rem, 6vw, 7rem);
	line-height: .9;
	letter-spacing: -.065em;
}
.kj-gallery-hero-copy p {
	max-width: 680px;
	margin: 0;
	color: var(--kj-muted);
	font-size: clamp(1rem, 1.45vw, 1.35rem);
	line-height: 1.7;
}
.kj-gallery-hero-media {
	position: relative;
	width: 100%;
	height: clamp(360px, 48vh, 620px);
	margin: 0;
	background: #111;
	overflow: hidden;
	border-radius: 0 !important;
}
.kj-gallery-hero-media__image,
.kj-gallery-hero-media img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
	object-position: var(--kj-gallery-hero-position, center center);
	display: block;
	border-radius: 0 !important;
}
.kj-gallery-hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: rgba(0,0,0,.16);
}
.kj-gallery-hero-media--overlay-none::after { opacity: 0; }
.kj-gallery-hero-media--overlay-light::after { background: rgba(0,0,0,.16); }
.kj-gallery-hero-media--overlay-medium::after { background: rgba(0,0,0,.32); }
.kj-gallery-hero-media--overlay-dark::after { background: rgba(0,0,0,.52); }
.kj-gallery-single .kj-gallery-image-section {
	margin-top: clamp(1.5rem, 3vw, 3rem);
}
.kj-gallery-body {
	max-width: 900px;
	margin: clamp(2.5rem, 5vw, 5rem) auto 0;
	color: var(--kj-muted);
	font-size: 1.05rem;
	line-height: 1.8;
}
.kj-gallery-body > *:first-child {
	margin-top: 0;
}
.kj-gallery-body > *:last-child {
	margin-bottom: 0;
}
.kj-gallery-inquiry {
	max-width: 900px;
	margin: clamp(1.5rem, 3vw, 2.5rem) auto clamp(3rem, 6vw, 6rem);
}
.kj-gallery-single .kj-cta-panel {
	display: none !important;
}
@media (max-width: 980px) {
	.kj-gallery-compact-hero {
		grid-template-columns: 1fr;
		padding-top: clamp(2.5rem, 8vw, 5rem);
	}
	.kj-gallery-hero-copy {
		max-width: none;
	}
	.kj-gallery-hero-media {
		height: clamp(320px, 54vh, 560px);
	}
}
@media (max-width: 560px) {
	.kj-gallery-single-wrap {
		padding-inline: 1rem;
	}
	.kj-gallery-hero-media {
		height: clamp(280px, 48vh, 460px);
	}
}

.kj-home-hero--carousel {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
	overflow: hidden;
	isolation: isolate;
}
.kj-home-hero-content,
.kj-home-hero-media,
.kj-home-hero--carousel .kj-hero-copy,
.kj-hero-carousel-column {
	min-width: 0;
	max-width: 100%;
	box-sizing: border-box;
}
.kj-home-hero-content,
.kj-home-hero--carousel .kj-hero-copy {
	position: relative;
	z-index: 2;
	overflow-wrap: anywhere;
}
.kj-home-hero-media,
.kj-hero-carousel-column {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100%;
}
.kj-home-hero--carousel .kj-home-carousel,
.kj-home-hero--carousel .kj-carousel-track,
.kj-home-hero--carousel .kj-carousel-slide,
.kj-home-hero--carousel .kj-carousel-slide-link,
.kj-home-hero--carousel .kj-carousel-image {
	width: 100%;
	max-width: 100%;
}
.kj-home-hero--carousel .kj-carousel-image {
	min-width: 0;
}
@media (max-width: 980px) {
	.kj-home-hero--carousel {
		grid-template-columns: 1fr !important;
	}
}


/* Stage 7.7.1 responsive hero scaling and containment patch */
html,
body {
	overflow-x: hidden;
}

/* Shared split-hero containment rules for homepage, services, studio rental, and galleries. */
.kj-home-hero--carousel,
.kj-service-hero--media-carousel .kj-service-hero-grid,
.kj-service-hero--studio-carousel .kj-service-hero-grid,
.kj-gallery-compact-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
	align-items: stretch;
	overflow: hidden;
	isolation: isolate;
}

.kj-home-hero-content,
.kj-home-hero-media,
.kj-home-hero--carousel .kj-hero-copy,
.kj-home-hero--carousel .kj-hero-carousel-column,
.kj-service-hero-content,
.kj-service-hero-media,
.kj-service-hero-copy,
.kj-studio-hero-media,
.kj-gallery-hero-copy,
.kj-gallery-hero-media {
	min-width: 0 !important;
	max-width: 100%;
	box-sizing: border-box;
}

.kj-home-hero-content,
.kj-home-hero--carousel .kj-hero-copy,
.kj-service-hero-content,
.kj-service-hero-copy,
.kj-gallery-hero-copy {
	position: relative;
	z-index: 2;
	overflow-wrap: normal;
	word-break: normal;
}

.kj-home-hero-content > *,
.kj-home-hero--carousel .kj-hero-copy > *,
.kj-service-hero-content > *,
.kj-service-hero-copy > *,
.kj-gallery-hero-copy > * {
	max-width: min(100%, 760px);
}

.kj-home-hero-media,
.kj-home-hero--carousel .kj-hero-carousel-column,
.kj-service-hero-media,
.kj-studio-hero-media,
.kj-gallery-hero-media {
	position: relative;
	z-index: 1;
	overflow: hidden;
	width: 100% !important;
}

.kj-home-hero--carousel .kj-home-carousel,
.kj-home-hero--carousel .kj-carousel-track,
.kj-home-hero--carousel .kj-carousel-slide,
.kj-home-hero--carousel .kj-carousel-slide-link,
.kj-service-hero--media-carousel .kj-service-hero-carousel,
.kj-service-hero--media-carousel .kj-service-hero-single,
.kj-service-hero--media-carousel .kj-service-hero-image,
.kj-service-hero--media-carousel .kj-service-hero-fallback,
.kj-service-hero--media-carousel .kj-carousel-track,
.kj-service-hero--media-carousel .kj-carousel-slide,
.kj-service-hero--media-carousel .kj-carousel-slide-link,
.kj-studio-hero-carousel,
.kj-studio-hero-carousel .kj-carousel-track,
.kj-studio-hero-carousel .kj-carousel-slide,
.kj-studio-hero-carousel .kj-carousel-slide-link {
	width: 100% !important;
	max-width: 100% !important;
}

/* More controlled editorial type scale. Prevents hero text from growing into the media column. */
.kj-home-hero--carousel .kj-hero-copy h1,
.kj-service-hero h1,
.kj-service-hero--media-carousel .kj-service-hero-copy h1,
.kj-service-hero--studio-carousel .kj-service-hero-copy h1 {
	font-size: clamp(2.4rem, 4.6vw, 5.8rem) !important;
	line-height: .94 !important;
	letter-spacing: -.055em !important;
	max-width: min(100%, 10.8ch) !important;
}

.kj-gallery-hero-copy h1 {
	font-size: clamp(2.1rem, 3.8vw, 4.6rem) !important;
	line-height: .96 !important;
	letter-spacing: -.045em !important;
	max-width: min(100%, 12ch) !important;
}

.kj-home-hero--carousel .kj-hero-copy p,
.kj-service-intro-headline,
.kj-service-excerpt,
.kj-gallery-hero-copy p {
	font-size: clamp(1rem, 1.15vw, 1.25rem) !important;
	line-height: 1.65 !important;
	max-width: min(100%, 680px) !important;
}

/* Moderate default hero media heights so images/carousels do not dominate laptop and browser-window views. */
.kj-home-hero--carousel,
.kj-service-hero--media-carousel .kj-service-hero-grid,
.kj-service-hero--studio-carousel .kj-service-hero-grid {
	min-height: clamp(620px, 82vh, 960px) !important;
}

.kj-home-hero--carousel .kj-hero-copy,
.kj-home-hero--carousel .kj-home-hero-content,
.kj-service-hero--media-carousel .kj-service-hero-copy,
.kj-service-hero--studio-carousel .kj-service-hero-copy {
	padding: clamp(3rem, 6vw, 6.5rem) !important;
}

.kj-home-hero--carousel .kj-home-carousel,
.kj-home-hero--carousel .kj-carousel-track,
.kj-home-hero--carousel .kj-carousel-slide,
.kj-service-hero--media-carousel .kj-service-hero-media,
.kj-service-hero--media-carousel .kj-service-hero-carousel,
.kj-service-hero--media-carousel .kj-service-hero-single,
.kj-service-hero--media-carousel .kj-service-hero-image,
.kj-service-hero--media-carousel .kj-service-hero-fallback,
.kj-service-hero--studio-carousel .kj-studio-hero-media,
.kj-service-hero--studio-carousel .kj-studio-hero-carousel {
	min-height: clamp(620px, 82vh, 960px) !important;
	height: clamp(620px, 82vh, 960px) !important;
	max-height: 960px !important;
}

.kj-home-hero--carousel .kj-carousel-image,
.kj-service-hero--media-carousel .kj-carousel-image,
.kj-service-hero--media-carousel .kj-service-hero-image img,
.kj-service-hero--media-carousel .kj-service-hero-image__img,
.kj-studio-hero-carousel .kj-carousel-image {
	width: 100% !important;
	height: 100% !important;
	max-width: 100% !important;
	max-height: none !important;
	object-fit: cover;
}

/* Compact gallery hero scale. The thumbnail grid remains the visual lead. */
.kj-gallery-compact-hero {
	grid-template-columns: minmax(0, 1fr) minmax(0, .92fr) !important;
	gap: clamp(1.25rem, 3vw, 3rem) !important;
	padding-top: clamp(2.5rem, 5.5vw, 5.25rem) !important;
	padding-bottom: clamp(1.5rem, 3vw, 2.75rem) !important;
}

.kj-gallery-hero-media {
	min-height: clamp(320px, 42vh, 560px) !important;
	height: clamp(320px, 42vh, 560px) !important;
	max-height: 620px !important;
}

.kj-gallery-hero-media__image,
.kj-gallery-hero-media img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}

/* Keep video embeds locked inside the right media column. */
.kj-service-hero--media-carousel .kj-service-hero-video-frame,
.kj-service-hero--media-carousel .kj-service-hero-carousel__video {
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	max-width: 100% !important;
	position: relative !important;
	overflow: hidden !important;
}

.kj-service-hero--media-carousel .kj-service-hero-video-frame iframe,
.kj-service-hero--media-carousel .kj-service-hero-video-frame .kj-service-hero-video-iframe {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
}

@media (max-width: 1180px) {
	.kj-home-hero--carousel .kj-hero-copy,
	.kj-home-hero--carousel .kj-home-hero-content,
	.kj-service-hero--media-carousel .kj-service-hero-copy,
	.kj-service-hero--studio-carousel .kj-service-hero-copy,
	.kj-gallery-hero-copy {
		padding: clamp(2.625rem, 5vw, 4.5rem) !important;
	}

	.kj-home-hero--carousel .kj-hero-copy h1,
	.kj-service-hero h1,
	.kj-service-hero--media-carousel .kj-service-hero-copy h1,
	.kj-service-hero--studio-carousel .kj-service-hero-copy h1 {
		font-size: clamp(2.25rem, 4.25vw, 4.8rem) !important;
	}
}

@media (max-width: 980px) {
	.kj-home-hero--carousel,
	.kj-service-hero--media-carousel .kj-service-hero-grid,
	.kj-service-hero--studio-carousel .kj-service-hero-grid,
	.kj-gallery-compact-hero {
		grid-template-columns: 1fr !important;
		min-height: 0 !important;
	}

	.kj-home-hero--carousel .kj-hero-copy,
	.kj-home-hero--carousel .kj-home-hero-content,
	.kj-service-hero--media-carousel .kj-service-hero-copy,
	.kj-service-hero--studio-carousel .kj-service-hero-copy {
		padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.5rem, 6vw, 3.5rem) !important;
	}

	.kj-home-hero--carousel .kj-home-carousel,
	.kj-home-hero--carousel .kj-carousel-track,
	.kj-home-hero--carousel .kj-carousel-slide,
	.kj-service-hero--media-carousel .kj-service-hero-media,
	.kj-service-hero--media-carousel .kj-service-hero-carousel,
	.kj-service-hero--media-carousel .kj-service-hero-single,
	.kj-service-hero--media-carousel .kj-service-hero-image,
	.kj-service-hero--media-carousel .kj-service-hero-fallback,
	.kj-service-hero--studio-carousel .kj-studio-hero-media,
	.kj-service-hero--studio-carousel .kj-studio-hero-carousel {
		min-height: clamp(420px, 58vh, 680px) !important;
		height: clamp(420px, 58vh, 680px) !important;
		max-height: 680px !important;
	}

	.kj-gallery-hero-media {
		min-height: clamp(280px, 42vh, 480px) !important;
		height: clamp(280px, 42vh, 480px) !important;
	}
}

@media (max-width: 640px) {
	.kj-home-hero--carousel .kj-hero-copy,
	.kj-home-hero--carousel .kj-home-hero-content,
	.kj-service-hero--media-carousel .kj-service-hero-copy,
	.kj-service-hero--studio-carousel .kj-service-hero-copy,
	.kj-gallery-hero-copy {
		padding: 36px 22px !important;
	}

	.kj-home-hero--carousel .kj-hero-copy h1,
	.kj-service-hero h1,
	.kj-service-hero--media-carousel .kj-service-hero-copy h1,
	.kj-service-hero--studio-carousel .kj-service-hero-copy h1 {
		font-size: clamp(2.05rem, 11vw, 3.35rem) !important;
		line-height: .98 !important;
	}

	.kj-gallery-hero-copy h1 {
		font-size: clamp(1.95rem, 10vw, 3rem) !important;
		line-height: 1 !important;
	}

	.kj-home-hero--carousel .kj-home-carousel,
	.kj-home-hero--carousel .kj-carousel-track,
	.kj-home-hero--carousel .kj-carousel-slide,
	.kj-service-hero--media-carousel .kj-service-hero-media,
	.kj-service-hero--media-carousel .kj-service-hero-carousel,
	.kj-service-hero--media-carousel .kj-service-hero-single,
	.kj-service-hero--media-carousel .kj-service-hero-image,
	.kj-service-hero--media-carousel .kj-service-hero-fallback,
	.kj-service-hero--studio-carousel .kj-studio-hero-media,
	.kj-service-hero--studio-carousel .kj-studio-hero-carousel {
		min-height: 390px !important;
		height: 390px !important;
		max-height: 390px !important;
	}

	.kj-gallery-hero-media {
		min-height: 300px !important;
		height: 300px !important;
		max-height: 300px !important;
	}
}

/* Stage 7.7.3 CTA and link hierarchy cleanup.
   One primary action per page; secondary actions are understated text links/cards. */
.kj-hero-actions .kj-text-link,
.kj-about-hero-actions .kj-text-link,
.kj-related-gallery-copy .kj-text-link,
.kj-card-arrow {
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--kj-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .32em;
}

.kj-hero-actions .kj-text-link:hover,
.kj-about-hero-actions .kj-text-link:hover,
.kj-related-gallery-copy .kj-text-link:hover,
.kj-card-arrow:hover,
.kj-hero-actions .kj-text-link:focus,
.kj-about-hero-actions .kj-text-link:focus,
.kj-related-gallery-copy .kj-text-link:focus,
.kj-card-arrow:focus {
	color: var(--kj-text);
}

.kj-card-arrow {
	font-size: .76rem;
	letter-spacing: .08em;
}

.kj-contact-page-template .kj-contact-quick-links a {
	min-height: 0;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.kj-contact-page-template .kj-contact-services {
	padding-block: clamp(42px, 5vw, 76px);
}

.kj-contact-page-template .kj-contact-services h2 {
	font-size: clamp(1.45rem, 2.6vw, 3.2rem);
	max-width: 760px;
}

.kj-contact-page-template .kj-service-link-grid {
	gap: 0;
	background: rgba(255,255,255,.12);
}

.kj-contact-page-template .kj-service-link-grid a {
	min-height: 86px;
	padding: 18px 20px;
	justify-content: center;
	background: #080808;
	color: var(--kj-text);
}

.kj-contact-page-template .kj-service-link-grid strong {
	font-size: .92rem;
	font-weight: 500;
	line-height: 1.35;
}

.kj-contact-page-template .kj-service-link-grid span {
	display: none;
}

.kj-contact-page-template .kj-service-link-grid a:hover,
.kj-contact-page-template .kj-service-link-grid a:focus {
	background: #111;
	color: var(--kj-accent);
}

.kj-related-gallery-card,
.kj-related-service-card,
.kj-card--featured {
	box-shadow: none;
}

.kj-related-gallery-card {
	border-radius: 0;
}

.kj-related-gallery-image,
.kj-related-gallery-image img {
	border-radius: 0;
}

.kj-site-footer .kj-footer-topline {
	display: none;
}

.kj-site-footer .kj-footer-connect a,
.kj-site-footer .kj-footer-menu a,
.kj-site-footer .kj-footer-contact a {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.kj-site-footer .kj-footer-connect a[href*="contact"] {
	font-weight: inherit;
	color: inherit;
}

/* Stage 7.7.5 hero layout width controls.
   Preset splits are applied only on desktop; tablet/mobile layouts stack safely. */
.kj-home-hero.kj-hero-split-50-50,
.kj-service-hero.kj-hero-split-50-50 .kj-service-hero-grid,
.kj-gallery-compact-hero.kj-hero-split-50-50 {
	grid-template-columns: minmax(0, 50%) minmax(0, 50%) !important;
}

.kj-home-hero.kj-hero-split-45-55,
.kj-service-hero.kj-hero-split-45-55 .kj-service-hero-grid,
.kj-gallery-compact-hero.kj-hero-split-45-55 {
	grid-template-columns: minmax(0, 45%) minmax(0, 55%) !important;
}

.kj-home-hero.kj-hero-split-40-60,
.kj-service-hero.kj-hero-split-40-60 .kj-service-hero-grid,
.kj-gallery-compact-hero.kj-hero-split-40-60 {
	grid-template-columns: minmax(0, 40%) minmax(0, 60%) !important;
}

.kj-home-hero.kj-hero-split-35-65,
.kj-service-hero.kj-hero-split-35-65 .kj-service-hero-grid,
.kj-gallery-compact-hero.kj-hero-split-35-65 {
	grid-template-columns: minmax(0, 35%) minmax(0, 65%) !important;
}

.kj-hero-split-35-65 .kj-home-hero-content h1,
.kj-hero-split-35-65 .kj-hero-copy h1,
.kj-hero-split-35-65 .kj-service-hero-copy h1,
.kj-hero-split-35-65 .kj-gallery-hero-copy h1,
.kj-hero-split-40-60 .kj-home-hero-content h1,
.kj-hero-split-40-60 .kj-hero-copy h1,
.kj-hero-split-40-60 .kj-service-hero-copy h1,
.kj-hero-split-40-60 .kj-gallery-hero-copy h1 {
	font-size: clamp(2.1rem, 3.8vw, 4.8rem) !important;
	max-width: min(100%, 10.5ch) !important;
}

.kj-hero-split-35-65 .kj-home-hero-content,
.kj-hero-split-35-65 .kj-hero-copy,
.kj-hero-split-35-65 .kj-service-hero-copy,
.kj-hero-split-35-65 .kj-gallery-hero-copy {
	overflow-wrap: normal;
	word-break: normal;
}

@media (max-width: 1180px) and (min-width: 981px) {
	.kj-home-hero.kj-hero-split-35-65,
	.kj-service-hero.kj-hero-split-35-65 .kj-service-hero-grid,
	.kj-gallery-compact-hero.kj-hero-split-35-65 {
		grid-template-columns: minmax(0, 40%) minmax(0, 60%) !important;
	}

	.kj-home-hero.kj-hero-split-40-60,
	.kj-service-hero.kj-hero-split-40-60 .kj-service-hero-grid,
	.kj-gallery-compact-hero.kj-hero-split-40-60 {
		grid-template-columns: minmax(0, 42%) minmax(0, 58%) !important;
	}
}

@media (max-width: 980px) {
	.kj-home-hero.kj-hero-split-50-50,
	.kj-home-hero.kj-hero-split-45-55,
	.kj-home-hero.kj-hero-split-40-60,
	.kj-home-hero.kj-hero-split-35-65,
	.kj-service-hero.kj-hero-split-50-50 .kj-service-hero-grid,
	.kj-service-hero.kj-hero-split-45-55 .kj-service-hero-grid,
	.kj-service-hero.kj-hero-split-40-60 .kj-service-hero-grid,
	.kj-service-hero.kj-hero-split-35-65 .kj-service-hero-grid,
	.kj-gallery-compact-hero.kj-hero-split-50-50,
	.kj-gallery-compact-hero.kj-hero-split-45-55,
	.kj-gallery-compact-hero.kj-hero-split-40-60,
	.kj-gallery-compact-hero.kj-hero-split-35-65 {
		grid-template-columns: 1fr !important;
	}
}


/* Stage 7.7.10 full-page homepage hero gallery overlay */
.kj-home-hero--carousel.kj-home-hero--fullscreen.kj-container {
	width: 100%;
	max-width: none;
	margin: 0;
}
.kj-home-hero--fullscreen {
	--kj-home-hero-height: clamp(720px, 100vh, var(--kj-carousel-height, 1200px));
	position: relative;
	display: block;
	min-height: var(--kj-home-hero-height);
	padding: 0;
	overflow: hidden;
	isolation: isolate;
	background: #050506;
}
.kj-home-hero--fullscreen::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(0,0,0, calc(var(--kj-home-overlay-opacity, .62) + .18)) 0%, rgba(0,0,0, var(--kj-home-overlay-opacity, .62)) 34%, rgba(0,0,0, calc(var(--kj-home-overlay-opacity, .62) * .56)) 68%, rgba(0,0,0, calc(var(--kj-home-overlay-opacity, .62) * .32)) 100%),
		linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,0) 34%, rgba(0,0,0,.28) 100%);
	pointer-events: none;
}
.kj-home-hero--fullscreen .kj-home-hero-media,
.kj-home-hero--fullscreen .kj-home-carousel {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
}
.kj-home-hero--fullscreen .kj-home-hero-media {
	z-index: 1;
}
.kj-home-hero--fullscreen .kj-home-carousel {
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.kj-home-hero--fullscreen .kj-carousel-track,
.kj-home-hero--fullscreen .kj-carousel-slide,
.kj-home-hero--fullscreen .kj-carousel-slide-link,
.kj-home-hero--fullscreen .kj-carousel-image,
.kj-home-hero--fullscreen .kj-carousel-placeholder {
	height: 100%;
	min-height: 100%;
	border-radius: 0 !important;
}
.kj-home-hero--fullscreen .kj-carousel-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kj-home-hero--fullscreen .kj-home-hero-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: min(100% - 40px, var(--kj-max));
	min-height: var(--kj-home-hero-height);
	margin-inline: auto;
	padding: clamp(3rem, 7vw, 8rem) 0;
	pointer-events: none;
}
.kj-home-hero--fullscreen .kj-home-hero-content > * {
	pointer-events: auto;
}
.kj-home-hero--fullscreen .kj-home-hero-content::before {
	content: "";
	position: absolute;
	inset: auto auto 50%;
	left: max(-2rem, -4vw);
	width: min(620px, calc(100vw - 40px));
	height: min(640px, calc(100% - 80px));
	border-radius: 32px;
	background: rgba(0,0,0,var(--kj-home-content-panel-opacity, .18));
	backdrop-filter: blur(2px);
	transform: translateY(50%);
	z-index: -1;
}
.kj-home-hero--fullscreen .kj-hero-copy h1 {
	max-width: 11ch;
	text-shadow: 0 4px 28px rgba(0,0,0,.52);
}
.kj-home-hero--fullscreen .kj-hero-copy p:not(.kj-eyebrow) {
	max-width: 560px;
	color: rgba(244,241,234,.86);
	text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.kj-home-hero--fullscreen .kj-carousel-caption {
	left: auto;
	right: 1rem;
	bottom: 1rem;
	max-width: min(420px, calc(100% - 2rem));
}
.kj-home-hero--fullscreen .kj-carousel-arrow {
	z-index: 8;
}
.kj-home-hero--fullscreen .kj-carousel-dots {
	z-index: 8;
}
.kj-home-hero--split {
	position: relative;
}
@media (max-width: 980px) {
	.kj-home-hero--fullscreen {
		--kj-home-hero-height: clamp(680px, 100svh, 900px);
	}
	.kj-home-hero--fullscreen .kj-home-hero-content {
		justify-content: flex-end;
		padding-top: 7rem;
		padding-bottom: clamp(4rem, 10vw, 6rem);
	}
}
@media (max-width: 560px) {
	.kj-home-hero--fullscreen {
		--kj-home-hero-height: clamp(620px, 100svh, 760px);
	}
	.kj-home-hero--fullscreen .kj-home-hero-content {
		width: min(100% - 28px, var(--kj-max));
		padding-bottom: 5rem;
	}
	.kj-home-hero--fullscreen .kj-home-hero-content::before {
		left: -1rem;
		width: calc(100vw - 28px);
		border-radius: 22px;
	}
	.kj-home-hero--fullscreen .kj-carousel-caption {
		display: none;
	}
}


/* Stage 7.7.11 full-page hero conflict fix
   Fullscreen mode must not inherit the split hero width class, grid columns,
   or old image-panel sizing. The carousel remains the same; only placement changes. */
.kj-home-hero--fullscreen.kj-hero,
.kj-home-hero--fullscreen.kj-home-hero--carousel {
	display: block !important;
	grid-template-columns: none !important;
	gap: 0 !important;
	align-items: stretch !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: clamp(720px, 100vh, var(--kj-carousel-height, 1200px)) !important;
	position: relative !important;
	overflow: hidden !important;
	isolation: isolate !important;
	background: #050506;
}
.kj-home-hero--fullscreen::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: #000;
	opacity: var(--kj-home-overlay-opacity, .62);
	pointer-events: none;
}
.kj-home-hero--fullscreen::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	background: linear-gradient(90deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.24) 38%, rgba(0,0,0,.06) 72%, rgba(0,0,0,0) 100%);
	pointer-events: none;
}
.kj-home-hero--fullscreen .kj-home-hero-media,
.kj-home-hero--fullscreen .kj-hero-carousel-column {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	height: 100% !important;
	min-height: 100% !important;
}
.kj-home-hero--fullscreen .kj-home-carousel,
.kj-home-hero--fullscreen .kj-carousel-track,
.kj-home-hero--fullscreen .kj-carousel-slide,
.kj-home-hero--fullscreen .kj-carousel-slide-link,
.kj-home-hero--fullscreen .kj-carousel-image,
.kj-home-hero--fullscreen .kj-carousel-placeholder {
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	max-height: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}
.kj-home-hero--fullscreen .kj-carousel-image,
.kj-home-hero--fullscreen .kj-home-carousel--fallback .kj-carousel-image {
	object-fit: cover !important;
}
.kj-home-hero--fullscreen .kj-home-hero-content,
.kj-home-hero--fullscreen .kj-hero-copy {
	position: relative !important;
	z-index: 4 !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: flex-start !important;
	width: min(100% - 40px, var(--kj-max)) !important;
	max-width: var(--kj-max) !important;
	min-height: clamp(720px, 100vh, var(--kj-carousel-height, 1200px)) !important;
	margin: 0 auto !important;
	padding: clamp(4rem, 8vw, 8rem) 0 !important;
}
.kj-home-hero--fullscreen .kj-home-hero-content::before,
.kj-home-hero--fullscreen .kj-hero-copy::before {
	content: "";
	position: absolute;
	left: max(-2rem, -4vw);
	top: 50%;
	z-index: -1;
	width: min(620px, calc(100vw - 40px));
	height: min(640px, calc(100% - 80px));
	border-radius: 32px;
	background: rgba(0,0,0,var(--kj-home-content-panel-opacity, .18));
	backdrop-filter: blur(2px);
	transform: translateY(-50%);
}
.kj-home-hero--fullscreen .kj-hero-copy h1 {
	max-width: 11ch !important;
	text-shadow: 0 4px 28px rgba(0,0,0,.58);
}
.kj-home-hero--fullscreen .kj-hero-copy p:not(.kj-eyebrow) {
	max-width: 560px !important;
	color: rgba(244,241,234,.9) !important;
	text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.kj-home-hero--fullscreen .kj-carousel-caption {
	z-index: 6 !important;
}
.kj-home-hero--fullscreen .kj-carousel-arrow,
.kj-home-hero--fullscreen .kj-carousel-dots {
	z-index: 7 !important;
}
@media (max-width: 980px) {
	.kj-home-hero--fullscreen.kj-hero,
	.kj-home-hero--fullscreen.kj-home-hero--carousel,
	.kj-home-hero--fullscreen .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-hero-copy {
		min-height: clamp(680px, 100svh, 900px) !important;
	}
	.kj-home-hero--fullscreen .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-hero-copy {
		justify-content: flex-end !important;
		padding-top: 7rem !important;
		padding-bottom: clamp(4rem, 10vw, 6rem) !important;
	}
}
@media (max-width: 560px) {
	.kj-home-hero--fullscreen.kj-hero,
	.kj-home-hero--fullscreen.kj-home-hero--carousel,
	.kj-home-hero--fullscreen .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-hero-copy {
		min-height: clamp(620px, 100svh, 760px) !important;
	}
	.kj-home-hero--fullscreen .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-hero-copy {
		width: min(100% - 28px, var(--kj-max)) !important;
		padding-bottom: 5rem !important;
	}
	.kj-home-hero--fullscreen .kj-home-hero-content::before,
	.kj-home-hero--fullscreen .kj-hero-copy::before {
		left: -1rem;
		width: calc(100vw - 28px);
		border-radius: 22px;
	}
	.kj-home-hero--fullscreen .kj-carousel-caption {
		display: none;
	}
}


/* Stage 7.7.12: Full Width is now a real hero width layout option */
.kj-hero-layout-full.kj-home-hero--carousel,
.kj-hero-layout-full.kj-hero {
	display: block !important;
	grid-template-columns: none !important;
	--kj-hero-text-width: 100% !important;
	--kj-hero-media-width: 100% !important;
}
.kj-hero-layout-full .kj-home-hero-media,
.kj-hero-layout-full .kj-hero-carousel-column {
	position: absolute !important;
	inset: 0 !important;
	width: 100% !important;
	max-width: none !important;
}
.kj-hero-layout-full .kj-home-carousel {
	width: 100% !important;
	max-width: none !important;
}


/* Stage 7.7.13 definitive homepage hero layout rewrite
   The layout_width setting is the only source of truth:
   - .kj-hero-layout-full = full-bleed carousel background with text overlay
   - .kj-home-hero--split = legacy two-column hero using width presets */
.kj-home-hero--carousel.kj-hero-layout-full,
.kj-home-hero--carousel.kj-hero-layout-full.kj-container,
.kj-home-hero--fullscreen.kj-hero-layout-full {
	position: relative !important;
	display: block !important;
	grid-template-columns: none !important;
	gap: 0 !important;
	align-items: stretch !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	min-height: clamp(720px, 100vh, var(--kj-carousel-height, 1200px)) !important;
	overflow: hidden !important;
	isolation: isolate !important;
	background: #050506;
	--kj-hero-text-width: 100% !important;
	--kj-hero-media-width: 100% !important;
}
.kj-home-hero--carousel.kj-hero-layout-full::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	background: #000;
	opacity: var(--kj-home-overlay-opacity, .62);
	pointer-events: none;
}
.kj-home-hero--carousel.kj-hero-layout-full::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 3;
	background: linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.24) 38%, rgba(0,0,0,.08) 70%, rgba(0,0,0,0) 100%);
	pointer-events: none;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-media,
.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-carousel-column {
	position: absolute !important;
	inset: 0 !important;
	z-index: 1 !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	height: 100% !important;
	min-height: 100% !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-carousel,
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-track,
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-slide,
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-slide-link,
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-image,
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-placeholder {
	width: 100% !important;
	height: 100% !important;
	min-height: 100% !important;
	max-height: none !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-image,
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-carousel--fallback .kj-carousel-image {
	object-fit: cover !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy {
	position: relative !important;
	z-index: 4 !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: center !important;
	align-items: flex-start !important;
	width: min(100% - 40px, var(--kj-max)) !important;
	max-width: var(--kj-max) !important;
	min-height: clamp(720px, 100vh, var(--kj-carousel-height, 1200px)) !important;
	margin: 0 auto !important;
	padding: clamp(4rem, 8vw, 8rem) 0 !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content::before,
.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy::before {
	content: "";
	position: absolute;
	left: max(-2rem, -4vw);
	top: 50%;
	z-index: -1;
	width: min(620px, calc(100vw - 40px));
	height: min(640px, calc(100% - 80px));
	border-radius: 32px;
	background: rgba(0,0,0,var(--kj-home-content-panel-opacity, .18));
	backdrop-filter: blur(2px);
	transform: translateY(-50%);
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy h1 {
	max-width: 11ch !important;
	text-shadow: 0 4px 28px rgba(0,0,0,.58);
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy p:not(.kj-eyebrow) {
	max-width: 560px !important;
	color: rgba(244,241,234,.9) !important;
	text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-arrow,
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-dots,
.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-caption {
	z-index: 7 !important;
}
.kj-home-hero--split {
	display: grid;
	grid-template-columns: minmax(0, var(--kj-hero-text-width, 50%)) minmax(0, var(--kj-hero-media-width, 50%));
}
@media (max-width: 980px) {
	.kj-home-hero--carousel.kj-hero-layout-full,
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
	.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy {
		min-height: clamp(680px, 100svh, 900px) !important;
	}
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
	.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy {
		justify-content: flex-end !important;
		padding-top: 7rem !important;
		padding-bottom: clamp(4rem, 10vw, 6rem) !important;
	}
}
@media (max-width: 560px) {
	.kj-home-hero--carousel.kj-hero-layout-full,
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
	.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy {
		min-height: clamp(620px, 100svh, 760px) !important;
	}
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
	.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy {
		width: min(100% - 28px, var(--kj-max)) !important;
		padding-bottom: 5rem !important;
	}
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content::before,
	.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy::before {
		left: -1rem;
		width: calc(100vw - 28px);
		border-radius: 22px;
	}
	.kj-home-hero--carousel.kj-hero-layout-full .kj-carousel-caption {
		display: none;
	}
}


/* Stage 7.7.14 high-resolution homepage hero text panel fix
   The old overlay was a fixed pseudo-element behind a fluid text group.
   This real panel keeps all hero copy/buttons inside the overlay at large viewport sizes. */
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content::before,
.kj-home-hero--carousel.kj-hero-layout-full .kj-hero-copy::before {
	content: none !important;
	display: none !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content {
	align-items: flex-start !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel {
	position: relative;
	z-index: 5;
	box-sizing: border-box;
	width: min(100%, clamp(660px, 42vw, 900px));
	max-width: calc(100vw - 40px);
	padding: clamp(1.35rem, 2.15vw, 2.75rem);
	border: 1px solid rgba(255,255,255,.10);
	border-radius: clamp(22px, 2vw, 34px);
	background: rgba(0,0,0,var(--kj-home-content-panel-opacity, .18));
	backdrop-filter: blur(4px);
	box-shadow: 0 28px 90px rgba(0,0,0,.28);
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel .kj-eyebrow {
	max-width: 100%;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel h1 {
	max-width: min(100%, 11ch) !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel p:not(.kj-eyebrow) {
	max-width: min(100%, 650px) !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel .kj-hero-actions {
	max-width: 100%;
}
@media (min-width: 1800px) {
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel {
		width: min(900px, 42vw);
	}
}
@media (min-width: 2400px) {
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel {
		width: min(960px, 38vw);
	}
}
@media (max-width: 980px) {
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel {
		width: min(100%, 760px);
		padding: clamp(1.15rem, 4vw, 2rem);
	}
}
@media (max-width: 560px) {
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel {
		max-width: calc(100vw - 28px);
		padding: 1.15rem;
		border-radius: 20px;
	}
}


/* Stage 7.7.15 backend-controlled homepage hero overlay panel */
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
.kj-home-hero--fullscreen .kj-home-hero-content,
.kj-home-hero--fullscreen .kj-hero-copy {
	align-items: var(--kj-home-content-panel-align, flex-start) !important;
	justify-content: var(--kj-home-content-panel-vertical, center) !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel,
.kj-home-hero--fullscreen .kj-home-hero-content-panel {
	width: min(calc(100vw - 40px), var(--kj-home-content-panel-width, 40vw)) !important;
	max-width: 100% !important;
	padding: var(--kj-home-content-panel-padding, 34px) !important;
	border-radius: var(--kj-home-content-panel-radius, 28px) !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel h1,
.kj-home-hero--fullscreen .kj-home-hero-content-panel h1 {
	max-width: min(100%, 11ch) !important;
}
.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel p:not(.kj-eyebrow),
.kj-home-hero--fullscreen .kj-home-hero-content-panel p:not(.kj-eyebrow) {
	max-width: 100% !important;
}
@media (min-width: 1600px) {
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-hero-copy {
		width: min(100% - 72px, var(--kj-max)) !important;
	}
}
@media (max-width: 980px) {
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-home-hero-content,
	.kj-home-hero--fullscreen .kj-hero-copy {
		align-items: flex-start !important;
		justify-content: flex-end !important;
	}
	.kj-home-hero--carousel.kj-hero-layout-full .kj-home-hero-content-panel,
	.kj-home-hero--fullscreen .kj-home-hero-content-panel {
		width: min(100%, calc(100vw - 28px)) !important;
		padding: clamp(1.25rem, 5vw, 2rem) !important;
	}
}


/* Stage 7.7.16 homepage hero video slides */
.kj-carousel-slide--video_upload,
.kj-carousel-slide--external_video {
	background: #050506;
}
.kj-carousel-video,
.kj-carousel-video-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border: 0;
}
.kj-carousel-video--external {
	width: 100%;
	height: 100%;
	transform: scale(1.16);
	transform-origin: center center;
	pointer-events: none;
}
.kj-carousel-video-poster {
	z-index: 1;
}
.kj-carousel-slide--external_video .kj-carousel-video--external {
	z-index: 2;
}
.kj-carousel-slide-link--overlay {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: block;
}
@media (max-width: 760px) {
	.kj-carousel-video--external {
		transform: scale(1.34);
	}
}
