/*
Theme Name: Shkulaku
Theme URI: https://shkulaku.com/
Author: Renato Shkulaku
Author URI: https://shkulaku.com/
Description: A fast, editorial portfolio theme for developers, studios and consultancies. Services, projects (case studies), notes, about and contact pages are all managed from the dashboard. Includes a built-in contact form with message inbox, WhatsApp button, SEO fields with schema markup, header and footer menus, Customizer colors, fonts and logo, and a one-click demo import. Translation ready and Polylang compatible.
Version: 1.1.0
Requires at least: 6.3
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shkulaku
Tags: portfolio, blog, one-column, two-columns, custom-logo, custom-menu, custom-colors, featured-images, editor-style, translation-ready, threaded-comments, block-styles, wide-blocks
*/

/* ==========================================================================
   1. Tokens (overridden by the Customizer)
   ========================================================================== */
:root {
	--sk-bg: #FAFAFA;
	--sk-surface: #FFFFFF;
	--sk-ink: #000000;
	--sk-ink-hover: #262626;
	--sk-on-ink: #FFFFFF;
	--sk-text: #171717;
	--sk-muted: #404040;
	--sk-subtle: #5C5C5C;
	--sk-kicker: #7A7A7A;
	--sk-faint: #A3A3A3;
	--sk-line: #E5E5E5;
	--sk-line-soft: #F0F0F0;
	--sk-line-strong: #CCCCCC;
	--sk-dark-bg: #000000;
	--sk-dark-text: #FFFFFF;
	--sk-dark-muted: #B3B3B3;
	--sk-dark-line: #262626;
	--sk-wa: #000000;
	--sk-error: #B42318;

	--sk-font-head: "Space Grotesk", system-ui, sans-serif;
	--sk-font-body: "Instrument Sans", system-ui, sans-serif;
	--sk-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	--sk-container: 1180px;
	--sk-gutter: clamp(16px, 4vw, 40px);
	--sk-r: 1;
	--sk-logo-h: 30px;
	--sk-footer-logo-h: 40px;
}

/* ==========================================================================
   2. Base
   ========================================================================== */
html { -webkit-text-size-adjust: 100%; }
*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	background: var(--sk-bg);
	color: var(--sk-ink);
	font-family: var(--sk-font-body);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}
img, video, iframe { max-width: 100%; }
img { height: auto; }
a { color: var(--sk-ink); text-decoration: none; transition: color .15s ease, background-color .15s ease, border-color .15s ease, opacity .15s ease; }
a:hover { color: var(--sk-muted); }
input, select, textarea, button { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--sk-font-head); font-weight: 600; color: inherit; }
::selection { background: var(--sk-ink); color: var(--sk-on-ink); }
:focus-visible { outline: 2px solid var(--sk-ink); outline-offset: 3px; border-radius: 4px; }
.sk-dark :focus-visible { outline-color: var(--sk-dark-text); }

.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 !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
	background: var(--sk-surface); clip: auto !important; clip-path: none; color: var(--sk-ink);
	display: block; font-size: 14px; font-weight: 600; height: auto; left: 8px; top: 8px;
	padding: 14px 20px; width: auto; z-index: 100000; border-radius: 999px; box-shadow: 0 4px 18px rgba(0,0,0,.15);
}

@keyframes skPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.8); } }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   3. Layout helpers
   ========================================================================== */
.sk-site { min-height: 100vh; display: flex; flex-direction: column; background: var(--sk-bg); }
.sk-main { flex: 1; }
.sk-container { max-width: var(--sk-container); margin-inline: auto; padding-inline: var(--sk-gutter); }
.sk-container--md { max-width: 1000px; }
.sk-container--article { max-width: 860px; }
.sk-container--post { max-width: 720px; }
.sk-section { padding-block: clamp(52px, 8vw, 94px); }
.sk-page { padding-block: clamp(40px, 7vw, 80px); }
.sk-detail { padding-block: clamp(28px, 5vw, 52px) clamp(52px, 8vw, 88px); }
.sk-band { border-top: 1px solid var(--sk-line); border-bottom: 1px solid var(--sk-line); background: var(--sk-surface); }
.sk-band--top { border-bottom: 0; }

/* ==========================================================================
   4. Typography helpers
   ========================================================================== */
.sk-kicker {
	font-family: var(--sk-font-mono);
	font-size: 11.5px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--sk-kicker);
}
.sk-kicker--tight { letter-spacing: .1em; }
.sk-kicker--heading { margin: 0; font-weight: 400; }
.sk-steps-section { padding-block: clamp(48px, 8vw, 86px); }
.sk-main:focus { outline: none; }
.sk-h1 {
	font-family: var(--sk-font-head);
	font-weight: 600;
	font-size: clamp(30px, 5.4vw, 56px);
	letter-spacing: -.035em;
	line-height: 1.05;
	margin: 14px 0 0;
	max-width: 24ch;
	text-wrap: balance;
}
.sk-h2 {
	font-family: var(--sk-font-head);
	font-weight: 600;
	font-size: clamp(27px, 4.2vw, 42px);
	letter-spacing: -.03em;
	line-height: 1.1;
	margin: 12px 0 0;
	max-width: 30ch;
	text-wrap: balance;
}
.sk-lead {
	font-size: 17.5px;
	line-height: 1.6;
	color: var(--sk-muted);
	max-width: 58ch;
	margin: 20px 0 0;
	text-wrap: pretty;
}
.sk-back {
	display: inline-block;
	font-family: var(--sk-font-mono);
	font-size: 12.5px;
	color: var(--sk-subtle);
}
.sk-back:hover { color: var(--sk-ink); }

/* ==========================================================================
   5. Buttons & links
   ========================================================================== */
.sk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	border: 1px solid transparent;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
	cursor: pointer;
	background: transparent;
	color: var(--sk-ink);
	transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.sk-btn--lg { padding: 15px 26px; font-size: 16px; }
.sk-btn--primary { background: var(--sk-ink); color: var(--sk-on-ink); }
.sk-btn--primary:hover { background: var(--sk-ink-hover); color: var(--sk-on-ink); }
.sk-btn--outline { border-color: var(--sk-line-strong); color: var(--sk-ink); }
.sk-btn--outline:hover { border-color: var(--sk-ink); color: var(--sk-ink); }
.sk-btn--ink-outline { border-color: var(--sk-ink); color: var(--sk-ink); white-space: nowrap; }
.sk-btn--ink-outline:hover { background: var(--sk-ink); color: var(--sk-on-ink); }
.sk-btn--light { background: var(--sk-dark-text); color: var(--sk-dark-bg); }
.sk-btn--light:hover { background: var(--sk-line); color: var(--sk-dark-bg); }
.sk-btn[disabled], .sk-btn.is-loading { opacity: .6; cursor: progress; }

.sk-link-line {
	font-size: 15px;
	border-bottom: 1px solid var(--sk-line-strong);
	padding-bottom: 2px;
	white-space: nowrap;
}
.sk-link-line:hover { border-color: var(--sk-ink); color: var(--sk-ink); }

/* ==========================================================================
   6. Header
   ========================================================================== */
.sk-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(250, 250, 250, .92);
	background: color-mix(in srgb, var(--sk-bg) 92%, transparent);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--sk-line);
}
.sk-header--static { position: relative; }
.admin-bar .sk-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .sk-header { top: 46px; } }
@media (max-width: 600px) { .admin-bar .sk-header { top: 0; } }

.sk-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 62px;
	padding-block: 12px;
}

.sk-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: var(--sk-ink); }
.sk-brand:hover { color: var(--sk-ink); }
.sk-brand__mark {
	width: 30px;
	height: 30px;
	border-radius: calc(9px * var(--sk-r));
	background: var(--sk-ink);
	color: var(--sk-on-ink);
	display: grid;
	place-items: center;
	font-family: var(--sk-font-head);
	font-weight: 700;
	font-size: 16px;
	letter-spacing: -.03em;
	line-height: 1;
}
.sk-brand__text { font-family: var(--sk-font-head); font-weight: 600; font-size: 17px; letter-spacing: -.02em; }
.sk-brand__suffix { color: var(--sk-faint); }
.sk-brand__logo { display: block; height: var(--sk-logo-h); width: auto; max-width: 220px; object-fit: contain; }
.sk-brand__mark--symbol { padding: 6px; }
.sk-mark { display: block; width: 100%; height: 100%; }
.sk-brand__symbol { display: block; width: 24px; height: 28px; color: var(--sk-ink); }
.sk-brand:hover .sk-brand__mark--symbol .sk-mark { transform: skewX(-6deg); }
.sk-brand__mark--symbol .sk-mark { transition: transform .2s ease; }

/* Footer brand: bigger mark, its own logo size */
.sk-brand--footer { gap: 12px; }
.sk-brand--footer .sk-brand__logo { height: var(--sk-footer-logo-h); max-width: 260px; }
.sk-brand--footer .sk-brand__mark { width: var(--sk-footer-logo-h); height: var(--sk-footer-logo-h); border-radius: calc(11px * var(--sk-r)); font-size: 20px; }
.sk-brand--footer .sk-brand__mark--symbol { padding: calc(var(--sk-footer-logo-h) * .2); }
.sk-brand--footer .sk-brand__symbol { width: calc(var(--sk-footer-logo-h) * .8); height: var(--sk-footer-logo-h); }
.sk-brand--footer .sk-brand__text { font-size: 18px; }

.sk-nav { display: flex; align-items: center; gap: clamp(10px, 2vw, 24px); font-size: 14.5px; }
.sk-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(10px, 2vw, 24px); }
.sk-menu li { position: relative; }
.sk-menu a { color: var(--sk-muted); display: inline-block; }
.sk-menu a:hover,
.sk-menu .current-menu-item > a,
.sk-menu .current-menu-ancestor > a,
.sk-menu .current_page_item > a,
.sk-menu .current-page-ancestor > a { color: var(--sk-ink); }

.sk-menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 8px;
	position: absolute;
	top: calc(100% + 10px);
	left: -12px;
	min-width: 210px;
	background: var(--sk-surface);
	border: 1px solid var(--sk-line);
	border-radius: calc(14px * var(--sk-r));
	box-shadow: 0 14px 40px rgba(10, 10, 11, .08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
	z-index: 5;
}
.sk-menu .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px; }
.sk-menu .sub-menu a { display: block; padding: 8px 10px; border-radius: 8px; }
.sk-menu .sub-menu a:hover { background: var(--sk-bg); }
.sk-menu .sub-menu .sub-menu { top: -9px; left: 100%; }
.sk-menu li:hover > .sub-menu,
.sk-menu li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }

.sk-lang {
	display: flex;
	border: 1px solid var(--sk-line-strong);
	border-radius: 999px;
	overflow: hidden;
	font-family: var(--sk-font-mono);
	font-size: 11.5px;
	flex-shrink: 0;
}
.sk-lang a { padding: 7px 11px; letter-spacing: .06em; color: var(--sk-subtle); line-height: 1.2; }
.sk-lang a:hover { color: var(--sk-ink); }
.sk-lang a.is-active { background: var(--sk-ink); color: var(--sk-on-ink); }

.sk-nav__cta { padding: 9px 16px; font-size: 14.5px; }
.sk-nav__tools { display: flex; align-items: center; gap: clamp(10px, 1.6vw, 18px); }
.sk-header--borderless { border-bottom-color: transparent; }

/* Header layouts (desktop; phones and tablets always use the menu button) */
@media (min-width: 921px) {
	.sk-header--center .sk-nav { flex: 1; }
	.sk-header--center .sk-menu { margin-inline: auto; }
	.sk-header--stacked .sk-header__inner { flex-direction: column; justify-content: center; gap: 12px; padding-block: 16px 12px; }
	.sk-header--stacked .sk-nav { flex-wrap: wrap; justify-content: center; }
}

/* Top bar */
.sk-topbar { background: var(--sk-ink); color: var(--sk-on-ink); font-size: 13.5px; }
.sk-topbar__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px 14px; padding-block: 9px; text-align: center; line-height: 1.4; }
.sk-topbar a { color: var(--sk-on-ink); text-decoration: underline; text-underline-offset: 3px; font-weight: 500; }
.sk-topbar a:hover { color: var(--sk-on-ink); opacity: .75; }

/* Social icons */
.sk-socials { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sk-socials a {
	width: 36px; height: 36px; display: grid; place-items: center;
	border: 1px solid var(--sk-line); border-radius: 50%; color: var(--sk-muted); background: var(--sk-surface);
}
.sk-socials a:hover { color: var(--sk-on-ink); background: var(--sk-ink); border-color: var(--sk-ink); }
.sk-socials svg { width: 16px; height: 16px; display: block; }
.sk-socials--header a { width: 32px; height: 32px; }
.sk-socials--footer { margin-top: 18px; }

.sk-burger {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid var(--sk-line-strong);
	border-radius: 999px;
	background: transparent;
	color: var(--sk-ink);
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex-shrink: 0;
}
.sk-burger__lines { position: relative; width: 16px; height: 10px; }
.sk-burger__lines span {
	position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; border-radius: 2px;
	transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.sk-burger__lines span:nth-child(1) { top: 0; }
.sk-burger__lines span:nth-child(2) { top: 4.25px; }
.sk-burger__lines span:nth-child(3) { top: 8.5px; }
.sk-header.is-open .sk-burger__lines span:nth-child(1) { top: 4.25px; transform: rotate(45deg); }
.sk-header.is-open .sk-burger__lines span:nth-child(2) { opacity: 0; }
.sk-header.is-open .sk-burger__lines span:nth-child(3) { top: 4.25px; transform: rotate(-45deg); }

@media (max-width: 920px) {
	.sk-burger { display: inline-flex; }
	.sk-nav {
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 6px var(--sk-gutter) 24px;
		background: var(--sk-bg);
		border-bottom: 1px solid var(--sk-line);
		box-shadow: 0 18px 40px rgba(10, 10, 11, .06);
		max-height: calc(100vh - 62px);
		max-height: calc(100dvh - 62px);
		overflow-y: auto;
		font-size: 17px;
	}
	.sk-header.is-open .sk-nav { display: flex; }
	.sk-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.sk-menu a { display: block; padding: 14px 2px; color: var(--sk-ink); border-bottom: 1px solid var(--sk-line); }
	.sk-menu .sub-menu {
		position: static; opacity: 1; visibility: visible; transform: none;
		border: 0; box-shadow: none; background: transparent; padding: 0 0 0 16px; min-width: 0; border-radius: 0;
	}
	.sk-menu .sub-menu::before { display: none; }
	.sk-menu .sub-menu a { padding: 12px 2px; border-radius: 0; font-size: 15.5px; color: var(--sk-muted); }
	.sk-nav__tools { flex-direction: column; align-items: stretch; gap: 16px; margin-top: 18px; }
	.sk-lang { align-self: flex-start; font-size: 12.5px; }
	.sk-lang a { padding: 9px 14px; }
	.sk-nav__cta { padding: 14px 22px; font-size: 16px; }
	.sk-socials--header { order: 2; }
	body.sk-nav-open { overflow: hidden; }
}

/* ==========================================================================
   7. Home
   ========================================================================== */
.sk-hero { padding-block: clamp(44px, 8vw, 100px) clamp(38px, 6vw, 70px); }
.sk-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	max-width: 100%;
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	padding: 7px 14px 7px 11px;
	border-radius: 999px;
	font-family: var(--sk-font-mono);
	font-size: 11.5px;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--sk-muted);
	line-height: 1.35;
}
.sk-pill__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--sk-ink);
	flex-shrink: 0;
	animation: skPulse 2.4s ease-in-out infinite;
}
.sk-hero__title {
	font-family: var(--sk-font-head);
	font-weight: 600;
	font-size: clamp(34px, 6.8vw, 74px);
	line-height: 1.03;
	letter-spacing: -.035em;
	margin: 24px 0 0;
	max-width: 16ch;
	text-wrap: balance;
}
.sk-hero__body {
	font-size: clamp(16.5px, 2vw, 21px);
	line-height: 1.55;
	color: var(--sk-muted);
	max-width: 58ch;
	margin: 20px 0 0;
	text-wrap: pretty;
}
.sk-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
@media (max-width: 480px) {
	.sk-hero .sk-actions .sk-btn { width: 100%; }
}

.sk-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.sk-fact { padding: 24px 20px 26px 0; }
.sk-fact__n { font-family: var(--sk-font-head); font-size: 26px; font-weight: 600; letter-spacing: -.02em; line-height: 1.2; }
.sk-fact__label { font-size: 13.5px; color: var(--sk-subtle); margin-top: 5px; line-height: 1.4; }
@media (max-width: 560px) {
	.sk-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 16px; }
	.sk-fact { padding: 20px 0 22px; }
	.sk-fact__n { font-size: 22px; }
}

.sk-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 32px;
}
.sk-section-head .sk-h2 { max-width: 26ch; }
.sk-section-head--notes { margin-bottom: 26px; }
.sk-section-head--notes .sk-h2 { font-size: clamp(25px, 3.8vw, 38px); margin: 0; }

/* Service card grid */
.sk-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
	background: var(--sk-surface);
	border: 1px solid var(--sk-line);
	border-radius: calc(16px * var(--sk-r));
	overflow: hidden;
}
.sk-service-card {
	background: var(--sk-surface);
	color: var(--sk-ink);
	padding: 24px 22px 26px;
	display: flex;
	flex-direction: column;
	gap: 9px;
	min-height: 176px;
	border-right: 1px solid var(--sk-line);
	border-bottom: 1px solid var(--sk-line);
	margin: 0 -1px -1px 0;
}
.sk-service-card:hover { background: var(--sk-ink); color: var(--sk-on-ink); }
.sk-cards--page { margin-top: 38px; }
.sk-cards--page .sk-service-card { min-height: 186px; }
.sk-service-card__num { font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; color: var(--sk-faint); }
.sk-service-card__title { font-family: var(--sk-font-head); font-weight: 600; font-size: 18.5px; letter-spacing: -.02em; line-height: 1.2; }
.sk-cards--page .sk-service-card__title { font-size: 19px; }
.sk-service-card__short { font-size: 14.5px; line-height: 1.5; opacity: .72; text-wrap: pretty; }
.sk-service-card__meta { margin-top: auto; font-size: 12.5px; opacity: .6; }

/* Dark highlight section */
.sk-dark { background: var(--sk-dark-bg); color: var(--sk-dark-text); }
.sk-dark a:not(.sk-btn) { color: var(--sk-dark-text); }
.sk-split {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
	gap: clamp(28px, 5vw, 64px);
	padding-block: clamp(48px, 8vw, 90px);
}
.sk-dark__title {
	font-family: var(--sk-font-head);
	font-weight: 600;
	font-size: clamp(26px, 3.8vw, 40px);
	letter-spacing: -.03em;
	line-height: 1.1;
	margin: 14px 0 0;
	text-wrap: balance;
}
.sk-dark__body { color: var(--sk-dark-muted); font-size: 16.5px; line-height: 1.6; margin: 18px 0 0; max-width: 46ch; text-wrap: pretty; }
.sk-dark .sk-btn { margin-top: 26px; padding: 14px 24px; }
.sk-plain-list { display: grid; gap: 12px; align-content: start; }
.sk-plain-item {
	border: 1px solid var(--sk-dark-line);
	border-radius: calc(14px * var(--sk-r));
	padding: 18px 20px;
	display: flex;
	gap: 8px 16px;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sk-plain-item__main { min-width: min(170px, 100%); flex: 1; }
.sk-plain-item__title { font-family: var(--sk-font-head); font-weight: 600; font-size: 17px; letter-spacing: -.02em; }
.sk-plain-item__desc { color: var(--sk-kicker); font-size: 14px; margin-top: 5px; }
.sk-plain-item__time { font-family: var(--sk-font-mono); font-size: 12.5px; color: var(--sk-dark-muted); }

/* Case cards */
.sk-case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: 20px; margin-top: 32px; }
.sk-case-card {
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	color: var(--sk-ink);
	border-radius: calc(18px * var(--sk-r));
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 13px;
}
.sk-case-card:hover { border-color: var(--sk-ink); color: var(--sk-ink); }
.sk-case-card__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.sk-case-card__kind { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--sk-subtle); }
.sk-case-card__year { font-family: var(--sk-font-mono); font-size: 11.5px; color: var(--sk-faint); white-space: nowrap; }
.sk-case-card__name { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(23px, 3vw, 30px); letter-spacing: -.03em; line-height: 1.15; }
.sk-case-card__summary { font-size: 15.5px; line-height: 1.55; color: var(--sk-muted); margin: 0; text-wrap: pretty; }
.sk-case-card__cta { margin-top: 8px; font-size: 14.5px; font-weight: 500; }
.sk-case-card__image { margin: -26px -24px 4px; border-radius: calc(18px * var(--sk-r)) calc(18px * var(--sk-r)) 0 0; overflow: hidden; aspect-ratio: 16 / 9; background: var(--sk-bg); }
.sk-case-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sk-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.sk-tag {
	font-family: var(--sk-font-mono);
	font-size: 11.5px;
	border: 1px solid var(--sk-line);
	border-radius: 999px;
	padding: 4px 10px;
	color: var(--sk-muted);
	line-height: 1.4;
}
.sk-tag--lg { padding: 5px 11px; }
.sk-tag--square { border-radius: 6px; padding: 4px 9px; color: var(--sk-text); }

/* Steps */
.sk-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(210px, 100%), 1fr)); gap: 26px; margin-top: 28px; }
.sk-step { border-top: 2px solid var(--sk-ink); padding-top: 15px; }
.sk-step__n { font-family: var(--sk-font-mono); font-size: 12px; color: var(--sk-faint); }
.sk-step__title { font-family: var(--sk-font-head); font-weight: 600; font-size: 18.5px; letter-spacing: -.02em; margin: 8px 0 0; }
.sk-step__desc { font-size: 14.5px; line-height: 1.55; color: var(--sk-muted); margin: 8px 0 0; text-wrap: pretty; }

/* Post rows */
.sk-rows { border-top: 1px solid var(--sk-line); }
.sk-rows--page { margin-top: 38px; }
.sk-row {
	background: var(--sk-bg);
	color: var(--sk-ink);
	padding: 20px 4px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px 22px;
	align-items: baseline;
	border-bottom: 1px solid var(--sk-line);
}
.sk-row:hover { background: var(--sk-surface); color: var(--sk-ink); }
.sk-row__title { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(17.5px, 2.4vw, 22px); letter-spacing: -.025em; line-height: 1.25; }
.sk-row__excerpt { font-size: 14.5px; color: var(--sk-subtle); margin-top: 6px; max-width: 64ch; line-height: 1.5; text-wrap: pretty; }
.sk-row__date { font-family: var(--sk-font-mono); font-size: 12px; color: var(--sk-faint); white-space: nowrap; }
.sk-row--full { padding: 22px 6px; align-items: start; }
.sk-row--full .sk-row__tag { font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); }
.sk-row--full .sk-row__title { font-size: clamp(18.5px, 2.6vw, 24px); margin-top: 8px; }
.sk-row--full .sk-row__excerpt { font-size: 15px; color: var(--sk-muted); margin-top: 8px; max-width: 66ch; line-height: 1.55; }
@media (max-width: 560px) {
	.sk-row { grid-template-columns: minmax(0, 1fr); }
	.sk-row__date { order: -1; }
	.sk-row--full .sk-row__date { order: 0; }
}

/* ==========================================================================
   8. Services page & single service
   ========================================================================== */
.sk-pricing {
	margin-top: 40px;
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	border-radius: calc(18px * var(--sk-r));
	padding: clamp(22px, 4vw, 38px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
	gap: 26px;
}
.sk-pricing__title { font-family: var(--sk-font-head); font-weight: 600; font-size: 22px; letter-spacing: -.02em; }
.sk-pricing__body { font-size: 15px; line-height: 1.6; color: var(--sk-muted); margin: 10px 0 0; text-wrap: pretty; }
.sk-pricing__item { border-left: 1px solid var(--sk-line); padding-left: 20px; }
.sk-pricing__mode { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--sk-kicker); }
.sk-pricing__shape { font-family: var(--sk-font-head); font-weight: 600; font-size: 18px; margin-top: 8px; letter-spacing: -.02em; }
.sk-pricing__note { font-size: 14px; color: var(--sk-subtle); margin-top: 6px; line-height: 1.5; }

.sk-two-col {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
	gap: clamp(26px, 5vw, 60px);
	margin-top: 24px;
}
.sk-detail__title { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(28px, 4.8vw, 50px); letter-spacing: -.035em; line-height: 1.06; margin: 14px 0 0; text-wrap: balance; }
.sk-detail__lead, .sk-detail__lead p { font-size: 18px; line-height: 1.6; color: var(--sk-muted); text-wrap: pretty; }
.sk-detail__lead { margin-top: 18px; }
.sk-detail__lead > :first-child { margin-top: 0; }
.sk-detail__lead > :last-child { margin-bottom: 0; }

.sk-bullets { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.sk-bullets li { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 12px; align-items: start; font-size: 16px; line-height: 1.55; color: var(--sk-text); }
.sk-bullets li::before { content: ""; width: 8px; height: 8px; background: var(--sk-ink); border-radius: 2px; margin-top: 8px; }
.sk-detail .sk-btn--primary.sk-discuss { margin-top: 32px; padding: 14px 26px; }

.sk-aside-card {
	align-self: start;
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	border-radius: calc(18px * var(--sk-r));
	padding: 24px 22px;
}
.sk-aside-card .sk-tags { margin-top: 13px; }
.sk-divider { height: 1px; background: var(--sk-line); margin: 20px 0; }
.sk-aside-card { overflow: hidden; }
.sk-aside-card__photo { margin: -24px -22px 20px; }
.sk-aside-card__photo img { display: block; width: 100%; height: auto; }
.sk-spacer { height: 32px; }
.sk-aside-card__text { font-size: 15px; line-height: 1.55; color: var(--sk-muted); margin: 11px 0 0; text-wrap: pretty; }
.sk-aside-card__big { font-family: var(--sk-font-head); font-weight: 600; font-size: 20px; margin-top: 9px; letter-spacing: -.02em; }
@media (min-width: 960px) {
	.sk-aside-card--sticky { position: sticky; top: 90px; }
}

.sk-others { margin-top: clamp(36px, 6vw, 66px); border-top: 1px solid var(--sk-line); padding-top: 24px; }
.sk-others .sk-kicker { margin-bottom: 14px; }
.sk-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sk-chip {
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	border-radius: 999px;
	padding: 8px 15px;
	font-size: 14px;
	color: var(--sk-muted);
}
.sk-chip:hover, .sk-chip.is-current { border-color: var(--sk-ink); color: var(--sk-ink); }

/* ==========================================================================
   9. Work page & case study
   ========================================================================== */
.sk-case-list { display: grid; gap: 20px; margin-top: 38px; }
.sk-case-block {
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	border-radius: calc(20px * var(--sk-r));
	padding: clamp(22px, 4vw, 38px);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
	gap: clamp(22px, 4vw, 46px);
}
.sk-case-block__meta { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--sk-subtle); }
.sk-case-block__name { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(25px, 3.6vw, 36px); letter-spacing: -.03em; margin: 12px 0 0; line-height: 1.12; }
.sk-case-block__name a { color: inherit; }
.sk-case-block__summary { font-size: 16px; line-height: 1.6; color: var(--sk-muted); margin: 14px 0 0; text-wrap: pretty; }
.sk-case-block .sk-actions { margin-top: 22px; }
.sk-case-block__image { grid-column: 1 / -1; border-radius: calc(14px * var(--sk-r)); overflow: hidden; }
.sk-case-block__image img { display: block; width: 100%; height: auto; }

.sk-hl-list { display: grid; gap: 13px; align-content: start; }
.sk-hl { border-top: 1px solid var(--sk-line); padding-top: 11px; }
.sk-hl__k { font-family: var(--sk-font-head); font-weight: 600; font-size: 16.5px; letter-spacing: -.015em; }
.sk-hl__v { font-size: 14.5px; color: var(--sk-subtle); margin-top: 4px; line-height: 1.5; }

.sk-nda {
	margin-top: 32px;
	border: 1px dashed var(--sk-line-strong);
	border-radius: calc(18px * var(--sk-r));
	padding: 26px;
	display: flex;
	gap: 20px;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.sk-nda__title, .sk-cta-box__title { font-family: var(--sk-font-head); font-weight: 600; font-size: 20px; letter-spacing: -.02em; }
.sk-nda__body { font-size: 15px; color: var(--sk-muted); margin: 8px 0 0; max-width: 60ch; text-wrap: pretty; }

.sk-article__meta { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); margin-top: 24px; }
.sk-article__title { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(30px, 5.4vw, 54px); letter-spacing: -.035em; line-height: 1.06; margin: 14px 0 0; text-wrap: balance; }
.sk-article__summary { font-size: 19px; line-height: 1.6; color: var(--sk-muted); margin: 18px 0 0; text-wrap: pretty; }
.sk-article__image { margin: 32px 0 0; border-radius: calc(16px * var(--sk-r)); overflow: hidden; }
.sk-article__image img { display: block; width: 100%; height: auto; }

.sk-hl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
	background: var(--sk-surface);
	border: 1px solid var(--sk-line);
	border-radius: calc(14px * var(--sk-r));
	overflow: hidden;
	margin: 32px 0;
}
.sk-hl-grid__item { background: var(--sk-surface); padding: 17px 17px 19px; border-right: 1px solid var(--sk-line); border-bottom: 1px solid var(--sk-line); margin: 0 -1px -1px 0; }
.sk-hl-grid__k { font-family: var(--sk-font-head); font-weight: 600; font-size: 16px; letter-spacing: -.015em; }
.sk-hl-grid__v { font-size: 13.5px; color: var(--sk-subtle); margin-top: 4px; line-height: 1.45; }

.sk-cta-box {
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	border-radius: calc(18px * var(--sk-r));
	padding: 24px;
	display: flex;
	gap: 18px;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 8px;
}
.sk-cta-box__title { font-size: 19px; }
.sk-cta-box__sub { font-size: 14.5px; color: var(--sk-subtle); margin-top: 5px; word-break: break-word; }
.sk-cta-box--stack { display: block; margin-top: 38px; }
.sk-cta-box--stack .sk-cta-box__body { font-size: 15.5px; color: var(--sk-muted); margin: 8px 0 18px; line-height: 1.55; text-wrap: pretty; }

/* ==========================================================================
   10. Prose (editor content)
   ========================================================================== */
.sk-prose { color: var(--sk-text); font-size: 17.5px; line-height: 1.72; overflow-wrap: break-word; }
.sk-prose > :first-child { margin-top: 0; }
.sk-prose > :last-child { margin-bottom: 0; }
.sk-prose p { margin: 0 0 24px; text-wrap: pretty; }
.sk-prose h2 { font-size: clamp(20px, 2.8vw, 26px); letter-spacing: -.025em; line-height: 1.25; margin: 40px 0 11px; }
.sk-prose h3 { font-size: clamp(18px, 2.3vw, 21px); letter-spacing: -.02em; line-height: 1.3; margin: 32px 0 10px; }
.sk-prose h4, .sk-prose h5, .sk-prose h6 { font-size: 17px; margin: 28px 0 8px; }
.sk-prose a { color: var(--sk-ink); text-decoration: underline; text-decoration-color: var(--sk-line-strong); text-underline-offset: 3px; }
.sk-prose a:hover { text-decoration-color: var(--sk-ink); }
.sk-prose ul, .sk-prose ol { margin: 0 0 24px; padding-left: 1.3em; }
.sk-prose li { margin-bottom: 6px; }
.sk-prose li::marker { color: var(--sk-kicker); }
.sk-prose blockquote, .sk-prose .wp-block-quote {
	margin: 32px 0; padding: 4px 0 4px 22px; border-left: 2px solid var(--sk-ink);
	font-family: var(--sk-font-head); font-size: 21px; line-height: 1.45; letter-spacing: -.015em; color: var(--sk-ink);
}
.sk-prose blockquote cite { display: block; margin-top: 10px; font-family: var(--sk-font-mono); font-size: 12px; font-style: normal; color: var(--sk-kicker); letter-spacing: .05em; }
.sk-prose code, .sk-prose kbd { font-family: var(--sk-font-mono); font-size: .86em; background: var(--sk-line-soft); padding: 2px 6px; border-radius: 5px; }
.sk-prose pre { font-family: var(--sk-font-mono); font-size: 14px; line-height: 1.6; background: var(--sk-dark-bg); color: var(--sk-dark-text); padding: 20px 22px; border-radius: calc(12px * var(--sk-r)); overflow-x: auto; margin: 0 0 24px; }
.sk-prose pre code { background: none; padding: 0; color: inherit; font-size: inherit; }
.sk-prose hr, .sk-prose .wp-block-separator { border: 0; height: 1px; background: var(--sk-line); margin: 40px 0; }
.sk-prose img { border-radius: calc(12px * var(--sk-r)); }
.sk-prose figure { margin: 32px 0; }
.sk-prose figcaption, .sk-prose .wp-caption-text { font-size: 13.5px; color: var(--sk-subtle); margin-top: 10px; text-align: center; }
.sk-prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 0 0 24px; display: block; overflow-x: auto; }
.sk-prose th, .sk-prose td { border-bottom: 1px solid var(--sk-line); padding: 10px 12px; text-align: left; }
.sk-prose th { font-family: var(--sk-font-mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--sk-kicker); font-weight: 500; }
.sk-prose .wp-block-button__link { background: var(--sk-ink); color: var(--sk-on-ink); border-radius: 999px; padding: 12px 22px; font-size: 15px; text-decoration: none; }
.sk-prose .is-style-outline .wp-block-button__link { background: transparent; color: var(--sk-ink); border: 1px solid var(--sk-line-strong); }
.sk-prose .alignwide { margin-inline: calc(-1 * clamp(0px, 6vw, 80px)); max-width: none; }
.sk-prose .alignfull { margin-inline: calc(50% - 50vw); max-width: 100vw; width: 100vw; }
.sk-prose--case p { font-size: 17px; line-height: 1.68; margin-bottom: 32px; }
.sk-prose--case h2 { font-size: clamp(21px, 3vw, 28px); margin: 0 0 11px; }
.sk-prose--about p { font-size: 17px; line-height: 1.65; color: var(--sk-muted); margin: 0 0 16px; }
.sk-prose--about p:first-child { font-size: 18px; color: var(--sk-text); }
.sk-prose--page { max-width: 72ch; margin-top: 32px; }

.alignleft { float: left; margin: 6px 24px 16px 0; }
.alignright { float: right; margin: 6px 0 16px 24px; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
@media (max-width: 600px) { .alignleft, .alignright { float: none; margin: 16px 0; } }
.sticky, .bypostauthor, .gallery-caption { }

.sk-post__meta { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); margin-top: 24px; }
.sk-post__title { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(28px, 5vw, 46px); letter-spacing: -.035em; line-height: 1.1; margin: 14px 0 0; text-wrap: balance; }
.sk-post__excerpt { font-size: 19.5px; line-height: 1.6; color: var(--sk-muted); margin: 20px 0 28px; text-wrap: pretty; }
.sk-post__divider { height: 1px; background: var(--sk-line); margin-bottom: 28px; }
.sk-post__image { margin: 0 0 28px; border-radius: calc(14px * var(--sk-r)); overflow: hidden; }
.sk-post__image img { display: block; width: 100%; height: auto; }
.sk-post__tags { margin-top: 32px; }
.sk-post-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr)); gap: 12px; margin-top: 32px; }
.sk-post-nav a { display: block; border: 1px solid var(--sk-line); background: var(--sk-surface); border-radius: calc(14px * var(--sk-r)); padding: 16px 18px; }
.sk-post-nav a:hover { border-color: var(--sk-ink); color: var(--sk-ink); }
.sk-post-nav__label { display: block; font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); }
.sk-post-nav__title { display: block; font-family: var(--sk-font-head); font-weight: 600; font-size: 16.5px; margin-top: 6px; letter-spacing: -.015em; line-height: 1.3; }
.sk-post-nav .is-next { text-align: right; }

/* ==========================================================================
   11. About
   ========================================================================== */
.sk-about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); gap: clamp(26px, 5vw, 54px); margin-top: 32px; }
.sk-roles { margin-top: 30px; border-top: 1px solid var(--sk-line); padding-top: 20px; }
.sk-roles .sk-kicker { margin-bottom: 14px; }
.sk-role { display: grid; grid-template-columns: 108px minmax(0, 1fr); gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--sk-line-soft); }
.sk-role__period { font-family: var(--sk-font-mono); font-size: 13px; color: var(--sk-kicker); }
.sk-role__title { font-size: 15.5px; font-weight: 500; }
.sk-role__company { font-size: 14px; color: var(--sk-subtle); margin-top: 2px; }
@media (max-width: 380px) { .sk-role { grid-template-columns: minmax(0, 1fr); gap: 4px; } }
.sk-about-aside { align-self: start; display: grid; gap: 16px; }
.sk-card { border: 1px solid var(--sk-line); background: var(--sk-surface); border-radius: calc(18px * var(--sk-r)); padding: 22px; }
.sk-card__photo { border-radius: calc(18px * var(--sk-r)); overflow: hidden; }
.sk-card__photo img { display: block; width: 100%; height: auto; }
.sk-stack-group { margin-top: 15px; }
.sk-stack-group__label { font-size: 13px; color: var(--sk-subtle); margin-bottom: 8px; }
.sk-stack-group .sk-tags { gap: 6px; }
.sk-links { display: grid; gap: 10px; margin-top: 13px; font-size: 15px; }
.sk-links a { border-bottom: 1px solid var(--sk-line); padding-bottom: 8px; }
.sk-links a:last-child { border-bottom: 0; padding-bottom: 0; }
.sk-links a:hover { color: var(--sk-ink); border-color: var(--sk-ink); }

/* ==========================================================================
   12. Contact
   ========================================================================== */
.sk-contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr)); gap: clamp(22px, 4vw, 46px); margin-top: 38px; }
.sk-form { display: grid; gap: 15px; align-content: start; }
.sk-field { display: grid; gap: 7px; margin: 0; }
.sk-field__label { font-size: 13.5px; color: var(--sk-muted); }
.sk-field__label .sk-req { color: var(--sk-kicker); }
.sk-input {
	width: 100%;
	border: 1px solid var(--sk-line-strong);
	background: var(--sk-surface);
	border-radius: calc(10px * var(--sk-r));
	padding: 13px 14px;
	font-size: 16px;
	line-height: 1.4;
	color: var(--sk-ink);
	-webkit-appearance: none;
	appearance: none;
	transition: border-color .15s ease, box-shadow .15s ease;
}
@media (min-width: 768px) { .sk-input { font-size: 15.5px; } }
.sk-input::placeholder { color: var(--sk-faint); }
.sk-input:focus { outline: none; border-color: var(--sk-ink); box-shadow: 0 0 0 3px rgba(10, 10, 11, .08); }
select.sk-input {
	padding-right: 40px;
	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.5l5 5 5-5' fill='none' stroke='%23808080' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
}
textarea.sk-input { resize: vertical; min-height: 130px; }
.sk-input[aria-invalid="true"] { border-color: var(--sk-error); }
.sk-field__error { font-size: 13px; color: var(--sk-error); }
.sk-check { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 10px; align-items: start; font-size: 14px; color: var(--sk-muted); line-height: 1.5; }
.sk-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--sk-ink); }
.sk-check a { text-decoration: underline; text-underline-offset: 2px; }
.sk-form__submit { justify-self: start; border: 0; }
@media (max-width: 480px) { .sk-form__submit { justify-self: stretch; } }
.sk-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.sk-notice { border: 1px solid var(--sk-ink); border-radius: calc(10px * var(--sk-r)); padding: 14px 16px; font-size: 15px; line-height: 1.5; background: var(--sk-surface); }
.sk-notice--error { border-color: var(--sk-error); color: var(--sk-error); }
.sk-notice[hidden] { display: none; }

.sk-contact-aside { display: grid; gap: 14px; align-content: start; }
.sk-wa-card { display: block; background: var(--sk-dark-bg); color: var(--sk-dark-text); border-radius: calc(18px * var(--sk-r)); padding: 22px; }
.sk-wa-card:hover { background: var(--sk-ink-hover); color: var(--sk-dark-text); }
.sk-wa-card__title { font-family: var(--sk-font-head); font-weight: 600; font-size: 22px; letter-spacing: -.02em; margin-top: 10px; display: flex; align-items: center; gap: 10px; }
.sk-wa-card__title svg { width: 22px; height: 22px; color: currentColor; }
.sk-wa-card__num { font-family: var(--sk-font-mono); font-size: 14px; color: var(--sk-dark-muted); margin-top: 6px; }
.sk-mail-card { display: block; border: 1px solid var(--sk-line); background: var(--sk-surface); border-radius: calc(18px * var(--sk-r)); padding: 22px; }
.sk-mail-card:hover { border-color: var(--sk-ink); color: var(--sk-ink); }
.sk-mail-card__value { font-family: var(--sk-font-head); font-weight: 600; font-size: 18px; letter-spacing: -.02em; margin-top: 10px; word-break: break-all; }
.sk-info-card__body { font-size: 15px; line-height: 1.6; color: var(--sk-muted); margin: 11px 0 0; }

/* ==========================================================================
   13. Footer
   ========================================================================== */
.sk-footer { border-top: 1px solid var(--sk-line); background: var(--sk-surface); }
.sk-footer__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
	gap: 30px;
	padding-block: clamp(34px, 5vw, 54px) 26px;
}
.sk-footer__blurb { font-size: 14.5px; color: var(--sk-subtle); line-height: 1.6; margin: 13px 0 0; max-width: 34ch; }
.sk-footer__heading { font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); margin: 0 0 12px; font-weight: 400; }
.sk-footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 14.5px; }
.sk-footer-menu a { color: var(--sk-muted); }
.sk-footer-menu a:hover { color: var(--sk-ink); }
.sk-footer-menu .sub-menu { list-style: none; padding: 6px 0 0 12px; margin: 0; display: grid; gap: 6px; }
.sk-footer__bottom {
	border-top: 1px solid var(--sk-line-soft);
	padding-block: 16px 30px;
	display: flex;
	justify-content: space-between;
	gap: 8px 14px;
	flex-wrap: wrap;
	font-family: var(--sk-font-mono);
	font-size: 11.5px;
	color: var(--sk-kicker);
}
@media (max-width: 560px) {
	.sk-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 18px; }
	.sk-footer__brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   14. WhatsApp floating button
   ========================================================================== */
.sk-wa-float {
	position: fixed;
	right: calc(18px + env(safe-area-inset-right, 0px));
	bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	z-index: 70;
	display: flex;
	align-items: center;
	gap: 10px;
}
.sk-wa-float--left { right: auto; left: calc(18px + env(safe-area-inset-left, 0px)); flex-direction: row-reverse; }
.sk-wa-float__btn {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--sk-wa);
	color: var(--sk-on-wa, #fff);
	display: grid;
	place-items: center;
	box-shadow: 0 10px 28px rgba(10, 10, 11, .18);
	transition: transform .18s ease, box-shadow .18s ease;
}
.sk-wa-float__btn:hover { color: var(--sk-on-wa, #fff); transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 34px rgba(10, 10, 11, .22); }
.sk-wa-float__btn svg { width: 28px; height: 28px; }
.sk-wa-float__label {
	background: var(--sk-ink);
	color: var(--sk-on-ink);
	padding: 8px 13px;
	border-radius: 999px;
	font-size: 13.5px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(6px);
	transition: opacity .18s ease, transform .18s ease;
	pointer-events: none;
}
.sk-wa-float--left .sk-wa-float__label { transform: translateX(-6px); }
.sk-wa-float:hover .sk-wa-float__label,
.sk-wa-float:focus-within .sk-wa-float__label { opacity: 1; transform: none; }
@media (max-width: 767px) {
	.sk-wa-float__label { display: none; }
	.sk-wa-float__btn { width: 52px; height: 52px; }
	.sk-wa-float--hide-mobile { display: none; }
}
@media (min-width: 768px) { .sk-wa-float--hide-desktop { display: none; } }
@media print { .sk-wa-float, .sk-header, .sk-footer { display: none; } }

/* ==========================================================================
   15. Archives, search, 404, pagination, comments
   ========================================================================== */
.sk-pagination { margin-top: 36px; }
.sk-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.sk-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 14px;
	border: 1px solid var(--sk-line); border-radius: 999px; font-family: var(--sk-font-mono); font-size: 13px; color: var(--sk-muted); background: var(--sk-surface);
}
.sk-pagination a.page-numbers:hover { border-color: var(--sk-ink); color: var(--sk-ink); }
.sk-pagination .page-numbers.current { background: var(--sk-ink); border-color: var(--sk-ink); color: var(--sk-on-ink); }
.sk-pagination .page-numbers.dots { border: 0; background: none; }

.sk-search { display: flex; gap: 8px; margin-top: 26px; max-width: 520px; }
.sk-search .sk-input { flex: 1; min-width: 0; }
.sk-search .sk-btn { flex-shrink: 0; }
.sk-empty { margin-top: 32px; color: var(--sk-muted); }

.sk-comments { margin-top: 48px; border-top: 1px solid var(--sk-line); padding-top: 32px; }
.sk-comments__title { font-size: 22px; letter-spacing: -.02em; margin: 0 0 20px; }
.sk-comments ol { list-style: none; margin: 0; padding: 0; }
.sk-comments ol.children { padding-left: clamp(14px, 4vw, 32px); }
.sk-comments .comment-body { border-bottom: 1px solid var(--sk-line-soft); padding: 18px 0; }
.sk-comments .comment-meta { font-size: 13.5px; color: var(--sk-subtle); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.sk-comments .comment-meta img { border-radius: 50%; }
.sk-comments .comment-author .fn { font-style: normal; font-weight: 600; color: var(--sk-ink); }
.sk-comments .says { display: none; }
.sk-comments .comment-content { font-size: 16px; line-height: 1.65; color: var(--sk-text); }
.sk-comments .reply a { font-family: var(--sk-font-mono); font-size: 12px; color: var(--sk-subtle); }
.sk-comments .comment-form { display: grid; gap: 14px; margin-top: 24px; }
.sk-comments .comment-form p { margin: 0; display: grid; gap: 6px; }
.sk-comments .comment-form label { font-size: 13.5px; color: var(--sk-muted); }
.sk-comments .comment-form input[type="text"],
.sk-comments .comment-form input[type="email"],
.sk-comments .comment-form input[type="url"],
.sk-comments .comment-form textarea {
	width: 100%; border: 1px solid var(--sk-line-strong); background: var(--sk-surface); border-radius: calc(10px * var(--sk-r)); padding: 12px 14px; font-size: 16px; color: var(--sk-ink);
}
.sk-comments .comment-form .comment-form-cookies-consent { display: flex; gap: 8px; align-items: flex-start; }
.sk-comments .comment-form .submit { background: var(--sk-ink); color: var(--sk-on-ink); border: 0; border-radius: 999px; padding: 13px 24px; font-size: 15px; font-weight: 500; cursor: pointer; justify-self: start; }

/* ==========================================================================
   16. Products
   ========================================================================== */
.sk-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 20px; margin-top: 28px; }
.sk-product-card {
	border: 1px solid var(--sk-line);
	background: var(--sk-surface);
	color: var(--sk-ink);
	border-radius: calc(18px * var(--sk-r));
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	overflow: hidden;
}
.sk-product-card:hover { border-color: var(--sk-ink); color: var(--sk-ink); }
.sk-product-card__image { margin: -24px -22px 6px; aspect-ratio: 16 / 9; background: var(--sk-bg); overflow: hidden; display: block; }
.sk-product-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.sk-product-card:hover .sk-product-card__image img { transform: scale(1.03); }
.sk-product-card__top { display: flex; justify-content: space-between; align-items: center; gap: 8px 12px; flex-wrap: wrap; }
.sk-product-card__type { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--sk-subtle); }
.sk-product-card__price { font-family: var(--sk-font-mono); font-size: 12px; color: var(--sk-ink); border: 1px solid var(--sk-line-strong); border-radius: 999px; padding: 3px 10px; white-space: nowrap; }
.sk-product-card__name { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(21px, 2.6vw, 25px); letter-spacing: -.03em; line-height: 1.15; }
.sk-product-card__summary { font-size: 15px; line-height: 1.55; color: var(--sk-muted); text-wrap: pretty; }
.sk-product-card__cta { margin-top: auto; padding-top: 6px; font-size: 14.5px; font-weight: 500; }

.sk-filters { margin-top: 30px; }
.sk-filters + .sk-product-grid, .sk-filters + .sk-video-grid { margin-top: 22px; }
.sk-chip__count { font-family: var(--sk-font-mono); font-size: 11px; color: var(--sk-faint); margin-left: 2px; }
.sk-chip.is-current { background: var(--sk-ink); border-color: var(--sk-ink); color: var(--sk-on-ink); }
.sk-chip.is-current .sk-chip__count { color: inherit; opacity: .6; }

.sk-product-section { margin-top: clamp(32px, 5vw, 52px); }
.sk-product-section .sk-kicker { margin-bottom: 16px; }
.sk-bullets--grid { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 14px 28px; margin-top: 0; }
.sk-specs { margin: 0; display: grid; gap: 10px; }
.sk-specs div { display: grid; grid-template-columns: minmax(90px, 40%) minmax(0, 1fr); gap: 12px; font-size: 14.5px; }
.sk-specs dt { color: var(--sk-subtle); }
.sk-specs dd { margin: 0; color: var(--sk-ink); font-weight: 500; overflow-wrap: anywhere; }
.sk-changelog .sk-role { grid-template-columns: 150px minmax(0, 1fr); }
@media (max-width: 480px) { .sk-changelog .sk-role { grid-template-columns: minmax(0, 1fr); gap: 4px; } }
.sk-section--flush { padding-top: 0; }

/* ==========================================================================
   17. YouTube player & showcase
   ========================================================================== */
.sk-yt {
	position: relative;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: calc(14px * var(--sk-r));
	overflow: hidden;
	isolation: isolate;
}
.sk-yt--vertical { aspect-ratio: 9 / 16; max-width: 380px; margin-inline: auto; }
.sk-yt__link { position: absolute; inset: 0; display: block; color: #fff; }
.sk-yt__link:hover { color: #fff; }
.sk-yt__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.sk-yt__img--empty { display: grid; place-items: center; color: #fff; }
.sk-yt__img--empty .sk-mark { width: 16%; height: auto; }
.sk-yt__link::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .45)); }
.sk-yt__play {
	position: absolute; left: 50%; top: 50%; z-index: 1;
	width: 68px; height: 68px; margin: -34px 0 0 -34px;
	border-radius: 50%;
	background: #fff; color: #000;
	display: grid; place-items: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
	transition: transform .2s ease, background-color .2s ease, color .2s ease;
}
.sk-yt__play svg { width: 28px; height: 28px; margin-left: 3px; }
.sk-yt__link:hover .sk-yt__img, .sk-yt__link:focus-visible .sk-yt__img { transform: scale(1.03); }
.sk-yt__link:hover .sk-yt__play, .sk-yt__link:focus-visible .sk-yt__play { transform: scale(1.08); background: #000; color: #fff; }
.sk-yt__link:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
.sk-yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 480px) {
	.sk-yt__play { width: 56px; height: 56px; margin: -28px 0 0 -28px; }
	.sk-yt__play svg { width: 24px; height: 24px; }
}

.sk-yt-figure { margin: 32px 0; }
.sk-yt-figure--hero { margin-top: 28px; }
.sk-actions--tight { margin-top: 16px; }
.sk-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.sk-video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr)); gap: 28px 22px; margin-top: 28px; }
.sk-video-card { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.sk-video-card__body { display: grid; gap: 7px; }
.sk-video-card__meta { display: flex; justify-content: space-between; gap: 10px; font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--sk-subtle); }
.sk-video-card__time { color: var(--sk-faint); letter-spacing: 0; }
.sk-video-card__title { margin: 0; font-size: clamp(18px, 2.2vw, 21px); letter-spacing: -.02em; line-height: 1.25; }
.sk-video-card__title a { color: inherit; }
.sk-video-card__title a:hover { text-decoration: underline; text-underline-offset: 4px; }
.sk-video-card__summary { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--sk-muted); text-wrap: pretty; }
.sk-video-card__tools { margin: 0; font-family: var(--sk-font-mono); font-size: 12px; color: var(--sk-kicker); }

.sk-dark .sk-section-head .sk-dark__title { margin-top: 12px; }
.sk-dark .sk-link-line { color: var(--sk-dark-text); border-color: var(--sk-dark-line); }
.sk-dark .sk-link-line:hover { border-color: var(--sk-dark-text); }
.sk-dark .sk-video-card__meta, .sk-dark .sk-video-card__tools, .sk-dark .sk-video-card__summary { color: var(--sk-dark-muted); }
.sk-dark .sk-yt { box-shadow: 0 0 0 1px var(--sk-dark-line); }

.sk-page-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.sk-page-head-row > div { min-width: min(100%, 420px); flex: 1; }
.sk-subscribe { flex-shrink: 0; }
@media (max-width: 480px) { .sk-subscribe { width: 100%; } }

/* ==========================================================================
   18. Footer layouts, widgets, legal links
   ========================================================================== */
.sk-footer--centered .sk-footer__grid { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 22px; }
.sk-footer--centered .sk-footer__brand { display: flex; flex-direction: column; align-items: center; }
.sk-footer--centered .sk-footer__blurb { margin-inline: auto; }
.sk-footer--centered .sk-socials { justify-content: center; }
.sk-footer--centered .sk-footer-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; }
.sk-footer--centered .sk-footer__bottom { justify-content: center; text-align: center; }
.sk-footer--minimal .sk-footer__bottom { border-top: 0; padding-top: 22px; align-items: center; }
.sk-footer--minimal .sk-socials--footer { margin-top: 0; }
.sk-footer__legal { display: contents; }
.sk-footer-legal { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.sk-footer-legal a { color: var(--sk-kicker); }
.sk-footer-legal a:hover { color: var(--sk-ink); }
.sk-footer__widgets { font-size: 14.5px; color: var(--sk-muted); line-height: 1.6; }
.sk-widget + .sk-widget { margin-top: 20px; }
.sk-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.sk-widget a { color: var(--sk-muted); }
.sk-widget a:hover { color: var(--sk-ink); }

/* ==========================================================================
   19. Page builders (Elementor & the Full width template)
   ========================================================================== */
.sk-builder { width: 100%; }
.sk-builder > :not(.elementor):not(.alignfull) { max-width: var(--sk-container); margin-inline: auto; padding-inline: var(--sk-gutter); }
.sk-builder .elementor-section.elementor-section-boxed > .elementor-container { max-width: calc(var(--sk-container) - 2 * var(--sk-gutter)); }
.shk-builder-page .sk-main { overflow-x: clip; }
.sk-nav--inline { display: flex; }
.elementor-widget-shk-logo .sk-brand { display: inline-flex; }
@media (max-width: 920px) {
	.sk-nav.sk-nav--inline { display: flex; position: static; flex-direction: row; padding: 0; background: none; border: 0; box-shadow: none; max-height: none; overflow: visible; font-size: 15px; }
	.sk-nav--inline .sk-menu { flex-direction: row; flex-wrap: wrap; gap: 6px 18px; }
	.sk-nav--inline .sk-menu a { border: 0; padding: 4px 0; }
}

/* ==========================================================================
   20. Dark scheme refinements
   ========================================================================== */
.shk-scheme-dark .sk-input:focus { box-shadow: 0 0 0 3px rgba(255, 255, 255, .12); }
.shk-scheme-dark .sk-menu .sub-menu { box-shadow: 0 14px 40px rgba(0, 0, 0, .6); }
.shk-scheme-dark .sk-yt { box-shadow: 0 0 0 1px var(--sk-line); }

@media print { .sk-topbar, .sk-yt__play { display: none; } }

/* ==========================================================================
   21. Contact channels, contact menu, phone bar
   ========================================================================== */
.sk-channel {
	display: flex; align-items: center; gap: 12px;
	padding: 11px 12px; border-radius: calc(12px * var(--sk-r));
	color: var(--sk-ink); text-align: left;
}
.sk-channel:hover { background: var(--sk-bg); color: var(--sk-ink); }
.sk-channel__icon {
	width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%;
	display: grid; place-items: center; background: var(--sk-ink); color: var(--sk-on-ink);
}
.sk-channel__icon svg { width: 18px; height: 18px; }
.sk-channel__text { display: grid; min-width: 0; line-height: 1.3; }
.sk-channel__label { font-weight: 500; font-size: 15px; }
.sk-channel__value { font-size: 13px; color: var(--sk-subtle); overflow-wrap: anywhere; }
.sk-channels { display: grid; gap: 2px; padding: 10px; }

.sk-cfloat {
	position: fixed; z-index: 70;
	right: calc(18px + env(safe-area-inset-right, 0px));
	bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.sk-cfloat--left { right: auto; left: calc(18px + env(safe-area-inset-left, 0px)); align-items: flex-start; }
.sk-cfloat__btn {
	width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
	background: var(--sk-ink); color: var(--sk-on-ink);
	display: grid; place-items: center;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
	transition: transform .18s ease;
}
.sk-cfloat__btn:hover { transform: translateY(-2px) scale(1.04); }
.sk-cfloat__btn svg { width: 26px; height: 26px; }
.sk-cfloat__close { display: none; }
.sk-cfloat.is-open .sk-cfloat__open { display: none; }
.sk-cfloat.is-open .sk-cfloat__close { display: grid; }
.sk-cfloat__panel {
	width: min(340px, calc(100vw - 36px));
	max-height: calc(100vh - 120px); max-height: calc(100dvh - 120px); overflow-y: auto;
	background: var(--sk-surface); color: var(--sk-ink);
	border: 1px solid var(--sk-line); border-radius: calc(18px * var(--sk-r));
	box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
	padding: 8px;
	animation: skPop .18s ease;
}
.sk-cfloat__panel[hidden] { display: none; }
@keyframes skPop { from { opacity: 0; transform: translateY(8px) scale(.98); } to { opacity: 1; transform: none; } }
.sk-cfloat__head { display: flex; gap: 12px; align-items: center; padding: 12px 12px 14px; border-bottom: 1px solid var(--sk-line-soft); margin-bottom: 6px; }
.sk-cfloat__mark { width: 40px; height: 40px; border-radius: calc(11px * var(--sk-r)); background: var(--sk-ink); color: var(--sk-on-ink); padding: 8px; flex-shrink: 0; }
.sk-cfloat__title { font-family: var(--sk-font-head); font-weight: 600; font-size: 16.5px; letter-spacing: -.01em; line-height: 1.25; }
.sk-cfloat__hours { font-size: 12.5px; color: var(--sk-subtle); margin-top: 2px; }
.sk-cfloat__list { display: grid; gap: 2px; }
@media (max-width: 767px) { .sk-cfloat--hide-mobile { display: none; } }
@media (min-width: 768px) { .sk-cfloat--hide-desktop { display: none; } }

/* Contact bar on phones */
.sk-mbar { display: none; }
@media (max-width: 767px) {
	.sk-mbar {
		position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
		display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
		background: var(--sk-surface); border-top: 1px solid var(--sk-line);
		padding: 6px 6px calc(6px + env(safe-area-inset-bottom, 0px));
		box-shadow: 0 -8px 24px rgba(0, 0, 0, .06);
	}
	.sk-mbar__item { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 6px 4px; border-radius: 10px; color: var(--sk-ink); font-size: 11.5px; font-weight: 500; }
	.sk-mbar__item:hover { color: var(--sk-ink); background: var(--sk-bg); }
	.sk-mbar__item__icon svg { width: 22px; height: 22px; display: block; }
	.sk-mbar__item__text { display: block; line-height: 1.2; }
	.sk-mbar__item--quote { background: var(--sk-ink); color: var(--sk-on-ink); }
	.sk-mbar__item--quote:hover { background: var(--sk-ink-hover); color: var(--sk-on-ink); }
	.shk-has-mbar { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
	.shk-has-mbar .sk-cfloat, .shk-has-mbar .sk-wa-float, .shk-has-mbar .sk-chat--launcher .sk-chat__launch { bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
}

/* Footer and top bar contacts */
.sk-footer-contacts { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; font-size: 14.5px; }
.sk-footer-contacts a { display: inline-flex; align-items: center; gap: 9px; color: var(--sk-muted); overflow-wrap: anywhere; }
.sk-footer-contacts a:hover { color: var(--sk-ink); }
.sk-footer-contacts svg { width: 16px; height: 16px; flex-shrink: 0; }
.sk-footer-contacts__hours { font-size: 13px; color: var(--sk-kicker); }
.sk-footer--centered .sk-footer-contacts { justify-items: center; }
.sk-topbar__inner--contacts { justify-content: space-between; }
.sk-topbar__msg { display: inline-flex; flex-wrap: wrap; gap: 4px 12px; }
.sk-topbar__contacts { display: inline-flex; flex-wrap: wrap; gap: 4px 18px; margin-left: auto; }
.sk-topbar a.sk-topbar__contact { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; font-weight: 400; }
.sk-topbar__contact svg { width: 14px; height: 14px; }
@media (max-width: 600px) { .sk-topbar__inner--contacts { justify-content: center; } .sk-topbar__contacts { margin-left: 0; } }

/* Contact page extras */
.sk-hours { display: grid; gap: 10px; }
.sk-hours .sk-info-card__body { margin: 0; }
.sk-hours__vcard { justify-self: start; }

/* Form: email + phone side by side, hint */
.sk-form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); gap: 15px; }
.sk-form__hint { margin: -6px 0 0; font-size: 13px; color: var(--sk-subtle); }

/* Quick quote on services and products */
.sk-quote {
	margin-top: clamp(40px, 6vw, 64px);
	border: 1px solid var(--sk-line); background: var(--sk-surface);
	border-radius: calc(20px * var(--sk-r));
	padding: clamp(22px, 4vw, 40px);
	display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(22px, 4vw, 48px);
}
.sk-quote__title { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(22px, 3vw, 30px); letter-spacing: -.03em; line-height: 1.15; margin: 0; }
.sk-quote__text { font-size: 15.5px; color: var(--sk-muted); line-height: 1.6; margin: 12px 0 18px; }
.sk-quote__channels { display: grid; gap: 2px; margin-left: -12px; }
.sk-form--compact textarea.sk-input { min-height: 100px; }

/* ==========================================================================
   22. Website AI assistant
   ========================================================================== */
.sk-chat__launch {
	position: fixed; z-index: 70;
	right: calc(18px + env(safe-area-inset-right, 0px)); bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
	background: var(--sk-ink); color: var(--sk-on-ink); display: grid; place-items: center;
	box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}
.sk-chat__launch svg { width: 26px; height: 26px; }
.sk-chat--left .sk-chat__launch { right: auto; left: calc(18px + env(safe-area-inset-left, 0px)); }
.sk-chat.is-open .sk-chat__launch { display: none; }
.sk-chat__panel {
	position: fixed; z-index: 80;
	right: calc(18px + env(safe-area-inset-right, 0px)); bottom: calc(18px + env(safe-area-inset-bottom, 0px));
	width: min(390px, calc(100vw - 24px)); height: min(600px, calc(100vh - 36px)); height: min(600px, calc(100dvh - 36px));
	display: flex; flex-direction: column;
	background: var(--sk-surface); color: var(--sk-ink);
	border: 1px solid var(--sk-line); border-radius: calc(20px * var(--sk-r));
	box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
	overflow: hidden;
	animation: skPop .18s ease;
}
.sk-chat__panel[hidden] { display: none; }
.sk-chat--left .sk-chat__panel { right: auto; left: calc(18px + env(safe-area-inset-left, 0px)); }
@media (max-width: 520px) {
	.sk-chat__panel { right: 0; left: 0; bottom: 0; width: 100%; height: 100%; height: 100dvh; border-radius: 0; border: 0; }
	.sk-chat--left .sk-chat__panel { left: 0; }
}
.sk-chat__head { display: flex; align-items: center; gap: 12px; padding: 14px 14px 14px 16px; background: var(--sk-ink); color: var(--sk-on-ink); }
.sk-chat__head .sk-cfloat__mark { background: var(--sk-on-ink); color: var(--sk-ink); width: 36px; height: 36px; padding: 7px; }
.sk-chat__who { flex: 1; min-width: 0; }
.sk-chat__name { font-family: var(--sk-font-head); font-weight: 600; font-size: 15.5px; }
.sk-chat__status { font-size: 12px; opacity: .7; }
.sk-chat__close { background: none; border: 0; color: inherit; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.sk-chat__close:hover { background: rgba(255, 255, 255, .12); }
.sk-chat__close svg { width: 20px; height: 20px; }
.sk-chat__log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--sk-bg); overscroll-behavior: contain; }
.sk-chat__msg { max-width: 85%; padding: 10px 13px; border-radius: 16px; font-size: 14.5px; line-height: 1.5; white-space: pre-wrap; overflow-wrap: anywhere; }
.sk-chat__msg--assistant { align-self: flex-start; background: var(--sk-surface); border: 1px solid var(--sk-line); border-bottom-left-radius: 4px; }
.sk-chat__msg--user { align-self: flex-end; background: var(--sk-ink); color: var(--sk-on-ink); border-bottom-right-radius: 4px; }
.sk-chat__msg a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.sk-chat__msg.is-typing { color: var(--sk-subtle); animation: skPulse 1.2s ease-in-out infinite; }
.sk-chat__form { display: flex; gap: 8px; align-items: flex-end; padding: 10px; border-top: 1px solid var(--sk-line); background: var(--sk-surface); }
.sk-chat__input { flex: 1; resize: none; max-height: 120px; border: 1px solid var(--sk-line-strong); border-radius: 14px; padding: 10px 12px; font-size: 16px; line-height: 1.4; background: var(--sk-surface); color: var(--sk-ink); }
.sk-chat__input:focus { outline: none; border-color: var(--sk-ink); }
.sk-chat__send { width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--sk-ink); color: var(--sk-on-ink); display: grid; place-items: center; cursor: pointer; flex-shrink: 0; }
.sk-chat__send svg { width: 18px; height: 18px; }
.sk-chat__note { margin: 0; padding: 0 12px 10px; font-size: 11px; color: var(--sk-kicker); background: var(--sk-surface); text-align: center; }
@media print { .sk-cfloat, .sk-mbar, .sk-chat { display: none; } }
.sk-chat--stacked .sk-chat__launch { bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
@media (max-width: 767px) { .shk-has-mbar .sk-chat--stacked .sk-chat__launch { bottom: calc(148px + env(safe-area-inset-bottom, 0px)); } }

/* ==========================================================================
   23. Blog
   ========================================================================== */
.sk-blog-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 20px; margin-top: 30px; }
.sk-blog-toolbar .sk-chips { flex: 1 1 auto; }
.sk-blog-search { flex: 0 1 280px; min-width: min(100%, 220px); }
.sk-blog-search .sk-input { border-radius: 999px; padding: 10px 16px; }

.sk-post-grid { display: grid; gap: 28px 22px; margin-top: 28px; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); }
@media (min-width: 1000px) {
	.sk-post-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.sk-post-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.sk-post-card { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.sk-post-card__image {
	display: block; aspect-ratio: 16 / 9; overflow: hidden;
	border-radius: calc(14px * var(--sk-r)); background: var(--sk-ink); border: 1px solid var(--sk-line);
}
.sk-post-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.sk-post-card:hover .sk-post-card__image img { transform: scale(1.03); }
.sk-post-card__placeholder {
	height: 100%; display: grid; place-items: center; color: var(--sk-on-ink);
	background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .08), transparent 60%), var(--sk-ink);
}
.sk-post-card__placeholder .sk-mark { width: 34px; height: 40px; opacity: .9; }
.sk-post-card--featured .sk-post-card__placeholder .sk-mark { width: 48px; height: 56px; }
.sk-post-card__body { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.sk-post-card__tag { font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); }
.sk-post-card__title { margin: 0; font-size: clamp(18.5px, 2.2vw, 21px); line-height: 1.25; letter-spacing: -.02em; }
.sk-post-card__title a { color: inherit; }
.sk-post-card__title a::after { content: ""; position: absolute; inset: 0; }
.sk-post-card { position: relative; }
.sk-post-card__title a:hover { text-decoration: underline; text-underline-offset: 4px; }
.sk-post-card__excerpt { margin: 0; font-size: 15px; line-height: 1.55; color: var(--sk-muted); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sk-post-card__meta { margin-top: auto; padding-top: 4px; display: flex; justify-content: space-between; gap: 10px; font-family: var(--sk-font-mono); font-size: 12px; color: var(--sk-faint); }
.sk-post-card__more { color: var(--sk-ink); transition: transform .15s ease; }
.sk-post-card:hover .sk-post-card__more { transform: translateX(3px); }

.sk-post-card--featured { margin-top: 30px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr)); gap: 18px clamp(20px, 4vw, 44px); align-items: center; }
.sk-post-card--featured .sk-post-card__title { font-size: clamp(24px, 3.4vw, 36px); letter-spacing: -.03em; line-height: 1.12; }
.sk-post-card--featured .sk-post-card__excerpt { font-size: 16.5px; -webkit-line-clamp: 4; }
.sk-post-card--featured .sk-post-card__meta { margin-top: 6px; }
.sk-post-card--featured + .sk-post-grid { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--sk-line); }

/* Breadcrumbs */
.sk-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 0; font-family: var(--sk-font-mono); font-size: 12px; color: var(--sk-subtle); }
.sk-crumbs li { display: inline-flex; align-items: center; min-width: 0; }
.sk-crumbs li + li::before { content: "›"; margin: 0 8px; color: var(--sk-faint); }
.sk-crumbs a { color: var(--sk-subtle); }
.sk-crumbs a:hover { color: var(--sk-ink); }
.sk-crumbs li[aria-current] { color: var(--sk-kicker); max-width: 40ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; }

/* Single post */
.sk-article-post { max-width: 1120px; }
.sk-post__header { max-width: 760px; margin-inline: auto; }
.sk-post__header .sk-post__meta { display: inline-block; }
a.sk-post__meta:hover { color: var(--sk-ink); }
.sk-post__byline { display: flex; align-items: center; gap: 12px; margin: 4px 0 30px; }
.sk-post__avatar { border-radius: 50%; display: block; }
.sk-post__author { font-weight: 600; font-size: 15px; }
.sk-post__dates { font-size: 13.5px; color: var(--sk-subtle); }
.sk-article-post .sk-post__image { max-width: 1000px; margin: 0 auto 36px; }
.sk-post__image figcaption { font-size: 13px; color: var(--sk-subtle); text-align: center; padding-top: 10px; }
.sk-post__layout { max-width: 760px; margin-inline: auto; }
.sk-post__main { min-width: 0; }
@media (min-width: 1100px) {
	.sk-post__layout.has-toc { max-width: none; display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 56px; justify-content: center; margin-left: -80px; }
	.sk-post__aside { position: sticky; top: 96px; align-self: start; max-height: calc(100vh - 120px); overflow-y: auto; }
}
.sk-toc { border: 1px solid var(--sk-line); border-radius: calc(14px * var(--sk-r)); background: var(--sk-surface); padding: 14px 16px; margin-bottom: 28px; }
.sk-toc__title { cursor: pointer; font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); list-style-position: inside; }
.sk-toc ol { list-style: none; margin: 10px 0 0; padding: 0; display: grid; gap: 7px; font-size: 14px; line-height: 1.4; }
.sk-toc a { color: var(--sk-muted); }
.sk-toc a:hover { color: var(--sk-ink); }
.sk-toc__l3 { padding-left: 14px; font-size: 13.5px; }
@media (min-width: 1100px) { .sk-post__aside .sk-toc { border: 0; background: none; padding: 0; } }
.sk-prose h2[id], .sk-prose h3[id] { scroll-margin-top: 90px; }

.sk-share { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--sk-line); }
.sk-share__label { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); }
.sk-share__copy { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid var(--sk-line); border-radius: 50%; background: var(--sk-surface); color: var(--sk-muted); cursor: pointer; }
.sk-share__copy:hover, .sk-share__copy.is-copied { background: var(--sk-ink); color: var(--sk-on-ink); border-color: var(--sk-ink); }
.sk-share__copy svg { width: 16px; height: 16px; }

.sk-author { display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 18px; align-items: start; margin-top: 32px; padding: 22px; border: 1px solid var(--sk-line); border-radius: calc(18px * var(--sk-r)); background: var(--sk-surface); }
.sk-author__avatar { border-radius: 50%; display: block; }
.sk-author__name { font-family: var(--sk-font-head); font-weight: 600; font-size: 19px; margin-top: 4px; }
.sk-author__bio { margin: 8px 0 0; font-size: 15px; line-height: 1.6; color: var(--sk-muted); }
.sk-author__links { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; margin-top: 14px; }
@media (max-width: 480px) { .sk-author { grid-template-columns: minmax(0, 1fr); } }

.sk-related { margin-top: clamp(48px, 8vw, 80px); padding-top: clamp(32px, 5vw, 48px); border-top: 1px solid var(--sk-line); }
.sk-related__title { margin: 0; }

/* ==========================================================================
   24. Offers, skills, partners, project logos
   ========================================================================== */
.sk-section-intro { font-size: 16.5px; line-height: 1.6; color: var(--sk-muted); max-width: 62ch; margin: 14px 0 0; text-wrap: pretty; }

.sk-offers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 18px; margin-top: 32px; align-items: stretch; }
.sk-offer {
	position: relative; display: flex; flex-direction: column; gap: 10px;
	border: 1px solid var(--sk-line); background: var(--sk-surface); color: var(--sk-ink);
	border-radius: calc(20px * var(--sk-r)); padding: 26px 22px 22px;
}
.sk-offer.is-highlight { background: var(--sk-ink); color: var(--sk-on-ink); border-color: var(--sk-ink); box-shadow: 0 20px 50px rgba(0, 0, 0, .18); }
.sk-offer__badge {
	position: absolute; top: -11px; left: 22px;
	font-family: var(--sk-font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
	background: var(--sk-ink); color: var(--sk-on-ink); border: 1px solid var(--sk-surface); border-radius: 999px; padding: 4px 10px;
}
.sk-offer.is-highlight .sk-offer__badge { background: var(--sk-on-ink); color: var(--sk-ink); }
.sk-offer__title { margin: 0; font-size: 19.5px; letter-spacing: -.02em; line-height: 1.25; }
.sk-offer__desc { margin: 0; font-size: 14.5px; line-height: 1.55; opacity: .75; }
.sk-offer__price { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(26px, 3vw, 32px); letter-spacing: -.03em; margin-top: 6px; }
.sk-offer__note { font-family: var(--sk-font-mono); font-size: 12px; opacity: .6; margin-top: -4px; }
.sk-offer__features { list-style: none; margin: 8px 0 0; padding: 14px 0 0; border-top: 1px solid var(--sk-line); display: grid; gap: 9px; font-size: 14.5px; line-height: 1.45; }
.sk-offer.is-highlight .sk-offer__features { border-color: rgba(255, 255, 255, .18); }
.shk-scheme-dark .sk-offer.is-highlight .sk-offer__features { border-color: rgba(0, 0, 0, .15); }
.sk-offer__features li { display: grid; grid-template-columns: 16px minmax(0, 1fr); gap: 10px; }
.sk-offer__features li::before { content: ""; width: 10px; height: 6px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(-45deg); margin-top: 5px; }
.sk-offer__cta { margin-top: auto; align-self: stretch; }
.sk-offer__features + .sk-offer__cta, .sk-offer__note + .sk-offer__cta { margin-top: 18px; }
.sk-offers__note { font-size: 13.5px; color: var(--sk-subtle); margin: 18px 0 0; max-width: 80ch; }
.sk-services-offers { margin-top: clamp(40px, 6vw, 64px); }

.sk-skills { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 14px; margin-top: 30px; }
.sk-skill-group { border: 1px solid var(--sk-line); background: var(--sk-surface); border-radius: calc(16px * var(--sk-r)); padding: 18px 18px 20px; }
.sk-skill-group__title { margin: 0 0 12px; font-size: 16px; letter-spacing: -.01em; }
.sk-skill-group .sk-tags { gap: 6px; }

.sk-partners-section { padding-block: clamp(40px, 6vw, 64px); }
.sk-partners { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(160px, 45%), 1fr)); gap: 14px; }
.sk-partner a, .sk-partner > .sk-partner__name, .sk-partner > img {
	display: flex; align-items: center; justify-content: center; height: 96px; padding: 16px 20px;
	border: 1px solid var(--sk-line); border-radius: calc(14px * var(--sk-r)); background: var(--sk-bg);
}
.sk-partner img { max-width: 100%; max-height: 60px; width: auto; height: auto; object-fit: contain; border-radius: 6px; }
.sk-partners.is-mono img { filter: grayscale(1); opacity: .75; transition: filter .2s ease, opacity .2s ease; }
.sk-partners.is-mono a:hover img { filter: none; opacity: 1; }
.sk-partner a:hover { border-color: var(--sk-ink); }
.sk-partner__name { font-family: var(--sk-font-head); font-weight: 600; font-size: 17px; color: var(--sk-ink); }

.sk-case-card__logo { display: flex; align-items: center; height: 44px; }
.sk-case-card__logo img, .sk-case-block__logo img { max-height: 44px; width: auto; max-width: 180px; object-fit: contain; border-radius: 6px; display: block; }
.sk-case-block__logo { display: inline-flex; margin-bottom: 14px; }
.sk-article__logo { margin-top: 24px; }
.sk-article__logo img { max-height: 64px; width: auto; max-width: 240px; object-fit: contain; border-radius: 8px; display: block; }
.sk-offer__pricing { margin-top: 6px; }
.sk-offer__prefix { font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
.sk-offer__price { display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; margin-top: 4px; }
.sk-offer__old { font-size: .55em; font-weight: 500; opacity: .5; }
.sk-offer__period { font-family: var(--sk-font-body); font-size: 13px; font-weight: 400; letter-spacing: 0; opacity: .6; }
.sk-offer--talk { border-style: dashed; border-color: var(--sk-line-strong); background: transparent; justify-content: flex-start; }
.sk-offer__talk-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--sk-ink); color: var(--sk-on-ink); display: grid; place-items: center; }
.sk-offer__talk-icon svg { width: 22px; height: 22px; }
.sk-offer--talk .sk-offer__desc { opacity: 1; color: var(--sk-muted); }
.sk-offer__talk-actions { margin-top: auto; padding-top: 14px; display: grid; gap: 10px; }
.sk-offer--talk { grid-column: 1 / -1; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; grid-template-areas: "icon title actions" "icon desc actions"; align-items: center; gap: 4px 20px; padding: 24px 26px; }
.sk-offer--talk .sk-offer__talk-icon { grid-area: icon; }
.sk-offer--talk .sk-offer__title { grid-area: title; }
.sk-offer--talk .sk-offer__desc { grid-area: desc; max-width: 70ch; }
.sk-offer--talk .sk-offer__talk-actions { grid-area: actions; margin: 0; padding: 0; grid-auto-flow: column; }
@media (max-width: 820px) {
	.sk-offer--talk { grid-template-columns: minmax(0, 1fr); grid-template-areas: "icon" "title" "desc" "actions"; gap: 10px; }
	.sk-offer--talk .sk-offer__talk-actions { grid-auto-flow: row; padding-top: 6px; }
}
/* Offers: three per row on desktop so any number of offers lines up */
.sk-offers { grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 26px 18px; }
@media (min-width: 1000px) { .sk-offers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ==========================================================================
   25. Prices page, plan categories and calculator
   ========================================================================== */
.sk-section-head--offers { align-items: flex-end; }
.sk-offers__more { margin: 26px 0 0; text-align: center; }
.sk-offers--single { grid-template-columns: minmax(0, 1fr) !important; margin-top: clamp(40px, 6vw, 64px); }
.sk-offer__cat { font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .55; }
.sk-pricing-nav { margin-top: 30px; position: sticky; top: 72px; z-index: 5; background: color-mix(in srgb, var(--sk-bg) 92%, transparent); padding-block: 10px; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.shk-static-header .sk-pricing-nav { top: 0; }
@media (max-width: 700px) { .sk-pricing-nav { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(-1 * var(--sk-gutter)); padding-inline: var(--sk-gutter); scrollbar-width: none; } .sk-pricing-nav .sk-chip { white-space: nowrap; } }
.sk-chip--calc { background: var(--sk-ink); color: var(--sk-on-ink); border-color: var(--sk-ink); }
.sk-chip--calc:hover { color: var(--sk-on-ink); }
.sk-price-cat { padding-top: clamp(36px, 5vw, 56px); scroll-margin-top: 130px; }
.sk-price-cat + .sk-price-cat { margin-top: clamp(12px, 2vw, 20px); border-top: 1px solid var(--sk-line); }
.sk-price-cat__head .sk-h2 { margin-top: 0; }
.sk-price-cat .sk-offers { margin-top: 26px; }

.sk-calc { margin-top: clamp(48px, 7vw, 80px); scroll-margin-top: 130px; }
.sk-calc__grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: clamp(18px, 3vw, 32px); margin-top: 28px; align-items: start; }
@media (max-width: 900px) { .sk-calc__grid { grid-template-columns: minmax(0, 1fr); } }
.sk-calc__form { border: 1px solid var(--sk-line); background: var(--sk-surface); border-radius: calc(20px * var(--sk-r)); padding: clamp(20px, 3vw, 30px); display: grid; gap: 26px; }
.sk-calc__group { border: 0; margin: 0; padding: 0; min-width: 0; }
.sk-calc__label { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15.5px; margin-bottom: 12px; padding: 0; }
.sk-calc__label > span { width: 24px; height: 24px; border-radius: 50%; background: var(--sk-ink); color: var(--sk-on-ink); display: grid; place-items: center; font-family: var(--sk-font-mono); font-size: 12px; flex-shrink: 0; }
.sk-calc__value { margin-left: auto; font-family: var(--sk-font-mono); font-size: 14px; border: 1px solid var(--sk-line-strong); border-radius: 999px; padding: 2px 12px; }
.sk-calc__types { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr)); gap: 8px; }
.sk-calc__type { position: relative; cursor: pointer; }
.sk-calc__type input { position: absolute; opacity: 0; pointer-events: none; }
.sk-calc__type span { display: block; border: 1px solid var(--sk-line-strong); border-radius: 12px; padding: 11px 14px; font-size: 14.5px; transition: border-color .15s ease, background-color .15s ease, color .15s ease; }
.sk-calc__type:hover span { border-color: var(--sk-ink); }
.sk-calc__type input:checked + span { background: var(--sk-ink); color: var(--sk-on-ink); border-color: var(--sk-ink); }
.sk-calc__type input:focus-visible + span { outline: 2px solid var(--sk-ink); outline-offset: 2px; }
.sk-calc__range { width: 100%; accent-color: var(--sk-ink); height: 28px; }
.sk-calc__hint { margin: 6px 0 0; font-size: 13px; color: var(--sk-subtle); }
.sk-calc__addons { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); gap: 10px 18px; }
.sk-calc__result { position: sticky; top: 140px; background: var(--sk-ink); color: var(--sk-on-ink); border-radius: calc(20px * var(--sk-r)); padding: clamp(22px, 3vw, 30px); display: grid; gap: 12px; }
.sk-calc__result .sk-kicker { color: inherit; opacity: .6; }
.sk-calc__total { font-family: var(--sk-font-head); font-weight: 600; font-size: clamp(28px, 4vw, 40px); letter-spacing: -.03em; line-height: 1.1; }
.sk-calc__monthly { font-family: var(--sk-font-mono); font-size: 14px; opacity: .8; }
.sk-calc__breakdown { list-style: none; margin: 4px 0 6px; padding: 12px 0 0; border-top: 1px solid rgba(255, 255, 255, .18); display: grid; gap: 6px; font-size: 14px; opacity: .85; }
.shk-scheme-dark .sk-calc__breakdown { border-color: rgba(0, 0, 0, .15); }
.sk-calc__wa { border: 1px solid rgba(255, 255, 255, .35); color: var(--sk-on-ink); }
.sk-calc__wa:hover { border-color: var(--sk-on-ink); color: var(--sk-on-ink); }
.shk-scheme-dark .sk-calc__wa { border-color: rgba(0, 0, 0, .3); }
.sk-calc__note { margin: 4px 0 0; font-size: 12.5px; opacity: .6; line-height: 1.5; }
@media (max-width: 900px) { .sk-calc__result { position: static; } }

.sk-faq { margin-top: clamp(48px, 7vw, 80px); max-width: 860px; }
.sk-faq__list { margin-top: 22px; border-top: 1px solid var(--sk-line); }
.sk-faq__item { border-bottom: 1px solid var(--sk-line); }
.sk-faq__item summary { cursor: pointer; list-style: none; padding: 18px 36px 18px 0; position: relative; font-family: var(--sk-font-head); font-weight: 600; font-size: 17.5px; letter-spacing: -.01em; }
.sk-faq__item summary::-webkit-details-marker { display: none; }
.sk-faq__item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-family: var(--sk-font-mono); font-size: 20px; color: var(--sk-subtle); }
.sk-faq__item[open] summary::after { content: "–"; }
.sk-faq__a { padding: 0 0 20px; color: var(--sk-muted); font-size: 15.5px; line-height: 1.65; max-width: 70ch; }

/* Partners slider */
.sk-marquee { margin-top: 28px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.sk-marquee__track { list-style: none; margin: 0; padding: 0; display: flex; gap: 14px; width: max-content; animation: skMarquee var(--sk-marquee-speed, 40s) linear infinite; }
.sk-marquee:hover .sk-marquee__track, .sk-marquee:focus-within .sk-marquee__track { animation-play-state: paused; }
.sk-marquee .sk-partner { flex: 0 0 auto; width: clamp(150px, 20vw, 210px); }
.sk-marquee .sk-partner a, .sk-marquee .sk-partner > .sk-partner__name { display: flex; align-items: center; justify-content: center; height: 96px; padding: 16px 20px; border: 1px solid var(--sk-line); border-radius: calc(14px * var(--sk-r)); background: var(--sk-bg); }
.sk-marquee .sk-partner img { max-width: 100%; max-height: 60px; width: auto; height: auto; object-fit: contain; }
.sk-marquee.is-mono img { filter: grayscale(1); opacity: .75; transition: filter .2s ease, opacity .2s ease; }
.sk-marquee.is-mono a:hover img { filter: none; opacity: 1; }
@keyframes skMarquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 7px)); } }
@media (prefers-reduced-motion: reduce) {
	.sk-marquee { -webkit-mask-image: none; mask-image: none; }
	.sk-marquee__track { animation: none; flex-wrap: wrap; width: auto; }
	.sk-marquee .sk-partner[aria-hidden="true"] { display: none; }
}

/* ==========================================================================
   26. Team and offices
   ========================================================================== */
.sk-team-section { margin-top: clamp(48px, 7vw, 80px); padding-top: clamp(32px, 5vw, 48px); border-top: 1px solid var(--sk-line); }
.sk-team { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); gap: 18px; margin-top: 28px; }
.sk-member { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 18px; align-items: start; border: 1px solid var(--sk-line); background: var(--sk-surface); border-radius: calc(18px * var(--sk-r)); padding: 22px; }
.sk-member__photo, .sk-member__initials { width: 76px; height: 76px; border-radius: 50%; object-fit: cover; }
.sk-member__initials { display: grid; place-items: center; background: var(--sk-ink); color: var(--sk-on-ink); font-family: var(--sk-font-head); font-weight: 600; font-size: 24px; letter-spacing: .02em; }
.sk-member__name { margin: 2px 0 0; font-size: 19px; letter-spacing: -.02em; }
.sk-member__role { font-family: var(--sk-font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--sk-kicker); margin-top: 4px; }
.sk-member__bio { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--sk-muted); }
.sk-member .sk-socials { margin-top: 12px; }
@media (max-width: 420px) { .sk-member { grid-template-columns: minmax(0, 1fr); } }

.sk-offices-card { display: grid; gap: 12px; }
.sk-offices { display: grid; gap: 16px; }
.sk-office { display: grid; gap: 4px; }
.sk-office + .sk-office { border-top: 1px solid var(--sk-line-soft); padding-top: 14px; }
.sk-office__label { font-family: var(--sk-font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sk-kicker); }
.sk-office__city { font-family: var(--sk-font-head); font-weight: 600; font-size: 17px; letter-spacing: -.01em; }
.sk-office__line { font-size: 14.5px; color: var(--sk-muted); }
.sk-office__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--sk-ink); font-weight: 500; }
.sk-office__phone svg { width: 15px; height: 15px; }
.sk-office__map { font-size: 13.5px; color: var(--sk-subtle); margin-top: 2px; }
.sk-office__map:hover { color: var(--sk-ink); }
