/* =============================================================================
   Kanel25aars — front-page.css
   1:1 rebuild of the live homepage sections.
   ============================================================================= */

/* ---------- Hero (video background) ---------- */
.bk-hero {
	position: relative;
	min-height: clamp(440px, 64vh, 660px);
	display: flex;
	align-items: center;
	color: #fff;
	/* Solid dark base so the hero stays readable before the video paints
	   (slow connections, blocked autoplay, or a missing video file). */
	background-color: var(--bk-espresso);
	overflow: hidden;
}
.bk-hero__media { position: absolute; inset: 0; z-index: 0; }
.bk-hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bk-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(44, 24, 16, 0.55) 0%, rgba(44, 24, 16, 0.72) 100%),
		radial-gradient(120% 90% at 50% 10%, rgba(44, 24, 16, 0.25), rgba(44, 24, 16, 0.78));
}
.bk-hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 900px;
	margin-inline: auto;
	padding-block: var(--bk-space-16);
}
.bk-hero__title {
	color: #fff;
	margin: 0 auto var(--bk-space-5);
	font-size: clamp(2rem, 3.4vw + 1rem, 3.6rem);
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
	max-width: 18ch;
}
.bk-hero__lead {
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(1.05rem, 0.6vw + 1rem, 1.4rem);
	margin: 0 auto var(--bk-space-8);
	max-width: 44ch;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.bk-hero__cta { display: flex; justify-content: center; }

/* ---------- Hero: 25-års split layout + 25 kg quick-buy card ---------- */
.bk-hero__inner--split {
	max-width: var(--bk-container);
	text-align: left;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.92fr);
	gap: clamp(2rem, 4.5vw, 4.75rem);
	align-items: center;
}
.bk-hero__copy { position: relative; min-width: 0; }
.bk-hero__copy > * { position: relative; z-index: 1; }
.bk-hero__watermark {
	position: absolute;
	z-index: 0;
	top: -0.42em;
	left: -0.08em;
	font-family: var(--bk-font-display);
	font-weight: 900;
	font-size: clamp(9rem, 22vw, 17rem);
	line-height: 0.8;
	color: rgba(255, 255, 255, 0.08);
	pointer-events: none;
	user-select: none;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
	.bk-hero__watermark {
		color: transparent;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
		-webkit-background-clip: text;
		background-clip: text;
	}
}
.bk-hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.7em;
	margin: 0 0 var(--bk-space-4);
	font-family: var(--bk-font-body);
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bk-saffron);
}
.bk-hero__eyebrow-rule {
	width: 2.4rem;
	height: 2px;
	background: linear-gradient(90deg, var(--bk-saffron), rgba(198, 154, 79, 0));
	border-radius: var(--bk-radius-pill);
}
.bk-hero__inner--split .bk-hero__title { margin: 0 0 var(--bk-space-5); max-width: 16ch; }
.bk-hero__title-em { color: var(--bk-saffron); font-style: italic; white-space: nowrap; }
.bk-hero__inner--split .bk-hero__lead { margin: 0 0 var(--bk-space-8); max-width: 46ch; }
.bk-hero__inner--split .bk-hero__cta { justify-content: flex-start; }
.bk-hero__ghost {
	color: #fff !important;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.bk-hero__ghost:hover {
	background: rgba(255, 255, 255, 0.13);
	box-shadow: inset 0 0 0 1px #fff;
	color: #fff !important;
}

.bk-hero-buy {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--bk-space-3);
	padding: var(--bk-space-8) var(--bk-space-6) var(--bk-space-6);
	background: linear-gradient(170deg, rgba(255, 253, 251, 0.97) 0%, var(--bk-cream-100) 100%);
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: var(--bk-radius-lg);
	box-shadow: var(--bk-shadow-lg);
	color: var(--bk-espresso);
	overflow: hidden;
}
.bk-hero-buy::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, var(--bk-cinnamon) 0%, var(--bk-saffron) 100%);
}
.bk-hero-buy__ribbon {
	font-family: var(--bk-font-display);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.02em;
	color: var(--bk-cinnamon-700);
	background: var(--bk-cinnamon-50);
	border: 1px solid var(--bk-cinnamon-100);
	border-radius: var(--bk-radius-pill);
	padding: 0.35em 1em;
}
.bk-hero-buy__media {
	width: 132px;
	height: 132px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: var(--bk-space-1);
}
.bk-hero-buy__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 12px 20px rgba(44, 24, 16, 0.18));
}
.bk-hero-buy__numeral {
	font-family: var(--bk-font-display);
	font-weight: 800;
	font-size: 4.4rem;
	line-height: 1;
	color: var(--bk-cinnamon);
}
.bk-hero-buy__numeral small { font-size: 1.2rem; margin-left: 0.1em; }
.bk-hero-buy__body { width: 100%; }
.bk-hero-buy__name {
	font-family: var(--bk-font-display);
	font-weight: 700;
	font-size: var(--bk-fs-700);
	margin: 0 0 var(--bk-space-2);
	color: var(--bk-espresso);
}
.bk-hero-buy__tag {
	margin: 0 auto var(--bk-space-4);
	max-width: 30ch;
	font-size: 0.95rem;
	line-height: 1.5;
	color: var(--bk-stone-500);
}
.bk-hero-buy__price {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.15rem;
	margin: 0 0 var(--bk-space-5);
	font-family: var(--bk-font-display);
	font-weight: 800;
	font-size: 2rem;
	line-height: 1.05;
	color: var(--bk-cinnamon);
}
.bk-hero-buy__price del { color: var(--bk-stone-500); font-size: 0.58em; font-weight: 600; }
.bk-hero-buy__price ins { text-decoration: none; }
.bk-hero-buy__per-year {
	font-family: var(--bk-font-body);
	font-weight: 600;
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	color: var(--bk-stone-500);
}
.bk-hero-buy__cta { margin-bottom: var(--bk-space-3); }
.bk-hero-buy__details {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
	font-weight: 700;
	font-size: 0.92rem;
	color: var(--bk-cinnamon-700);
}
.bk-hero-buy__details:hover { color: var(--bk-cinnamon); }
.bk-hero-buy__trust {
	list-style: none;
	margin: var(--bk-space-5) 0 0;
	padding: var(--bk-space-4) 0 0;
	border-top: 1px solid var(--bk-stone-300);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--bk-space-4);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--bk-stone-700);
}
.bk-hero-buy__trust li { display: inline-flex; align-items: center; gap: 0.4em; }
.bk-hero-buy__trust svg { width: 16px; height: 16px; color: var(--bk-cinnamon); }

@media (max-width: 980px) {
	.bk-hero__inner--split {
		grid-template-columns: 1fr;
		gap: var(--bk-space-8);
		text-align: center;
		justify-items: center;
	}
	.bk-hero__inner--split .bk-hero__title,
	.bk-hero__inner--split .bk-hero__lead { margin-inline: auto; max-width: 32ch; }
	.bk-hero__inner--split .bk-hero__cta { justify-content: center; }
	.bk-hero-buy { width: 100%; max-width: 440px; }
}

@media (prefers-reduced-motion: reduce) {
	.bk-hero-buy { transition: none; }
}

/* ---------- Category grid (4 tiles) ---------- */
.bk-cats__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--bk-space-6);
}
.bk-cat-card {
	display: flex;
	flex-direction: column;
	background: var(--bk-color-surface);
	border: 1px solid var(--bk-stone-300);
	border-radius: var(--bk-radius-lg);
	overflow: hidden;
	box-shadow: var(--bk-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.bk-cat-card:hover { transform: translateY(-4px); box-shadow: var(--bk-shadow); }
.bk-cat-card__link { display: block; color: inherit; text-decoration: none; }
.bk-cat-card__link:hover { text-decoration: none; color: inherit; }
.bk-cat-card__media {
	aspect-ratio: 1 / 1;
	background: var(--bk-cream-100);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.bk-cat-card__img { width: 100%; height: 100%; object-fit: cover; }
.bk-cat-card__title {
	font-size: var(--bk-fs-600);
	text-align: center;
	margin: var(--bk-space-5) var(--bk-space-4) var(--bk-space-3);
}
.bk-cat-card__cta {
	margin: 0 var(--bk-space-4) var(--bk-space-5);
	justify-content: center;
}
@media (max-width: 900px) {
	.bk-cats__grid { grid-template-columns: repeat(2, 1fr); gap: var(--bk-space-5); }
}
@media (max-width: 460px) {
	.bk-cats__grid { grid-template-columns: 1fr 1fr; gap: var(--bk-space-3); }
	.bk-cat-card__title { font-size: var(--bk-fs-500); }
}

/* ---------- Testimonials ---------- */
.bk-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--bk-space-6);
}
.bk-testimonial {
	margin: 0;
	background: var(--bk-color-surface);
	border: 1px solid var(--bk-stone-300);
	border-radius: var(--bk-radius-lg);
	padding: var(--bk-space-8) var(--bk-space-6);
	text-align: center;
	box-shadow: var(--bk-shadow-sm);
}
.bk-testimonial__photo { width: 84px; height: 84px; margin: 0 auto var(--bk-space-4); }
.bk-testimonial__img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 3px solid var(--bk-cream-100); }
.bk-testimonial__stars { color: var(--bk-saffron); display: inline-flex; gap: 2px; margin-bottom: var(--bk-space-3); }
.bk-testimonial__stars svg { width: 18px; height: 18px; }
.bk-testimonial__quote { margin: 0 0 var(--bk-space-4); font-size: var(--bk-fs-500); color: var(--bk-stone-700); line-height: 1.5; font-style: italic; }
.bk-testimonial__author { font-weight: 700; color: var(--bk-espresso); font-family: var(--bk-font-display); }
@media (max-width: 860px) { .bk-testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; } }

/* ---------- Guides grid ---------- */
.bk-guides__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--bk-space-6);
}
.bk-guide-card {
	background: var(--bk-color-surface);
	border: 1px solid var(--bk-stone-300);
	border-radius: var(--bk-radius-lg);
	overflow: hidden;
	box-shadow: var(--bk-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.bk-guide-card:hover { transform: translateY(-4px); box-shadow: var(--bk-shadow); }
.bk-guide-card__link { display: grid; grid-template-columns: 200px 1fr; color: inherit; text-decoration: none; }
.bk-guide-card__link:hover { color: inherit; text-decoration: none; }
.bk-guide-card__media { background: var(--bk-cream-100); aspect-ratio: 4 / 3; overflow: hidden; }
.bk-guide-card__img { width: 100%; height: 100%; object-fit: cover; }
.bk-guide-card__body { padding: var(--bk-space-5) var(--bk-space-6); display: flex; flex-direction: column; gap: 0.5rem; }
.bk-guide-card__date { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bk-stone-500); }
.bk-guide-card__title { font-size: var(--bk-fs-600); margin: 0; }
.bk-guide-card__more { color: var(--bk-cinnamon); font-weight: 700; font-size: 0.9rem; margin-top: auto; }
@media (max-width: 860px) { .bk-guides__grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .bk-guide-card__link { grid-template-columns: 1fr; } .bk-guide-card__media { aspect-ratio: 16/9; } }

/* ---------- Showcase CTAs ---------- */
.bk-showcase__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--bk-space-6);
}
.bk-showcase__card {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 280px;
	border-radius: var(--bk-radius-lg);
	overflow: hidden;
	color: #fff;
	box-shadow: var(--bk-shadow);
}
.bk-showcase__media { position: absolute; inset: 0; z-index: 0; }
.bk-showcase__img { width: 100%; height: 100%; object-fit: cover; }
.bk-showcase__card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(44, 24, 16, 0.82) 0%, rgba(44, 24, 16, 0.5) 60%, rgba(44, 24, 16, 0.25) 100%);
}
.bk-showcase__body { position: relative; z-index: 2; padding: var(--bk-space-10) var(--bk-space-8); max-width: 80%; }
.bk-showcase__title { color: #fff; margin: 0 0 var(--bk-space-6); font-size: clamp(1.4rem, 1.8vw + 1rem, 2rem); }
@media (max-width: 760px) { .bk-showcase__grid { grid-template-columns: 1fr; } }

/* ---------- SEO long-form (editorial layout) ---------- */
.bk-seo {
	background:
		radial-gradient(120% 70% at 50% 0%, var(--bk-cream-50) 0%, transparent 60%),
		var(--bk-cream-100);
}

/* Centred lead */
.bk-seo__head {
	max-width: 720px;
	margin: 0 auto var(--bk-space-12);
	text-align: center;
}
.bk-seo__head h2 { margin: 0 0 var(--bk-space-4); }
.bk-seo__intro {
	font-size: var(--bk-fs-500);
	line-height: 1.7;
	color: var(--bk-stone-700);
	margin: 0;
}

/* Two-column shell: sticky TOC + article */
.bk-seo__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--bk-space-10);
}
@media (min-width: 1024px) {
	.bk-seo__layout {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: var(--bk-space-16);
		align-items: start;
	}
}

/* Sticky table of contents (reuses .bk-toc card) */
@media (min-width: 1024px) {
	.bk-seo__aside { position: sticky; top: calc(var(--bk-header-height) + var(--bk-space-6)); }
	.bk-seo-toc .bk-toc__list { grid-template-columns: 1fr; gap: 0; }
}
.bk-seo-toc .bk-toc__link { padding-block: var(--bk-space-3); }

/* Article column */
.bk-seo__article { max-width: 740px; margin-inline: 0; }
.bk-seo__topic { margin: 0 0 var(--bk-space-5); }
.bk-seo__article > p {
	font-size: var(--bk-fs-500);
	line-height: 1.8;
	color: var(--bk-stone-700);
	margin: 0 0 var(--bk-space-5);
}
.bk-seo__dropcap::first-letter {
	float: left;
	font-family: var(--bk-font-display);
	font-weight: 700;
	font-size: 3.4em;
	line-height: 0.74;
	margin: 0.05em 0.12em 0 0;
	color: var(--bk-cinnamon);
}

/* Numbered sub-sections */
.bk-seo-block {
	margin-top: var(--bk-space-10);
	padding-top: var(--bk-space-8);
	border-top: 1px solid var(--bk-stone-300);
	scroll-margin-top: calc(var(--bk-header-height) + var(--bk-space-8));
}
.bk-seo-block__title {
	display: flex;
	align-items: baseline;
	gap: var(--bk-space-4);
	margin: 0 0 var(--bk-space-4);
	font-size: clamp(1.3rem, 1.2vw + 0.9rem, 1.7rem);
}
.bk-seo-block__num {
	flex-shrink: 0;
	font-family: var(--bk-font-mono, ui-monospace, monospace);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--bk-cinnamon);
	background: var(--bk-cinnamon-50);
	border-radius: var(--bk-radius-pill);
	padding: 0.32em 0.7em;
	line-height: 1;
	transform: translateY(-0.18em);
}
.bk-seo-block p {
	font-size: var(--bk-fs-400);
	line-height: 1.8;
	color: var(--bk-stone-700);
	margin: 0 0 var(--bk-space-4);
}
.bk-seo-block p:last-child { margin-bottom: 0; }

/* Closing CTA card */
.bk-seo__cta {
	display: flex;
	align-items: flex-start;
	gap: var(--bk-space-4);
	margin-top: var(--bk-space-12);
	padding: var(--bk-space-6) var(--bk-space-8);
	background: linear-gradient(135deg, var(--bk-cinnamon-50) 0%, #fff6ec 100%);
	border: 1px solid var(--bk-cinnamon-100);
	border-left: 4px solid var(--bk-cinnamon);
	border-radius: var(--bk-radius-lg);
	box-shadow: var(--bk-shadow-xs);
}
.bk-seo__cta-icon { font-size: 1.6rem; line-height: 1.4; flex-shrink: 0; }
.bk-seo__cta-text {
	margin: 0;
	font-size: var(--bk-fs-500);
	line-height: 1.65;
	color: var(--bk-stone-700);
}
.bk-seo__cta-text a {
	color: var(--bk-cinnamon-700);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--bk-cinnamon-200);
	text-underline-offset: 3px;
}
.bk-seo__cta-text a:hover { color: var(--bk-cinnamon); text-decoration-color: currentColor; }

@media (max-width: 560px) {
	.bk-seo__cta { flex-direction: column; padding: var(--bk-space-5) var(--bk-space-6); }
	.bk-seo-block__title { gap: var(--bk-space-3); }
}
