.jk-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(16,17,20,.72);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(255,255,255,.1);
}
.home .jk-site-header {
	position: fixed;
	left: 0;
	right: 0;
	background: transparent;
}
.home .jk-site-header.is-scrolled { background: rgba(16,17,20,.82); }
.jk-header-inner {
	width: var(--jk-frame);
	margin: 0 auto;
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(.9rem, 2vw, 1.5rem);
}
.jk-logo img { width: clamp(150px, 15vw, 188px); display: block; }
.jk-nav { display: flex; align-items: center; gap: clamp(.75rem, 1.5vw, 1.15rem); }
.jk-nav a {
	text-decoration: none;
	color: rgba(255,255,255,.82);
	padding: .35rem .15rem;
	font-size: clamp(.9rem, .8vw, 1rem);
}
.jk-nav a:hover { color: var(--jk-white); }
.jk-button,
.wp-block-button__link,
button.jk-submit {
	border: 0;
	border-radius: 999px;
	background: var(--jk-accent);
	color: var(--jk-white);
	text-decoration: none;
	font-weight: 700;
	padding: .72rem 1.08rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease;
}
.jk-button:hover,
.wp-block-button__link:hover,
button.jk-submit:hover {
	transform: translateY(-1px);
	background: var(--jk-accent-dark);
}
.jk-button.secondary {
	background: transparent;
	border: 1px solid rgba(255,255,255,.24);
}
.jk-header-inner > .jk-button {
	white-space: nowrap;
	padding: .68rem 1.15rem;
	min-height: 44px;
	font-size: .95rem;
}
.jk-hero {
	min-height: 88vh;
	display: grid;
	align-items: end;
	padding: clamp(7.25rem, 12vh, 9rem) 0 clamp(3rem, 7vh, 5rem);
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, rgba(16,17,20,.35), rgba(16,17,20,.96)), var(--jk-hero-image, url("../images/generated/home-hero-preview.png")) center / cover;
}
.jk-hero::after {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(255,255,255,.16);
	pointer-events: none;
}
.jk-hero-content {
	width: var(--jk-frame);
	margin: 0 auto;
	max-width: 1080px;
	position: relative;
	z-index: 1;
}
.jk-hero h1 {
	font-size: clamp(2.6rem, 5vw, 5rem);
	line-height: .98;
	margin: .22em 0 .18em;
	max-width: min(1040px, 100%);
	text-wrap: balance;
	overflow-wrap: normal;
}
.jk-hero p {
	max-width: 720px;
	font-size: clamp(1rem, .6vw + .9rem, 1.22rem);
	color: var(--jk-muted-light);
}
.jk-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	border: 1px solid var(--jk-border-dark);
}
.jk-card {
	padding: clamp(1.2rem, 2.5vw, 2rem);
	background: rgba(255,255,255,.035);
	border: 1px solid var(--jk-border-dark);
	border-radius: 8px;
}
.jk-card {
	transition: border-color .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.jk-card:hover {
	border-color: var(--jk-gold);
	background: rgba(255,255,255,.06);
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(0,0,0,.22);
}

.jk-light .jk-card:hover {
	border-color: var(--jk-accent);
	background: rgba(16,17,20,.055);
}
.jk-light .jk-card { background: rgba(16,17,20,.035); border-color: var(--jk-border-light); }
.jk-card h3 { margin-top: 0; font-family: Georgia, serif; font-size: 1.55rem; }
.jk-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.jk-service-card { min-height: 280px; display: flex; flex-direction: column; justify-content: space-between; }
.jk-split {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}
.jk-media-panel {
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	overflow: hidden;
	background: var(--jk-ink-elevated);
	border: 1px solid var(--jk-border-dark);
}
.jk-media-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jk-process {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}
.jk-process .jk-card::before {
	counter-increment: step;
	content: "0" counter(step);
	color: var(--jk-gold);
	font-weight: 800;
}
.jk-faq details {
	border-top: 1px solid var(--jk-border-dark);
	padding: 1.2rem 0;
}
.jk-faq summary {
	cursor: pointer;
	font-weight: 700;
	font-size: 1.1rem;
}
.jk-form {
	display: grid;
	gap: 1rem;
}
.jk-form label { display: grid; gap: .35rem; font-weight: 700; }
.jk-form input,
.jk-form select,
.jk-form textarea {
	width: 100%;
	border: 1px solid rgba(16,17,20,.18);
	border-radius: 8px;
	padding: .9rem 1rem;
	font: inherit;
	background: #fff;
	color: #111216;
}
.jk-form textarea { min-height: 160px; }
.jk-form .jk-hp { position: absolute; left: -9999px; }
.jk-footer {
	background: #0c0d10;
	border-top: 1px solid var(--jk-border-dark);
	padding: 4rem 0 2rem;
}
.jk-footer-inner {
	width: var(--jk-frame);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.3fr repeat(3, 1fr);
	gap: 2rem;
}
.jk-footer a { color: var(--jk-muted-light); text-decoration: none; }
.jk-wa {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 900;
	border-radius: 999px;
	background: #1f8f50;
	color: #fff;
	padding: .9rem 1rem;
	text-decoration: none;
	font-weight: 800;
	box-shadow: 0 14px 30px rgba(0,0,0,.25);
}
.jk-video-modal {
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: grid;
	place-items: center;
	padding: 2rem;
	background: rgba(0,0,0,.86);
}
.jk-video-modal iframe {
	width: min(980px, 94vw);
	aspect-ratio: 16 / 9;
	border: 0;
	background: #000;
}
.jk-video-modal button {
	position: fixed;
	top: 1rem;
	right: 1rem;
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 999px;
	background: #101114;
	color: #fff;
	padding: .75rem 1rem;
}
.jk-service-card:hover {
	border-color: var(--jk-accent);
}

.jk-service-card:hover strong {
	color: var(--jk-gold);
}
