/**
 * Kronfönster startsida.
 */

:root {
	--kf-navy: #132d45;
	--kf-navy-deep: #061c31;
	--kf-navy-doors: #061c31;
	--kf-navy-soft: #2a455e;
	--kf-navy-card: #1a3d56;
	--kf-on-navy: #f6f9fb;
	--kf-gold: #f2cf24;
	--kf-gold-fg: #0d2339;
	--kf-sand: #f6f5f1;
	--kf-muted: #62748e;
	--kf-line: #e2e8f0;
	--kf-radius: 4px;
	--kf-hp-max: 1400px;
	--kf-hp-gutter: 32px;
	--kf-hp-section: 80px;
	--kf-font-head: Poppins, "Helvetica Neue", Helvetica, Arial, sans-serif;
	--kf-font-body: Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (max-width: 767px) {
	:root {
		--kf-hp-gutter: 16px;
		--kf-hp-section: 56px;
	}
}

body.kf-hp-on .wd-page-title,
body.kf-hp-on .page-title,
body.kf-hp-on .title-wrapper,
body.kf-hp-on .wd-page-heading,
body.kf-hp-on .breadcrumbs,
body.kf-hp-on .wd-breadcrumbs,
body.kf-hp-on .entry-header {
	display: none !important;
}

body.kf-hp-on .main-page-wrapper,
body.kf-hp-on .wd-page-content,
body.kf-hp-on .content-layout-wrapper,
body.kf-hp-on .wd-content-layout,
body.kf-hp-on #main-content.container,
body.kf-hp-on .wd-content-layout.container {
	padding-left: 0 !important;
	padding-right: 0 !important;
	padding-top: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	max-width: none !important;
	width: 100% !important;
	background: #fff;
}

body.kf-hp-on .main-page-wrapper > .container,
body.kf-hp-on .wd-content-layout > .container {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body.kf-hp-on {
	overflow-x: hidden;
}

.kf-hp {
	font-family: var(--kf-font-body);
	font-weight: 400;
	color: var(--kf-navy);
	background: #fff;
	overflow-x: clip;
}

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

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

.kf-hp .screen-reader-text {
	border: 0 !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	clip-path: inset(50%) !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	white-space: nowrap !important;
}

.kf-hp-wrap {
	width: 100%;
	max-width: var(--kf-hp-max);
	margin: 0 auto;
	padding-left: var(--kf-hp-gutter);
	padding-right: var(--kf-hp-gutter);
	min-width: 0;
}

.kf-hp-section {
	padding-top: var(--kf-hp-section);
	padding-bottom: var(--kf-hp-section);
}

.kf-hp-eyebrow {
	margin: 0 0 10px;
	font-family: var(--kf-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--kf-navy-soft);
}

.kf-hp-eyebrow--gold {
	color: var(--kf-gold);
}

.kf-hp-eyebrow--muted {
	color: var(--kf-navy-soft);
}

.kf-hp h2,
.kf-hp-h2 {
	margin: 0 0 14px;
	font-family: var(--kf-font-head);
	font-weight: 600;
	font-size: clamp(24px, 2.4vw, 34px);
	line-height: 1.2;
	color: var(--kf-navy);
	letter-spacing: -0.02em;
}

.kf-hp-lead {
	margin: 0 0 1.25em;
	font-size: 16px;
	line-height: 1.65;
	color: var(--kf-muted);
	max-width: 46em;
}

.kf-hp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 12px 22px;
	border-radius: var(--kf-radius);
	font-family: var(--kf-font-head);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.kf-hp-btn--gold {
	background: var(--kf-gold);
	color: var(--kf-gold-fg);
	border-color: var(--kf-gold);
}

.kf-hp-btn--gold:hover,
.kf-hp-btn--gold:focus-visible {
	background: #ffd84a;
	color: var(--kf-gold-fg);
}

.kf-hp-btn--navy {
	background: var(--kf-navy);
	color: var(--kf-on-navy);
	border-color: var(--kf-navy);
}

.kf-hp-btn--navy:hover,
.kf-hp-btn--navy:focus-visible {
	background: var(--kf-navy-soft);
	border-color: var(--kf-navy-soft);
	color: var(--kf-on-navy);
}

.kf-hp-btn--ghost {
	background: transparent;
	color: #fff;
	border-color: #fff;
}

.kf-hp-btn--ghost:hover,
.kf-hp-btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.kf-hp-btn--link {
	background: none;
	border: 0;
	padding: 0;
	min-height: 0;
	color: var(--kf-navy-soft);
	letter-spacing: 0.12em;
}

.kf-hp-btn--link:hover {
	color: var(--kf-navy);
}

.kf-hp-btn--gold-link {
	background: none;
	border: 0;
	padding: 0;
	min-height: 0;
	color: var(--kf-gold);
	letter-spacing: 0.12em;
}

.kf-hp-btn--underline {
	background: none;
	border: 0;
	padding: 0;
	min-height: 0;
	color: var(--kf-navy);
	font-size: 14px;
	letter-spacing: normal;
	text-transform: none;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.kf-hp-btn--underline:hover,
.kf-hp-btn--underline:focus-visible {
	color: var(--kf-navy-soft);
}

/* ── 1 Hero ── */
.kf-hp-hero {
	position: relative;
	isolation: isolate;
	min-height: 520px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #15394f;
}

@media (min-width: 768px) {
	.kf-hp-hero {
		min-height: 620px;
	}
}

@media (min-width: 1024px) {
	.kf-hp-hero {
		min-height: 720px;
	}
}

/* Needs to out-specify the `.kf-hp img { height: auto }` reset above, or the
   photo renders at natural height and object-position never crops. */
.kf-hp img.kf-hp-hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 72%;
	z-index: 0;
}

/* Approved background motion (js/kf-hero-motion.js). Sits under the scrim
   (z-index 1) and the copy (z-index 2) and is pointer-transparent, so the
   buttons on top keep working. Crops come from the delivery. */
#kf-photo-motion {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	background: #15394f;
	isolation: isolate;
}

.kf-hp #kf-photo-motion img.kfm-layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	display: block;
	object-fit: cover;
	object-position: 50% 50%;
	transform-origin: 52% 68%;
	opacity: 0;
	transition: opacity 1.4s ease;
}

.kf-hp #kf-photo-motion picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
}

.kf-hp-hero::after {
	opacity: 0;
	transition: opacity 1.4s ease;
}

.kf-hp-hero.is-photo::after {
	opacity: 1;
}

@media (max-width: 600px) {
	.kf-hp #kf-photo-motion img.kfm-layer {
		object-position: 50% 42%;
	}
}

/* Legibility comes from the scrim, not from text shadows. */
.kf-hp-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		100deg,
		rgba(12, 36, 54, 0.88) 0%,
		rgba(12, 36, 54, 0.55) 34%,
		rgba(12, 36, 54, 0.18) 68%,
		rgba(12, 36, 54, 0.08) 100%
	);
}

.kf-hp-hero .kf-hp-wrap {
	position: relative;
	z-index: 2;
}

.kf-hp-hero-inner {
	padding-top: 56px;
	padding-bottom: 40px;
	max-width: 34rem;
}

.kf-hp-hero .kf-hp-eyebrow {
	color: var(--kf-gold);
	letter-spacing: 0.28em;
}

.kf-hp-hero h1 {
	margin: 0 0 16px;
	font-family: var(--kf-font-head);
	font-weight: 600;
	font-size: 1.75rem;
	line-height: 1.1;
	color: var(--kf-on-navy);
	letter-spacing: -0.02em;
}

.kf-hp-hero-sub {
	margin: 0 0 28px;
	max-width: 28rem;
	font-size: 16px;
	color: rgba(246, 249, 251, 0.75);
}

.kf-hp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

/* Hero entrance: the Få offert label slides in from the left, Alla produkter
   scales up, Webbshop stays put so the row never looks like it is loading.
   Both animations touch transform/opacity only and run once. */
@keyframes kf-hp-label-in {
	from {
		opacity: 0;
		transform: translateX(-16px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes kf-hp-btn-pop {
	from {
		opacity: 0;
		transform: scale(0.88);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.kf-hp-hero-actions .kf-hp-btn-in {
	display: inline-block;
	animation: kf-hp-label-in 1.1s 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.kf-hp-hero-actions .kf-hp-btn-pop {
	animation: kf-hp-btn-pop 1s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
	.kf-hp-hero-actions .kf-hp-btn-in,
	.kf-hp-hero-actions .kf-hp-btn-pop {
		animation: none;
	}
}

.kf-hp-hero .kf-hp-btn--ghost {
	border-color: rgba(246, 249, 251, 0.4);
	color: var(--kf-on-navy);
}

.kf-hp-hero .kf-hp-btn--ghost:hover,
.kf-hp-hero .kf-hp-btn--ghost:focus-visible {
	background: rgba(246, 249, 251, 0.1);
}

@media (min-width: 640px) {
	.kf-hp-hero h1 {
		font-size: 2.25rem;
	}
}

@media (min-width: 1024px) {
	.kf-hp-hero {
		align-items: center;
	}

	.kf-hp-hero::after {
		background: linear-gradient(
			to right,
			rgba(6, 28, 49, 0.95) 0%,
			rgba(6, 28, 49, 0.6) 50%,
			rgba(6, 28, 49, 0) 100%
		);
	}

	.kf-hp-hero-inner {
		padding-top: 0;
		padding-bottom: 0;
	}

	.kf-hp-hero h1 {
		font-size: 2.75rem;
	}
}

/* ── 2 Categories (windows and doors, one light section, one shared grid) ── */
.kf-hp-cats {
	background: #fff;
}

/* Divider for light sections. .kf-hp-hairline stays for the navy ones. */
.kf-hp-rule {
	height: 0;
	margin: 40px 0;
	border: 0;
	border-top: 1px solid var(--kf-line);
}

@media (min-width: 1024px) {
	.kf-hp-rule {
		margin: 48px 0;
	}
}

/* Inline sub-head: label left, one line of copy beside it on wide screens. */
.kf-hp-subhead {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 20px;
}

.kf-hp-subhead h3 {
	margin: 0;
	font-family: var(--kf-font-head);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--kf-navy);
}

.kf-hp-subhead p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: var(--kf-muted);
}

@media (min-width: 1024px) {
	.kf-hp-subhead {
		flex-direction: row;
		align-items: baseline;
		gap: 18px;
	}

	.kf-hp-subhead h3 {
		flex: 0 0 auto;
	}

	.kf-hp-subhead p {
		flex: 1 1 auto;
		min-width: 0;
	}
}

.kf-hp-dark {
	background: var(--kf-navy-doors);
	color: var(--kf-on-navy);
}

.kf-hp-cats-head {
	max-width: 780px;
	margin-bottom: 28px;
}

.kf-hp-cats-head h2 {
	margin: 0 0 10px;
}

.kf-hp-cats-head .kf-hp-lead {
	margin: 0;
}

.kf-hp-cats-head--dark h2 {
	color: var(--kf-on-navy);
}

.kf-hp-cats-head--dark .kf-hp-lead {
	color: rgba(246, 249, 251, 0.75);
}

.kf-hp-tiles {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.kf-hp-tile {
	display: block;
	text-decoration: none;
	color: inherit;
}

.kf-hp-tile-media {
	display: block;
	position: relative;
	overflow: hidden;
	height: 150px;
	border-radius: var(--kf-radius);
	background: var(--kf-sand);
}

.kf-hp-tile-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.kf-hp-tile:hover img {
	transform: scale(1.05);
}

.kf-hp-tile-bar {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding: 10px 0 0;
}

.kf-hp-tile-label {
	margin: 0;
	font-family: var(--kf-font-head);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--kf-navy);
}

.kf-hp-tile-arrow {
	flex: 0 0 auto;
	color: var(--kf-navy-soft);
	font-size: 18px;
	line-height: 1;
	transition: transform 0.2s ease;
}

@media (min-width: 640px) {
	.kf-hp-tile-label {
		font-size: 16px;
	}
}

.kf-hp-tile:hover .kf-hp-tile-arrow {
	transform: translateX(3px);
}

@media (min-width: 768px) {
	.kf-hp-tile-media {
		height: 190px;
	}
}

@media (min-width: 1024px) {
	.kf-hp-tiles {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.kf-hp-tile-media {
		height: 220px;
	}
}

.kf-hp-hairline {
	height: 0;
	margin: 48px 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 1024px) {
	.kf-hp-hairline {
		margin: 64px 0;
	}
}

/* ── 4 Focus / parti ── */
.kf-hp-focus {
	background: var(--kf-navy-deep);
	color: var(--kf-on-navy);
}

.kf-hp-focus h2,
.kf-hp-dark .kf-hp-focus-grid h2,
.kf-hp h3.kf-parti-title {
	color: var(--kf-on-navy);
}

.kf-hp-focus .kf-hp-lead,
.kf-hp-dark .kf-hp-focus-grid .kf-hp-lead {
	color: rgba(246, 249, 251, 0.75);
}

.kf-hp-focus-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.5fr);
	gap: 40px;
	align-items: center;
}

.kf-hp-parti-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.kf-parti {
	color: var(--kf-on-navy);
}

/* Both cards sit on the section colour: the webm ships with an alpha channel
   and the slide frames have the same navy baked in. */
.kf-parti-stage {
	position: relative;
	overflow: hidden;
	border-radius: var(--kf-radius);
	background: var(--kf-navy-deep);
	box-shadow: inset 0 0 0 1px rgba(246, 249, 251, 0.1);
	aspect-ratio: 1 / 1;
	cursor: pointer;
}

.kf-parti-stage img,
.kf-parti-stage video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	background: transparent;
	pointer-events: none;
}

.kf-parti-stage--cover img {
	object-fit: cover;
}

.kf-parti-stage [data-parti-frame] {
	opacity: 0;
	transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.kf-parti-stage [data-parti-frame].is-active {
	opacity: 1;
}

/* The open frame drifts in a hair to sell the movement. */
.kf-parti-stage--cover [data-parti-frame="open"] {
	transform: scale(1.012);
}

.kf-parti-stage--seq [data-parti-frame] {
	transition: none;
}

.kf-parti-label {
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: var(--kf-radius);
	background: rgba(6, 28, 49, 0.7);
	color: rgba(246, 249, 251, 0.8);
	font-family: var(--kf-font-head);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.kf-parti-label::before {
	content: "↔";
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	color: var(--kf-gold);
}

.kf-parti-title {
	margin: 12px 0 4px;
	font-family: var(--kf-font-head);
	font-size: 16px;
	font-weight: 600;
	color: var(--kf-on-navy);
}

.kf-parti-text {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(246, 249, 251, 0.6);
}

.kf-parti-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--kf-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--kf-gold);
}

.kf-parti-link span {
	transition: transform 0.2s ease;
}

.kf-parti:hover .kf-parti-link span {
	transform: translateX(4px);
}

@media (max-width: 900px) {
	.kf-hp-focus-grid,
	.kf-hp-parti-row {
		grid-template-columns: 1fr;
	}
}

/* ── 5 Showroom ── */
.kf-hp-showroom {
	background: var(--kf-sand);
}

.kf-hp-split {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.kf-hp-split > *,
.kf-hp-focus-grid > *,
.kf-hp-energy-inner > *,
.kf-hp-seo-grid > * {
	min-width: 0;
}

.kf-hp-split--flip {
	grid-template-columns: 0.95fr 1.05fr;
}

.kf-hp-split-media img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: center;
	border-radius: var(--kf-radius);
}

.kf-hp-showroom .kf-hp-split-media img {
	aspect-ratio: auto;
	height: 260px;
}

.kf-hp-doors-media img {
	box-shadow: 0 10px 15px -3px rgba(6, 28, 49, 0.1), 0 4px 6px -4px rgba(6, 28, 49, 0.1);
}

@media (min-width: 640px) {
	.kf-hp-showroom .kf-hp-split-media img {
		height: 340px;
	}
}

@media (min-width: 1024px) {
	.kf-hp-showroom .kf-hp-split-media img {
		height: 420px;
	}

	.kf-hp-doors-media img {
		aspect-ratio: 5 / 4;
	}
}

@media (max-width: 900px) {
	.kf-hp-split,
	.kf-hp-split--flip {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.kf-hp-split--flip .kf-hp-split-media {
		order: -1;
	}
}

/* Trade fairs — same sand section as the showroom, below a hairline. */
.kf-hp-fair {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
}

.kf-hp-fair-copy h3 {
	margin: 0 0 12px;
	font-family: var(--kf-font-head);
	font-size: 26px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--kf-navy);
}

.kf-hp-fair-copy .kf-hp-lead {
	margin: 0 0 18px;
}

.kf-hp-fair-media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.kf-hp-fair-media figure {
	margin: 0;
}

.kf-hp-fair-media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--kf-radius);
}

.kf-hp-fair-media figcaption {
	margin-top: 8px;
	font-size: 13px;
	line-height: 1.4;
	color: var(--kf-muted);
}

@media (min-width: 1024px) {
	.kf-hp-fair {
		grid-template-columns: 0.95fr 1.05fr;
		gap: 48px;
	}

	.kf-hp-fair-copy h3 {
		font-size: 30px;
	}
}

/* ── 6 Film ── */
.kf-hp-film {
	background: #fff;
}

.kf-hp-yt-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 12px 12px;
}

.kf-hp-yt-grid .kf-hp-yt-item:first-child {
	grid-column: 1 / -1;
}

.kf-hp-yt-wrap {
	position: relative;
	overflow: hidden;
	border-radius: var(--kf-radius);
	background: #000;
	aspect-ratio: 16 / 9;
}

.kf-hp-yt-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.kf-hp-yt-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: #000;
}

.kf-hp-yt-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kf-hp-yt-play {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 64px;
	height: 64px;
	margin: -32px 0 0 -32px;
	border-radius: 50%;
	background: var(--kf-gold);
	pointer-events: none;
}

.kf-hp-yt-play::after {
	content: "";
	position: absolute;
	left: 26px;
	top: 20px;
	border-style: solid;
	border-width: 12px 0 12px 18px;
	border-color: transparent transparent transparent var(--kf-gold-fg);
}

.kf-hp-yt-grid .kf-hp-yt-item:not(:first-child) .kf-hp-yt-play {
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -20px;
}

.kf-hp-yt-grid .kf-hp-yt-item:not(:first-child) .kf-hp-yt-play::after {
	left: 15px;
	top: 12px;
	border-width: 8px 0 8px 12px;
}

/* Title sits on the lead poster; the two small ones caption underneath. */
.kf-hp-yt-overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 40px 16px 14px;
	font-family: var(--kf-font-head);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	text-align: left;
	color: #fff;
	background: linear-gradient(to top, rgba(6, 28, 49, 0.85), rgba(6, 28, 49, 0));
	pointer-events: none;
}

@media (min-width: 640px) {
	.kf-hp-yt-overlay {
		font-size: 17px;
		padding: 48px 20px 18px;
	}
}

.kf-hp-yt-caption {
	margin: 8px 0 0;
	color: var(--kf-navy);
	font-size: 13px;
	font-weight: 700;
	text-align: left;
}

/* ── 7 Energy — navy band inset on the sand section ── */
.kf-hp-energy {
	background: var(--kf-sand);
	padding: 0;
}

.kf-hp-energy-band {
	background: var(--kf-navy);
	color: var(--kf-on-navy);
}

.kf-hp-energy-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
	align-items: stretch;
	width: 100%;
	max-width: var(--kf-hp-max);
	margin: 0 auto;
	min-height: 300px;
}

.kf-hp-energy-media {
	position: relative;
	min-height: 280px;
	overflow: hidden;
}

.kf-hp-energy-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
}

.kf-hp-energy-media::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: linear-gradient(90deg, rgba(19, 45, 69, 0) 0%, rgba(19, 45, 69, 0.05) 50%, var(--kf-navy) 100%);
}

.kf-hp-energy-media a.kf-hp-lb {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.kf-hp-energy-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 24px var(--kf-hp-gutter) 40px;
}

.kf-hp-energy h2 {
	margin: 0 0 12px;
	font-size: 1.75rem;
	color: var(--kf-on-navy);
}

.kf-hp-energy .kf-hp-lead {
	margin: 0;
	max-width: 42em;
	font-size: 14px;
	color: rgba(246, 249, 251, 0.7);
}

.kf-hp-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 20px 0 24px;
	padding: 0;
	list-style: none;
}

.kf-hp-badges li {
	padding: 6px 12px;
	border-radius: var(--kf-radius);
	background: rgba(246, 249, 251, 0.1);
	color: rgba(246, 249, 251, 0.8);
	font-size: 12px;
	letter-spacing: 0.02em;
}

.kf-hp-badges strong {
	color: var(--kf-gold);
	font-weight: 600;
}

.kf-hp-energy-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.kf-hp-energy .kf-hp-btn--ghost {
	border-color: rgba(246, 249, 251, 0.4);
	color: var(--kf-on-navy);
}

.kf-hp-energy .kf-hp-btn--ghost:hover,
.kf-hp-energy .kf-hp-btn--ghost:focus-visible {
	background: rgba(246, 249, 251, 0.1);
}

@media (max-width: 1023px) {
	.kf-hp-energy-inner {
		grid-template-columns: 1fr;
	}

	.kf-hp-energy-media {
		min-height: 0;
		height: 176px;
	}

	.kf-hp-energy-media::after {
		background: linear-gradient(180deg, rgba(19, 45, 69, 0) 0%, rgba(19, 45, 69, 0.1) 50%, var(--kf-navy) 100%);
	}
}

@media (min-width: 640px) and (max-width: 1023px) {
	.kf-hp-energy-media {
		height: 224px;
	}
}

@media (min-width: 1024px) {
	.kf-hp-energy-copy {
		padding: 56px 40px;
	}
}

/* ── 8 Bestsellers + range ── */
.kf-hp-best {
	background: #fff;
}

.kf-hp-best-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 28px;
}

.kf-hp-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.kf-hp-product {
	display: flex;
	flex-direction: column;
	padding: 16px;
	border: 1px solid var(--kf-line);
	border-radius: var(--kf-radius);
	background: #fff;
	color: var(--kf-navy);
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.kf-hp-product:hover,
.kf-hp-product:focus-visible {
	border-color: rgba(19, 45, 69, 0.3);
	color: var(--kf-navy);
}

.kf-hp-product-media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	background: var(--kf-sand);
	border-radius: var(--kf-radius);
	margin-bottom: 16px;
	padding: 12px;
	overflow: hidden;
}

.kf-hp-product-media img {
	max-height: 100%;
	width: auto;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.kf-hp-product:hover .kf-hp-product-media img,
.kf-hp-range-card:hover .kf-hp-product-media img {
	transform: scale(1.04);
}

.kf-hp-product-kicker {
	margin: 0 0 4px;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--kf-navy-soft);
}

.kf-hp-product-title {
	margin: 0 0 6px;
	font-family: var(--kf-font-head);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.kf-hp-product-price {
	margin: auto 0 0;
	padding-top: 12px;
	font-size: 14px;
	color: var(--kf-muted);
}

.kf-hp-product-price del {
	color: var(--kf-muted);
	margin-left: 6px;
}

/* WooCommerce/PEWC style the amount and prefix themselves; both are wrong here. */
.kf-hp-product-price .woocommerce-Price-amount,
.kf-sekel-card-price .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
}

.kf-hp-product-price .pewc-label-before,
.kf-sekel-card-price .pewc-label-before {
	display: none;
}

.kf-hp-range {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid var(--kf-line);
}

.kf-hp-range-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.kf-hp-range-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 16px;
	border: 1px solid var(--kf-line);
	border-radius: var(--kf-radius);
	background: #fff;
	color: var(--kf-navy);
	text-align: center;
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.kf-hp-range-card:hover,
.kf-hp-range-card:focus-visible {
	border-color: rgba(19, 45, 69, 0.3);
	color: var(--kf-navy);
}

.kf-hp-range-card .kf-hp-product-media {
	width: 100%;
	margin-bottom: 12px;
	padding: 8px;
}

.kf-hp-range-card strong {
	display: block;
	font-family: var(--kf-font-head);
	font-size: 14px;
	font-weight: 600;
}

.kf-hp-range-card span {
	margin-top: 4px;
	font-size: 12px;
	color: var(--kf-muted);
}

@media (max-width: 1023px) {
	.kf-hp-products,
	.kf-hp-range-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 640px) and (max-width: 1023px) {
	.kf-hp-range-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.kf-hp-best-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ── 9 Sekel — dark section, light product boxes ── */
.kf-hp-sekel {
	background: var(--kf-navy-deep);
	color: var(--kf-on-navy);
}

.kf-hp-sekel h2 {
	color: var(--kf-on-navy);
}

.kf-hp-sekel .kf-hp-lead {
	color: rgba(246, 249, 251, 0.75);
}

.kf-hp-sekel-top {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.kf-hp-sekel-hero img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--kf-radius);
}

.kf-hp-sekel-facts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px 24px;
	margin: 28px 0 0;
	padding: 24px 0 0;
	border-top: 1px solid rgba(246, 249, 251, 0.15);
	list-style: none;
}

.kf-hp-sekel-facts li {
	position: relative;
	padding-left: 14px;
	font-size: 14px;
	line-height: 1.5;
	color: rgba(246, 249, 251, 0.75);
}

.kf-hp-sekel-facts li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--kf-gold);
}

.kf-hp-sekel-facts + .kf-hp-btn {
	margin-top: 28px;
}

.kf-hp-sekel-row {
	margin-top: 48px;
	padding-top: 36px;
	border-top: 1px solid rgba(246, 249, 251, 0.15);
}

.kf-hp-sekel-row-label {
	margin: 0 0 20px;
	font-family: var(--kf-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(246, 249, 251, 0.6);
}

.kf-hp-sekel-row-head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px 20px;
}

.kf-hp-sekel-row-head .kf-hp-sekel-row-label {
	margin-bottom: 20px;
}

.kf-hp-sekel-row-note {
	margin: 0 0 20px;
	font-size: 13px;
	color: rgba(246, 249, 251, 0.5);
}

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

.kf-sekel-card {
	display: flex;
	flex-direction: column;
	padding: 16px;
	border: 1px solid rgba(246, 249, 251, 0.15);
	border-radius: var(--kf-radius);
	background: rgba(246, 249, 251, 0.04);
	color: var(--kf-on-navy);
	text-decoration: none;
	transition: border-color 0.2s ease;
}

.kf-sekel-card:hover,
.kf-sekel-card:focus-visible {
	border-color: rgba(242, 207, 36, 0.6);
	color: var(--kf-on-navy);
}

.kf-sekel-card-media {
	position: relative;
	display: block;
	margin-bottom: 16px;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--kf-radius);
	background: var(--kf-sand);
}

/* Lifestyle photo is the bottom layer and only shows once the product shot fades. */
.kf-sekel-card-foto {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.kf-sekel-card:hover .kf-sekel-card-foto,
.kf-sekel-card:focus-visible .kf-sekel-card-foto {
	transform: scale(1.06);
}

/* Product shot sits on top by default and fades out on hover. */
.kf-sekel-card-produkt {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	object-fit: contain;
	opacity: 1;
	transition: opacity 0.5s ease;
}

.kf-sekel-card:hover .kf-sekel-card-produkt,
.kf-sekel-card:focus-visible .kf-sekel-card-produkt {
	opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
	.kf-sekel-card:hover .kf-sekel-card-foto,
	.kf-sekel-card:focus-visible .kf-sekel-card-foto {
		transform: none;
	}
}

.kf-sekel-card-tag {
	margin-bottom: 8px;
	font-family: var(--kf-font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kf-gold);
}

.kf-sekel-card-title {
	margin: 0;
	font-family: var(--kf-font-head);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--kf-on-navy);
}

.kf-sekel-card-price {
	margin-top: auto;
	padding-top: 12px;
	font-size: 14px;
	color: rgba(246, 249, 251, 0.7);
}

.kf-sekel-card-price del {
	color: rgba(246, 249, 251, 0.45);
	margin-left: 6px;
}

.kf-hp-sekel-life {
	display: flex;
	gap: 16px;
	margin: 0 calc(var(--kf-hp-gutter) * -1);
	padding: 0 var(--kf-hp-gutter) 8px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.kf-hp-sekel-life figure {
	flex: 0 0 76%;
	margin: 0;
	scroll-snap-align: start;
}

.kf-hp-sekel-life img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--kf-radius);
}

.kf-hp-sekel-life figcaption {
	margin-top: 8px;
	font-size: 12px;
	color: rgba(246, 249, 251, 0.55);
}

@media (min-width: 640px) {
	.kf-hp-sekel-facts {
		grid-template-columns: 1fr 1fr;
	}

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

@media (min-width: 1024px) {
	.kf-hp-sekel-top {
		grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	}

	.kf-hp-sekel-hero img {
		aspect-ratio: 5 / 6;
	}

	.kf-hp-sekel-row {
		padding-top: 40px;
	}

	.kf-sekel-grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}

	.kf-hp-sekel-life {
		display: grid;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		margin: 0;
		padding: 0;
		overflow: visible;
	}

	.kf-hp-sekel-life figure {
		flex: none;
	}
}

/* ── 10 Doors ── */
.kf-hp-doors {
	background: var(--kf-sand);
}

.kf-hp-doors-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}

/* ── 11 Gallery ── */
.kf-hp-gallery {
	background: #fff;
}

.kf-hp-gallery-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 24px;
}

@media (max-width: 600px) {
	.kf-hp-gallery-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* Filter chips */
.kf-hp-ins-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px 20px;
	margin-bottom: 20px;
}

.kf-hp-ins-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.kf-hp-ins-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border: 1px solid var(--kf-line);
	border-radius: var(--kf-radius);
	background: #fff;
	font-family: var(--kf-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kf-navy);
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.kf-hp-ins-chip span {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: var(--kf-muted);
}

.kf-hp-ins-chip:hover {
	border-color: var(--kf-navy-soft);
}

.kf-hp-ins-chip.is-active {
	border-color: var(--kf-gold);
	background: var(--kf-gold);
	color: var(--kf-gold-fg);
}

.kf-hp-ins-chip.is-active span {
	color: rgba(13, 35, 57, 0.65);
}

.kf-hp-ins-count {
	margin: 0;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kf-muted);
}

/* Bento grid — a repeating cycle of six: wide+tall, wide, wide, then squares.
   grid-auto-rows keeps every tile a cropped, fixed-height cell, so the images
   need no intrinsic size and the grid never reflows as they decode. */
.kf-hp-ins-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-auto-rows: 110px;
	grid-auto-flow: row dense;
	gap: 12px;
}

.kf-hp-ins-tile {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--kf-radius);
	background: var(--kf-sand);
	grid-row: span 2;
}

.kf-hp-ins-tile[hidden] {
	display: none;
}

.kf-hp-ins-tile--a,
.kf-hp-ins-tile--d {
	grid-column: span 2;
}

.kf-hp-ins-tile img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
	background: #e6e1d6;
}

img[data-src]:not([src]) {
	background: #e6e1d6;
}

.kf-hp-ins-tile:hover img,
.kf-hp-ins-tile:focus-visible img {
	transform: scale(1.06);
}

.kf-hp-ins-tile:focus-visible {
	outline: 2px solid var(--kf-gold);
	outline-offset: 2px;
}

/* Caption rides in on hover; on touch it is the alt text that carries the meaning. */
.kf-hp-ins-meta {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding: 28px 12px 10px;
	background: linear-gradient(to top, rgba(6, 28, 49, 0.88), rgba(6, 28, 49, 0));
	opacity: 0;
	transition: opacity 0.25s ease;
	pointer-events: none;
}

.kf-hp-ins-tile:hover .kf-hp-ins-meta,
.kf-hp-ins-tile:focus-visible .kf-hp-ins-meta {
	opacity: 1;
}

.kf-hp-ins-series {
	font-family: var(--kf-font-head);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--kf-gold);
}

.kf-hp-ins-cap {
	font-size: 13px;
	line-height: 1.3;
	color: #fff;
}

.kf-hp-ins-more {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.kf-hp-ins-more[hidden] {
	display: none;
}

@media (min-width: 640px) {
	.kf-hp-ins-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		grid-auto-rows: 150px;
	}
}

@media (min-width: 1024px) {
	.kf-hp-ins-grid {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		grid-auto-rows: 170px;
	}

	.kf-hp-ins-tile--a {
		grid-column: span 3;
		grid-row: span 2;
	}

	.kf-hp-ins-tile--b {
		grid-column: span 3;
		grid-row: span 1;
	}

	.kf-hp-ins-tile--c,
	.kf-hp-ins-tile--d {
		grid-column: span 2;
		grid-row: span 2;
	}

	.kf-hp-ins-cap {
		font-size: 14px;
	}
}

/* ── 12 SEO ── */
.kf-hp-seo {
	background: var(--kf-sand);
}

.kf-hp-seo-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	align-items: start;
}

.kf-hp-seo-media {
	margin-top: 24px;
}

.kf-hp-seo-media img {
	display: block;
	width: 100%;
	max-width: 520px;
	height: auto;
	border-radius: var(--kf-radius);
}

.kf-hp-seo-extra {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.35s ease;
}

.kf-hp-seo-extra.is-open {
	grid-template-rows: 1fr;
}

.kf-hp-seo-extra-inner {
	overflow: hidden;
}

.kf-hp-seo-extra p {
	margin: 0 0 1em;
}

[data-seo-toggle] {
	margin-top: 12px;
	background: none;
	border: 0;
	padding: 0;
	font-family: var(--kf-font-head);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--kf-navy);
	cursor: pointer;
}

[data-seo-toggle]::after {
	content: " ⌵";
}

[data-seo-toggle].is-open::after {
	content: " ⌃";
}

@media (max-width: 800px) {
	.kf-hp-seo-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* ── 13 FAQ ── */
.kf-hp-faq {
	background: #fff;
}

.kf-hp-faq-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 40px;
	align-items: start;
}

.kf-hp-faq-grid > * {
	min-width: 0;
}

.kf-hp-faq-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
	max-width: 100%;
}

.kf-hp-faq-tabs button {
	padding: 10px 14px;
	border-radius: var(--kf-radius);
	border: 1px solid var(--kf-navy);
	background: #fff;
	color: var(--kf-navy);
	font-family: var(--kf-font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}

.kf-hp-faq-tabs button.is-active,
.kf-hp-faq-tabs button[aria-pressed="true"] {
	background: var(--kf-navy);
	color: var(--kf-on-navy);
	border-color: var(--kf-navy);
}

.kf-hp-acc {
	border-bottom: 1px solid var(--kf-line);
}

.kf-hp-acc button {
	display: flex;
	width: 100%;
	max-width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	background: none;
	border: 0;
	text-align: left;
	font-family: var(--kf-font-body);
	font-size: 16px;
	font-weight: 700;
	color: var(--kf-navy);
	cursor: pointer;
	white-space: normal;
	text-transform: none;
}

.kf-hp-acc button::after {
	content: "+";
	flex-shrink: 0;
	font-weight: 400;
	font-size: 22px;
	line-height: 1;
}

.kf-hp-acc.is-open button::after {
	content: "–";
}

.kf-hp-acc-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s ease;
}

.kf-hp-acc.is-open .kf-hp-acc-panel {
	grid-template-rows: 1fr;
}

.kf-hp-acc-inner {
	overflow: hidden;
}

.kf-hp-acc-inner p {
	margin: 0 0 16px;
	font-weight: 400;
	color: var(--kf-navy);
	line-height: 1.65;
}

.kf-hp-acc-inner a,
.kf-hp-seo a {
	color: var(--kf-navy);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.kf-hp-acc-inner a:hover,
.kf-hp-seo a:hover {
	color: var(--kf-navy-soft);
}

.kf-hp-faq-foot {
	margin: 24px 0 0;
	padding-top: 20px;
	border-top: 1px solid var(--kf-line);
	font-size: 14px;
	color: var(--kf-muted);
}

.kf-hp-faq-foot a {
	color: var(--kf-navy);
	font-weight: 700;
}

/* Five groups of questions read better in two columns on wide screens. */
@media (min-width: 1024px) {
	[data-faq-group] {
		column-count: 2;
		column-gap: 40px;
	}

	[data-faq-group] .kf-hp-acc {
		break-inside: avoid;
	}
}

@media (max-width: 800px) {
	.kf-hp-faq-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.kf-hp-faq-tabs {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 6px;
		-webkit-overflow-scrolling: touch;
		max-width: 100%;
	}

	.kf-hp-faq-tabs button {
		white-space: nowrap;
	}
}

/* ── 14 Blog + news feed ── */
.kf-hp-news {
	background: var(--kf-sand);
}

.kf-hp-news-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

.kf-hp-news-grid > * {
	min-width: 0;
}

.kf-hp-blog-head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	gap: 16px;
	margin-bottom: 24px;
}

.kf-hp-blog-head h2 {
	margin: 0 0 10px;
}

.kf-hp-blog-head .kf-hp-lead {
	margin: 0;
	max-width: 560px;
}

.kf-hp-blog-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.kf-hp-blog-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
}

.kf-hp-blog-media {
	display: block;
	overflow: hidden;
	border-radius: var(--kf-radius);
	background: #fff;
}

.kf-hp-blog-media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.kf-hp-blog-card:hover .kf-hp-blog-media img {
	transform: scale(1.05);
}

.kf-hp-blog-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 14px 0 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--kf-muted);
}

.kf-hp-blog-meta em {
	font-style: normal;
	color: var(--kf-gold-fg);
	background: var(--kf-gold);
	padding: 2px 7px;
	border-radius: 2px;
}

.kf-hp-blog-meta time::before,
.kf-hp-blog-meta span::before {
	content: "· ";
}

.kf-hp-blog-card h3 {
	margin: 0 0 8px;
	font-family: var(--kf-font-head);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: var(--kf-navy);
}

.kf-hp-blog-card p {
	margin: 0 0 12px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--kf-muted);
}

.kf-hp-blog-more {
	margin-top: auto;
	font-family: var(--kf-font-head);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--kf-navy);
}

.kf-hp-blog-card:hover .kf-hp-blog-more {
	color: var(--kf-navy-soft);
}

/* News rail — navy panel beside the blog cards. */
.kf-hp-feed {
	padding: 28px 24px;
	border-radius: var(--kf-radius);
	background: var(--kf-navy-deep);
	color: var(--kf-on-navy);
}

.kf-hp-feed h3 {
	margin: 0 0 20px;
	font-family: var(--kf-font-head);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: var(--kf-on-navy);
}

.kf-hp-feed-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.kf-hp-feed-list li {
	padding: 16px 0;
	border-top: 1px solid rgba(246, 249, 251, 0.15);
}

.kf-hp-feed-list li:first-child {
	padding-top: 0;
	border-top: 0;
}

.kf-hp-feed-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 6px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(246, 249, 251, 0.55);
}

.kf-hp-feed-meta em {
	font-style: normal;
	color: var(--kf-gold);
}

.kf-hp-feed-meta em::before {
	content: "· ";
	color: rgba(246, 249, 251, 0.4);
}

.kf-hp-feed-list h4 {
	margin: 0 0 6px;
	font-family: var(--kf-font-head);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

.kf-hp-feed-list h4 a {
	color: var(--kf-on-navy);
	text-decoration: none;
}

.kf-hp-feed-list h4 a:hover {
	color: var(--kf-gold);
}

.kf-hp-feed-text {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: rgba(246, 249, 251, 0.7);
}

.kf-hp-feed > .kf-hp-btn {
	margin-top: 20px;
}

@media (min-width: 640px) {
	.kf-hp-blog-cards {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (min-width: 1024px) {
	.kf-hp-news-grid {
		grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
		gap: 48px;
	}

	.kf-hp-feed {
		padding: 32px 28px;
	}
}

/* ── 15 CTA ── */
.kf-hp-cta {
	background: var(--kf-navy);
	color: var(--kf-on-navy);
}

.kf-hp-cta-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.kf-hp-cta h2 {
	color: var(--kf-on-navy);
	margin-bottom: 8px;
}

.kf-hp-cta p {
	margin: 0;
	color: rgba(246, 249, 251, 0.75);
}

.kf-hp-cta .kf-hp-btn--ghost {
	border-color: rgba(246, 249, 251, 0.4);
	color: var(--kf-on-navy);
}

.kf-hp-cta .kf-hp-btn--ghost:hover,
.kf-hp-cta .kf-hp-btn--ghost:focus-visible {
	background: rgba(246, 249, 251, 0.1);
}

.kf-hp-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

@media (max-width: 800px) {
	.kf-hp-cta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kf-hp-tile:hover img,
	.kf-hp-tile-media img {
		transform: none;
		transition: none;
	}

	.kf-parti-stage [data-parti-frame] {
		transition: none;
	}

	.kf-hp-seo-extra,
	.kf-hp-acc-panel {
		transition: none;
	}
}

/* ── Lightbox ── */
a.kf-hp-lb {
	display: block;
	cursor: zoom-in;
	color: inherit;
}

a.kf-hp-lb img {
	display: block;
	width: 100%;
}

.kf-hp-lb-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 56px;
	background: rgba(19, 45, 69, 0.98);
}

.kf-hp-lb-overlay[hidden] {
	display: none;
}

.kf-hp-lb-overlay img {
	max-width: min(1400px, 100%);
	max-height: calc(100vh - 96px);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--kf-radius);
}

.kf-hp-lb-caption {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 16px;
	margin: 0;
	text-align: center;
	color: #fff;
	font-size: 14px;
}

.kf-hp-lb-close,
.kf-hp-lb-prev,
.kf-hp-lb-next {
	position: absolute;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	padding: 8px 12px;
}

.kf-hp-lb-close {
	top: 12px;
	right: 12px;
	font-size: 32px;
}

.kf-hp-lb-prev {
	left: 8px;
	top: 50%;
	transform: translateY(-50%);
}

.kf-hp-lb-next {
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
}

@media (max-width: 700px) {
	.kf-hp-lb-overlay {
		padding: 48px 12px 64px;
	}

	.kf-hp-lb-prev,
	.kf-hp-lb-next {
		font-size: 28px;
	}
}

/* Three hero buttons wrap to two-plus-one on a phone, which leaves a ragged
   edge. A two-column grid puts Få offert across the top and the two secondary
   links side by side underneath. */
@media (max-width: 767px) {
	/* The photo carries the first impression, so it gets most of the first
	   screen: viewport-based, capped so a tablet in portrait is not all hero. */
	.kf-hp-hero {
		min-height: min(76vh, 560px);
	}

	.kf-hp-hero-inner {
		padding-top: 24px;
		padding-bottom: 28px;
		max-width: none;
	}

	.kf-hp-hero .kf-hp-eyebrow,
	.kf-hp-eyebrow {
		letter-spacing: 0.1em;
	}

	.kf-hp-hero h1 {
		font-size: 1.55rem;
		margin-bottom: 12px;
	}

	.kf-hp-hero-sub {
		margin-bottom: 20px;
		font-size: 15px;
	}

	.kf-hp-hero-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.kf-hp-hero-actions .kf-hp-btn {
		justify-content: center;
		width: 100%;
		padding-left: 12px;
		padding-right: 12px;
	}

	.kf-hp-hero-actions .kf-hp-btn--gold {
		grid-column: 1 / -1;
	}

	/* fill-mode:both starts the label at opacity:0. On a slow phone that can
	   leave the gold button empty until the animation finishes — skip it. */
	.kf-hp-hero-actions .kf-hp-btn-in,
	.kf-hp-hero-actions .kf-hp-btn-pop {
		animation: none;
	}

	.kf-hp-tile-media {
		height: 124px;
	}

	.kf-hp h2,
	.kf-hp-h2 {
		font-size: 22px;
	}
}

/* ── Köpprocessen ──
   The six steps live.kronfonster.se shows as two rows of large circles. Here
   they are one thin strip: the number and illustration are baked into the PNG,
   so the step needs no badge of its own. Six across on desktop, three on a
   tablet, two on a phone — the labels are short enough to stay on two lines. */
.kf-hp-steps {
	padding-top: calc(var(--kf-hp-section) * 0.6);
	padding-bottom: calc(var(--kf-hp-section) * 0.6);
	background: var(--kf-sand);
}

.kf-hp-steps-head {
	text-align: center;
	margin-bottom: 28px;
}

.kf-hp-steps-head h2 {
	margin: 0;
	font-size: clamp(20px, 1.8vw, 26px);
}

.kf-hp-steps-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px 12px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.kf-hp-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: center;
	min-width: 0;
}

.kf-hp-step::marker {
	content: none;
}

.kf-hp-step-ic {
	display: block;
	width: 84px;
	height: 84px;
	max-width: 100%;
	object-fit: contain;
}

.kf-hp-step-t {
	font-family: var(--kf-font-head);
	font-size: 12.5px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--kf-navy);
	max-width: 17em;
	text-wrap: balance;
}

@media (min-width: 640px) {
	.kf-hp-steps-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.kf-hp-steps-row {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		gap: 16px;
	}

	.kf-hp-step-ic {
		width: 92px;
		height: 92px;
	}
}
