@font-face {
	font-family: "entypo-fontello";
	src: url("../fonts/entypo-fontello.woff") format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

:root {
	--kk-purple: #7d4caa;
	--kk-ink: #222222;
	--kk-text: #666666;
	--kk-muted: #919191;
	--kk-title: #3b3b3b;
	--kk-line: #e8e8e8;
	--kk-top: #f8f8f8;
	--kk-footer: #222222;
	--kk-socket: #333333;
	--kk-footer-text: #e8e8e8;
	--kk-width: 1010px;
	--kk-header: 88px;
}

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

html {
	scroll-padding-top: 130px;
}

body {
	margin: 0;
	color: #444444;
	background: #ffffff;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 13px;
	line-height: 1.65;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--kk-purple);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.kk-container {
	width: 100%;
	max-width: var(--kk-width);
	margin: 0 auto;
	padding: 0 20px;
}

.kk-topbar {
	background: var(--kk-top);
	color: var(--kk-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.kk-topbar .kk-container {
	display: flex;
	justify-content: flex-end;
	min-height: 30px;
	align-items: center;
}

.kk-topbar a {
	color: var(--kk-muted);
}

.kk-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #ffffff;
	border-bottom: 1px solid #f0f0f0;
}

.kk-header-inner {
	display: flex;
	align-items: center;
	min-height: var(--kk-header);
	gap: 20px;
}

.kk-logo {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
}

.kk-logo img {
	width: auto;
	height: 70px;
}

.kk-nav {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 4px;
}

.kk-menu,
.kk-footer-menu,
.kk-side-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kk-menu {
	display: flex;
	align-items: stretch;
}

.kk-menu > li {
	position: relative;
}

.kk-menu > li > a {
	display: flex;
	align-items: center;
	height: var(--kk-header);
	padding: 0 10px;
	white-space: nowrap;
	color: var(--kk-title);
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 3px solid transparent;
}

.kk-menu > li.current-menu-item > a,
.kk-menu > li.current_page_item > a,
.kk-menu > li > a:hover {
	color: var(--kk-purple);
	border-bottom-color: var(--kk-purple);
	text-decoration: none;
}

.kk-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: #ffffff;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	z-index: 20;
}

.kk-menu li:hover > .sub-menu,
.kk-menu li:focus-within > .sub-menu {
	display: block;
}

.kk-menu .sub-menu a {
	display: block;
	padding: 8px 18px;
	color: var(--kk-title);
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-weight: 600;
	text-transform: none;
	text-decoration: none;
}

.kk-menu .sub-menu a:hover,
.kk-menu .sub-menu .current-menu-item > a {
	background: #f8f8f8;
	color: var(--kk-purple);
}

.kk-nav-toggle,
.kk-search-toggle {
	display: none;
	border: 1px solid #d5d5d5;
	background: #ffffff;
	width: 42px;
	height: 42px;
	padding: 0;
	cursor: pointer;
}

.kk-nav-toggle-box,
.kk-nav-toggle-box::before,
.kk-nav-toggle-box::after {
	display: block;
	width: 18px;
	height: 2px;
	background: #333333;
	position: relative;
	margin: 0 auto;
}

.kk-nav-toggle-box::before,
.kk-nav-toggle-box::after {
	content: "";
	position: absolute;
	left: 0;
}

.kk-nav-toggle-box::before {
	top: -6px;
}

.kk-nav-toggle-box::after {
	top: 6px;
}

.kk-search-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	width: 42px;
	font-family: "entypo-fontello";
	font-size: 16px;
	color: var(--kk-title);
	cursor: pointer;
}

.kk-search {
	display: none;
	position: absolute;
	right: 20px;
	top: calc(100% - 8px);
	background: #ffffff;
	border: 1px solid #e5e5e5;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
	padding: 10px;
	z-index: 30;
}

.kk-search.is-open {
	display: flex;
	gap: 8px;
}

.kk-search input {
	border: 1px solid #dddddd;
	padding: 8px 10px;
	font: inherit;
	min-width: 180px;
}

.kk-search button {
	border: 0;
	background: var(--kk-purple);
	color: #ffffff;
	padding: 8px 12px;
	cursor: pointer;
	font-weight: 700;
}

.kk-titlebar {
	background: #f8f8f8;
	border-bottom: 1px solid #eeeeee;
	padding: 22px 0 18px;
}

.kk-titlebar h1 {
	margin: 0 0 6px;
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--kk-ink);
}

.kk-titlebar h1 a {
	color: inherit;
	text-decoration: none;
}

.kk-breadcrumb {
	color: #888888;
	font-size: 12px;
}

.kk-breadcrumb a {
	color: #888888;
}

.kk-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 40px;
	padding-top: 40px;
	padding-bottom: 60px;
}

.kk-sidebar h3 {
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eeeeee;
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: var(--kk-ink);
	text-transform: none;
}

.kk-side-menu a {
	display: block;
	padding: 7px 0;
	color: var(--kk-text);
	border-bottom: 1px solid #f2f2f2;
	text-decoration: none;
}

.kk-side-menu .current-menu-item > a,
.kk-side-menu a:hover {
	color: var(--kk-purple);
}

.kk-content h2,
.kk-content h3,
.kk-iconbox h3 {
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: var(--kk-ink);
	font-weight: 600;
	line-height: 1.25;
}

.kk-content h2 {
	font-size: 23px;
	margin: 0 0 12px;
}

.kk-content h3,
.kk-iconbox h3 {
	font-size: 16px;
	margin: 0 0 8px;
}

.kk-content p,
.kk-iconbox-body p {
	margin: 0.85em 0;
	color: var(--kk-text);
}

.kk-content ul,
.kk-content ol {
	margin: 0 0 16px;
	padding-left: 18px;
	color: var(--kk-text);
}

.kk-content li {
	margin: 0 0 6px;
}

.kk-content .alignright,
.kk-content .wp-block-image.alignright {
	float: right;
	margin: 0 0 12px 18px;
}

.kk-content .alignleft,
.kk-content .wp-block-image.alignleft {
	float: left;
	margin: 0 18px 12px 0;
}

.kk-content::after,
.kk-column::after {
	content: "";
	display: block;
	clear: both;
}

.kk-section {
	background-color: #ffffff;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.kk-pad-large {
	padding: 60px 0;
}

.kk-section-light,
.kk-section-light h2,
.kk-section-light h3,
.kk-section-light p,
.kk-section-light a {
	color: #ffffff;
}

.kk-section-shadow {
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.18);
}

.kk-columns,
.kk-columns-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 28px 36px;
	width: 100%;
}

.kk-column,
.kk-columns-layout > .wp-block {
	box-sizing: border-box;
	min-width: 0;
	max-width: 100%;
}

.kk-column-100,
.kk-columns-layout > .wp-block:has(.kk-column-100) {
	flex: 1 1 100%;
	width: 100%;
}

.kk-column-50,
.kk-columns-layout > .wp-block:has(.kk-column-50) {
	flex: 1 1 calc(50% - 18px);
	width: calc(50% - 18px);
}

.kk-column-33,
.kk-columns-layout > .wp-block:has(.kk-column-33) {
	flex: 1 1 calc(33.333% - 24px);
	width: calc(33.333% - 24px);
}

.kk-column-66,
.kk-columns-layout > .wp-block:has(.kk-column-66) {
	flex: 1 1 calc(66.666% - 18px);
	width: calc(66.666% - 18px);
}

.kk-column-25,
.kk-columns-layout > .wp-block:has(.kk-column-25) {
	flex: 1 1 calc(25% - 27px);
	width: calc(25% - 27px);
}

.kk-columns > .block-editor-inner-blocks,
.kk-columns > .kk-columns-layout {
	flex: 1 1 100%;
	width: 100%;
}

.kk-iconbox-head,
.kk-iconbox-left {
	display: block;
}

.kk-iconbox-head {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.kk-iconbox-head h3,
.kk-iconbox h3 {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	white-space: normal;
	word-break: normal;
	overflow-wrap: break-word;
}

.kk-iconbox-left .kk-iconbox-body {
	padding-left: 33px;
}

.kk-iconbox-top .kk-iconbox-head {
	flex-direction: column;
	align-items: center;
}

.kk-iconbox-top {
	text-align: center;
}

.kk-iconbox-top .kk-icon {
	display: block;
	font-size: 34px;
	margin-bottom: 8px;
}

.kk-icon {
	font-family: "entypo-fontello";
	font-size: 23px;
	line-height: 1;
	color: var(--kk-ink);
	font-style: normal;
}

.kk-icon::before {
	content: attr(data-icon);
}

.kk-icon-link {
	color: inherit;
	text-decoration: none;
}

.kk-iconbox h3 a {
	color: var(--kk-ink);
	text-decoration: none;
}

.kk-iconbox h3 a:hover {
	color: var(--kk-purple);
}

.kk-hero {
	min-height: 460px;
	background-color: #885fb4;
	background-size: cover;
	background-position: center center;
	display: flex;
	align-items: center;
}

.kk-hero-inner {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 40px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
}

.kk-hero-logo {
	width: 120px;
	height: auto;
}

.kk-hero h1 {
	margin: 0;
	color: #ffffff;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: 700;
	font-size: 55px;
	line-height: 1.05;
}

.kk-hero p {
	margin: 10px 0 0;
	color: #ffffff;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	font-weight: 700;
	font-size: 17px;
	line-height: 1.35;
}

.kk-gallery {
	display: grid;
	margin-top: 10px;
}

.kk-gallery-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.kk-gallery-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kk-gallery-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.kk-gallery-gap-large { gap: 18px; }
.kk-gallery-gap-tight { gap: 1px; }

.kk-gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #111111;
}

.kk-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kk-gallery-caption {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-end;
	padding: 16px;
	color: #ffffff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.05));
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 600;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.kk-gallery-cap-hover .kk-gallery-item:hover .kk-gallery-caption,
.kk-gallery-cap-always .kk-gallery-caption {
	opacity: 1;
}

.kk-spacer {
	width: 100%;
}

.kk-hr {
	border: 0;
	border-top: 1px solid #e1e1e1;
	margin: 20px 0;
}

.kk-contact h3 {
	margin-top: 0;
}

.kk-contact-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.kk-field {
	margin: 0 0 14px;
}

.kk-field label {
	display: block;
	font-weight: 600;
	color: var(--kk-ink);
	margin-bottom: 4px;
}

.kk-field input,
.kk-field select,
.kk-field textarea {
	display: block;
	width: 100%;
	margin-top: 4px;
	padding: 8px 10px;
	border: 1px solid #d5d5d5;
	font: inherit;
	background: #ffffff;
}

.kk-field textarea {
	min-height: 140px;
}

.kk-contact-submit button {
	background: var(--kk-purple);
	color: #ffffff;
	border: 0;
	padding: 10px 22px;
	font-weight: 700;
	cursor: pointer;
}

.kk-contact-ok {
	color: #2e7d32;
}

.kk-contact-err {
	color: #a12626;
}

.kk-hp {
	position: absolute;
	left: -9999px;
}

.kk-footer {
	background: var(--kk-footer);
	color: var(--kk-footer-text);
	padding: 28px 0 36px;
}

.kk-footer-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.kk-footer h3 {
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: #ffffff;
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.kk-footer p {
	margin: 0;
	line-height: 1.7;
}

.kk-footer a {
	color: var(--kk-footer-text);
}

.kk-footer-logo {
	max-width: 220px;
	height: auto;
}

.kk-socket {
	background: var(--kk-socket);
	color: var(--kk-footer-text);
	font-size: 11px;
	padding: 12px 0;
}

.kk-socket-inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: center;
	flex-wrap: wrap;
}

.kk-socket a {
	color: var(--kk-footer-text);
}

.kk-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
}

.kk-search-results {
	padding: 40px 0 70px;
}

.kk-search-hit {
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid #eeeeee;
}

@media (max-width: 989px) {
	.kk-hero {
		display: none;
	}

	.kk-nav-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		margin-left: auto;
	}

	.kk-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: #ffffff;
		border-top: 1px solid #eeeeee;
		box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
		padding: 10px 0 16px;
		flex-direction: column;
		align-items: stretch;
	}

	body.kk-nav-open .kk-nav {
		display: flex;
	}

	.kk-menu {
		flex-direction: column;
	}

	.kk-menu > li > a {
		height: auto;
		padding: 12px 20px;
		border-bottom: 0;
	}

	.kk-menu .sub-menu {
		position: static;
		display: block;
		box-shadow: none;
		padding: 0 0 8px 12px;
	}

	.kk-search {
		position: static;
		box-shadow: none;
		border: 0;
		margin: 8px 20px 0;
	}

	.kk-layout,
	.kk-footer-grid,
	.kk-contact-row,
	.kk-gallery-cols-3,
	.kk-gallery-cols-4 {
		grid-template-columns: 1fr;
	}

	.kk-column-50,
	.kk-column-33,
	.kk-column-66,
	.kk-column-25,
	.kk-column-100,
	.kk-columns-layout > .wp-block {
		flex-basis: 100%;
		width: 100%;
	}
}

@media (max-width: 640px) {
	.kk-hero h1 {
		font-size: 32px;
	}
}

body.kk-lightbox-open {
	overflow: hidden;
}

.kk-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 24px;
	background: rgba(0, 0, 0, 0.88);
}

.kk-lightbox[hidden] {
	display: none;
}

.kk-lightbox-figure {
	margin: 0;
	max-width: min(1100px, 100%);
	max-height: 100%;
}

.kk-lightbox-figure img {
	display: block;
	max-width: 100%;
	max-height: calc(100vh - 140px);
	width: auto;
	height: auto;
	margin: 0 auto;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.kk-lightbox-figure figcaption {
	margin-top: 12px;
	color: #ffffff;
	text-align: center;
	font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
}

.kk-lightbox-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: #ffffff;
	color: #222222;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}
