/* ==========================================================================
   JUKYE HIGHLAND
   Design system for Jukye BananaPak. Deep matooke green, bone paper,
   rationed amber. Schibsted Grotesk display, Karla body.
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Fonts. Self-hosted variable subsets, so there is no third-party round
   trip on first paint and no external font request per visitor.
   -------------------------------------------------------------------------- */

@font-face {
	font-family: "Schibsted Grotesk";
	font-style: normal;
	font-display: swap;
	font-weight: 400 900;
	src: url("../fonts/schibsted-var.woff2") format("woff2-variations"),
		url("../fonts/schibsted-var.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Schibsted Grotesk";
	font-style: italic;
	font-display: swap;
	font-weight: 400 900;
	src: url("../fonts/schibsted-var-italic.woff2") format("woff2-variations"),
		url("../fonts/schibsted-var-italic.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Karla";
	font-style: normal;
	font-display: swap;
	font-weight: 200 800;
	src: url("../fonts/karla-var.woff2") format("woff2-variations"),
		url("../fonts/karla-var.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Karla";
	font-style: italic;
	font-display: swap;
	font-weight: 200 800;
	src: url("../fonts/karla-var-italic.woff2") format("woff2-variations"),
		url("../fonts/karla-var-italic.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
		U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */

:root {
	--jk-bg: #F4F1E8;
	--jk-surface: #FFFFFF;
	--jk-ink: #12160F;
	--jk-accent: #1E4A2E;
	--jk-accent-hover: #173B24;
	--jk-deep: #0C1A11;
	--jk-moss: #5C7A4F;
	--jk-soap: #D9D3BE;
	--jk-amber: #C98A1E;
	--jk-hairline: #D8D3C4;
	--jk-hairline-dark: rgba(244, 241, 232, .16);
	--jk-muted: #5A6152;
	--jk-muted-dark: #A9B3A2;

	--jk-font-display: "Schibsted Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--jk-font-body: "Karla", "Helvetica Neue", Helvetica, Arial, sans-serif;

	--jk-r-sm: 4px;
	--jk-r-pill: 999px;

	--jk-s-xs: 8px;
	--jk-s-sm: 16px;
	--jk-s-md: 32px;
	--jk-s-lg: 64px;
	--jk-s-xl: 120px;

	--jk-gutter: 28px;
	--jk-maxw: 1280px;
	--jk-vw: 100vw;
	--jk-bleed: calc((var(--jk-vw) - min(var(--jk-maxw), var(--jk-vw))) / 2 + var(--jk-gutter));
	--jk-header-h: 84px;

	--jk-ease: cubic-bezier(.22, .61, .36, 1);
	--jk-ease-out: cubic-bezier(.16, 1, .3, 1);
}

@media (max-width: 900px) {
	:root {
		--jk-gutter: 22px;
		--jk-s-xl: 76px;
		--jk-header-h: 70px;
	}
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */

body.jukye {
	background: var(--jk-bg);
	color: var(--jk-ink);
	font-family: var(--jk-font-body);
	font-size: 17px;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.jukye * {
	box-sizing: border-box;
}

body.jukye figure,
body.jukye blockquote,
body.jukye figcaption {
	margin: 0;
}

body.jukye img,
body.jukye video {
	max-width: 100%;
	height: auto;
	display: block;
}

body.jukye ::selection {
	background: var(--jk-accent);
	color: var(--jk-bg);
}

body.jukye :focus-visible {
	outline: 2px solid var(--jk-accent);
	outline-offset: 3px;
	border-radius: 2px;
}

body.jukye .jk-dark :focus-visible {
	outline-color: var(--jk-soap);
}

/* Skip link */
.jk-skip {
	position: fixed;
	left: 0;
	top: 0;
	transform: translateY(-130%);
	transition: transform .25s var(--jk-ease);
	z-index: 1000;
	background: var(--jk-ink);
	color: var(--jk-bg);
	padding: 12px 20px;
	font-family: var(--jk-font-body);
	font-size: 14px;
	border-radius: 0 0 var(--jk-r-sm) 0;
}

.jk-skip:focus {
	transform: translateY(0);
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */

.jk h1, .jk h2, .jk h3, .jk h4,
body.jukye .jk-h1,
body.jukye .jk-h2,
body.jukye .jk-h3,
body.jukye .jk-h4,
body.jukye .jk-display {
	font-family: var(--jk-font-display);
	color: var(--jk-ink);
	margin: 0;
	text-wrap: balance;
}

body.jukye .jk-display {
	font-size: clamp(2.5rem, 5vw, 4.75rem);
	font-weight: 800;
	line-height: 1.04;
	letter-spacing: -.033em;
}

body.jukye .jk-h1 {
	font-size: clamp(2.25rem, 4.4vw, 4rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -.03em;
}

body.jukye .jk-h2 {
	font-size: clamp(1.85rem, 3.2vw, 3.05rem);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -.028em;
}

body.jukye .jk-h3 {
	font-size: clamp(1.35rem, 1.9vw, 1.75rem);
	font-weight: 700;
	line-height: 1.16;
	letter-spacing: -.02em;
}

body.jukye .jk-h4 {
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -.005em;
}

/* Italic emphasis inside display lines needs descender room. */
body.jukye .jk-display em,
body.jukye .jk-h1 em,
body.jukye .jk-h2 em {
	font-style: italic;
	font-weight: inherit;
	line-height: 1.12;
	padding-bottom: .04em;
	display: inline-block;
}

body.jukye p {
	margin: 0 0 1.15em;
}

body.jukye p:last-child {
	margin-bottom: 0;
}

body.jukye .jk-lede {
	font-size: clamp(1.0625rem, 1.35vw, 1.25rem);
	line-height: 1.6;
	color: var(--jk-muted);
	max-width: 34em;
}

body.jukye .jk-body {
	max-width: 62ch;
	color: var(--jk-muted);
}

body.jukye .jk-body strong {
	color: var(--jk-ink);
	font-weight: 700;
}

/* Rationed uppercase label. Used at most once per three sections. */
body.jukye .jk-label {
	display: block;
	font-family: var(--jk-font-body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jk-moss);
	margin: 0 0 22px;
}

body.jukye .jk-dark .jk-label {
	color: var(--jk-amber);
}

body.jukye a {
	color: inherit;
}

body.jukye .jk-textlink {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
	font-family: var(--jk-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .01em;
	color: var(--jk-accent);
	text-decoration: none;
	padding-bottom: 4px;
	border-bottom: 1px solid var(--jk-hairline);
	transition: border-color .3s var(--jk-ease), color .3s var(--jk-ease);
}

body.jukye .jk-textlink .jk-arrow {
	transition: transform .35s var(--jk-ease-out);
}

body.jukye .jk-textlink:hover {
	border-bottom-color: var(--jk-accent);
}

body.jukye .jk-textlink:hover .jk-arrow {
	transform: translateX(5px);
}

body.jukye .jk-dark .jk-textlink {
	color: var(--jk-soap);
	border-bottom-color: var(--jk-hairline-dark);
}

body.jukye .jk-dark .jk-textlink:hover {
	border-bottom-color: var(--jk-soap);
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */

body.jukye .jk-wrap {
	width: 100%;
	max-width: var(--jk-maxw);
	margin-inline: auto;
	padding-inline: var(--jk-gutter);
}

body.jukye .jk-wrap--narrow {
	max-width: 940px;
}

body.jukye .jk-section {
	position: relative;
	padding-block: var(--jk-s-xl);
}

body.jukye .jk-section--tight {
	padding-block: calc(var(--jk-s-xl) * .62);
}

body.jukye .jk-section--flush-top {
	padding-top: 0;
}

.jk-ground-soap {
	background: var(--jk-soap);
}

.jk-ground-surface {
	background: var(--jk-surface);
}

.jk-dark {
	background: var(--jk-deep);
	color: var(--jk-bg);
}

body.jukye .jk-dark .jk-h1,
body.jukye .jk-dark .jk-h2,
body.jukye .jk-dark .jk-h3,
body.jukye .jk-dark .jk-h4,
body.jukye .jk-dark .jk-display,
body.jukye .jk-dark h1,
body.jukye .jk-dark h2,
body.jukye .jk-dark h3 {
	color: var(--jk-bg);
}

body.jukye .jk-dark .jk-lede,
body.jukye .jk-dark .jk-body,
body.jukye .jk-dark p {
	color: var(--jk-muted-dark);
}

body.jukye .jk-dark .jk-body strong {
	color: var(--jk-bg);
}

/* Hairline rule, amber when it is doing emphasis work. */
.jk-rule {
	height: 1px;
	background: var(--jk-hairline);
	border: 0;
	margin: 0;
}

.jk-rule--amber {
	height: 2px;
	width: 56px;
	background: var(--jk-amber);
}

body.jukye .jk-dark .jk-rule {
	background: var(--jk-hairline-dark);
}

/* Section heading block */
.jk-head {
	max-width: 780px;
}

.jk-head .jk-lede,
body.jukye .jk-h1 + .jk-lede,
body.jukye .jk-h2 + .jk-lede,
body.jukye .jk-display + .jk-lede {
	margin-top: 24px;
}

.jk-head--wide {
	max-width: 1000px;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */

body.jukye .jk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-family: var(--jk-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .01em;
	line-height: 1;
	padding: 17px 30px;
	border-radius: var(--jk-r-pill);
	border: 1px solid transparent;
	text-decoration: none;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color .3s var(--jk-ease), color .3s var(--jk-ease),
		border-color .3s var(--jk-ease), transform .3s var(--jk-ease);
}

body.jukye .jk-btn--primary {
	background: var(--jk-accent);
	color: var(--jk-bg);
	border-color: var(--jk-accent);
}

body.jukye .jk-btn--primary:hover {
	background: var(--jk-accent-hover);
	border-color: var(--jk-accent-hover);
	transform: translateY(-1px);
}

body.jukye .jk-btn--ghost {
	background: transparent;
	color: var(--jk-ink);
	border-color: var(--jk-ink);
}

body.jukye .jk-btn--ghost:hover {
	background: var(--jk-ink);
	color: var(--jk-bg);
	transform: translateY(-1px);
}

/* On dark grounds the primary inverts. */
body.jukye .jk-dark .jk-btn--primary,
body.jukye .jk-btn--invert {
	background: var(--jk-bg);
	color: var(--jk-deep);
	border-color: var(--jk-bg);
}

body.jukye .jk-dark .jk-btn--primary:hover,
body.jukye .jk-btn--invert:hover {
	background: var(--jk-soap);
	border-color: var(--jk-soap);
	color: var(--jk-deep);
}

body.jukye .jk-dark .jk-btn--ghost {
	color: var(--jk-bg);
	border-color: rgba(244, 241, 232, .45);
}

body.jukye .jk-dark .jk-btn--ghost:hover {
	background: var(--jk-bg);
	color: var(--jk-deep);
	border-color: var(--jk-bg);
}

/* Over photography the ghost button needs a stroke it can win against. */
body.jukye .jk-on-photo .jk-btn--ghost {
	color: #fff;
	background: rgba(9, 20, 13, .34);
	border-color: rgba(255, 255, 255, .85);
	backdrop-filter: blur(6px);
}

body.jukye .jk-on-photo .jk-btn--ghost:hover {
	background: #fff;
	color: var(--jk-deep);
	border-color: #fff;
}

.jk-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 40px;
}

/* --------------------------------------------------------------------------
   6. Motion
   -------------------------------------------------------------------------- */

/* Only hide things once JS has confirmed it can bring them back. */
.jk-js .jk-reveal {
	opacity: 0;
	transform: translate3d(0, 22px, 0);
	transition: opacity .85s var(--jk-ease-out), transform .85s var(--jk-ease-out);
	transition-delay: var(--jk-delay, 0ms);
	will-change: opacity, transform;
}

.jk-js .jk-reveal.is-in {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* Line-by-line display reveal. The mask is always in the markup so nothing
   shifts when the animation runs. */
.jk-lines {
	display: block;
}

.jk-lines > span {
	display: block;
	overflow: hidden;
	padding-bottom: .06em;
	margin-bottom: -.06em;
}

.jk-lines > span > span {
	display: block;
}

.jk-js .jk-lines > span > span {
	transform: translate3d(0, 105%, 0);
	transition: transform .95s var(--jk-ease-out);
	transition-delay: var(--jk-delay, 0ms);
}

.jk-js .jk-lines.is-in > span > span {
	transform: translate3d(0, 0, 0);
}

.jk-js .jk-lines > span:nth-child(2) > span { --jk-delay: 110ms; }
.jk-js .jk-lines > span:nth-child(3) > span { --jk-delay: 200ms; }

/* Above the fold, nothing waits on JavaScript. The hero headline, its
   supporting copy and its buttons animate from CSS alone, so a blocked,
   deferred or throttled script can never leave the first screen blank. */
.jk-js .jk-hero .jk-lines > span > span,
.jk-js .jk-pagehero .jk-lines > span > span {
	transform: translate3d(0, 105%, 0);
	animation: jk-rise .95s var(--jk-ease-out) var(--jk-delay, 0ms) both;
	transition: none;
}

.jk-js .jk-hero .jk-reveal,
.jk-js .jk-pagehero .jk-reveal {
	animation: jk-fade-up .85s var(--jk-ease-out) var(--jk-delay, 0ms) both;
	transition: none;
}

@keyframes jk-rise {
	from { transform: translate3d(0, 105%, 0); }
	to   { transform: translate3d(0, 0, 0); }
}

@keyframes jk-fade-up {
	from { opacity: 0; transform: translate3d(0, 22px, 0); }
	to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Image reveal: the frame clips, the image scales back to rest. */
.jk-imgreveal {
	overflow: hidden;
}

.jk-js .jk-imgreveal img {
	transform: scale(1.12);
	transition: transform 1.4s var(--jk-ease-out);
}

.jk-js .jk-imgreveal.is-in img {
	transform: scale(1);
}

/* Gentle parallax, transform only. */
.jk-parallax {
	will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
	.jk-js .jk-reveal,
	.jk-js .jk-lines > span > span,
	.jk-js .jk-imgreveal img,
	.jk-js .jk-hero .jk-lines > span > span,
	.jk-js .jk-pagehero .jk-lines > span > span,
	.jk-js .jk-hero .jk-reveal,
	.jk-js .jk-pagehero .jk-reveal {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
		animation: none !important;
	}

	.jk-parallax {
		transform: none !important;
	}

	body.jukye * {
		animation-duration: .001ms !important;
		transition-duration: .06s !important;
		scroll-behavior: auto !important;
	}
}

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */

body.jukye .jk-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 500;
	height: var(--jk-header-h);
	display: flex;
	align-items: center;
	background: transparent;
	transition: background-color .45s var(--jk-ease), box-shadow .45s var(--jk-ease),
		height .45s var(--jk-ease), backdrop-filter .45s var(--jk-ease);
}

body.admin-bar.jukye .jk-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar.jukye .jk-header {
		top: 46px;
	}
}

body.jukye .jk-header__inner {
	width: 100%;
	max-width: var(--jk-maxw);
	margin-inline: auto;
	padding-inline: var(--jk-gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

/* Blended state: sits over the hero photograph. */
body.jukye .jk-header .jk-logo__mark,
body.jukye .jk-header .jk-logo__word {
	color: #fff;
	transition: color .45s var(--jk-ease);
}

body.jukye .jk-header .jk-nav__link {
	color: rgba(255, 255, 255, .88);
}

body.jukye .jk-header .jk-header__cta {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border-color: rgba(255, 255, 255, .55);
	backdrop-filter: blur(6px);
}

body.jukye .jk-header .jk-header__cta:hover {
	background: #fff;
	color: var(--jk-deep);
	border-color: #fff;
}

body.jukye .jk-header .jk-burger span {
	background: #fff;
}

/* Scrolled state: refined solid bar. */
body.jukye .jk-header.is-scrolled {
	height: calc(var(--jk-header-h) - 12px);
	background: rgba(244, 241, 232, .92);
	backdrop-filter: saturate(140%) blur(14px);
	box-shadow: 0 1px 0 rgba(18, 22, 15, .08);
}

body.jukye .jk-header.is-scrolled .jk-logo__mark,
body.jukye .jk-header.is-scrolled .jk-logo__word {
	color: var(--jk-ink);
}

body.jukye .jk-header.is-scrolled .jk-nav__link {
	color: var(--jk-ink);
}

body.jukye .jk-header.is-scrolled .jk-header__cta {
	background: var(--jk-accent);
	color: var(--jk-bg);
	border-color: var(--jk-accent);
	backdrop-filter: none;
}

body.jukye .jk-header.is-scrolled .jk-header__cta:hover {
	background: var(--jk-accent-hover);
	border-color: var(--jk-accent-hover);
}

body.jukye .jk-header.is-scrolled .jk-burger span {
	background: var(--jk-ink);
}

/* Pages whose hero is not a photograph start in the solid register. */
body.jukye .jk-header.is-solid {
	background: rgba(244, 241, 232, .92);
	backdrop-filter: saturate(140%) blur(14px);
}

body.jukye .jk-header.is-solid .jk-logo__mark,
body.jukye .jk-header.is-solid .jk-logo__word,
body.jukye .jk-header.is-solid .jk-nav__link {
	color: var(--jk-ink);
}

body.jukye .jk-header.is-solid .jk-burger span {
	background: var(--jk-ink);
}

body.jukye .jk-header.is-solid .jk-header__cta {
	background: var(--jk-accent);
	color: var(--jk-bg);
	border-color: var(--jk-accent);
	backdrop-filter: none;
}

/* Logo */
body.jukye .jk-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	flex-shrink: 0;
}

body.jukye .jk-logo__mark {
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
}

body.jukye .jk-logo__word {
	font-family: var(--jk-font-display);
	font-weight: 800;
	font-size: 17px;
	letter-spacing: -.005em;
	line-height: 1;
	white-space: nowrap;
}

body.jukye .jk-logo__word em {
	font-style: normal;
	font-weight: 500;
	opacity: .72;
}

/* Desktop nav */
body.jukye .jk-nav {
	display: flex;
	align-items: center;
	gap: 38px;
	margin-left: auto;
}

body.jukye .jk-nav__link {
	position: relative;
	font-family: var(--jk-font-body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .005em;
	text-decoration: none;
	padding: 6px 0;
	transition: color .3s var(--jk-ease), opacity .3s var(--jk-ease);
}

body.jukye .jk-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .4s var(--jk-ease-out);
}

body.jukye .jk-nav__link:hover::after,
body.jukye .jk-nav__link[aria-current="page"]::after {
	transform: scaleX(1);
	transform-origin: left;
}

body.jukye .jk-header__actions {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-left: 34px;
}

body.jukye .jk-header__cta {
	padding: 13px 24px;
	font-size: 14px;
	border-radius: var(--jk-r-pill);
	border: 1px solid;
	font-family: var(--jk-font-body);
	font-weight: 700;
	text-decoration: none;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	transition: background-color .3s var(--jk-ease), color .3s var(--jk-ease), border-color .3s var(--jk-ease);
}

/* Burger */
body.jukye .jk-burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	width: 44px;
	height: 44px;
	padding: 0;
	margin-right: -10px;
	background: none;
	border: 0;
	cursor: pointer;
	align-items: flex-end;
}

body.jukye .jk-burger span {
	display: block;
	height: 1.5px;
	width: 26px;
	border-radius: 2px;
	transition: transform .45s var(--jk-ease-out), opacity .25s var(--jk-ease), width .45s var(--jk-ease-out), background-color .45s var(--jk-ease);
}

body.jukye .jk-burger span:nth-child(2) {
	width: 18px;
}

body.jukye .jk-burger[aria-expanded="true"] span {
	background: var(--jk-bg);
}

body.jukye .jk-burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

body.jukye .jk-burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	width: 26px;
}

body.jukye .jk-burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile panel */
body.jukye .jk-mobile {
	position: fixed;
	inset: 0;
	z-index: 480;
	background: var(--jk-deep);
	display: flex;
	flex-direction: column;
	padding: calc(var(--jk-header-h) + 32px) var(--jk-gutter) 44px;
	clip-path: inset(0 0 100% 0);
	transition: clip-path .72s var(--jk-ease-out);
	pointer-events: none;
	overflow-y: auto;
	overscroll-behavior: contain;
}

body.jukye .jk-mobile.is-open {
	clip-path: inset(0 0 0 0);
	pointer-events: auto;
}

body.jukye .jk-mobile__nav {
	display: flex;
	flex-direction: column;
	margin-top: auto;
	margin-bottom: auto;
}

body.jukye .jk-mobile__link {
	display: block;
	overflow: hidden;
	border-bottom: 1px solid var(--jk-hairline-dark);
}

body.jukye .jk-mobile__link a {
	display: flex;
	align-items: baseline;
	gap: 14px;
	padding: 20px 0;
	font-family: var(--jk-font-display);
	font-size: clamp(2rem, 11vw, 2.9rem);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.1;
	color: var(--jk-bg);
	text-decoration: none;
	transform: translate3d(0, 110%, 0);
	transition: transform .6s var(--jk-ease-out), color .3s var(--jk-ease);
}

body.jukye .jk-mobile.is-open .jk-mobile__link a {
	transform: translate3d(0, 0, 0);
}

body.jukye .jk-mobile.is-open .jk-mobile__link:nth-child(1) a { transition-delay: .16s; }
body.jukye .jk-mobile.is-open .jk-mobile__link:nth-child(2) a { transition-delay: .24s; }
body.jukye .jk-mobile.is-open .jk-mobile__link:nth-child(3) a { transition-delay: .32s; }

body.jukye .jk-mobile__link a:hover,
body.jukye .jk-mobile__link a[aria-current="page"] {
	color: var(--jk-amber);
}

body.jukye .jk-mobile__foot {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .5s var(--jk-ease) .42s, transform .5s var(--jk-ease-out) .42s;
}

body.jukye .jk-mobile.is-open .jk-mobile__foot {
	opacity: 1;
	transform: none;
}

body.jukye .jk-mobile__foot .jk-btn {
	width: 100%;
	margin-bottom: 26px;
}

body.jukye .jk-mobile__meta {
	font-size: 14px;
	line-height: 1.7;
	color: var(--jk-muted-dark);
}

body.jukye .jk-mobile__meta a {
	color: var(--jk-bg);
	text-decoration: none;
	border-bottom: 1px solid var(--jk-hairline-dark);
}

body.jukye.jk-menu-open {
	overflow: hidden;
}

@media (max-width: 940px) {
	body.jukye .jk-nav,
	body.jukye .jk-header__actions {
		display: none;
	}

	body.jukye .jk-burger {
		display: flex;
	}
}

@media (min-width: 941px) {
	body.jukye .jk-mobile {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.jukye .jk-mobile {
		transition: none;
	}

	body.jukye .jk-mobile__link a,
	body.jukye .jk-mobile__foot {
		transform: none !important;
		opacity: 1 !important;
		transition: none !important;
	}
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */

body.jukye .jk-hero {
	position: relative;
	min-height: min(94vh, 900px);
	display: flex;
	align-items: flex-end;
	padding-top: calc(var(--jk-header-h) + 40px);
	padding-bottom: clamp(48px, 7vh, 92px);
	overflow: hidden;
	background: var(--jk-deep);
	isolation: isolate;
}

body.jukye .jk-hero__bg {
	position: absolute;
	inset: -8% 0 -8% 0;
	z-index: -2;
}

body.jukye .jk-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
}

@media (max-height: 720px) {
	body.jukye .jk-hero {
		min-height: 560px;
	}
}

body.jukye .jk-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(to top, rgba(9, 20, 13, .95) 0%, rgba(9, 20, 13, .78) 34%, rgba(9, 20, 13, .42) 66%, rgba(9, 20, 13, .58) 100%),
		linear-gradient(to right, rgba(9, 20, 13, .86) 0%, rgba(9, 20, 13, .52) 44%, rgba(9, 20, 13, .12) 78%, rgba(9, 20, 13, 0) 100%);
}

body.jukye .jk-hero__inner {
	width: 100%;
	max-width: var(--jk-maxw);
	margin-inline: auto;
	padding-inline: var(--jk-gutter);
}

body.jukye .jk-hero__content {
	max-width: 720px;
	color: #fff;
}

body.jukye .jk-hero .jk-display {
	color: #fff;
	text-wrap: initial;
}

body.jukye .jk-hero__sub {
	margin-top: 26px;
	font-size: clamp(1rem, 1.25vw, 1.1875rem);
	line-height: 1.62;
	color: rgba(255, 255, 255, .84);
	max-width: 33em;
}

/* Interior page hero: type on ground, no photograph. */
body.jukye .jk-pagehero {
	padding-top: calc(var(--jk-header-h) + clamp(72px, 11vw, 150px));
	padding-bottom: clamp(56px, 8vw, 110px);
	background: var(--jk-bg);
	position: relative;
}

body.jukye .jk-pagehero__inner {
	max-width: 1080px;
}

body.jukye .jk-pagehero .jk-lede {
	margin-top: 28px;
	max-width: 30em;
	font-size: clamp(1.0625rem, 1.4vw, 1.3125rem);
	color: var(--jk-muted);
}

/* --------------------------------------------------------------------------
   9. Split (editorial text + tall image)
   -------------------------------------------------------------------------- */

body.jukye .jk-split {
	display: grid;
	grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
	gap: clamp(36px, 6vw, 88px);
	align-items: center;
}

body.jukye .jk-split--text-right {
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

body.jukye .jk-split__text {
	max-width: 34em;
}

body.jukye .jk-split__text .jk-body {
	margin-top: 26px;
}

body.jukye .jk-split__text .jk-textlink {
	margin-top: 34px;
}

body.jukye .jk-split__media {
	position: relative;
	border-radius: var(--jk-r-sm);
	overflow: hidden;
	aspect-ratio: 4 / 5;
}

body.jukye .jk-split__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* The image escapes the container toward the viewport edge. */
body.jukye .jk-split--bleed-right .jk-split__media {
	border-radius: var(--jk-r-sm) 0 0 var(--jk-r-sm);
	width: calc(100% + var(--jk-bleed));
	margin-right: calc(-1 * var(--jk-bleed));
	aspect-ratio: auto;
	min-height: 520px;
	max-height: 660px;
	align-self: stretch;
}

@media (max-width: 900px) {
	body.jukye .jk-split,
	body.jukye .jk-split--text-right {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	body.jukye .jk-split--text-right .jk-split__media {
		order: -1;
	}

	body.jukye .jk-split--bleed-right .jk-split__media {
		width: calc(100% + (2 * var(--jk-gutter)));
		margin-inline: calc(-1 * var(--jk-gutter));
		border-radius: 0;
		min-height: 0;
		aspect-ratio: 4 / 3;
	}
}

/* --------------------------------------------------------------------------
   10. Products
   -------------------------------------------------------------------------- */

body.jukye .jk-products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2px;
	margin-top: 64px;
	background: var(--jk-hairline);
	border: 1px solid var(--jk-hairline);
	border-radius: var(--jk-r-sm);
	overflow: hidden;
}

body.jukye .jk-product {
	position: relative;
	background: var(--jk-bg);
	display: flex;
	flex-direction: column;
	transition: background-color .45s var(--jk-ease);
}

body.jukye .jk-product:hover {
	background: var(--jk-surface);
}

body.jukye .jk-product__media {
	position: relative;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background: var(--jk-soap);
}

body.jukye .jk-product__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .8s var(--jk-ease-out);
}

body.jukye .jk-product:hover .jk-product__media img {
	transform: scale(1.045);
}

body.jukye .jk-product__body {
	padding: 32px 30px 34px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

body.jukye .jk-product__status {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--jk-moss);
	margin-bottom: 14px;
}

body.jukye .jk-product__desc {
	margin-top: 12px;
	margin-bottom: 24px;
	font-size: 15.5px;
	line-height: 1.62;
	color: var(--jk-muted);
}

body.jukye .jk-product__specs {
	list-style: none;
	margin: 24px 0 0;
	margin-top: auto;
	padding: 20px 0 0;
	border-top: 1px solid var(--jk-hairline);
	display: grid;
	gap: 9px;
}

body.jukye .jk-product__specs li {
	display: flex;
	gap: 11px;
	align-items: baseline;
	font-size: 14.5px;
	line-height: 1.5;
	color: var(--jk-muted);
}

body.jukye .jk-product__specs li::before {
	content: "";
	flex: 0 0 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--jk-amber);
	transform: translateY(-2px);
}

@media (max-width: 1000px) {
	body.jukye .jk-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	body.jukye .jk-products {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   11. Impact (rules and whitespace, not cards)
   -------------------------------------------------------------------------- */

body.jukye .jk-impact {
	margin-top: 60px;
	border-top: 1px solid var(--jk-hairline-dark);
}

body.jukye .jk-impact__row {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: clamp(20px, 5vw, 72px);
	align-items: start;
	padding: 38px 0;
	border-bottom: 1px solid var(--jk-hairline-dark);
	transition: padding-left .5s var(--jk-ease-out);
}

body.jukye .jk-impact__row:hover {
	padding-left: 14px;
}

body.jukye .jk-impact__title {
	display: flex;
	align-items: baseline;
	gap: 18px;
}

body.jukye .jk-impact__icon {
	flex: 0 0 22px;
	width: 22px;
	color: var(--jk-amber);
	transform: translateY(3px);
}

body.jukye .jk-impact__text {
	color: var(--jk-muted-dark);
	font-size: 16.5px;
	line-height: 1.66;
	max-width: 46em;
}

@media (max-width: 820px) {
	body.jukye .jk-impact__row {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 30px 0;
	}

	body.jukye .jk-impact__row:hover {
		padding-left: 0;
	}
}

/* --------------------------------------------------------------------------
   12. Process band
   -------------------------------------------------------------------------- */

body.jukye .jk-process {
	margin-top: 66px;
	position: relative;
}

body.jukye .jk-process__track {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
}

body.jukye .jk-process__step {
	position: relative;
	padding-top: 30px;
}

body.jukye .jk-process__step::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--jk-hairline);
}

body.jukye .jk-process__step::after {
	content: "";
	position: absolute;
	top: -3px;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--jk-accent);
}

body.jukye .jk-process__step:last-child::after {
	background: var(--jk-amber);
}

body.jukye .jk-process__media {
	aspect-ratio: 3 / 4;
	border-radius: var(--jk-r-sm);
	overflow: hidden;
	background: var(--jk-soap);
	margin-bottom: 22px;
}

body.jukye .jk-process__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .9s var(--jk-ease-out);
}

body.jukye .jk-process__step:hover .jk-process__media img {
	transform: scale(1.05);
}

body.jukye .jk-process__name {
	font-family: var(--jk-font-display);
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -.01em;
	margin-bottom: 8px;
}

body.jukye .jk-process__copy {
	font-size: 14.5px;
	line-height: 1.58;
	color: var(--jk-muted);
}

/* Staggered heights give the band rhythm rather than a flat row. */
body.jukye .jk-process__step:nth-child(even) .jk-process__media {
	aspect-ratio: 4 / 5;
}

@media (max-width: 1000px) {
	body.jukye .jk-process__track {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 34px 20px;
	}
}

@media (max-width: 560px) {
	body.jukye .jk-process__track {
		grid-template-columns: 1fr;
		gap: 0;
	}

	body.jukye .jk-process__step {
		display: grid;
		grid-template-columns: 104px minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: 20px;
		row-gap: 6px;
		align-items: start;
		padding: 26px 0;
	}

	body.jukye .jk-process__step::before {
		top: 0;
		bottom: auto;
	}

	body.jukye .jk-process__media {
		grid-column: 1;
		grid-row: 1 / span 2;
		margin-bottom: 0;
		aspect-ratio: 1 / 1 !important;
	}

	body.jukye .jk-process__name {
		grid-column: 2;
		grid-row: 1;
		margin-bottom: 0;
	}

	body.jukye .jk-process__copy {
		grid-column: 2;
		grid-row: 2;
	}
}

/* --------------------------------------------------------------------------
   13. Why / values bento
   -------------------------------------------------------------------------- */

body.jukye .jk-bento {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 2px;
	margin-top: 60px;
	background: var(--jk-hairline);
	border: 1px solid var(--jk-hairline);
	border-radius: var(--jk-r-sm);
	overflow: hidden;
}

body.jukye .jk-cell {
	background: var(--jk-bg);
	padding: 42px 38px 46px;
	grid-column: span 3;
	display: flex;
	flex-direction: column;
	transition: background-color .45s var(--jk-ease);
}

body.jukye .jk-cell:hover {
	background: var(--jk-surface);
}

body.jukye .jk-cell--wide {
	grid-column: span 6;
}

body.jukye .jk-cell--tint {
	background: var(--jk-soap);
}

body.jukye .jk-cell--tint:hover {
	background: #E2DCC8;
}

body.jukye .jk-cell--accent {
	background: var(--jk-accent);
	color: var(--jk-bg);
}

body.jukye .jk-cell--accent:hover {
	background: var(--jk-accent-hover);
}

body.jukye .jk-cell--accent .jk-h3,
body.jukye .jk-cell--accent .jk-h4 {
	color: var(--jk-bg);
}

body.jukye .jk-cell--accent .jk-cell__copy {
	color: rgba(244, 241, 232, .78);
}

body.jukye .jk-cell--third {
	grid-column: span 4;
}

body.jukye .jk-cell--full {
	grid-column: span 12;
	padding-block: 46px 50px;
}

body.jukye .jk-cell--full .jk-cell__copy {
	max-width: 56ch;
}

body.jukye .jk-cell--quote {
	grid-column: span 4;
	background: var(--jk-deep);
	color: var(--jk-bg);
	justify-content: space-between;
}

body.jukye .jk-cell--quote .jk-quote {
	font-size: clamp(1.15rem, 1.7vw, 1.45rem);
	line-height: 1.3;
	font-weight: 600;
	color: var(--jk-bg);
	max-width: none;
}

body.jukye .jk-cell--quote .jk-quote__cite {
	color: var(--jk-amber);
	margin-top: 20px;
}

body.jukye .jk-cell--media {
	padding: 0;
	min-height: 240px;
	position: relative;
	overflow: hidden;
}

body.jukye .jk-cell--media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .9s var(--jk-ease-out);
}

body.jukye .jk-cell--media:hover img {
	transform: scale(1.05);
}

body.jukye .jk-cell__icon {
	width: 26px;
	height: 26px;
	color: var(--jk-accent);
	margin-bottom: 26px;
}

body.jukye .jk-cell--accent .jk-cell__icon {
	color: var(--jk-amber);
}

body.jukye .jk-cell__copy {
	margin-top: 12px;
	font-size: 15.5px;
	line-height: 1.62;
	color: var(--jk-muted);
}

@media (max-width: 1000px) {
	body.jukye .jk-cell,
	body.jukye .jk-cell--third,
	body.jukye .jk-cell--quote {
		grid-column: span 6;
	}

	body.jukye .jk-cell--wide {
		grid-column: span 12;
	}
}

@media (max-width: 640px) {
	body.jukye .jk-cell,
	body.jukye .jk-cell--wide,
	body.jukye .jk-cell--third,
	body.jukye .jk-cell--quote {
		grid-column: span 12;
		padding: 34px 26px 36px;
	}

	body.jukye .jk-cell--media {
		min-height: 260px;
	}
}

/* --------------------------------------------------------------------------
   14. Quote
   -------------------------------------------------------------------------- */

body.jukye .jk-quote {
	max-width: 22em;
	font-family: var(--jk-font-display);
	font-size: clamp(1.4rem, 2.5vw, 2.15rem);
	font-weight: 600;
	line-height: 1.22;
	letter-spacing: -.022em;
	margin: 0;
}

body.jukye .jk-quote__cite {
	display: block;
	margin-top: 24px;
	font-family: var(--jk-font-body);
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--jk-moss);
}

body.jukye .jk-dark .jk-quote__cite {
	color: var(--jk-amber);
}

/* --------------------------------------------------------------------------
   15. Closing CTA band
   -------------------------------------------------------------------------- */

body.jukye .jk-cta-band {
	position: relative;
	border-radius: 28px 28px 0 0;
	overflow: hidden;
	background: var(--jk-deep);
	isolation: isolate;
	padding-block: clamp(90px, 13vw, 168px);
}

body.jukye .jk-cta-band__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
}

body.jukye .jk-cta-band__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
}

body.jukye .jk-cta-band__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(102deg, rgba(9, 20, 13, .97) 0%, rgba(9, 20, 13, .9) 42%, rgba(9, 20, 13, .58) 78%, rgba(9, 20, 13, .42) 100%),
		linear-gradient(to bottom, rgba(9, 20, 13, .3) 0%, rgba(9, 20, 13, 0) 40%);
}

body.jukye .jk-cta-band__inner {
	max-width: 780px;
}

/* --------------------------------------------------------------------------
   16. Contact
   -------------------------------------------------------------------------- */

body.jukye .jk-contact {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: clamp(40px, 6vw, 92px);
	align-items: start;
}

body.jukye .jk-details {
	display: grid;
	gap: 0;
	border-top: 1px solid var(--jk-hairline);
}

body.jukye .jk-detail {
	padding: 24px 0;
	border-bottom: 1px solid var(--jk-hairline);
}

body.jukye .jk-detail__label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jk-moss);
	margin-bottom: 9px;
}

body.jukye .jk-detail__value {
	font-family: var(--jk-font-display);
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: -.01em;
	line-height: 1.45;
	color: var(--jk-ink);
}

body.jukye .jk-detail__value a {
	text-decoration: none;
	border-bottom: 1px solid var(--jk-hairline);
	transition: border-color .3s var(--jk-ease);
}

body.jukye .jk-detail__value a:hover {
	border-bottom-color: var(--jk-accent);
	color: var(--jk-accent);
}

body.jukye .jk-detail__note {
	margin-top: 6px;
	font-size: 14.5px;
	color: var(--jk-muted);
}

/* Form: hairline underlines, not boxes. */
body.jukye .jk-formwrap {
	background: var(--jk-surface);
	border: 1px solid var(--jk-hairline);
	border-radius: var(--jk-r-sm);
	padding: clamp(30px, 4vw, 52px);
}

body.jukye .jk-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px 26px;
}

body.jukye .jk-field {
	position: relative;
	display: flex;
	flex-direction: column;
}

body.jukye .jk-field--full {
	grid-column: 1 / -1;
}

body.jukye .jk-field label {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .13em;
	text-transform: uppercase;
	color: var(--jk-moss);
	margin-bottom: 10px;
}

body.jukye .jk-field input,
body.jukye .jk-field select,
body.jukye .jk-field textarea {
	width: 100%;
	font-family: var(--jk-font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--jk-ink);
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--jk-hairline);
	border-radius: 0;
	padding: 9px 0 12px;
	transition: border-color .3s var(--jk-ease);
	appearance: none;
}

body.jukye .jk-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%235A6152' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 2px center;
	padding-right: 24px;
	cursor: pointer;
}

body.jukye .jk-field textarea {
	min-height: 128px;
	resize: vertical;
}

body.jukye .jk-field input::placeholder,
body.jukye .jk-field textarea::placeholder {
	color: #8A9183;
}

body.jukye .jk-field input:focus,
body.jukye .jk-field select:focus,
body.jukye .jk-field textarea:focus {
	outline: none;
	border-bottom-color: var(--jk-accent);
	box-shadow: 0 1px 0 0 var(--jk-accent);
}

body.jukye .jk-field.has-error input,
body.jukye .jk-field.has-error select,
body.jukye .jk-field.has-error textarea {
	border-bottom-color: #A8321F;
	box-shadow: 0 1px 0 0 #A8321F;
}

body.jukye .jk-error {
	display: none;
	margin-top: 8px;
	font-size: 13.5px;
	color: #A8321F;
}

body.jukye .jk-field.has-error .jk-error {
	display: block;
}

body.jukye .jk-form__foot {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 6px;
}

body.jukye .jk-form__note {
	font-size: 13.5px;
	color: var(--jk-muted);
	max-width: 30em;
}

body.jukye .jk-submit[data-state="loading"] {
	pointer-events: none;
	opacity: .82;
}

body.jukye .jk-spinner {
	display: none;
	width: 15px;
	height: 15px;
	border: 1.5px solid rgba(244, 241, 232, .4);
	border-top-color: var(--jk-bg);
	border-radius: 50%;
	animation: jk-spin .7s linear infinite;
}

body.jukye .jk-submit[data-state="loading"] .jk-spinner {
	display: block;
}

@keyframes jk-spin {
	to { transform: rotate(360deg); }
}

body.jukye .jk-success {
	display: none;
	grid-column: 1 / -1;
	border: 1px solid var(--jk-accent);
	background: rgba(30, 74, 46, .06);
	border-radius: var(--jk-r-sm);
	padding: 26px 28px;
}

body.jukye .jk-success.is-visible {
	display: block;
}

body.jukye .jk-success .jk-h4 {
	color: var(--jk-accent);
	margin-bottom: 6px;
}

body.jukye .jk-success p {
	font-size: 15px;
	color: var(--jk-muted);
}

@media (max-width: 900px) {
	body.jukye .jk-contact {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	body.jukye .jk-form {
		grid-template-columns: 1fr;
	}
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */

body.jukye .jk-footer {
	background: var(--jk-deep);
	color: var(--jk-bg);
	padding-top: clamp(70px, 8vw, 104px);
	padding-bottom: 30px;
	position: relative;
}

body.jukye .jk-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 1.6fr);
	gap: clamp(32px, 4vw, 60px);
	padding-bottom: 60px;
}

body.jukye .jk-footer__brandcopy {
	margin-top: 22px;
	font-size: 15.5px;
	line-height: 1.65;
	color: var(--jk-muted-dark);
	max-width: 24em;
}

body.jukye .jk-footer .jk-logo__mark,
body.jukye .jk-footer .jk-logo__word {
	color: var(--jk-bg);
}

body.jukye .jk-foot-h {
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jk-amber);
	margin: 0 0 22px;
}

body.jukye .jk-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 13px;
}

body.jukye .jk-footer a {
	color: var(--jk-muted-dark);
	text-decoration: none;
	font-size: 15.5px;
	line-height: 1.5;
	transition: color .3s var(--jk-ease);
	display: inline-block;
}

body.jukye .jk-footer a:hover {
	color: var(--jk-bg);
}

body.jukye .jk-footer__purpose {
	font-size: 15.5px;
	line-height: 1.66;
	color: var(--jk-muted-dark);
}

body.jukye .jk-signup {
	margin-top: 22px;
	display: flex;
	gap: 10px;
	align-items: flex-end;
	max-width: 340px;
}

body.jukye .jk-signup input {
	flex: 1;
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--jk-hairline-dark);
	color: var(--jk-bg);
	font-family: var(--jk-font-body);
	font-size: 15px;
	padding: 8px 0 11px;
	border-radius: 0;
}

body.jukye .jk-signup input::placeholder {
	color: #79826F;
}

body.jukye .jk-signup input:focus {
	outline: none;
	border-bottom-color: var(--jk-amber);
}

body.jukye .jk-signup button {
	background: none;
	border: 0;
	color: var(--jk-bg);
	cursor: pointer;
	padding: 8px 0 11px;
	font-family: var(--jk-font-body);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .01em;
	border-bottom: 1px solid var(--jk-amber);
	transition: color .3s var(--jk-ease);
}

body.jukye .jk-signup button:hover {
	color: var(--jk-amber);
}

body.jukye .jk-social {
	display: flex;
	gap: 12px;
	margin-top: 26px;
}

body.jukye .jk-social a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--jk-hairline-dark);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--jk-muted-dark);
	transition: border-color .3s var(--jk-ease), color .3s var(--jk-ease), background-color .3s var(--jk-ease);
}

body.jukye .jk-social a:hover {
	color: var(--jk-deep);
	background: var(--jk-bg);
	border-color: var(--jk-bg);
}

body.jukye .jk-social svg {
	width: 17px;
	height: 17px;
}

body.jukye .jk-footer__bottom {
	border-top: 1px solid var(--jk-hairline-dark);
	padding-top: 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

body.jukye .jk-footer__place {
	color: var(--jk-muted-dark);
	font-size: 15.5px;
	line-height: 1.5;
}

body.jukye .jk-footer__bottom p,
body.jukye .jk-footer__bottom a {
	font-size: 13.5px;
	color: #79826F;
	margin: 0;
}

body.jukye .jk-footer__legal {
	display: flex;
	gap: 26px;
	align-items: center;
}

@media (max-width: 1000px) {
	body.jukye .jk-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 44px 32px;
	}

	body.jukye .jk-footer__brand,
	body.jukye .jk-footer__purpose-col {
		grid-column: span 2;
	}
}

@media (max-width: 560px) {
	body.jukye .jk-footer__grid {
		grid-template-columns: 1fr;
	}

	body.jukye .jk-footer__brand,
	body.jukye .jk-footer__purpose-col {
		grid-column: span 1;
	}

	body.jukye .jk-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
}

/* Back to top */
body.jukye .jk-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 400;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: 1px solid var(--jk-hairline);
	background: rgba(244, 241, 232, .9);
	backdrop-filter: blur(10px);
	color: var(--jk-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .4s var(--jk-ease), transform .4s var(--jk-ease-out), visibility .4s, background-color .3s var(--jk-ease), color .3s var(--jk-ease);
}

body.jukye .jk-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}

body.jukye .jk-top:hover {
	background: var(--jk-ink);
	color: var(--jk-bg);
	border-color: var(--jk-ink);
}

body.jukye .jk-top svg {
	width: 15px;
	height: 15px;
}

/* --------------------------------------------------------------------------
   18. Host resets. Solace and Elementor wrappers must not fight the system.
   -------------------------------------------------------------------------- */

body.jukye .elementor-section-wrap > .elementor-section,
body.jukye .elementor > .elementor-element,
body.jukye .e-con,
body.jukye .e-con-inner {
	--padding-top: 0;
	--padding-bottom: 0;
	--padding-left: 0;
	--padding-right: 0;
	--content-width: 100%;
	max-width: 100%;
}

body.jukye .e-con > .e-con-inner {
	max-width: 100%;
	padding: 0;
}

body.jukye .elementor-widget-html,
body.jukye .elementor-widget-container {
	line-height: inherit;
	color: inherit;
}

body.jukye #content,
body.jukye .site-content,
body.jukye .container-solace,
body.jukye .solace-container {
	max-width: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

body.jukye article.page,
body.jukye .entry-content {
	margin: 0;
	padding: 0;
	max-width: none;
}

body.jukye .entry-header,
body.jukye .page-header,
body.jukye .solace-breadcrumbs,
body.jukye .nv-page-title-wrap,
body.jukye .entry-title--page {
	display: none;
}

/* Solace ships its own back-to-top; ours is the one that matches. */
body.jukye .solace-scroll-top,
body.jukye #scroll-to-top {
	display: none !important;
}


/* --------------------------------------------------------------------------
   19. About page components
   -------------------------------------------------------------------------- */

/* Full-bleed band that breaks the container to both viewport edges. */
body.jukye .jk-fullbleed {
	width: var(--jk-vw);
	margin-inline: calc(50% - var(--jk-vw) / 2);
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 0;
	margin-right: 0;
	height: clamp(300px, 46vw, 620px);
	overflow: hidden;
}

body.jukye .jk-fullbleed img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 55%;
}

/* Story: a narrow sticky aside against a measured column. */
body.jukye .jk-story {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 8fr);
	gap: clamp(28px, 5vw, 80px);
	padding-top: clamp(56px, 7vw, 104px);
	align-items: start;
}

body.jukye .jk-story__aside {
	position: sticky;
	top: calc(var(--jk-header-h) + 40px);
}

body.jukye .jk-story__meta {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--jk-muted);
	letter-spacing: .01em;
}

body.jukye .jk-story__body {
	max-width: 40em;
}

body.jukye .jk-story__opening {
	font-family: var(--jk-font-display);
	font-size: clamp(1.3rem, 2.1vw, 1.75rem);
	font-weight: 600;
	line-height: 1.28;
	letter-spacing: -.02em;
	color: var(--jk-ink);
	margin-bottom: 1.1em;
}

body.jukye .jk-story__body .jk-body + .jk-body {
	margin-top: 0;
}

body.jukye .jk-pull {
	margin: clamp(38px, 5vw, 64px) 0;
	padding: 34px 0 34px 30px;
	border-left: 2px solid var(--jk-amber);
}

body.jukye .jk-pull .jk-quote {
	max-width: 16em;
}

/* Mission statement: one idea, set very large, nothing else on the page. */
body.jukye .jk-statement {
	max-width: 1000px;
}

body.jukye .jk-statement__kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--jk-amber);
	margin: 0 0 28px;
}

body.jukye .jk-statement .jk-display {
	line-height: 1.06;
}

body.jukye .jk-statement__note {
	margin-top: 40px;
	max-width: 40em;
	font-size: 16.5px;
	line-height: 1.68;
	color: var(--jk-muted-dark);
}

/* Vision targets: stated ambitions, never dressed as results. */
body.jukye .jk-targets {
	margin: 38px 0 34px;
	padding: 0;
	display: grid;
	gap: 0;
	border-top: 1px solid rgba(18, 22, 15, .16);
}

body.jukye .jk-target {
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	padding: 17px 0;
	border-bottom: 1px solid rgba(18, 22, 15, .16);
}

body.jukye .jk-target dt {
	font-family: var(--jk-font-display);
	font-size: clamp(1.05rem, 1.5vw, 1.3rem);
	font-weight: 800;
	letter-spacing: -.025em;
	color: var(--jk-accent);
	line-height: 1.1;
}

body.jukye .jk-target dd {
	margin: 0;
	padding-top: 2px;
	font-size: 15.5px;
	line-height: 1.55;
	color: var(--jk-muted);
}

@media (max-width: 520px) {
	body.jukye .jk-target {
		grid-template-columns: 1fr;
		gap: 4px;
	}
}

/* Impact matrix: rules and space, deliberately not cards. */
body.jukye .jk-matrix {
	margin-top: 56px;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	border-top: 1px solid var(--jk-hairline-dark);
	border-left: 1px solid var(--jk-hairline-dark);
}

body.jukye .jk-matrix__item {
	padding: 34px 34px 40px;
	border-bottom: 1px solid var(--jk-hairline-dark);
	border-right: 1px solid var(--jk-hairline-dark);
}

body.jukye .jk-matrix__item .jk-h4 {
	margin-bottom: 12px;
	font-size: 1.125rem;
}

body.jukye .jk-matrix__item p {
	font-size: 15.5px;
	line-height: 1.62;
	color: var(--jk-muted-dark);
}

@media (max-width: 900px) {
	body.jukye .jk-matrix {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	body.jukye .jk-matrix {
		grid-template-columns: 1fr;
	}

	body.jukye .jk-matrix__item {
		padding: 26px 22px 30px;
	}
}

/* Recognition */
body.jukye .jk-recog {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(0, 8fr);
	gap: clamp(24px, 5vw, 80px);
	align-items: start;
	padding-top: 44px;
	border-top: 1px solid var(--jk-hairline);
}

body.jukye .jk-recog__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
}

body.jukye .jk-recog__list li {
	padding: 20px 0;
	border-bottom: 1px solid var(--jk-hairline);
	font-size: 16.5px;
	color: var(--jk-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
	align-items: baseline;
}

body.jukye .jk-recog__list li:first-child {
	padding-top: 0;
}

body.jukye .jk-recog__list li span {
	font-family: var(--jk-font-display);
	font-weight: 700;
	font-size: 1.0625rem;
	letter-spacing: -.012em;
	color: var(--jk-ink);
}

@media (max-width: 780px) {
	body.jukye .jk-story,
	body.jukye .jk-recog {
		grid-template-columns: 1fr;
	}

	body.jukye .jk-story__aside {
		position: static;
	}

	body.jukye .jk-story__meta {
		margin-bottom: 8px;
	}
}

/* Contact aside sits alongside the form and stays put while it scrolls. */
body.jukye .jk-contact__aside {
	position: sticky;
	top: calc(var(--jk-header-h) + 40px);
}

@media (max-width: 900px) {
	body.jukye .jk-contact__aside {
		position: static;
	}
}

/* Screen-reader-only utility */
body.jukye .jk-sr {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
