:root {
	--kf-accent: #e03b3b;
	--kf-dark: #111111;
	--kf-light: #f7f4ef;
	--kf-white: #ffffff;
	--kf-muted: #6f6f76;
	--kf-border: rgba(17, 17, 17, 0.12);
	--kf-font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--kf-font-display: Georgia, "Times New Roman", serif;
	--kf-radius-sm: 4px;
	--kf-radius-md: 8px;
	--kf-radius-lg: 16px;
	--kf-shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.08);
	--kf-shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.16);
	--kf-container: 1200px;
	color-scheme: light;
}

.kf-dark {
	--kf-dark: #f6f3ee;
	--kf-light: #101113;
	--kf-white: #17191d;
	--kf-muted: #b8bac2;
	--kf-border: rgba(255, 255, 255, 0.16);
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

body.kf-theme {
	background: var(--kf-white);
	color: var(--kf-dark);
	font-family: var(--kf-font-body);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

svg {
	fill: none;
	height: 1.25rem;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	width: 1.25rem;
}

.kf-container {
	margin-inline: auto;
	max-width: var(--kf-container);
	padding-inline: clamp(18px, 4vw, 40px);
	width: 100%;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	background: var(--kf-dark);
	color: var(--kf-white);
	clip: auto;
	height: auto;
	left: 1rem;
	padding: .75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 99999;
}

.kf-site-header {
	background: color-mix(in srgb, var(--kf-white) 92%, transparent);
	border-bottom: 1px solid var(--kf-border);
	position: sticky;
	top: 0;
	z-index: 100;
}

.kf-announcement {
	background: var(--kf-dark);
	color: var(--kf-white);
	font-size: .84rem;
}

.kf-announcement .kf-container,
.kf-header-main,
.kf-footer-bottom {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.kf-announcement .kf-container {
	min-height: 36px;
}

.kf-header-main {
	min-height: 82px;
}

.kf-site-title {
	font-family: var(--kf-font-display);
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 700;
	text-decoration: none;
}

.kf-menu,
.kf-top-menu,
.kf-footer-menu,
.kf-mobile-menu {
	display: flex;
	gap: 1.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kf-menu a,
.kf-top-menu a,
.kf-footer-menu a,
.kf-mobile-menu a {
	text-decoration: none;
}

.kf-menu .sub-menu {
	background: var(--kf-white);
	border: 1px solid var(--kf-border);
	box-shadow: var(--kf-shadow-lg);
	display: none;
	list-style: none;
	min-width: 240px;
	padding: .8rem;
	position: absolute;
}

.kf-menu li:hover > .sub-menu,
.kf-menu li:focus-within > .sub-menu {
	display: grid;
	gap: .5rem;
}

.kf-header-actions,
.kf-button-row {
	align-items: center;
	display: flex;
	gap: .7rem;
}

.kf-button,
.button,
.wp-block-button__link {
	align-items: center;
	background: var(--kf-accent);
	border: 1px solid var(--kf-accent);
	border-radius: var(--kf-radius-md);
	color: #fff;
	display: inline-flex;
	font-weight: 700;
	gap: .55rem;
	justify-content: center;
	min-height: 44px;
	padding: .72rem 1rem;
	text-decoration: none;
	transition: transform .18s ease, background .18s ease, color .18s ease;
}

.kf-button:hover {
	transform: translateY(-1px);
}

.kf-button--ghost {
	background: transparent;
	color: var(--kf-dark);
}

.kf-button--light {
	background: var(--kf-white);
	border-color: var(--kf-white);
	color: var(--kf-dark);
}

.kf-icon-button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius-md);
	color: var(--kf-dark);
	display: inline-flex;
	height: 42px;
	justify-content: center;
	position: relative;
	text-decoration: none;
	width: 42px;
}

.kf-cart-count {
	align-items: center;
	background: var(--kf-accent);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: .68rem;
	height: 18px;
	justify-content: center;
	min-width: 18px;
	position: absolute;
	right: -6px;
	top: -6px;
}

.kf-mobile-toggle,
.kf-mobile-panel {
	display: none;
}

.kf-mobile-panel {
	border-top: 1px solid var(--kf-border);
	padding: 1rem clamp(18px, 4vw, 40px);
}

.kf-mobile-menu {
	display: grid;
}

.kf-hero {
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--kf-accent) 10%, transparent), transparent 48%),
		var(--kf-light);
	overflow: hidden;
	padding-block: clamp(72px, 10vw, 132px);
}

.kf-hero__grid {
	align-items: center;
	display: grid;
	gap: clamp(32px, 6vw, 80px);
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.kf-eyebrow {
	color: var(--kf-accent);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.kf-hero h1,
.kf-entry__title,
.kf-section-heading h2,
.kf-footer-cta h2,
.kf-cta h2 {
	font-family: var(--kf-font-display);
	font-size: clamp(2.4rem, 6vw, 5.6rem);
	letter-spacing: 0;
	line-height: .98;
	margin: 0 0 1rem;
}

.kf-hero p {
	color: var(--kf-muted);
	font-size: clamp(1rem, 2vw, 1.22rem);
	max-width: 680px;
}

.kf-hero__visual {
	display: grid;
	gap: 1rem;
}

.kf-showcase-card,
.kf-showcase-grid > div,
.kf-card,
.kf-post-card,
.kf-portfolio-card,
.kf-testimonial,
.kf-cta {
	background: var(--kf-white);
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius-md);
	box-shadow: var(--kf-shadow-sm);
}

.kf-showcase-card {
	padding: clamp(24px, 5vw, 46px);
}

.kf-showcase-card strong {
	display: block;
	font-family: var(--kf-font-display);
	font-size: clamp(4rem, 10vw, 8rem);
	line-height: .9;
}

.kf-showcase-card small {
	color: var(--kf-muted);
}

.kf-showcase-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kf-showcase-grid > div {
	font-weight: 700;
	padding: 1.1rem;
}

.kf-section {
	padding-block: clamp(56px, 8vw, 104px);
}

.kf-section--tint {
	background: var(--kf-light);
}

.kf-section-heading {
	margin-bottom: clamp(28px, 5vw, 52px);
	max-width: 760px;
}

.kf-section-heading h2,
.kf-footer-cta h2,
.kf-cta h2 {
	font-size: clamp(2rem, 4vw, 3.8rem);
}

.kf-card-grid,
.kf-post-grid,
.kf-portfolio-grid {
	display: grid;
	gap: 1.2rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kf-post-grid,
.kf-portfolio-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kf-card,
.kf-post-card__body,
.kf-product-card__body {
	padding: 1.35rem;
}

.kf-card h3,
.kf-portfolio-card h3,
.kf-post-card__title {
	font-size: 1.25rem;
	line-height: 1.2;
	margin: 0 0 .65rem;
}

.kf-card p,
.kf-portfolio-card p,
.kf-post-card p,
.kf-footer-column p {
	color: var(--kf-muted);
	margin-bottom: 0;
}

.kf-portfolio-card {
	overflow: hidden;
}

.kf-portfolio-card > div:not(.kf-portfolio-card__image) {
	padding: 1.2rem;
}

.kf-portfolio-card__image,
.kf-post-card__media,
.kf-product-card__media {
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, color-mix(in srgb, var(--kf-accent) 28%, transparent), transparent),
		linear-gradient(45deg, #1e1f24, #f3eee6);
	display: block;
	overflow: hidden;
}

.kf-post-card__media img,
.kf-product-card__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.kf-testimonial,
.kf-cta,
.kf-footer-cta {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: space-between;
	padding: clamp(24px, 5vw, 54px);
}

.kf-testimonial {
	display: block;
	font-family: var(--kf-font-display);
	font-size: clamp(1.5rem, 3vw, 2.6rem);
	line-height: 1.2;
}

.kf-testimonial strong {
	display: block;
	font-family: var(--kf-font-body);
	font-size: .95rem;
	margin-top: 1rem;
}

.kf-cta,
.kf-footer-cta {
	background: var(--kf-dark);
	color: var(--kf-white);
}

.kf-main {
	min-height: 52vh;
}

.kf-content-layout {
	padding-block: clamp(48px, 8vw, 88px);
}

.kf-entry {
	margin-inline: auto;
	max-width: 860px;
}

.kf-entry__content > * {
	margin-bottom: 1.1rem;
}

.kf-entry__media {
	margin: 2rem 0;
}

.kf-post-meta {
	color: var(--kf-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: .9rem;
	gap: .8rem;
	margin-bottom: .8rem;
}

.kf-reading-progress {
	background: var(--kf-border);
	border-radius: 999px;
	height: 4px;
	margin-bottom: 1.5rem;
	overflow: hidden;
}

.kf-reading-progress span {
	background: var(--kf-accent);
	display: block;
	height: 100%;
	width: 0;
}

.kf-archive-header,
.kf-not-found,
.kf-empty {
	padding-block: clamp(48px, 8vw, 88px);
}

.kf-site-footer {
	background: #101113;
	color: #fff;
	margin-top: clamp(48px, 8vw, 96px);
}

.kf-footer-widgets {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	padding-block: 56px;
}

.kf-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .12);
	color: rgba(255, 255, 255, .72);
	font-size: .9rem;
	padding-block: 18px;
}

.kf-back-to-top {
	color: #fff;
}

[data-kf-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .5s ease, transform .5s ease;
}

[data-kf-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.woocommerce ul.products li.product,
.kf-product-card {
	background: var(--kf-white);
	border: 1px solid var(--kf-border);
	border-radius: var(--kf-radius-md);
	box-shadow: var(--kf-shadow-sm);
	overflow: hidden;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--kf-accent);
	border-radius: var(--kf-radius-md);
	color: #fff;
}

@media (max-width: 1024px) {
	.kf-primary-nav,
	.kf-header-cta,
	.kf-announcement .kf-top-menu {
		display: none;
	}

	.kf-mobile-toggle {
		display: inline-flex;
	}

	.kf-mobile-panel:not([hidden]) {
		display: block;
	}

	.kf-hero__grid,
	.kf-card-grid,
	.kf-post-grid,
	.kf-portfolio-grid,
	.kf-footer-widgets {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.kf-announcement {
		display: none;
	}

	.kf-header-main {
		min-height: 68px;
	}

	.kf-hero__grid,
	.kf-card-grid,
	.kf-post-grid,
	.kf-portfolio-grid,
	.kf-footer-widgets,
	.kf-showcase-grid {
		grid-template-columns: 1fr;
	}

	.kf-testimonial,
	.kf-cta,
	.kf-footer-cta,
	.kf-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.kf-header-actions {
		gap: .4rem;
	}

	.kf-icon-button {
		height: 38px;
		width: 38px;
	}
}

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