.kse-homepage,
.kse-homepage * {
	box-sizing: border-box;
}

.kse-homepage {
	--kse-max-width: none;
	--kse-side-padding: clamp(32px, 4vw, 72px);
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: 100vw;
	margin-left: -50vw;
	margin-right: -50vw;
	background: var(--kse-cream);
	color: var(--kse-dark);
	font-family: var(--kse-body-font);
	font-size: var(--kse-body-size);
	line-height: 1.65;
	overflow-x: clip;
	isolation: isolate;
}

.kse-homepage img,
.kse-homepage svg {
	display: block;
	max-width: 100%;
}

.kse-homepage a {
	color: inherit;
	text-decoration: none;
}

.kse-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.kse-container {
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding-inline: var(--kse-side-padding);
}

.kse-main {
	position: relative;
	z-index: 1;
}

.kse-header {
	position: relative;
	z-index: 20;
	background: linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.76));
}

.kse-header__inner {
	min-height: 80px;
	display: grid;
	grid-template-columns: 180px 1fr auto;
	align-items: center;
	gap: 24px;
}

.kse-header__logo {
	display: inline-flex;
	align-items: center;
	width: 170px;
	min-width: 0;
}

.kse-header__logo-img {
	width: 170px;
	height: auto;
	object-fit: contain;
}

.kse-header__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2.1vw, 34px);
	font-size: var(--kse-nav-size);
	font-weight: 600;
	color: color-mix(in srgb, var(--kse-dark) 88%, var(--kse-muted));
}

.kse-header__nav-link {
	position: relative;
	padding: 9px 0 10px;
	transition: color 180ms ease;
}

.kse-header__nav-link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, var(--kse-coral), var(--kse-gold));
	transform: translateX(-50%);
	transition: width 180ms ease;
}

.kse-header__nav-link:hover,
.kse-header__nav-link.is-active {
	color: var(--kse-dark);
}

.kse-header__nav-link:hover::after,
.kse-header__nav-link.is-active::after {
	width: 32px;
}

.kse-header__mobile-cta {
	display: none !important;
}

.kse-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	border: 1px solid rgba(47, 95, 62, 0.18);
	border-radius: 999px;
	background: var(--kse-white);
	color: var(--kse-primary-green);
	cursor: pointer;
}

.kse-menu-toggle span:not(.kse-sr-only) {
	width: 18px;
	height: 2px;
	border-radius: 99px;
	background: currentColor;
}

.kse-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 46px;
	padding: 12px 24px;
	border-radius: 999px;
	font-family: var(--kse-body-font);
	font-size: var(--kse-button-size);
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.kse-btn:hover {
	transform: translateY(-2px);
}

.kse-btn--primary {
	background: var(--kse-coral);
	border: 1px solid var(--kse-coral);
	color: #fff;
	box-shadow: 0 13px 26px rgba(238, 111, 101, 0.22);
}

.kse-btn--primary:hover {
	box-shadow: 0 18px 30px rgba(238, 111, 101, 0.28);
}

.kse-btn--secondary {
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(47, 95, 62, 0.28);
	color: var(--kse-primary-green);
	box-shadow: 0 10px 24px rgba(47, 95, 62, 0.08);
}

.kse-btn__icon {
	width: 28px;
	height: 18px;
	flex: 0 0 auto;
}

.kse-label {
	margin-bottom: 12px;
	color: var(--kse-gold);
	font-family: var(--kse-body-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kse-section-title {
	margin: 0;
	font-family: var(--kse-heading-font);
	font-size: clamp(32px, 4vw, var(--kse-section-title-size));
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -0.018em;
	color: var(--kse-primary-green);
}

.kse-hero {
	position: relative;
	width: 100%;
	padding: 6px 0 92px;
	isolation: isolate;
	overflow: hidden;
}

.kse-hero__grid {
	display: grid;
	grid-template-columns: minmax(340px, 0.39fr) minmax(560px, 0.61fr);
	gap: clamp(24px, 3vw, 44px);
	align-items: center;
	min-height: 622px;
}

.kse-hero .kse-container.kse-hero__grid {
	width: 100%;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.kse-hero__content {
	position: relative;
	z-index: 3;
	padding-top: 4px;
	padding-left: 136px;
}

.kse-hero-title {
	margin: 0 0 24px;
	font-family: var(--kse-heading-font);
	font-size: 45px;
	font-weight: 500;
	line-height: var(--kse-h1-line-height);
	letter-spacing: -0.018em;
}

.kse-hero-title span {
	display: block;
}

.kse-hero__lead {
	max-width: 425px;
	margin: 0 0 26px;
	color: var(--kse-muted);
	font-size: clamp(14px, 1.08vw, 15px);
	font-weight: 600;
	line-height: 1.66;
}

.kse-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
	margin-bottom: 38px;
}

.kse-stats {
	display: grid;
	grid-template-columns: repeat(4, 105px);
	gap: 41px;
	align-items: stretch;
}

.kse-stat-card {
	min-height: 125px;
	padding: 18px 10px 16px;
	text-align: center;
	background: rgba(255, 252, 246, 0.88);
	border: 1px solid rgba(201, 164, 92, 0.16);
	border-radius: 58px 58px 46px 46px;
	box-shadow: 0 14px 32px rgba(88, 67, 42, 0.06);
}

.kse-stat-card__icon {
	display: flex;
	justify-content: center;
	height: 28px;
	margin-bottom: 7px;
}

.kse-stat-card__icon-img {
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.kse-stat-card__number {
	font-family: var(--kse-heading-font);
	font-size: 30px;
	font-weight: 600;
	line-height: 0.95;
	color: var(--kse-dark);
}

.kse-stat-card__text {
	margin-top: 7px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 0.015em;
	color: var(--kse-muted);
	text-transform: uppercase;
}

.kse-hero__visual {
	position: relative;
	z-index: 2;
	min-height: 590px;
}
.kse-hero__visual.is-composite {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	min-height: auto;
	padding-right: 0;
	margin-right: 0;
}

.kse-hero__composite {
	display: block;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0 0 0 auto;
	object-fit: contain;
	background: transparent;
}


.kse-hero__gold-line {
	position: absolute;
	inset: 28px -24px 12px 80px;
	z-index: 0;
	border: 2px solid transparent;
	border-right-color: color-mix(in srgb, var(--kse-gold) 72%, transparent);
	border-top-color: color-mix(in srgb, var(--kse-gold) 48%, transparent);
	border-radius: 48% 52% 44% 56% / 40% 30% 70% 60%;
	transform: rotate(8deg);
	pointer-events: none;
}

.kse-deco--gold-line-img {
	position: absolute;
	inset: 6px -10px 0 20px;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}

.kse-hero__photo-wrap {
	position: absolute;
	top: 30px;
	right: 86px;
	z-index: 2;
	width: min(88%, 545px);
	aspect-ratio: 0.92 / 1;
	overflow: hidden;
	border-radius: 56% 44% 42% 58% / 24% 26% 74% 76%;
	box-shadow: 0 30px 65px rgba(83, 66, 45, 0.08);
	background: var(--kse-beige);
}

.kse-hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.kse-hero__badge {
	position: absolute;
	left: 40px;
	top: 255px;
	z-index: 5;
	display: grid;
	place-items: center;
	width: 142px;
	height: 142px;
	padding: 18px;
	border: 2px solid rgba(201, 164, 92, 0.68);
	border-radius: 999px;
	background: rgba(255, 252, 246, 0.94);
	box-shadow: 0 18px 36px rgba(90, 69, 45, 0.11);
	color: var(--kse-dark);
	font-family: var(--kse-heading-font);
	font-size: 15px;
	font-style: italic;
	font-weight: 600;
	line-height: 1.24;
	text-align: center;
}

.kse-deco {
	position: absolute;
	z-index: 4;
	pointer-events: none;
	user-select: none;
}

.kse-deco--raspberries {
	top: 28px;
	right: 0;
	width: 160px;
	transform: rotate(8deg);
}

.kse-deco--salmon {
	right: -42px;
	top: 245px;
	width: 226px;
	transform: rotate(5deg);
}

.kse-deco--avocado {
	right: 130px;
	bottom: 12px;
	width: 136px;
	transform: rotate(12deg);
}

.kse-deco--olives {
	right: -16px;
	bottom: 64px;
	width: 154px;
	transform: rotate(-8deg);
}

.kse-deco--oil {
	left: 76px;
	bottom: 28px;
	width: 76px;
	transform: rotate(-12deg);
}

.kse-deco--leaves {
	top: 22px;
	left: 132px;
	width: 132px;
	opacity: 0.9;
	transform: rotate(18deg);
}

.kse-dot {
	position: absolute;
	z-index: 1;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--kse-gold);
	pointer-events: none;
	opacity: 0.75;
}

.kse-dot--one {
	left: 40px;
	top: 190px;
}

.kse-dot--two {
	right: 105px;
	bottom: 130px;
	width: 7px;
	height: 7px;
}

.kse-section {
	position: relative;
	padding: 92px 0;
	isolation: isolate;
}

.kse-wave {
	position: absolute;
	left: 0;
	right: 0;
	z-index: -1;
	pointer-events: none;
}

.kse-wave--top {
	top: -68px;
	height: 120px;
	background: radial-gradient(120% 110% at 50% 100%, var(--kse-beige) 0 64%, transparent 65%);
}

.kse-regimes {
	padding-top: 64px;
	padding-bottom: 72px;
	background:
		radial-gradient(70% 60% at 0% 48%, rgba(248, 217, 207, 0.36), transparent 68%),
		linear-gradient(180deg, #fffdf9 0%, #fffaf4 100%);
	overflow: hidden;
}

.kse-regimes .kse-wave--top {
	top: -54px;
	height: 122px;
	background: radial-gradient(118% 118% at 48% 100%, #fffdf9 0 58%, transparent 59%);
	opacity: 0.96;
}

.kse-regimes::before {
	content: "";
	position: absolute;
	left: -6vw;
	top: 32px;
	width: 34vw;
	min-width: 360px;
	height: 84%;
	border-radius: 44% 56% 52% 48% / 45% 40% 60% 55%;
	background: radial-gradient(closest-side, rgba(248, 217, 207, 0.55), rgba(248, 217, 207, 0.12) 72%, transparent 73%);
	pointer-events: none;
	z-index: 0;
}

.kse-regimes::after {
	content: "";
	position: absolute;
	right: -11vw;
	bottom: -150px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(221, 232, 212, 0.34), transparent 72%);
	pointer-events: none;
	z-index: 0;
}

.kse-regimes__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(250px, 0.315fr) minmax(0, 0.685fr);
	gap: clamp(34px, 4.2vw, 58px);
	align-items: center;
	min-height: 382px;
	padding-top: 52px;
	padding-bottom: 50px;
	isolation: isolate;
}

.kse-regimes__grid::before {
	content: "";
	position: absolute;
	inset: 0 var(--kse-side-padding);
	z-index: -2;
	border-radius: 36% 64% 31% 69% / 13% 18% 17% 13%;
	background:
		radial-gradient(92% 105% at 10% 54%, rgba(248, 217, 207, 0.62) 0 40%, rgba(248, 217, 207, 0.25) 52%, transparent 61%),
		radial-gradient(58% 45% at 54% -7%, rgba(255, 255, 255, 0.98) 0 64%, transparent 65%),
		radial-gradient(42% 55% at 102% 28%, rgba(255, 255, 255, 0.94) 0 67%, transparent 68%),
		linear-gradient(90deg, rgba(251, 243, 236, 0.96) 0%, rgba(255, 253, 248, 0.98) 43%, rgba(255, 255, 252, 1) 100%);
	clip-path: polygon(0 17%, 8% 10%, 18% 7%, 29% 4%, 42% 7%, 55% 5%, 68% 7%, 82% 5%, 100% 0, 100% 96%, 88% 93%, 74% 96%, 60% 94%, 45% 98%, 31% 95%, 17% 96%, 7% 93%, 0 96%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
	pointer-events: none;
}

.kse-regimes__grid::after {
	content: "";
	position: absolute;
	right: calc(var(--kse-side-padding) + 4px);
	top: 22px;
	z-index: -1;
	width: min(30vw, 330px);
	height: 72%;
	border-radius: 50%;
	background: radial-gradient(closest-side, rgba(255, 255, 255, 0.62), transparent 72%);
	pointer-events: none;
}

.kse-regimes__intro {
	position: relative;
	z-index: 2;
	max-width: 280px;
	padding-left: 8px;
}

.kse-regimes__intro .kse-label {
	margin-bottom: 10px;
	font-size: 11px;
	letter-spacing: 0.09em;
	color: color-mix(in srgb, var(--kse-gold) 84%, var(--kse-muted));
}

.kse-regimes__intro .kse-section-title {
	font-size: clamp(38px, 3.25vw, 48px);
	line-height: 0.98;
	letter-spacing: -0.02em;
}

.kse-regimes__intro p,
.kse-recipes__content p,
.kse-about__card p,
.kse-final-cta__content p {
	margin: 20px 0 26px;
	color: var(--kse-muted);
	font-weight: 600;
	line-height: 1.72;
}

.kse-regimes__intro p {
	max-width: 246px;
	margin-top: 26px;
	margin-bottom: 24px;
	font-size: 14px;
	line-height: 1.78;
}

.kse-regimes__intro .kse-btn {
	min-height: 42px;
	padding: 12px 20px;
	font-size: 12px;
	box-shadow: 0 13px 25px rgba(238, 111, 101, 0.2);
}

.kse-regime-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px 18px;
	align-items: stretch;
}

.kse-regime-card {
	position: relative;
	min-height: 176px;
	overflow: hidden;
	border: 0;
	box-shadow: 0 18px 42px rgba(69, 55, 36, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.74);
	transform: translateZ(0);
}

.kse-regime-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
		radial-gradient(95% 95% at 94% 12%, rgba(255, 255, 255, 0.82), transparent 52%),
		radial-gradient(70% 62% at 6% 112%, rgba(255, 255, 255, 0.34), transparent 65%);
	pointer-events: none;
}

.kse-regime-card::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 1;
	border-radius: inherit;
	background: linear-gradient(130deg, rgba(255, 255, 255, 0.26), transparent 46%);
	pointer-events: none;
}

.kse-regime-card--1 {
	grid-column: span 4;
	border-radius: 62px 88px 40px 76px / 54px 64px 44px 62px;
}

.kse-regime-card--2 {
	grid-column: span 4;
	border-radius: 42px 82px 62px 46px / 52px 68px 58px 46px;
}

.kse-regime-card--3 {
	grid-column: span 4;
	border-radius: 74px 48px 82px 42px / 60px 46px 68px 48px;
}

.kse-regime-card--4 {
	grid-column: span 5;
	min-height: 170px;
	border-radius: 46px 88px 64px 48px / 54px 72px 62px 46px;
}


.kse-regime-card--green {
	background: linear-gradient(128deg, #dce8d1 0%, #eef4e8 48%, #fbf7ed 100%);
}

.kse-regime-card--coral {
	background: linear-gradient(128deg, #f9dcd3 0%, #fceee9 48%, #fffaf3 100%);
}

.kse-regime-card--cream {
	background: linear-gradient(128deg, #fff7e8 0%, #fffaf0 46%, #fffffb 100%);
}

.kse-regime-card--yellow {
	background: linear-gradient(128deg, #fbefc6 0%, #fff6da 48%, #fffdf2 100%);
}

.kse-regime-card__content {
	position: relative;
	z-index: 3;
	max-width: 64%;
	padding: 23px 22px 20px 24px;
}


.kse-regime-card__number {
	margin-bottom: 4px;
	font-family: var(--kse-heading-font);
	font-size: 31px;
	font-weight: 600;
	line-height: 0.88;
	color: var(--kse-coral);
	opacity: 0.88;
}

.kse-regime-card--3 .kse-regime-card__number,
.kse-regime-card--4 .kse-regime-card__number {
	color: color-mix(in srgb, var(--kse-gold) 78%, var(--kse-coral));
}


.kse-regime-card h3 {
	margin: 0 0 9px;
	font-family: var(--kse-heading-font);
	font-size: clamp(20px, 1.8vw, var(--kse-card-title-size));
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: -0.012em;
	color: var(--kse-dark);
}

.kse-regime-card p {
	margin: 0;
	font-size: clamp(11px, 0.88vw, var(--kse-card-body-size));
	font-weight: 600;
	line-height: 1.48;
	color: color-mix(in srgb, var(--kse-muted) 88%, var(--kse-dark));
}

.kse-card-arrow {
	display: inline-flex;
	width: 34px;
	height: 34px;
	margin-top: 16px;
	color: var(--kse-primary-green);
	filter: drop-shadow(0 5px 10px rgba(47, 95, 62, 0.08));
}

.kse-regime-card__image {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	filter: none;
	pointer-events: none;
}

.kse-regime-card--1 .kse-regime-card__image {
	object-position: right center;
}

.kse-regime-card--2 .kse-regime-card__image {
	object-position: right center;
}

.kse-regime-card--3 .kse-regime-card__image {
	object-position: right center;
}

.kse-regime-card--4 .kse-regime-card__image {
	object-position: right center;
}


.kse-recipes {
	background: #fffdf8;
	overflow: hidden;
}

.kse-recipes__grid {
	display: grid;
	grid-template-columns: 0.36fr 0.64fr;
	gap: 54px;
	align-items: center;
}

.kse-recipes__content {
	position: relative;
	z-index: 2;
}

.kse-recipe-features {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, max-content));
	gap: 12px 22px;
	margin: 26px 0 16px;
	color: var(--kse-muted);
	font-size: 14px;
	font-weight: 600;
}

.kse-recipe-features span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.kse-recipe-features svg {
	width: 22px;
	height: 22px;
	color: var(--kse-primary-green);
}

.kse-text-link {
	display: inline-flex;
	margin-top: 8px;
	color: var(--kse-primary-green);
	font-weight: 600;
	border-bottom: 1px solid color-mix(in srgb, var(--kse-primary-green) 30%, transparent);
}

.kse-recipe-collage {
	position: relative;
	min-height: 382px;
}

.kse-recipe-collage__line {
	position: absolute;
	left: 80px;
	right: 20px;
	top: 34px;
	bottom: 18px;
	border: 2px solid color-mix(in srgb, var(--kse-gold) 50%, transparent);
	border-left: 0;
	border-radius: 42% 58% 44% 56% / 38% 62% 38% 62%;
	transform: rotate(3deg);
	pointer-events: none;
}

.kse-recipe-photo {
	position: absolute;
	overflow: hidden;
	box-shadow: 0 22px 48px rgba(74, 62, 45, 0.09);
	background: var(--kse-beige);
}

.kse-recipe-photo__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.kse-recipe-photo--1 {
	left: 4px;
	bottom: 42px;
	width: 31%;
	aspect-ratio: 1;
	border-radius: 48% 52% 45% 55% / 38% 50% 50% 62%;
}

.kse-recipe-photo--2 {
	left: 30%;
	top: 0;
	width: 47%;
	aspect-ratio: 1.36;
	border-radius: 86px 54px 82px 56px;
	border: 2px solid rgba(201, 164, 92, 0.42);
}

.kse-recipe-photo--3 {
	right: 0;
	bottom: 38px;
	width: 22%;
	aspect-ratio: 0.75;
	border-radius: 54px 38px 66px 42px;
}

.kse-benefits {
	position: relative;
	padding: 10px 0 52px;
	background: #fffdf8;
	overflow: hidden;
	isolation: isolate;
}

.kse-benefits__title {
	max-width: 500px;
	margin: 0 auto 6px;
	text-align: center;
	color: var(--kse-dark);
}

.kse-benefits__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
	align-items: start;
}

.kse-benefit {
	text-align: center;
	font-weight: 600;
	font-size: 13px;
	line-height: 1.28;
	color: var(--kse-dark);
}

.kse-benefit__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 100px;
	height: 84px;
	margin: 0 auto 14px;
}

.kse-benefit__icon-img {
	display: block;
	width: 100px;
	height: 84px;
	object-fit: contain;
	object-position: center center;
	filter: saturate(1.04) contrast(1.02);
}

.kse-benefits__blob {
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.kse-benefits__blob--left {
	left: -110px;
	bottom: -120px;
	width: 260px;
	height: 260px;
	border-radius: 45% 55% 51% 49% / 52% 44% 56% 48%;
	background: var(--kse-soft-green);
}

.kse-benefits__blob--right {
	right: -90px;
	top: 2px;
	width: 190px;
	height: 290px;
	border-radius: 70% 30% 44% 56% / 42% 55% 45% 58%;
	background: var(--kse-beige);
}

.kse-about {
	padding-top: 5px;
	background: linear-gradient(180deg, #fffdf8 0%, var(--kse-cream) 100%);
}

.kse-about__grid {
	display: grid;
	grid-template-columns: 270px minmax(310px, 0.95fr) minmax(420px, 1.35fr);
	gap: 28px;
	align-items: center;
}

.kse-about__portrait-wrap {
	overflow: hidden;
	min-height: 278px;
	border-radius: 58px 88px 54px 72px;
	background: var(--kse-soft-coral);
	box-shadow: 0 20px 45px rgba(72, 59, 44, 0.08);
}

.kse-about__portrait {
	width: 100%;
	height: 278px;
	object-fit: cover;
	object-position: center top;
}

.kse-about__card {
	padding: 34px 36px;
	border-radius: 70px 44px 84px 46px;
	background: rgba(255, 252, 246, 0.84);
	box-shadow: 0 20px 48px rgba(84, 67, 45, 0.07);
}

.kse-about__subtitle {
	margin-top: 7px;
	color: var(--kse-dark);
	font-weight: 600;
	line-height: 1.35;
}

.kse-signature {
	margin-top: 18px;
	font-family: var(--kse-heading-font);
	font-size: 29px;
	font-style: italic;
	color: var(--kse-dark);
}

.kse-certificates {
	display: grid;
	gap: 16px;
}

.kse-certificates__top {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.kse-certificate-card,
.kse-certificate-logo,
.kse-testimonial-card {
	background: rgba(255, 255, 255, 0.83);
	border: 1px solid rgba(201, 164, 92, 0.13);
	box-shadow: 0 16px 34px rgba(72, 59, 44, 0.06);
}

.kse-certificate-card {
	min-height: 166px;
	padding: 24px 16px;
	border-radius: 28px;
	text-align: center;
}

.kse-certificate-card__logo {
	width: 74px;
	height: 36px;
	margin: 0 auto 8px;
	object-fit: contain;
}

.kse-certificate-card__headline {
	font-family: var(--kse-heading-font);
	font-size: 33px;
	font-weight: 600;
	line-height: 0.96;
	color: var(--kse-dark);
}

.kse-certificate-card:first-child .kse-certificate-card__headline {
	font-family: var(--kse-body-font);
	font-size: 29px;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #17305a;
}

.kse-certificate-card__subtitle {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.22;
	color: var(--kse-muted);
	text-transform: uppercase;
}

.kse-certificate-card p {
	margin: 10px 0 0;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--kse-muted);
}

.kse-certificates__logos {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
}

.kse-certificate-logo {
	display: grid;
	place-items: center;
	min-height: 80px;
	padding: 12px;
	border-radius: 22px;
}

.kse-certificate-logo__img {
	width: 100%;
	max-height: 58px;
	object-fit: contain;
}

.kse-testimonials {
	position: relative;
	padding: 20px 0 62px;
	background: linear-gradient(180deg, var(--kse-cream) 0%, #fffaf4 100%);
	overflow: hidden;
}

.kse-testimonials::before {
	content: "";
	position: absolute;
	inset: -90px -12vw auto;
	height: 170px;
	border-radius: 0 0 50% 50%;
	background: rgba(255, 255, 255, 0.55);
	pointer-events: none;
}

.kse-testimonials__title {
	margin: 0 0 34px;
	text-align: center;
	color: var(--kse-dark);
}

.kse-testimonials__shell {
	display: grid;
	grid-template-columns: 48px 1fr 48px;
	gap: 18px;
	align-items: center;
}

.kse-testimonials__viewport {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 36px) / 3);
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.kse-testimonials__viewport::-webkit-scrollbar {
	display: none;
}

.kse-testimonial-card {
	scroll-snap-align: start;
	min-height: 156px;
	padding: 22px 24px 18px;
	border-radius: 28px;
}

.kse-testimonial-card__head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.kse-testimonial-card__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}

.kse-testimonial-card strong {
	font-size: 13px;
	color: var(--kse-dark);
}

.kse-testimonial-card p {
	margin: 0 0 10px 52px;
	color: var(--kse-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.42;
}

.kse-testimonial-card__result {
	margin-left: 52px;
	font-family: var(--kse-heading-font);
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

.kse-result--coral {
	color: var(--kse-coral);
}

.kse-result--green {
	color: var(--kse-primary-green);
}

.kse-result--dark {
	color: var(--kse-dark);
}

.kse-carousel-arrow {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(47, 95, 62, 0.22);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.76);
	color: var(--kse-primary-green);
	cursor: pointer;
	box-shadow: 0 12px 26px rgba(78, 64, 42, 0.07);
}

.kse-carousel-arrow svg {
	width: 30px;
	height: 30px;
}

.kse-final-cta {
	position: relative;
	padding: 26px 0 92px;
	background: #fffaf4;
	overflow: hidden;
}

.kse-final-cta__box {
	position: relative;
	display: grid;
	grid-template-columns: minmax(390px, 0.48fr) minmax(420px, 0.52fr);
	gap: 32px;
	align-items: center;
	min-height: 330px;
	padding: 52px 58px;
	border-radius: 90px 60px 110px 66px;
	background: rgba(255, 255, 255, 0.74);
	box-shadow: 0 22px 60px rgba(78, 62, 42, 0.07);
	overflow: hidden;
}

.kse-final-cta__content {
	position: relative;
	z-index: 3;
}

.kse-final-cta__content .kse-section-title {
	color: var(--kse-dark);
}

.kse-final-cta__note {
	margin-top: 12px;
	color: var(--kse-muted);
	font-size: 12px;
	font-weight: 600;
}

.kse-final-cta__tulips {
	position: absolute;
	left: -18px;
	bottom: -10px;
	z-index: 1;
	width: 220px;
	pointer-events: none;
}

.kse-final-cta__images {
	position: relative;
	z-index: 2;
	min-height: 280px;
}

.kse-final-cta__food,
.kse-final-cta__drink {
	position: absolute;
	overflow: hidden;
	box-shadow: 0 20px 48px rgba(72, 59, 44, 0.1);
	background: var(--kse-beige);
}

.kse-final-cta__food {
	left: 0;
	top: 5px;
	width: 68%;
	aspect-ratio: 1.35;
	border-radius: 82px 52px 88px 52px;
}

.kse-final-cta__drink {
	right: 0;
	bottom: 0;
	width: 28%;
	aspect-ratio: 0.78;
	border-radius: 46px 42px 60px 40px;
}

.kse-final-cta__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1180px) {
	.kse-homepage {
		--kse-side-padding: 32px;
	}

	.kse-header__inner {
		grid-template-columns: 160px 1fr auto;
		gap: 16px;
	}

	.kse-header__logo,
	.kse-header__logo-img {
		width: 155px;
	}

	.kse-header__nav {
		gap: 15px;
	}

	.kse-hero__grid {
		grid-template-columns: 0.46fr 0.54fr;
		gap: 10px;
	}

	.kse-hero-title {
		font-size: var(--kse-tablet-h1-size);
	}

	.kse-stats {
		grid-template-columns: repeat(2, 108px);
	}

	.kse-hero__photo-wrap {
		right: 44px;
	}

	.kse-about__grid {
		grid-template-columns: 230px 1fr;
	}

	.kse-certificates {
		grid-column: 1 / -1;
	}
}

@media (max-width: 920px) {
	.kse-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 74px;
	}

	.kse-menu-toggle {
		display: inline-flex;
		grid-column: 2;
	}

	.kse-header__cta {
		display: none;
	}

	.kse-header__nav {
		position: absolute;
		left: 32px;
		right: 32px;
		top: calc(100% - 4px);
		display: grid;
		justify-content: stretch;
		gap: 0;
		padding: 16px;
		border: 1px solid rgba(201, 164, 92, 0.15);
		border-radius: 28px;
		background: rgba(255, 252, 246, 0.98);
		box-shadow: 0 22px 54px rgba(60, 47, 33, 0.13);
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
	}

	.kse-header.is-menu-open .kse-header__nav {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	.kse-header__nav-link {
		padding: 12px 10px;
	}

	.kse-header__nav-link::after {
		left: 10px;
		transform: none;
	}

	.kse-header__mobile-cta {
		display: inline-flex !important;
		margin-top: 10px;
	}

	.kse-hero {
		padding-bottom: 72px;
	}

	.kse-hero__grid,
	.kse-regimes__grid,
	.kse-recipes__grid,
	.kse-final-cta__box {
		grid-template-columns: 1fr;
	}

	.kse-hero__content {
		max-width: 650px;
		margin: 0 auto;
		text-align: left;
	}

	.kse-hero__lead {
		max-width: 540px;
	}

	.kse-stats {
		grid-template-columns: repeat(4, 105px);
	}

	.kse-hero__visual {
		min-height: 610px;
		max-width: 680px;
		width: 100%;
		margin: 10px auto 0;
	}

	.kse-regimes__grid {
		min-height: auto;
		padding-top: 48px;
		padding-bottom: 48px;
	}

	.kse-regimes__intro {
		max-width: 620px;
		padding-left: 0;
	}

	.kse-regimes__intro p {
		max-width: 520px;
	}

	.kse-regime-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.kse-regime-card,
	.kse-regime-card--1,
	.kse-regime-card--2,
	.kse-regime-card--3,
	.kse-regime-card--4 {
		grid-column: auto;
		min-height: 188px;
	}


	.kse-benefits__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.kse-testimonials__viewport {
		grid-auto-columns: calc((100% - 18px) / 2);
	}

	.kse-final-cta__images {
		min-height: 330px;
	}
}

@media (max-width: 767px) {
	.kse-homepage {
		--kse-side-padding: 20px;
		overflow-x: hidden;
	}

	.kse-header__nav {
		left: 20px;
		right: 20px;
	}

	.kse-header__logo,
	.kse-header__logo-img {
		width: 142px;
	}

	.kse-hero {
		padding-top: 18px;
		padding-bottom: 58px;
	}

	.kse-hero__grid {
		min-height: auto;
	}

	.kse-hero__content {
		text-align: center;
	}

	.kse-hero-title {
		font-size: var(--kse-mobile-h1-size);
	}

	.kse-hero__lead {
		margin-inline: auto;
	}

	.kse-hero__actions {
		justify-content: center;
		gap: 10px;
	}

	.kse-btn {
		width: auto;
		min-height: 44px;
		padding-inline: 18px;
	}

	.kse-stats {
		grid-template-columns: repeat(2, minmax(105px, 1fr));
		max-width: 280px;
		margin: 0 auto;
	}

	.kse-stat-card {
		min-height: 118px;
	}

	.kse-hero__visual {
		min-height: 510px;
	}

	.kse-hero__photo-wrap {
		top: 48px;
		right: 50%;
		width: min(82vw, 390px);
		transform: translateX(50%);
	}

	.kse-hero__badge {
		left: 10px;
		top: 220px;
		width: 118px;
		height: 118px;
		font-size: 13px;
	}

	.kse-deco--raspberries {
		right: -16px;
		width: 110px;
	}

	.kse-deco--salmon {
		right: -38px;
		top: 304px;
		width: 154px;
	}

	.kse-deco--avocado {
		right: 84px;
		width: 100px;
	}

	.kse-deco--olives,
	.kse-deco--oil,
	.kse-deco--leaves {
		display: none;
	}

	.kse-section {
		padding: 62px 0;
	}

	.kse-section-title {
		font-size: clamp(32px, 10vw, 40px);
	}

	.kse-regime-grid {
		grid-template-columns: 1fr;
	}

	.kse-regimes {
		padding-top: 46px;
		padding-bottom: 54px;
	}

	.kse-regimes__grid {
		padding-top: 38px;
		padding-bottom: 40px;
	}

	.kse-regimes__grid::before {
		inset: 0 10px;
		border-radius: 32px 72px 42px 64px / 50px 44px 54px 46px;
		clip-path: polygon(0 5%, 22% 0, 45% 3%, 70% 0, 100% 4%, 100% 98%, 76% 96%, 54% 100%, 28% 97%, 0 100%);
	}

	.kse-regime-card {
		min-height: 214px;
	}

	.kse-regime-card__content {
		max-width: 72%;
		padding: 24px;
	}

	.kse-regime-card__image,
	.kse-regime-card--1 .kse-regime-card__image,
	.kse-regime-card--2 .kse-regime-card__image,
	.kse-regime-card--3 .kse-regime-card__image,
	.kse-regime-card--1 .kse-regime-card__image,
	.kse-regime-card--2 .kse-regime-card__image,
	.kse-regime-card--3 .kse-regime-card__image,
	.kse-regime-card--4 .kse-regime-card__image {
		width: 100%;
		height: 100%;
	}

	.kse-recipe-collage {
		min-height: auto;
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.kse-recipe-photo,
	.kse-recipe-photo--1,
	.kse-recipe-photo--2,
	.kse-recipe-photo--3 {
		position: relative;
		inset: auto;
		width: 100%;
		aspect-ratio: 1.25;
	}

	.kse-recipe-photo--3 {
		aspect-ratio: 1;
	}

	.kse-recipe-collage__line {
		display: none;
	}

	.kse-recipe-features {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.kse-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px 12px;
	}

	.kse-about__grid {
		grid-template-columns: 1fr;
	}

	.kse-about__portrait-wrap {
		max-width: 310px;
		margin: 0 auto;
	}

	.kse-about__card {
		padding: 30px 26px;
		text-align: center;
	}

	.kse-certificates__top,
	.kse-certificates__logos {
		grid-template-columns: 1fr;
	}

	.kse-testimonials__shell {
		grid-template-columns: 40px 1fr 40px;
		gap: 8px;
	}

	.kse-testimonials__viewport {
		grid-auto-columns: 100%;
	}

	.kse-testimonial-card {
		padding: 20px 18px;
	}

	.kse-testimonial-card p,
	.kse-testimonial-card__result {
		margin-left: 0;
	}

	.kse-carousel-arrow {
		width: 38px;
		height: 38px;
	}

	.kse-final-cta {
		padding-bottom: 64px;
	}

	.kse-final-cta__box {
		padding: 40px 24px 30px;
		border-radius: 56px 34px 72px 38px;
		text-align: center;
	}

	.kse-final-cta__tulips {
		width: 160px;
		opacity: 0.55;
	}

	.kse-final-cta__images {
		min-height: 265px;
	}

	.kse-final-cta__food {
		width: 76%;
	}

	.kse-final-cta__drink {
		width: 30%;
	}
}

@media (max-width: 430px) {
	.kse-hero-title {
		font-size: clamp(31px, 9.2vw, var(--kse-mobile-h1-size));
	}

	.kse-hero__actions {
		flex-direction: column;
	}

	.kse-btn {
		width: 100%;
	}

	.kse-header__mobile-cta {
		width: 100%;
	}

	.kse-hero__visual {
		min-height: 455px;
	}

	.kse-hero__badge {
		left: 0;
		top: 210px;
	}

	.kse-regime-card__content {
		max-width: 82%;
	}

	.kse-regime-card__image {
		opacity: 0.48;
	}
}

.kse-recipe-feature-img {
	width: 22px;
	height: 22px;
	object-fit: contain;
	flex: 0 0 22px;
}

@media (max-width: 920px) {
	.kse-hero__visual.is-composite {
		min-height: auto;
		max-width: 760px;
	}
}

@media (max-width: 767px) {
	.kse-hero__visual.is-composite {
		min-height: auto;
	}

	.kse-hero__composite {
		width: 100%;
	}
}


/* v1.0.5: true full-width hero controls. */
@media (max-width: 1180px) {
	.kse-hero__content {
		padding-left: 64px;
	}
}

@media (max-width: 920px) {
	.kse-hero .kse-container.kse-hero__grid {
		padding-left: var(--kse-side-padding);
		padding-right: var(--kse-side-padding);
	}

	.kse-hero__content {
		padding-left: 0;
	}

	.kse-hero__visual.is-composite {
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.kse-hero__content {
		padding-left: 0;
	}
}



/* v1.0.6: remove hero visual right gap and force full-bleed hero row. */
.kse-hero {
	width: 100%;
}

.kse-hero .kse-container.kse-hero__grid {
	display: grid;
	width: 100%;
	max-width: none;
	padding-left: 0;
	padding-right: 0;
	margin-left: 0;
	margin-right: 0;
}

.kse-hero__visual {
	justify-self: stretch;
	align-self: stretch;
}


/* v1.0.7: remove vertical gap between hero and regimes and make Regimes truly full-bleed. */
.kse-homepage .kse-hero {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.kse-homepage .kse-regimes {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.kse-homepage .kse-regimes .kse-container.kse-regimes__grid {
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-top: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.kse-homepage .kse-regimes__grid::before {
	inset: 0 !important;
}

.kse-homepage .kse-regimes__grid::after {
	right: 0 !important;
}

@media (max-width: 920px) {
	.kse-homepage .kse-regimes .kse-container.kse-regimes__grid {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}


/* v1.0.10: improve regime artwork quality and prevent stretching. */
.kse-homepage .kse-regimes .kse-container.kse-regimes__grid {
	padding-top: 19px !important;
}

.kse-homepage .kse-regimes__intro {
	max-width: 360px !important;
	padding-left: 100px !important;
}

.kse-homepage .kse-regime-grid {
	gap: 13px 13px !important;
}

@media (max-width: 920px) {
	.kse-homepage .kse-regimes__intro {
		max-width: 620px !important;
		padding-left: 0 !important;
	}
}

/* v1.0.15: remove fifth regime card and lock two-card desktop rows. */
.kse-homepage .kse-regime-grid {
	grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
	gap: 16px !important;
	padding-right: 18px !important;
}

.kse-homepage .kse-regime-card {
	background: transparent !important;
	box-shadow: 0 20px 44px rgba(69, 55, 36, 0.09);
	isolation: isolate;
}

.kse-homepage .kse-regime-card::before {
	display: none;
}

.kse-homepage .kse-regime-card::after {
	inset: 0;
	z-index: 2;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.38) 36%, rgba(255, 255, 255, 0.10) 62%, transparent 82%);
}

.kse-homepage .kse-regime-card--1,
.kse-homepage .kse-regime-card--2,
.kse-homepage .kse-regime-card--3,
.kse-homepage .kse-regime-card--4 {
	grid-column: span 6 !important;
	aspect-ratio: 1.78 / 1;
	min-height: 206px !important;
}

.kse-homepage .kse-regime-card__content {
	max-width: min(58%, 280px) !important;
	padding: 24px 24px 22px 26px;
}


.kse-homepage .kse-regime-card__image,
.kse-homepage .kse-regime-card--1 .kse-regime-card__image,
.kse-homepage .kse-regime-card--2 .kse-regime-card__image,
.kse-homepage .kse-regime-card--3 .kse-regime-card__image,
.kse-homepage .kse-regime-card--4 .kse-regime-card__image {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover !important;
	object-position: right center !important;
	opacity: 1 !important;
	filter: none !important;
	transform: translateZ(0) scale(1.002);
	backface-visibility: hidden;
}

@media (max-width: 920px) {
	.kse-homepage .kse-regime-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.kse-homepage .kse-regime-card--1,
	.kse-homepage .kse-regime-card--2,
	.kse-homepage .kse-regime-card--3,
	.kse-homepage .kse-regime-card--4 {
		grid-column: auto !important;
		aspect-ratio: 1.78 / 1;
		min-height: 214px !important;
	}

}

@media (max-width: 767px) {
	.kse-homepage .kse-regime-grid {
		grid-template-columns: 1fr !important;
	}

	.kse-homepage .kse-regime-card--1,
	.kse-homepage .kse-regime-card--2,
	.kse-homepage .kse-regime-card--3,
	.kse-homepage .kse-regime-card--4 {
		grid-column: auto !important;
		aspect-ratio: auto;
		min-height: 220px !important;
	}

	.kse-homepage .kse-regime-card::after {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.50) 46%, rgba(255, 255, 255, 0.16) 74%, transparent 100%);
	}

	.kse-homepage .kse-regime-card__content {
		max-width: 76% !important;
		padding: 24px 24px 22px !important;
	}
}

/* v1.0.16: hero spacing refinements requested for desktop layout. */

/* v1.0.17: tighten vertical spacing between regimes, benefits and testimonials. */
.kse-homepage .kse-regimes {
	padding-bottom: 0 !important;
}

.kse-homepage .kse-regimes .kse-container.kse-regimes__grid {
	padding-bottom: 52px !important;
}

.kse-homepage .kse-benefits {
	padding: 10px 0 52px !important;
}

.kse-homepage .kse-testimonials {
	padding: 20px 0 62px !important;
}


/* v1.0.18: replace the 3 recipe photos with new bundled generated images. */

/* v1.0.19: refine the decorative recipe leaves with a more realistic botanical look. */

/* v1.0.20: make the recipe leaves more lively and spread them wider for a softer composition. */

/* v1.0.21: split the decorative recipe leaves into multiple softer botanical accents. */

/* v1.0.22: remove recipe leaves and tighten the recipes section spacing. */

.kse-homepage .kse-section.kse-recipes {
	padding: 10px 0;
}

.kse-homepage .kse-section.kse-about {
	padding-top: 5px;
}

/* v1.0.23: upgrade benefits icons with more playful illustrated SVG badges. */

/* v1.0.24: polish benefit SVG icons, center line art, and tighten recipes/about spacing. */

/* v1.0.25: tighten benefits title width and bottom spacing. */


/* v1.0.26: about/certificates section redesign to match the supplied mockup. */
.kse-homepage .kse-section.kse-about {
	position: relative;
	padding-top: 5px;
	padding-bottom: 42px;
	background: linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
	overflow: hidden;
	isolation: isolate;
}

.kse-homepage .kse-section.kse-about::after {
	content: "";
	position: absolute;
	right: -10px;
	bottom: 8px;
	width: 92px;
	height: 138px;
	background: url('../img/decor-gold-sprig.svg') center / contain no-repeat;
	opacity: 0.64;
	transform: rotate(-8deg);
	z-index: -1;
	pointer-events: none;
}

.kse-homepage .kse-about__grid {
	position: relative;
	display: grid;
	grid-template-columns: 265px minmax(360px, 390px) minmax(430px, 1fr);
	column-gap: 18px;
	row-gap: 18px;
	align-items: center;
	max-width: 1160px;
}

.kse-homepage .kse-about__portrait-wrap {
	position: relative;
	z-index: 2;
	width: 268px;
	height: 252px;
	min-height: 252px;
	align-self: center;
	overflow: hidden;
	border-radius: 54% 46% 48% 52% / 44% 54% 46% 56%;
	background: linear-gradient(135deg, rgba(246, 214, 204, 0.95), rgba(255, 250, 243, 0.72));
	box-shadow: 0 18px 46px rgba(72, 59, 44, 0.08);
}

.kse-homepage .kse-about__portrait-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78), inset 0 -20px 38px rgba(255, 252, 246, 0.2);
	pointer-events: none;
}

.kse-homepage .kse-about__portrait {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transform: scale(1.03);
}

.kse-homepage .kse-about__card {
	position: relative;
	z-index: 1;
	min-height: 252px;
	margin-left: -26px;
	padding: 30px 34px 24px 58px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 18px 74px 74px 18px / 20px 50px 50px 20px;
	background: linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(255, 248, 235, 0.82));
	border: 1px solid rgba(201, 164, 92, 0.10);
	box-shadow: 0 20px 54px rgba(84, 67, 45, 0.055);
}

.kse-homepage .kse-about__card .kse-label {
	margin-bottom: 5px;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: color-mix(in srgb, var(--kse-gold) 84%, var(--kse-muted));
}

.kse-homepage .kse-about__card .kse-section-title {
	font-size: clamp(28px, 2.25vw, 34px);
	line-height: 0.96;
	letter-spacing: -0.01em;
	color: var(--kse-primary-green);
}

.kse-homepage .kse-about__subtitle {
	margin-top: 7px;
	font-size: 16px;
	line-height: 1.22;
	font-weight: 600;
	color: var(--kse-dark);
}

.kse-homepage .kse-about__card p {
	margin: 13px 0 12px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.52;
	color: color-mix(in srgb, var(--kse-dark) 72%, var(--kse-muted));
}

.kse-homepage .kse-signature {
	margin-top: 2px;
	font-size: 25px;
	line-height: 1;
	color: var(--kse-dark);
}

.kse-homepage .kse-certificates {
	align-self: center;
	display: grid;
	gap: 14px;
	min-width: 0;
}

.kse-homepage .kse-certificates__top,
.kse-homepage .kse-certificates__logos {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.kse-homepage .kse-certificate-card,
.kse-homepage .kse-certificate-logo {
	background: rgba(255, 255, 255, 0.86);
	border: 1px solid rgba(201, 164, 92, 0.12);
	box-shadow: 0 14px 34px rgba(72, 59, 44, 0.055);
	backdrop-filter: blur(8px);
}

.kse-homepage .kse-certificate-card {
	min-height: 122px;
	padding: 17px 13px 15px;
	border-radius: 25px 20px 24px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.kse-homepage .kse-certificate-card__logo {
	width: 78px;
	height: 32px;
	margin: 0 auto 7px;
	object-fit: contain;
}

.kse-homepage .kse-certificate-card__headline {
	font-size: 38px;
	line-height: 0.9;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--kse-dark);
}

.kse-homepage .kse-certificate-card:first-child .kse-certificate-card__headline {
	font-size: 31px;
	line-height: 0.92;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: #16305b;
}

.kse-homepage .kse-certificate-card__subtitle {
	margin-top: 8px;
	font-size: 10.5px;
	line-height: 1.14;
	font-weight: 600;
	letter-spacing: 0.015em;
	color: color-mix(in srgb, var(--kse-dark) 72%, var(--kse-muted));
}

.kse-homepage .kse-certificate-card p {
	margin: 7px 0 0;
	font-size: 10.5px;
	font-weight: 600;
	line-height: 1.22;
	color: var(--kse-muted);
}

.kse-homepage .kse-certificate-logo {
	min-height: 70px;
	padding: 10px 12px;
	border-radius: 20px 18px 22px 18px;
	display: grid;
	place-items: center;
}

.kse-homepage .kse-certificate-logo__img {
	width: 100%;
	max-width: 126px;
	max-height: 48px;
	object-fit: contain;
}

@media (max-width: 1180px) {
	.kse-homepage .kse-about__grid {
		grid-template-columns: 245px minmax(330px, 365px) minmax(390px, 1fr);
		column-gap: 16px;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: 248px;
		height: 238px;
		min-height: 238px;
	}

	.kse-homepage .kse-about__card {
		min-height: 238px;
		padding: 26px 28px 22px 52px;
	}

	.kse-homepage .kse-certificate-card {
		min-height: 116px;
		padding: 15px 11px 13px;
	}
}

@media (max-width: 1040px) {
	.kse-homepage .kse-about__grid {
		grid-template-columns: 245px minmax(0, 1fr);
		max-width: 820px;
	}

	.kse-homepage .kse-certificates {
		grid-column: 1 / -1;
		width: 100%;
		max-width: 680px;
		margin: 4px auto 0;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-section.kse-about {
		padding-bottom: 34px;
	}

	.kse-homepage .kse-section.kse-about::after {
		display: none;
	}

	.kse-homepage .kse-about__grid {
		grid-template-columns: 1fr;
		gap: 18px;
		max-width: 540px;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: min(86vw, 310px);
		height: min(86vw, 310px);
		min-height: 0;
		margin: 0 auto;
	}

	.kse-homepage .kse-about__card {
		min-height: auto;
		margin-left: 0;
		padding: 30px 24px 26px;
		border-radius: 38px 30px 42px 30px;
		text-align: center;
	}

	.kse-homepage .kse-certificates__top,
	.kse-homepage .kse-certificates__logos {
		grid-template-columns: 1fr;
		max-width: 310px;
		margin-inline: auto;
		width: 100%;
	}
}


/* v1.0.27: premium about section polish, wider layout, certificate emphasis and diploma row. */
.kse-homepage .kse-container.kse-about__grid {
	max-width: 1500px;
	grid-template-columns: minmax(320px, 0.78fr) minmax(430px, 0.98fr) minmax(620px, 1.42fr);
	column-gap: 28px;
	row-gap: 22px;
	align-items: center;
}

.kse-homepage .kse-about__portrait-wrap {
	position: relative;
	width: min(100%, 368px);
	height: 318px;
	min-height: 318px;
	overflow: visible;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	isolation: isolate;
}

.kse-homepage .kse-about__portrait-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: 78px 132px 56px 96px / 92px 68px 76px 62px;
	background:
		radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.86) 0 24%, transparent 25%),
		linear-gradient(135deg, rgba(248, 214, 204, 0.96), rgba(255, 248, 238, 0.88));
	border: 1px solid rgba(201, 164, 92, 0.18);
	box-shadow:
		0 24px 58px rgba(72, 59, 44, 0.11),
		inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.kse-homepage .kse-about__portrait-wrap::after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 18px;
	right: -12px;
	top: 16px;
	bottom: -12px;
	border: 1.5px solid rgba(201, 164, 92, 0.52);
	border-radius: 64px 122px 48px 86px / 80px 62px 70px 58px;
	box-shadow: none;
	pointer-events: none;
}

.kse-homepage .kse-about__portrait {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 34%;
	transform: none;
	border-radius: 72px 126px 52px 90px / 86px 64px 72px 60px;
	box-shadow: 0 18px 44px rgba(72, 59, 44, 0.12);
}

.kse-homepage .kse-about__card {
	margin-left: -54px;
	padding: 34px 34px 28px 76px;
	border-radius: 28px 92px 92px 28px / 28px 58px 58px 28px;
	background:
		linear-gradient(135deg, rgba(255, 253, 248, 0.97), rgba(255, 248, 235, 0.9)),
		radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.82), transparent 42%);
	border-color: rgba(201, 164, 92, 0.16);
	box-shadow: 0 24px 64px rgba(84, 67, 45, 0.075);
}

.kse-homepage .kse-certificates {
	position: relative;
	gap: 16px;
	padding: 8px;
	border-radius: 34px;
	background: linear-gradient(135deg, rgba(255, 253, 248, 0.52), rgba(255, 247, 231, 0.28));
}

.kse-homepage .kse-certificates::before {
	content: "";
	position: absolute;
	inset: -8px -10px;
	z-index: -1;
	border-radius: 42px;
	background:
		radial-gradient(circle at 10% 0%, rgba(201, 164, 92, 0.10), transparent 34%),
		radial-gradient(circle at 92% 100%, rgba(159, 181, 139, 0.14), transparent 36%);
	pointer-events: none;
}

.kse-homepage .kse-certificates__top {
	grid-template-columns: 1.08fr 1fr 1fr;
	gap: 16px;
}

.kse-homepage .kse-certificates__logos {
	gap: 16px;
}

.kse-homepage .kse-certificate-card,
.kse-homepage .kse-certificate-logo,
.kse-homepage .kse-diploma-card {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 239, 0.9));
	border: 1px solid rgba(201, 164, 92, 0.18);
	box-shadow:
		0 16px 36px rgba(72, 59, 44, 0.075),
		inset 0 1px 0 rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(10px);
}

.kse-homepage .kse-certificate-card::before {
	content: "";
	position: absolute;
	left: 16px;
	right: 16px;
	top: 10px;
	height: 3px;
	border-radius: 99px;
	background: linear-gradient(90deg, rgba(201, 164, 92, 0.18), rgba(201, 164, 92, 0.72), rgba(201, 164, 92, 0.18));
}

.kse-homepage .kse-certificate-card::after {
	content: "";
	position: absolute;
	right: -24px;
	bottom: -28px;
	width: 74px;
	height: 74px;
	border-radius: 999px;
	background: rgba(159, 181, 139, 0.13);
}

.kse-homepage .kse-certificate-card {
	min-height: 148px;
	padding: 24px 17px 18px;
	border-radius: 32px 24px 34px 24px;
}

.kse-homepage .kse-certificate-card:nth-child(2) {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 246, 232, 0.96)),
		radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.22), transparent 45%);
	border-color: rgba(201, 164, 92, 0.26);
	box-shadow: 0 18px 42px rgba(201, 164, 92, 0.12);
}

.kse-homepage .kse-certificate-card:nth-child(3) {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 238, 0.92)),
		radial-gradient(circle at 50% 0%, rgba(111, 148, 82, 0.14), transparent 45%);
	border-color: rgba(111, 148, 82, 0.18);
}

.kse-homepage .kse-certificate-card__headline {
	font-size: 48px;
	line-height: 0.88;
	color: #2b2a24;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.kse-homepage .kse-certificate-card:first-child .kse-certificate-card__headline {
	font-size: 36px;
	line-height: 0.9;
	letter-spacing: 0.035em;
	color: #14305e;
}

.kse-homepage .kse-certificate-card__subtitle {
	margin-top: 10px;
	font-size: 11.4px;
	line-height: 1.16;
	color: color-mix(in srgb, var(--kse-dark) 82%, var(--kse-muted));
}

.kse-homepage .kse-certificate-card p {
	margin-top: 8px;
	font-size: 11px;
	line-height: 1.28;
	color: color-mix(in srgb, var(--kse-muted) 86%, var(--kse-dark));
}

.kse-homepage .kse-certificate-logo {
	min-height: 82px;
	padding: 12px 16px;
	border-radius: 24px 20px 25px 20px;
}

.kse-homepage .kse-certificate-logo::before {
	content: "";
	position: absolute;
	inset: 9px;
	border-radius: 17px;
	border: 1px solid rgba(201, 164, 92, 0.08);
	pointer-events: none;
}

.kse-homepage .kse-certificate-logo__img {
	max-width: 136px;
	max-height: 52px;
	filter: saturate(0.96) contrast(1.02);
}

.kse-homepage .kse-certificates__diplomas {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.kse-homepage .kse-diploma-card {
	min-height: 74px;
	padding: 12px 10px 11px 42px;
	border-radius: 22px 18px 24px 18px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.kse-homepage .kse-diploma-card__mark {
	position: absolute;
	left: 12px;
	top: 50%;
	width: 20px;
	height: 28px;
	border-radius: 7px 7px 12px 12px;
	background: linear-gradient(180deg, rgba(201, 164, 92, 0.78), rgba(201, 164, 92, 0.38));
	transform: translateY(-50%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.54);
}

.kse-homepage .kse-diploma-card__mark::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 6px;
	width: 8px;
	height: 8px;
	border: 1.5px solid rgba(255, 255, 255, 0.95);
	border-radius: 999px;
	transform: translateX(-50%);
}

.kse-homepage .kse-diploma-card__eyebrow {
	font-size: 8.5px;
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: 0.09em;
	color: color-mix(in srgb, var(--kse-gold) 80%, var(--kse-muted));
	text-transform: uppercase;
}

.kse-homepage .kse-diploma-card__title {
	margin-top: 3px;
	font-size: 11.5px;
	line-height: 1.15;
	font-weight: 600;
	color: color-mix(in srgb, var(--kse-dark) 86%, var(--kse-muted));
}

@media (max-width: 1280px) {
	.kse-homepage .kse-container.kse-about__grid {
		grid-template-columns: 300px minmax(370px, 0.9fr) minmax(500px, 1.2fr);
		max-width: 1180px;
		column-gap: 22px;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: 318px;
		height: 292px;
		min-height: 292px;
	}

	.kse-homepage .kse-about__card {
		margin-left: -44px;
		padding-left: 66px;
	}

	.kse-homepage .kse-certificates__diplomas {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 1040px) {
	.kse-homepage .kse-container.kse-about__grid {
		grid-template-columns: 285px minmax(0, 1fr);
		max-width: 860px;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: 292px;
		height: 274px;
		min-height: 274px;
	}

	.kse-homepage .kse-certificates {
		grid-column: 1 / -1;
		max-width: 760px;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-container.kse-about__grid {
		grid-template-columns: 1fr;
		max-width: 540px;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: min(90vw, 340px);
		height: min(78vw, 300px);
		min-height: 250px;
		margin: 0 auto;
	}

	.kse-homepage .kse-about__card {
		margin-left: 0;
		padding: 30px 24px 26px;
		border-radius: 42px 34px 48px 34px;
	}

	.kse-homepage .kse-certificates__top,
	.kse-homepage .kse-certificates__logos,
	.kse-homepage .kse-certificates__diplomas {
		grid-template-columns: 1fr;
		max-width: 330px;
		margin-inline: auto;
		width: 100%;
	}
}



/* v1.0.28: convert the old testimonials carousel into a polished blog-story slider. */
.kse-homepage .kse-testimonials {
	position: relative;
	padding: 64px 0 76px;
	background:
		radial-gradient(circle at 8% 10%, rgba(239, 192, 175, 0.22), transparent 30%),
		radial-gradient(circle at 92% 18%, rgba(201, 164, 92, 0.14), transparent 32%),
		linear-gradient(180deg, #fffaf4 0%, #fffdf8 58%, #f7f1e7 100%);
	overflow: hidden;
}

.kse-homepage .kse-testimonials::before {
	content: "";
	position: absolute;
	inset: 18px auto auto -90px;
	width: 260px;
	height: 260px;
	border-radius: 54% 46% 44% 56% / 52% 42% 58% 48%;
	background: rgba(111, 148, 82, 0.08);
	pointer-events: none;
}

.kse-homepage .kse-testimonials::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -120px;
	width: 330px;
	height: 330px;
	border-radius: 42% 58% 50% 50% / 58% 45% 55% 42%;
	background: rgba(201, 164, 92, 0.1);
	pointer-events: none;
}

.kse-homepage .kse-testimonials .kse-container {
	position: relative;
	z-index: 2;
	max-width: 1320px;
}

.kse-homepage .kse-testimonials__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 28px;
}

.kse-homepage .kse-testimonials__title {
	max-width: 620px;
	margin: 6px 0 0;
	text-align: left;
	color: var(--kse-dark);
}

.kse-homepage .kse-testimonials__intro {
	max-width: 680px;
	margin: 12px 0 0;
	color: color-mix(in srgb, var(--kse-muted) 88%, var(--kse-dark));
	font-size: 15px;
	font-weight: 600;
	line-height: 1.55;
}

.kse-homepage .kse-testimonials__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid rgba(47, 95, 62, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.78);
	color: var(--kse-primary-green);
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	box-shadow: 0 14px 34px rgba(78, 64, 42, 0.06);
}

.kse-homepage .kse-testimonials__all svg {
	width: 22px;
	height: 22px;
}

.kse-homepage .kse-testimonials__shell {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr) 54px;
	gap: 16px;
	align-items: center;
}

.kse-homepage .kse-testimonials__viewport {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - 48px) / 3);
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	padding: 8px 2px 20px;
}

.kse-homepage .kse-testimonials__viewport::-webkit-scrollbar {
	display: none;
}

.kse-homepage .kse-testimonial-card {
	position: relative;
	scroll-snap-align: start;
	min-height: 0;
	padding: 0;
	border: 1px solid rgba(201, 164, 92, 0.16);
	border-radius: 34px 28px 38px 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.94)),
		radial-gradient(circle at 100% 0%, rgba(239, 192, 175, 0.16), transparent 42%);
	box-shadow: 0 22px 56px rgba(74, 62, 45, 0.08);
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.kse-homepage .kse-testimonial-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 164, 92, 0.3);
	box-shadow: 0 28px 70px rgba(74, 62, 45, 0.12);
}

.kse-homepage .kse-story-card__thumb {
	position: relative;
	display: block;
	aspect-ratio: 1.2 / 0.78;
	background: linear-gradient(135deg, rgba(111, 148, 82, 0.16), rgba(239, 192, 175, 0.18));
	overflow: hidden;
}

.kse-homepage .kse-story-card__thumb::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 46%;
	background: linear-gradient(180deg, transparent, rgba(22, 36, 25, 0.22));
	pointer-events: none;
}

.kse-homepage .kse-story-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.kse-homepage .kse-testimonial-card:hover .kse-story-card__image {
	transform: scale(1.045);
}

.kse-homepage .kse-story-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--kse-heading-font);
	font-size: 76px;
	font-weight: 600;
	color: color-mix(in srgb, var(--kse-primary-green) 72%, var(--kse-gold));
	text-transform: uppercase;
}

.kse-homepage .kse-story-card__body {
	padding: 20px 22px 22px;
}

.kse-homepage .kse-story-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 13px;
}

.kse-homepage .kse-story-card__tag {
	display: inline-flex;
	align-items: center;
	max-width: 66%;
	min-height: 26px;
	padding: 0 11px;
	border-radius: 999px;
	background: rgba(111, 148, 82, 0.12);
	color: var(--kse-primary-green);
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.kse-homepage .kse-story-card__meta time {
	color: color-mix(in srgb, var(--kse-muted) 76%, var(--kse-dark));
	font-size: 11px;
	font-weight: 600;
	white-space: nowrap;
}

.kse-homepage .kse-story-card__body h3 {
	margin: 0;
	font-family: var(--kse-heading-font);
	font-size: 25px;
	font-weight: 600;
	line-height: 1.05;
	letter-spacing: -0.01em;
	color: var(--kse-dark);
}

.kse-homepage .kse-story-card__body h3 a {
	color: inherit;
}

.kse-homepage .kse-story-card__body p {
	margin: 12px 0 18px;
	color: color-mix(in srgb, var(--kse-muted) 88%, var(--kse-dark));
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.48;
}

.kse-homepage .kse-story-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--kse-primary-green);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.kse-homepage .kse-story-card__link svg {
	width: 20px;
	height: 20px;
}

.kse-homepage .kse-testimonial-card--fallback {
	padding: 24px 24px 22px;
}

.kse-homepage .kse-testimonial-card--fallback .kse-testimonial-card__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
}

.kse-homepage .kse-testimonial-card--fallback .kse-testimonial-card__avatar {
	width: 48px;
	height: 48px;
	border: 3px solid rgba(255, 255, 255, 0.92);
	border-radius: 50%;
	box-shadow: 0 10px 22px rgba(74, 62, 45, 0.08);
	object-fit: cover;
}

.kse-homepage .kse-testimonial-card--fallback p {
	margin: 0 0 16px;
	font-size: 14px;
	line-height: 1.5;
}

.kse-homepage .kse-testimonial-card--fallback .kse-testimonial-card__result {
	margin-left: 0;
}

.kse-homepage .kse-carousel-arrow {
	position: relative;
	z-index: 3;
	width: 52px;
	height: 52px;
	border: 1px solid rgba(47, 95, 62, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: var(--kse-primary-green);
	cursor: pointer;
	box-shadow: 0 16px 36px rgba(78, 64, 42, 0.1);
	transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.kse-homepage .kse-carousel-arrow:hover:not(:disabled) {
	background: var(--kse-primary-green);
	color: #fffdf8;
	transform: translateY(-2px);
}

.kse-homepage .kse-carousel-arrow:disabled {
	opacity: 0.38;
	cursor: not-allowed;
	box-shadow: none;
}

.kse-homepage .kse-carousel-arrow svg {
	width: 34px;
	height: 34px;
}

.kse-homepage .kse-testimonials.is-not-scrollable .kse-carousel-arrow {
	display: none;
}

@media (max-width: 1024px) {
	.kse-homepage .kse-testimonials__header {
		align-items: flex-start;
		flex-direction: column;
	}

	.kse-homepage .kse-testimonials__viewport {
		grid-auto-columns: calc((100% - 24px) / 2);
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-testimonials {
		padding: 52px 0 60px;
	}

	.kse-homepage .kse-testimonials__shell {
		grid-template-columns: 44px minmax(0, 1fr) 44px;
		gap: 8px;
	}

	.kse-homepage .kse-testimonials__viewport {
		grid-auto-columns: 100%;
		gap: 16px;
	}

	.kse-homepage .kse-story-card__body h3 {
		font-size: 22px;
	}

	.kse-homepage .kse-carousel-arrow {
		width: 42px;
		height: 42px;
	}
}


/* v1.0.29: wider blog carousel, four visible cards and clearly visible arrow controls. */
.kse-homepage .kse-testimonials .kse-container {
	max-width: min(1680px, calc(100vw - 56px));
}

.kse-homepage .kse-testimonials__shell {
	grid-template-columns: 58px minmax(0, 1fr) 58px;
	gap: 18px;
}

.kse-homepage .kse-testimonials__viewport {
	grid-auto-columns: calc((100% - 72px) / 4);
	gap: 24px;
}

.kse-homepage .kse-carousel-arrow {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 1px solid color-mix(in srgb, var(--kse-primary-green) 34%, transparent);
	border-radius: 999px;
	background: var(--kse-primary-green);
	color: #fffdf8;
	box-shadow: 0 18px 40px rgba(47, 95, 62, 0.2);
}

.kse-homepage .kse-carousel-arrow:hover:not(:disabled) {
	background: color-mix(in srgb, var(--kse-primary-green) 88%, #000 12%);
	color: #fffdf8;
	transform: translateY(-2px) scale(1.03);
}

.kse-homepage .kse-carousel-arrow:disabled {
	opacity: 0.62;
	background: #fffdf8;
	color: var(--kse-primary-green);
	border-color: rgba(47, 95, 62, 0.24);
	box-shadow: 0 10px 26px rgba(78, 64, 42, 0.08);
}

.kse-homepage .kse-carousel-arrow svg {
	display: block;
	width: 30px;
	height: 30px;
	color: currentColor;
}

.kse-homepage .kse-carousel-arrow svg path {
	stroke: currentColor !important;
	stroke-width: 3 !important;
}

@media (max-width: 1200px) and (min-width: 1025px) {
	.kse-homepage .kse-testimonials .kse-container {
		max-width: min(1360px, calc(100vw - 48px));
	}

	.kse-homepage .kse-testimonials__viewport {
		grid-auto-columns: calc((100% - 48px) / 3);
	}
}

@media (max-width: 1024px) {
	.kse-homepage .kse-testimonials .kse-container {
		max-width: min(100%, calc(100vw - 32px));
	}
}


/* v1.0.30: icon-only carousel arrows and safer clickable states. */
.kse-homepage .kse-carousel-arrow,
.kse-homepage .kse-carousel-arrow:disabled {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--kse-primary-green) !important;
	box-shadow: none !important;
	cursor: pointer;
	opacity: 1;
	line-height: 1;
}

.kse-homepage .kse-carousel-arrow__icon {
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 58px;
	font-weight: 300;
	line-height: 0.72;
	color: currentColor;
	transform: translateY(-2px);
	text-shadow: 0 8px 20px rgba(47, 95, 62, 0.16);
}

.kse-homepage .kse-carousel-arrow:hover,
.kse-homepage .kse-carousel-arrow:hover:not(:disabled) {
	background: transparent !important;
	color: color-mix(in srgb, var(--kse-primary-green) 82%, #000 18%) !important;
	transform: translateY(-1px) scale(1.08);
}

.kse-homepage .kse-carousel-arrow.is-disabled {
	opacity: 0.28;
	cursor: default;
}

.kse-homepage .kse-carousel-arrow.is-disabled:hover {
	transform: none;
	color: var(--kse-primary-green) !important;
}

.kse-homepage .kse-carousel-arrow svg {
	display: none !important;
}

@media (max-width: 767px) {
	.kse-homepage .kse-carousel-arrow,
	.kse-homepage .kse-carousel-arrow:disabled {
		width: 34px;
		height: 42px;
	}

	.kse-homepage .kse-carousel-arrow__icon {
		font-size: 46px;
	}
}


/* v1.0.31: replace final CTA content with one bundled full-width banner image. */
.kse-homepage .kse-final-cta {
	padding: 0 0 64px !important;
	background: #fffaf4;
}

.kse-homepage .kse-final-cta > .kse-container {
	max-width: none !important;
	padding-inline: 0 !important;
}

.kse-homepage .kse-final-cta__box {
	display: block !important;
	min-height: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	overflow: hidden !important;
}

.kse-homepage .kse-final-cta__banner {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}

@media (max-width: 767px) {
	.kse-homepage .kse-final-cta {
		padding-bottom: 42px !important;
	}

	.kse-homepage .kse-final-cta__banner {
		width: 145%;
		max-width: none;
		margin-left: -22.5%;
	}
}


/* v1.0.32: visually merge testimonials with the final CTA banner. */
.kse-homepage .kse-testimonials {
	position: relative;
	z-index: 2;
	padding: 0 !important;
	margin: 0 !important;
	background:
		radial-gradient(circle at 8% 12%, rgba(239, 192, 175, 0.18), transparent 30%),
		linear-gradient(180deg, #fffaf4 0%, #fffaf4 64%, rgba(255, 250, 244, 0) 100%);
	overflow: visible;
}

.kse-homepage .kse-testimonials .kse-container {
	position: relative;
	z-index: 4;
	padding-top: 18px;
	padding-bottom: 0;
}

.kse-homepage .kse-testimonials__header {
	margin-bottom: 18px;
}

.kse-homepage .kse-testimonials__shell {
	position: relative;
	z-index: 5;
	margin-bottom: -58px;
}

.kse-homepage .kse-testimonials::before {
	top: -28px;
	opacity: 0.68;
}

.kse-homepage .kse-testimonials::after {
	right: -96px;
	bottom: -190px;
	opacity: 0.75;
}

.kse-homepage .kse-final-cta {
	position: relative;
	z-index: 1;
	margin-top: -34px !important;
	padding: 0 0 46px !important;
	background: #fffaf4 !important;
	overflow: hidden;
}

.kse-homepage .kse-final-cta > .kse-container {
	position: relative;
	z-index: 1;
}

.kse-homepage .kse-final-cta__box {
	margin-top: 0 !important;
}

.kse-homepage .kse-final-cta__banner {
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.kse-homepage .kse-testimonials__shell {
		margin-bottom: -34px;
	}

	.kse-homepage .kse-final-cta {
		margin-top: -20px !important;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-testimonials {
		padding: 0 !important;
	}

	.kse-homepage .kse-testimonials .kse-container {
		padding-top: 12px;
	}

	.kse-homepage .kse-testimonials__shell {
		margin-bottom: -18px;
	}

	.kse-homepage .kse-final-cta {
		margin-top: -10px !important;
		padding-bottom: 34px !important;
	}
}


/* v1.0.33: pull the final CTA banner under testimonials and remove the transformed bottom gap. */
.kse-homepage .kse-final-cta {
	padding: 0 !important;
	margin-top: -34px !important;
	overflow: hidden !important;
}

.kse-homepage .kse-final-cta__box {
	margin-bottom: -86px !important;
	overflow: hidden !important;
}

.kse-homepage .kse-final-cta__banner {
	transform: translateY(-86px) !important;
	will-change: transform;
}

@media (max-width: 1024px) {
	.kse-homepage .kse-final-cta {
		padding: 0 !important;
		margin-top: -20px !important;
	}

	.kse-homepage .kse-final-cta__box {
		margin-bottom: -56px !important;
	}

	.kse-homepage .kse-final-cta__banner {
		transform: translateY(-56px) !important;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-final-cta {
		padding: 0 !important;
		margin-top: -10px !important;
	}

	.kse-homepage .kse-final-cta__box {
		margin-bottom: -36px !important;
	}

	.kse-homepage .kse-final-cta__banner {
		transform: translateY(-36px) !important;
	}
}


/* v1.0.34: lock tiny horizontal overflow and add a compact legal footer. */
html:has(.kse-homepage),
body:has(.kse-homepage) {
	overflow-x: hidden !important;
}

.kse-homepage {
	overflow-x: hidden !important;
}

.kse-homepage .kse-testimonials,
.kse-homepage .kse-final-cta,
.kse-homepage .kse-legal-footer {
	max-width: 100vw;
	overflow-x: hidden !important;
}

.kse-homepage .kse-testimonials::before,
.kse-homepage .kse-testimonials::after {
	max-width: 100vw;
}

.kse-homepage .kse-legal-footer {
	position: relative;
	z-index: 2;
	margin-top: 0;
	padding: 18px 0 20px;
	background: linear-gradient(180deg, #fffaf4 0%, #f8f1e6 100%);
	border-top: 1px solid rgba(201, 164, 92, 0.22);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.kse-homepage .kse-legal-footer::before {
	content: "";
	position: absolute;
	left: max(24px, 4vw);
	right: max(24px, 4vw);
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.62), transparent);
}

.kse-homepage .kse-legal-footer > .kse-container {
	max-width: min(1500px, calc(100vw - 48px));
	padding-inline: 24px;
}

.kse-homepage .kse-legal-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px 28px;
	min-height: 42px;
}

.kse-homepage .kse-legal-footer__copy {
	color: color-mix(in srgb, var(--kse-dark) 74%, var(--kse-primary-green));
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

.kse-homepage .kse-legal-footer__links {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px 16px;
}

.kse-homepage .kse-legal-footer__links a {
	position: relative;
	color: color-mix(in srgb, var(--kse-muted) 78%, var(--kse-dark));
	font-size: 12px;
	font-weight: 600;
	line-height: 1.2;
	transition: color 0.18s ease, transform 0.18s ease;
}

.kse-homepage .kse-legal-footer__links a:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -9px;
	top: 50%;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(201, 164, 92, 0.55);
	transform: translateY(-50%);
}

.kse-homepage .kse-legal-footer__links a:hover {
	color: var(--kse-primary-green);
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	.kse-homepage .kse-legal-footer {
		padding: 22px 0 24px;
	}

	.kse-homepage .kse-legal-footer > .kse-container {
		max-width: 100%;
		padding-inline: 20px;
	}

	.kse-homepage .kse-legal-footer__inner {
		align-items: center;
		flex-direction: column-reverse;
		justify-content: center;
		text-align: center;
	}

	.kse-homepage .kse-legal-footer__copy {
		white-space: normal;
		line-height: 1.5;
	}

	.kse-homepage .kse-legal-footer__links {
		justify-content: center;
	}
}


/* v1.0.35: align the final CTA banner downward and remove the extra vertical gap around testimonials/footer. */
.kse-homepage .kse-testimonials {
	padding: 0 !important;
	margin: 0 !important;
	background: #fffaf4 !important;
	overflow: hidden !important;
}

.kse-homepage .kse-testimonials .kse-container {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.kse-homepage .kse-testimonials__header {
	margin-bottom: 12px !important;
}

.kse-homepage .kse-testimonials__shell {
	margin-bottom: 0 !important;
}

.kse-homepage .kse-testimonials__viewport {
	padding-top: 6px !important;
	padding-bottom: 0 !important;
}

.kse-homepage .kse-testimonials::before,
.kse-homepage .kse-testimonials::after {
	display: none !important;
}

.kse-homepage .kse-final-cta {
	margin-top: 0 !important;
	padding: 0 !important;
	background: #fffaf4 !important;
	overflow: hidden !important;
}

.kse-homepage .kse-final-cta > .kse-container {
	max-width: none !important;
	padding: 0 !important;
}

.kse-homepage .kse-final-cta__box {
	margin: 0 0 -23px !important;
	padding: 0 !important;
	line-height: 0 !important;
	overflow: hidden !important;
}

.kse-homepage .kse-final-cta__banner {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	transform: translateY(23px) !important;
	will-change: transform;
}

.kse-homepage .kse-legal-footer {
	margin-top: 0 !important;
	padding-top: 18px !important;
}

@media (max-width: 1024px) {
	.kse-homepage .kse-testimonials__header {
		margin-bottom: 10px !important;
	}

	.kse-homepage .kse-final-cta__box {
		margin-bottom: -18px !important;
	}

	.kse-homepage .kse-final-cta__banner {
		transform: translateY(18px) !important;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-testimonials .kse-container {
		padding-top: 0 !important;
	}

	.kse-homepage .kse-testimonials__shell {
		margin-bottom: 0 !important;
	}

	.kse-homepage .kse-testimonials__viewport {
		padding-bottom: 0 !important;
	}

	.kse-homepage .kse-final-cta {
		margin-top: 0 !important;
		padding: 0 !important;
	}

	.kse-homepage .kse-final-cta__box {
		margin-bottom: -14px !important;
	}

	.kse-homepage .kse-final-cta__banner {
		transform: translateY(14px) !important;
	}
}

/* v1.0.36: replace final CTA banner with latest uploaded Downsection image. */


/* v1.0.37: enlarge the about portrait into an asymmetric editorial block and polish real logo cards. */
.kse-homepage .kse-container.kse-about__grid {
	grid-template-columns: minmax(390px, 0.92fr) minmax(440px, 0.96fr) minmax(620px, 1.34fr) !important;
	column-gap: 30px !important;
}

.kse-homepage .kse-about__portrait-wrap {
	width: min(100%, 430px) !important;
	height: 362px !important;
	min-height: 362px !important;
	transform: translateX(-8px) rotate(-1.1deg);
}

.kse-homepage .kse-about__portrait-wrap::before {
	border-radius: 96px 156px 72px 118px / 112px 78px 98px 70px !important;
	background:
		radial-gradient(circle at 22% 14%, rgba(255, 255, 255, 0.88) 0 22%, transparent 23%),
		radial-gradient(circle at 86% 88%, rgba(201, 164, 92, 0.16), transparent 32%),
		linear-gradient(135deg, rgba(248, 214, 204, 0.98), rgba(255, 248, 238, 0.9)) !important;
	box-shadow:
		0 28px 68px rgba(72, 59, 44, 0.13),
		inset 0 0 0 1px rgba(255, 255, 255, 0.74) !important;
}

.kse-homepage .kse-about__portrait-wrap::after {
	left: 22px !important;
	right: -18px !important;
	top: 18px !important;
	bottom: -16px !important;
	border-radius: 82px 148px 60px 108px / 96px 72px 88px 64px !important;
	border-color: rgba(201, 164, 92, 0.58) !important;
}

.kse-homepage .kse-about__portrait {
	border-radius: 90px 150px 66px 112px / 104px 74px 94px 68px !important;
	object-position: center 30% !important;
	box-shadow:
		0 22px 52px rgba(72, 59, 44, 0.14),
		inset 0 0 0 1px rgba(255, 255, 255, 0.42) !important;
}

.kse-homepage .kse-about__card {
	margin-left: -70px !important;
	padding-left: 92px !important;
}

.kse-homepage .kse-certificates__logos {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
	gap: 14px !important;
}

.kse-homepage .kse-certificate-logo {
	min-height: 92px !important;
	padding: 12px 14px !important;
	border-radius: 28px 22px 30px 22px !important;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 239, 0.94)),
		radial-gradient(circle at 18% 15%, rgba(201, 164, 92, 0.12), transparent 38%) !important;
	border-color: rgba(201, 164, 92, 0.22) !important;
	box-shadow:
		0 18px 42px rgba(72, 59, 44, 0.085),
		inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.kse-homepage .kse-certificate-logo::before {
	inset: 8px !important;
	border-color: rgba(201, 164, 92, 0.12) !important;
}

.kse-homepage .kse-certificate-logo__img {
	width: 100% !important;
	max-width: 188px !important;
	max-height: 68px !important;
	filter: none !important;
	object-fit: contain !important;
}

@media (max-width: 1280px) {
	.kse-homepage .kse-container.kse-about__grid {
		grid-template-columns: 340px minmax(370px, 0.9fr) minmax(500px, 1.2fr) !important;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: 354px !important;
		height: 326px !important;
		min-height: 326px !important;
	}

	.kse-homepage .kse-about__card {
		margin-left: -54px !important;
		padding-left: 74px !important;
	}
}

@media (max-width: 1040px) {
	.kse-homepage .kse-container.kse-about__grid {
		grid-template-columns: 320px minmax(0, 1fr) !important;
		max-width: 900px !important;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: 330px !important;
		height: 305px !important;
		min-height: 305px !important;
		transform: rotate(-0.8deg);
	}

	.kse-homepage .kse-about__card {
		margin-left: -42px !important;
		padding-left: 62px !important;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-about__portrait-wrap {
		width: min(92vw, 360px) !important;
		height: min(88vw, 332px) !important;
		min-height: 0 !important;
		transform: none !important;
	}

	.kse-homepage .kse-about__card {
		margin-left: 0 !important;
		padding-left: 24px !important;
	}

	.kse-homepage .kse-certificates__logos {
		grid-template-columns: 1fr !important;
		max-width: 360px !important;
	}

	.kse-homepage .kse-certificate-logo {
		min-height: 96px !important;
	}
}


/* v1.0.38: keep the About layout wide, but anchor it left and prevent right-side clipping. */
.kse-homepage .kse-section.kse-about {
	overflow-x: hidden !important;
}

.kse-homepage .kse-container.kse-about__grid {
	box-sizing: border-box !important;
	width: min(1500px, calc(100vw - 48px)) !important;
	max-width: min(1500px, calc(100vw - 48px)) !important;
	margin-left: clamp(18px, 2.6vw, 38px) !important;
	margin-right: auto !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	grid-template-columns: minmax(330px, 0.9fr) minmax(390px, 0.98fr) minmax(455px, 1.18fr) !important;
	column-gap: clamp(16px, 1.9vw, 26px) !important;
	transform: none !important;
}

.kse-homepage .kse-about__portrait-wrap {
	max-width: 100% !important;
}

.kse-homepage .kse-about__card,
.kse-homepage .kse-certificates {
	min-width: 0 !important;
}

.kse-homepage .kse-certificates__top,
.kse-homepage .kse-certificates__logos,
.kse-homepage .kse-certificates__diplomas {
	min-width: 0 !important;
}

.kse-homepage .kse-certificate-card,
.kse-homepage .kse-certificate-logo,
.kse-homepage .kse-diploma-card {
	min-width: 0 !important;
}

@media (max-width: 1280px) {
	.kse-homepage .kse-container.kse-about__grid {
		width: calc(100vw - 36px) !important;
		max-width: calc(100vw - 36px) !important;
		margin-left: 18px !important;
		grid-template-columns: minmax(300px, 0.82fr) minmax(350px, 0.92fr) minmax(405px, 1.08fr) !important;
		column-gap: 18px !important;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: min(100%, 338px) !important;
		height: 308px !important;
		min-height: 308px !important;
	}

	.kse-homepage .kse-about__card {
		margin-left: -48px !important;
		padding-left: 68px !important;
	}
}

@media (max-width: 1120px) {
	.kse-homepage .kse-container.kse-about__grid {
		width: min(900px, calc(100vw - 36px)) !important;
		max-width: min(900px, calc(100vw - 36px)) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		grid-template-columns: 315px minmax(0, 1fr) !important;
		column-gap: 18px !important;
	}

	.kse-homepage .kse-certificates {
		grid-column: 1 / -1 !important;
		width: 100% !important;
		max-width: 780px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-container.kse-about__grid {
		width: min(540px, calc(100vw - 40px)) !important;
		max-width: min(540px, calc(100vw - 40px)) !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		grid-template-columns: 1fr !important;
	}
}


/* v1.0.39: health-first positioning section and safer nutrition-scope language. */
.kse-homepage .kse-health-focus {
	position: relative;
	padding: 18px 0 34px;
	background:
		radial-gradient(circle at 8% 12%, rgba(159, 181, 139, 0.14), transparent 34%),
		linear-gradient(180deg, #fffdf8 0%, #fffaf2 100%);
	overflow: hidden;
}

.kse-homepage .kse-health-focus__inner {
	max-width: min(1500px, calc(100vw - 48px));
	margin-inline: auto;
	padding-inline: 24px;
}

.kse-homepage .kse-health-focus__intro {
	max-width: 760px;
	margin: 0 auto 22px;
	text-align: center;
}

.kse-homepage .kse-health-focus__intro .kse-section-title {
	margin: 0;
	color: var(--kse-primary-green);
	font-size: clamp(34px, 3.2vw, 52px);
	line-height: 0.98;
}

.kse-homepage .kse-health-focus__intro p {
	max-width: 650px;
	margin: 14px auto 0;
	color: color-mix(in srgb, var(--kse-dark) 74%, var(--kse-muted));
	font-size: 15px;
	font-weight: 600;
	line-height: 1.62;
}

.kse-homepage .kse-health-focus__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.kse-homepage .kse-health-card {
	position: relative;
	min-height: 238px;
	padding: 28px 24px 24px;
	border: 1px solid rgba(201, 164, 92, 0.17);
	border-radius: 38px 28px 42px 30px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.91)),
		radial-gradient(circle at 18% 0%, rgba(201, 164, 92, 0.13), transparent 38%);
	box-shadow:
		0 22px 48px rgba(72, 59, 44, 0.07),
		inset 0 1px 0 rgba(255, 255, 255, 0.82);
	overflow: hidden;
}

.kse-homepage .kse-health-card::after {
	content: "";
	position: absolute;
	right: -32px;
	bottom: -34px;
	width: 96px;
	height: 96px;
	border-radius: 999px;
	background: rgba(159, 181, 139, 0.12);
	pointer-events: none;
}

.kse-homepage .kse-health-card__icon {
	display: grid;
	place-items: center;
	width: 62px;
	height: 58px;
	margin-bottom: 18px;
	border-radius: 42% 58% 49% 51% / 56% 46% 54% 44%;
	color: var(--kse-primary-green);
	background: rgba(221, 232, 212, 0.92);
	box-shadow: inset 0 0 0 1px rgba(47, 95, 62, 0.08);
}

.kse-homepage .kse-health-card:nth-child(2) .kse-health-card__icon {
	color: #8b6b24;
	background: rgba(238, 216, 163, 0.75);
}

.kse-homepage .kse-health-card:nth-child(3) .kse-health-card__icon {
	color: #bb6c55;
	background: rgba(248, 217, 207, 0.95);
}

.kse-homepage .kse-health-card:nth-child(4) .kse-health-card__icon {
	color: #2f5f3e;
	background: rgba(241, 232, 219, 0.95);
}

.kse-homepage .kse-health-card__icon svg {
	width: 34px;
	height: 34px;
}

.kse-homepage .kse-health-card h3 {
	position: relative;
	z-index: 1;
	margin: 0 0 11px;
	color: var(--kse-dark);
	font-family: var(--kse-heading-font);
	font-size: 25px;
	font-weight: 600;
	line-height: 1.04;
	letter-spacing: -0.01em;
}

.kse-homepage .kse-health-card p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: color-mix(in srgb, var(--kse-dark) 70%, var(--kse-muted));
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.55;
}

.kse-homepage .kse-health-focus__note {
	max-width: 960px;
	margin: 18px auto 0;
	padding: 14px 18px;
	border: 1px solid rgba(201, 164, 92, 0.18);
	border-radius: 24px;
	background: rgba(255, 252, 246, 0.86);
	color: color-mix(in srgb, var(--kse-dark) 72%, var(--kse-muted));
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1.5;
	text-align: center;
}

.kse-homepage .kse-health-focus__note strong {
	color: var(--kse-primary-green);
}

@media (max-width: 1100px) {
	.kse-homepage .kse-health-focus__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-health-focus {
		padding: 12px 0 30px;
	}

	.kse-homepage .kse-health-focus__inner {
		max-width: 100%;
		padding-inline: 20px;
	}

	.kse-homepage .kse-health-focus__grid {
		grid-template-columns: 1fr;
	}

	.kse-homepage .kse-health-card {
		min-height: auto;
		padding: 24px 22px;
	}
}


/* v1.0.40: place the health foundation directly before regimes for a stronger health-first flow. */
.kse-homepage .kse-health-focus {
	padding-top: 28px !important;
	padding-bottom: 22px !important;
}

.kse-homepage .kse-regimes {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

.kse-homepage .kse-health-focus + .kse-regimes {
	margin-top: 0 !important;
}

.kse-homepage .kse-health-focus + .kse-regimes .kse-regimes__grid {
	padding-top: 34px !important;
}

@media (max-width: 767px) {
	.kse-homepage .kse-health-focus {
		padding-top: 22px !important;
		padding-bottom: 18px !important;
	}

	.kse-homepage .kse-health-focus + .kse-regimes .kse-regimes__grid {
		padding-top: 28px !important;
	}
}


/* v1.0.41: move About directly after Regimes so Daniela becomes the trust block behind the offers. */
.kse-homepage .kse-regimes + .kse-about {
	margin-top: 0 !important;
	padding-top: 18px !important;
}

.kse-homepage .kse-about + .kse-recipes {
	padding-top: 10px !important;
}

.kse-homepage .kse-section.kse-about {
	background:
		radial-gradient(circle at 92% 12%, rgba(201, 164, 92, 0.10), transparent 30%),
		linear-gradient(180deg, #fffaf2 0%, #fffdf8 100%) !important;
}

@media (max-width: 767px) {
	.kse-homepage .kse-regimes + .kse-about {
		padding-top: 12px !important;
	}

	.kse-homepage .kse-about + .kse-recipes {
		padding-top: 8px !important;
	}
}


/* v1.0.42: add a robust medical disclaimer under the legal footer copyright. */
.kse-homepage .kse-legal-footer {
	padding-top: 22px !important;
	padding-bottom: 24px !important;
}

.kse-homepage .kse-legal-footer__inner {
	align-items: flex-start !important;
	gap: 18px 34px !important;
}

.kse-homepage .kse-legal-footer__content {
	flex: 1 1 720px;
	min-width: 0;
}

.kse-homepage .kse-legal-footer__copy {
	margin-bottom: 8px;
}

.kse-homepage .kse-legal-footer__disclaimer {
	max-width: 980px;
	margin: 0;
	padding: 12px 14px;
	border: 1px solid rgba(201, 164, 92, 0.18);
	border-radius: 18px 14px 20px 14px;
	background: rgba(255, 252, 246, 0.66);
	color: color-mix(in srgb, var(--kse-dark) 70%, var(--kse-muted));
	font-size: 11.2px;
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: 0.005em;
	text-transform: none;
}

.kse-homepage .kse-legal-footer__disclaimer strong {
	color: var(--kse-primary-green);
	font-weight: 600;
}

.kse-homepage .kse-legal-footer__links {
	flex: 0 0 auto;
	padding-top: 4px;
}

@media (max-width: 980px) {
	.kse-homepage .kse-legal-footer__inner {
		align-items: center !important;
		flex-direction: column-reverse;
		text-align: center;
	}

	.kse-homepage .kse-legal-footer__content {
		flex-basis: auto;
		width: 100%;
	}

	.kse-homepage .kse-legal-footer__disclaimer {
		margin-inline: auto;
		text-align: left;
	}
}

@media (max-width: 767px) {
	.kse-homepage .kse-legal-footer__inner {
		flex-direction: column-reverse !important;
	}

	.kse-homepage .kse-legal-footer__copy {
		white-space: normal !important;
	}

	.kse-homepage .kse-legal-footer__disclaimer {
		padding: 12px 13px;
		font-size: 10.8px;
		line-height: 1.55;
		text-align: left;
	}
}


/* v1.0.43: compact, scannable mobile rhythm without changing saved content. */
@media (max-width: 767px) {
	.kse-homepage {
		--kse-side-padding: 16px !important;
		font-size: 14px;
		line-height: 1.48;
		overflow-x: hidden !important;
	}

	.kse-homepage,
	.kse-homepage .kse-header,
	.kse-homepage .kse-hero,
	.kse-homepage .kse-health-focus,
	.kse-homepage .kse-regimes,
	.kse-homepage .kse-about,
	.kse-homepage .kse-recipes,
	.kse-homepage .kse-benefits,
	.kse-homepage .kse-testimonials,
	.kse-homepage .kse-final-cta,
	.kse-homepage .kse-legal-footer {
		max-width: 100vw !important;
	}

	.kse-homepage .kse-container {
		padding-inline: var(--kse-side-padding) !important;
	}

	.kse-homepage .kse-label {
		margin-bottom: 7px !important;
		font-size: 10px !important;
		line-height: 1.1 !important;
		letter-spacing: 0.11em !important;
	}

	.kse-homepage .kse-section-title,
	.kse-homepage .kse-health-focus__intro .kse-section-title,
	.kse-homepage .kse-regimes__intro .kse-section-title,
	.kse-homepage .kse-testimonials__title {
		font-size: clamp(28px, 8.4vw, 34px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.02em !important;
	}

	.kse-homepage .kse-section {
		padding: 30px 0 !important;
	}

	.kse-homepage .kse-btn {
		min-height: 40px !important;
		padding: 11px 16px !important;
		font-size: 12.5px !important;
		line-height: 1 !important;
	}

	.kse-homepage .kse-header__inner {
		min-height: 60px !important;
		gap: 10px !important;
	}

	.kse-homepage .kse-header__logo,
	.kse-homepage .kse-header__logo-img {
		width: 126px !important;
	}

	.kse-homepage .kse-menu-toggle {
		width: 38px !important;
		height: 38px !important;
		gap: 4px !important;
	}

	.kse-homepage .kse-menu-toggle span:not(.kse-sr-only) {
		width: 16px !important;
	}

	.kse-homepage .kse-header__nav {
		left: 14px !important;
		right: 14px !important;
		top: calc(100% - 2px) !important;
		max-height: calc(100svh - 76px);
		overflow-y: auto;
		padding: 10px !important;
		border-radius: 20px !important;
	}

	.kse-homepage .kse-header__nav-link {
		padding: 10px 9px !important;
		font-size: 13px !important;
		line-height: 1.1 !important;
	}

	.kse-homepage .kse-header__mobile-cta {
		width: 100% !important;
		min-height: 40px !important;
		margin-top: 8px !important;
	}

	.kse-homepage .kse-hero {
		padding-top: 10px !important;
		padding-bottom: 12px !important;
	}

	.kse-homepage .kse-hero .kse-container.kse-hero__grid {
		gap: 8px !important;
		padding-inline: var(--kse-side-padding) !important;
	}

	.kse-homepage .kse-hero__content {
		max-width: 440px !important;
		margin-inline: auto !important;
		text-align: left !important;
	}

	.kse-homepage .kse-hero-title {
		margin-bottom: 12px !important;
		font-size: clamp(33px, 9.8vw, 39px) !important;
		line-height: 0.99 !important;
		letter-spacing: -0.025em !important;
	}

	.kse-homepage .kse-hero-title span {
		display: inline !important;
	}

	.kse-homepage .kse-hero-title span:not(:last-child)::after {
		content: " ";
	}

	.kse-homepage .kse-hero__lead,
	.kse-homepage .kse-health-focus__intro p,
	.kse-homepage .kse-regimes__intro p,
	.kse-homepage .kse-recipes__content p,
	.kse-homepage .kse-testimonials__intro,
	.kse-homepage .kse-story-card__body p,
	.kse-homepage .kse-health-card p,
	.kse-homepage .kse-regime-card p,
	.kse-homepage .kse-about__card p {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.kse-homepage .kse-hero__lead {
		max-width: 100% !important;
		margin: 0 0 13px !important;
		font-size: 14px !important;
		font-weight: 600 !important;
		line-height: 1.46 !important;
		text-align: left !important;
		-webkit-line-clamp: 3;
	}

	.kse-homepage .kse-hero__actions {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 8px !important;
		margin-bottom: 14px !important;
	}

	.kse-homepage .kse-hero__actions .kse-btn {
		width: 100% !important;
	}

	.kse-homepage .kse-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 8px !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 auto !important;
	}

	.kse-homepage .kse-stat-card {
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		gap: 7px !important;
		min-height: 54px !important;
		padding: 8px 10px !important;
		border-radius: 18px !important;
	}

	.kse-homepage .kse-stat-card__icon {
		display: none !important;
	}

	.kse-homepage .kse-stat-card__number {
		font-size: 21px !important;
		line-height: 0.98 !important;
		white-space: nowrap !important;
	}

	.kse-homepage .kse-stat-card__text {
		margin: 0 !important;
		font-size: 9px !important;
		line-height: 1.08 !important;
		letter-spacing: 0.02em !important;
		text-align: left !important;
	}

	.kse-homepage .kse-hero__visual,
	.kse-homepage .kse-hero__visual.is-composite {
		min-height: 0 !important;
		max-width: 100% !important;
		margin: -4px auto 0 !important;
		padding: 0 !important;
	}

	.kse-homepage .kse-hero__composite {
		width: min(112%, 420px) !important;
		max-height: 315px !important;
		margin-inline: auto !important;
		object-fit: contain !important;
		object-position: center top !important;
	}

	.kse-homepage .kse-hero__visual:not(.is-composite) {
		height: 312px !important;
		overflow: hidden !important;
	}

	.kse-homepage .kse-hero__visual:not(.is-composite) .kse-deco,
	.kse-homepage .kse-hero__visual:not(.is-composite) .kse-dot,
	.kse-homepage .kse-hero__gold-line,
	.kse-homepage .kse-deco--gold-line-img {
		display: none !important;
	}

	.kse-homepage .kse-hero__photo-wrap {
		top: 12px !important;
		right: 50% !important;
		width: min(74vw, 280px) !important;
		transform: translateX(50%) !important;
	}

	.kse-homepage .kse-hero__badge {
		left: 50% !important;
		top: 214px !important;
		width: 92px !important;
		height: 92px !important;
		padding: 10px !important;
		font-size: 10.5px !important;
		line-height: 1.12 !important;
		transform: translateX(-132px) !important;
	}

	.kse-homepage .kse-health-focus {
		padding: 22px 0 20px !important;
	}

	.kse-homepage .kse-health-focus__inner {
		max-width: 100% !important;
		padding-inline: var(--kse-side-padding) !important;
	}

	.kse-homepage .kse-health-focus__intro {
		margin: 0 auto 13px !important;
		text-align: left !important;
	}

	.kse-homepage .kse-health-focus__intro p {
		max-width: 100% !important;
		margin: 8px 0 0 !important;
		font-size: 13px !important;
		line-height: 1.42 !important;
		-webkit-line-clamp: 2;
	}

	.kse-homepage .kse-health-focus__grid {
		grid-template-columns: 1fr !important;
		gap: 9px !important;
	}

	.kse-homepage .kse-health-card {
		display: grid !important;
		grid-template-columns: 42px minmax(0, 1fr) !important;
		column-gap: 10px !important;
		align-items: start !important;
		min-height: 0 !important;
		padding: 13px 14px !important;
		border-radius: 22px 18px 24px 18px !important;
	}

	.kse-homepage .kse-health-card::after {
		display: none !important;
	}

	.kse-homepage .kse-health-card__icon {
		width: 42px !important;
		height: 40px !important;
		margin: 0 !important;
	}

	.kse-homepage .kse-health-card__icon svg {
		width: 24px !important;
		height: 24px !important;
	}

	.kse-homepage .kse-health-card h3 {
		margin: 0 0 4px !important;
		font-size: 18px !important;
		line-height: 1.04 !important;
	}

	.kse-homepage .kse-health-card p {
		font-size: 12.1px !important;
		line-height: 1.35 !important;
		-webkit-line-clamp: 2;
	}

	.kse-homepage .kse-health-focus__note {
		margin-top: 10px !important;
		padding: 10px 11px !important;
		border-radius: 16px !important;
		font-size: 10.4px !important;
		line-height: 1.34 !important;
		text-align: left !important;
	}

	.kse-homepage .kse-regimes {
		padding: 0 0 24px !important;
	}

	.kse-homepage .kse-regimes .kse-container.kse-regimes__grid {
		gap: 15px !important;
		padding: 20px var(--kse-side-padding) 24px !important;
	}

	.kse-homepage .kse-regimes__grid::before {
		inset: 0 !important;
		border-radius: 28px 48px 32px 44px / 30px 36px 34px 32px !important;
		clip-path: none !important;
	}

	.kse-homepage .kse-regimes__grid::after,
	.kse-homepage .kse-regimes::before,
	.kse-homepage .kse-regimes::after,
	.kse-homepage .kse-regimes .kse-wave {
		display: none !important;
	}

	.kse-homepage .kse-regimes__intro {
		max-width: 100% !important;
		padding-left: 0 !important;
		text-align: left !important;
	}

	.kse-homepage .kse-regimes__intro p {
		max-width: 100% !important;
		margin: 10px 0 14px !important;
		font-size: 13px !important;
		line-height: 1.44 !important;
		-webkit-line-clamp: 3;
	}

	.kse-homepage .kse-regimes__intro .kse-btn {
		width: 100% !important;
	}

	.kse-homepage .kse-regime-grid {
		gap: 10px !important;
		padding-right: 0 !important;
	}

	.kse-homepage .kse-regime-card--1,
	.kse-homepage .kse-regime-card--2,
	.kse-homepage .kse-regime-card--3,
	.kse-homepage .kse-regime-card--4 {
		min-height: 146px !important;
		aspect-ratio: auto !important;
		border-radius: 28px 22px 30px 22px !important;
	}

	.kse-homepage .kse-regime-card::after {
		background: linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.62) 48%, rgba(255, 255, 255, 0.14) 78%, transparent 100%) !important;
	}

	.kse-homepage .kse-regime-card__content {
		max-width: 72% !important;
		padding: 15px 14px !important;
	}

	.kse-homepage .kse-regime-card__number {
		margin-bottom: 2px !important;
		font-size: 22px !important;
	}

	.kse-homepage .kse-regime-card h3 {
		margin-bottom: 5px !important;
		font-size: 21px !important;
		line-height: 0.98 !important;
	}

	.kse-homepage .kse-regime-card p {
		font-size: 11.4px !important;
		line-height: 1.34 !important;
		-webkit-line-clamp: 2;
	}

	.kse-homepage .kse-card-arrow {
		width: 26px !important;
		height: 26px !important;
		margin-top: 8px !important;
	}

	.kse-homepage .kse-section.kse-about {
		padding: 20px 0 24px !important;
	}

	.kse-homepage .kse-container.kse-about__grid {
		width: calc(100vw - 32px) !important;
		max-width: 430px !important;
		gap: 12px !important;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: min(72vw, 250px) !important;
		height: min(68vw, 238px) !important;
		min-height: 0 !important;
		margin: 0 auto -4px !important;
	}

	.kse-homepage .kse-about__card {
		padding: 20px 18px !important;
		border-radius: 28px 22px 32px 22px !important;
		text-align: left !important;
	}

	.kse-homepage .kse-about__card .kse-section-title {
		font-size: 30px !important;
		line-height: 0.98 !important;
	}

	.kse-homepage .kse-about__subtitle {
		margin-top: 5px !important;
		font-size: 14px !important;
		line-height: 1.22 !important;
	}

	.kse-homepage .kse-about__card p {
		margin: 10px 0 8px !important;
		font-size: 12.6px !important;
		line-height: 1.42 !important;
		-webkit-line-clamp: 4;
	}

	.kse-homepage .kse-signature {
		margin-top: 4px !important;
		font-size: 22px !important;
	}

	.kse-homepage .kse-certificates {
		gap: 8px !important;
		padding: 0 !important;
		background: transparent !important;
	}

	.kse-homepage .kse-certificates::before,
	.kse-homepage .kse-certificate-logo::before,
	.kse-homepage .kse-certificate-card::after {
		display: none !important;
	}

	.kse-homepage .kse-certificates__top,
	.kse-homepage .kse-certificates__logos {
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 7px !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.kse-homepage .kse-certificates__diplomas {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 7px !important;
		max-width: 100% !important;
		width: 100% !important;
	}

	.kse-homepage .kse-certificate-card {
		min-height: 82px !important;
		padding: 13px 7px 10px !important;
		border-radius: 18px 14px 20px 14px !important;
	}

	.kse-homepage .kse-certificate-card::before {
		left: 8px !important;
		right: 8px !important;
		top: 7px !important;
		height: 2px !important;
	}

	.kse-homepage .kse-certificate-card__headline {
		font-size: 25px !important;
		line-height: 0.9 !important;
	}

	.kse-homepage .kse-certificate-card:first-child .kse-certificate-card__headline {
		font-size: 18px !important;
		line-height: 0.92 !important;
	}

	.kse-homepage .kse-certificate-card__subtitle {
		margin-top: 6px !important;
		font-size: 7.3px !important;
		line-height: 1.08 !important;
		letter-spacing: 0.015em !important;
	}

	.kse-homepage .kse-certificate-card p {
		display: none !important;
	}

	.kse-homepage .kse-certificate-logo {
		min-height: 52px !important;
		padding: 8px !important;
		border-radius: 15px 12px 16px 12px !important;
	}

	.kse-homepage .kse-certificate-logo__img {
		max-width: 100% !important;
		max-height: 34px !important;
	}

	.kse-homepage .kse-diploma-card {
		min-height: 46px !important;
		padding: 8px 8px 8px 30px !important;
		border-radius: 14px 12px 15px 12px !important;
	}

	.kse-homepage .kse-diploma-card__mark {
		left: 9px !important;
		width: 14px !important;
		height: 20px !important;
		border-radius: 5px 5px 8px 8px !important;
	}

	.kse-homepage .kse-diploma-card__mark::before {
		top: 4px !important;
		width: 5px !important;
		height: 5px !important;
	}

	.kse-homepage .kse-diploma-card__eyebrow {
		font-size: 7px !important;
		letter-spacing: 0.06em !important;
	}

	.kse-homepage .kse-diploma-card__title {
		font-size: 10px !important;
		line-height: 1.12 !important;
	}

	.kse-homepage .kse-section.kse-recipes,
	.kse-homepage .kse-about + .kse-recipes {
		padding: 24px 0 26px !important;
	}

	.kse-homepage .kse-recipes__grid {
		gap: 16px !important;
	}

	.kse-homepage .kse-recipes__content {
		text-align: left !important;
	}

	.kse-homepage .kse-recipes__content p {
		margin: 10px 0 12px !important;
		font-size: 13px !important;
		line-height: 1.43 !important;
		-webkit-line-clamp: 3;
	}

	.kse-homepage .kse-recipe-features {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		justify-items: start !important;
		gap: 8px !important;
		margin: 12px 0 10px !important;
		font-size: 11.5px !important;
		line-height: 1.15 !important;
	}

	.kse-homepage .kse-recipe-features span:last-child {
		grid-column: 1 / -1;
	}

	.kse-homepage .kse-recipe-features svg,
	.kse-homepage .kse-recipe-feature-img {
		width: 18px !important;
		height: 18px !important;
		flex-basis: 18px !important;
	}

	.kse-homepage .kse-text-link {
		margin-top: 0 !important;
		font-size: 12px !important;
	}

	.kse-homepage .kse-recipe-collage {
		display: grid !important;
		grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
		gap: 8px !important;
		min-height: 0 !important;
	}

	.kse-homepage .kse-recipe-photo,
	.kse-homepage .kse-recipe-photo--1,
	.kse-homepage .kse-recipe-photo--2,
	.kse-homepage .kse-recipe-photo--3 {
		position: relative !important;
		inset: auto !important;
		width: 100% !important;
		aspect-ratio: 1 !important;
		border-radius: 22px 16px 24px 16px !important;
		box-shadow: 0 12px 24px rgba(74, 62, 45, 0.08) !important;
	}

	.kse-homepage .kse-benefits {
		padding: 20px 0 28px !important;
	}

	.kse-homepage .kse-benefits__title {
		max-width: 330px !important;
		margin-bottom: 14px !important;
		font-size: clamp(27px, 7.8vw, 32px) !important;
	}

	.kse-homepage .kse-benefits__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 12px !important;
	}

	.kse-homepage .kse-benefit {
		padding: 10px 8px !important;
		border: 1px solid rgba(201, 164, 92, 0.14);
		border-radius: 20px 16px 22px 16px;
		background: rgba(255, 255, 255, 0.66);
		font-size: 11.6px !important;
		line-height: 1.18 !important;
	}

	.kse-homepage .kse-benefit__icon {
		width: 62px !important;
		height: 52px !important;
		margin-bottom: 6px !important;
	}

	.kse-homepage .kse-benefit__icon-img {
		width: 62px !important;
		height: 52px !important;
	}

	.kse-homepage .kse-testimonials {
		padding: 18px 0 12px !important;
	}

	.kse-homepage .kse-testimonials .kse-container {
		max-width: 100% !important;
		padding-inline: var(--kse-side-padding) !important;
	}

	.kse-homepage .kse-testimonials__header {
		gap: 9px !important;
		margin-bottom: 10px !important;
	}

	.kse-homepage .kse-testimonials__intro {
		margin-top: 7px !important;
		font-size: 12.7px !important;
		line-height: 1.38 !important;
		-webkit-line-clamp: 2;
	}

	.kse-homepage .kse-testimonials__all {
		min-height: 36px !important;
		padding: 0 13px !important;
		font-size: 11.5px !important;
	}

	.kse-homepage .kse-testimonials__shell {
		grid-template-columns: 28px minmax(0, 1fr) 28px !important;
		gap: 2px !important;
	}

	.kse-homepage .kse-testimonials__viewport {
		gap: 10px !important;
		padding-top: 3px !important;
	}

	.kse-homepage .kse-story-card__thumb {
		aspect-ratio: 1.55 / 0.72 !important;
	}

	.kse-homepage .kse-story-card__body {
		padding: 13px 14px 14px !important;
	}

	.kse-homepage .kse-story-card__meta {
		margin-bottom: 8px !important;
	}

	.kse-homepage .kse-story-card__tag {
		min-height: 22px !important;
		padding-inline: 9px !important;
		font-size: 9.8px !important;
	}

	.kse-homepage .kse-story-card__meta time {
		font-size: 9.8px !important;
	}

	.kse-homepage .kse-story-card__body h3 {
		display: -webkit-box;
		font-size: 20px !important;
		line-height: 1.04 !important;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

	.kse-homepage .kse-story-card__body p {
		margin: 8px 0 10px !important;
		font-size: 12px !important;
		line-height: 1.36 !important;
		-webkit-line-clamp: 2;
	}

	.kse-homepage .kse-story-card__link {
		font-size: 11.5px !important;
	}

	.kse-homepage .kse-carousel-arrow,
	.kse-homepage .kse-carousel-arrow:disabled {
		width: 28px !important;
		height: 38px !important;
	}

	.kse-homepage .kse-carousel-arrow__icon {
		font-size: 40px !important;
	}

	.kse-homepage .kse-testimonial-card--fallback {
		padding: 16px 15px !important;
	}

	.kse-homepage .kse-testimonial-card--fallback p {
		display: -webkit-box;
		margin-bottom: 10px !important;
		font-size: 12.5px !important;
		line-height: 1.38 !important;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		overflow: hidden;
	}

	.kse-homepage .kse-final-cta {
		padding: 0 !important;
	}

	.kse-homepage .kse-final-cta__box {
		margin-bottom: -8px !important;
	}

	.kse-homepage .kse-final-cta__banner {
		width: 100% !important;
		height: clamp(128px, 38vw, 178px) !important;
		max-width: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		transform: translateY(8px) !important;
	}

	.kse-homepage .kse-legal-footer {
		padding: 16px 0 18px !important;
	}

	.kse-homepage .kse-legal-footer > .kse-container {
		padding-inline: var(--kse-side-padding) !important;
	}

	.kse-homepage .kse-legal-footer__inner {
		gap: 12px !important;
	}

	.kse-homepage .kse-legal-footer__links {
		gap: 8px 12px !important;
	}

	.kse-homepage .kse-legal-footer__links a {
		font-size: 10.5px !important;
	}

	.kse-homepage .kse-legal-footer__copy {
		margin-bottom: 7px !important;
		font-size: 9.4px !important;
		line-height: 1.36 !important;
		letter-spacing: 0.06em !important;
	}

	.kse-homepage .kse-legal-footer__disclaimer {
		padding: 10px 11px !important;
		border-radius: 14px !important;
		font-size: 9.6px !important;
		line-height: 1.42 !important;
	}
}

@media (max-width: 430px) {
	.kse-homepage .kse-hero-title {
		font-size: clamp(31px, 9.2vw, 35px) !important;
	}

	.kse-homepage .kse-hero__composite {
		max-height: 280px !important;
	}

	.kse-homepage .kse-stat-card__number {
		font-size: 19px !important;
	}

	.kse-homepage .kse-stat-card__text {
		font-size: 8.4px !important;
	}

	.kse-homepage .kse-regime-card--1,
	.kse-homepage .kse-regime-card--2,
	.kse-homepage .kse-regime-card--3,
	.kse-homepage .kse-regime-card--4 {
		min-height: 136px !important;
	}

	.kse-homepage .kse-regime-card__content {
		max-width: 76% !important;
	}

	.kse-homepage .kse-regime-card h3 {
		font-size: 19px !important;
	}

	.kse-homepage .kse-regime-card p {
		font-size: 10.8px !important;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: min(70vw, 232px) !important;
		height: min(64vw, 218px) !important;
	}

	.kse-homepage .kse-certificate-card__headline {
		font-size: 22px !important;
	}

	.kse-homepage .kse-certificate-card:first-child .kse-certificate-card__headline {
		font-size: 16px !important;
	}

	.kse-homepage .kse-certificate-card__subtitle {
		font-size: 6.6px !important;
	}

	.kse-homepage .kse-recipe-collage {
		gap: 7px !important;
	}

	.kse-homepage .kse-recipe-photo,
	.kse-homepage .kse-recipe-photo--1,
	.kse-homepage .kse-recipe-photo--2,
	.kse-homepage .kse-recipe-photo--3 {
		border-radius: 18px 14px 20px 14px !important;
	}

	.kse-homepage .kse-final-cta__banner {
		height: clamp(120px, 40vw, 158px) !important;
	}
}

@media (max-width: 360px) {
	.kse-homepage {
		--kse-side-padding: 14px !important;
	}

	.kse-homepage .kse-hero-title {
		font-size: 30px !important;
	}

	.kse-homepage .kse-health-card h3 {
		font-size: 17px !important;
	}

	.kse-homepage .kse-certificates__top,
	.kse-homepage .kse-certificates__logos {
		gap: 5px !important;
	}

	.kse-homepage .kse-certificate-card {
		padding-inline: 5px !important;
	}
}

/* v1.0.43: keep health-focus mobile icon/text aligned in compact cards. */
@media (max-width: 767px) {
	.kse-homepage .kse-health-card__icon {
		grid-column: 1;
		grid-row: 1 / span 2;
	}

	.kse-homepage .kse-health-card h3,
	.kse-homepage .kse-health-card p {
		grid-column: 2;
	}
}


/* v1.0.44: rebuild broken mobile about text alignment and testimonials carousel flow. */
@media (max-width: 767px) {
	.kse-homepage .kse-section.kse-about {
		overflow-x: hidden !important;
	}

	.kse-homepage .kse-container.kse-about__grid {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: var(--kse-side-padding) !important;
		padding-right: var(--kse-side-padding) !important;
		grid-template-columns: minmax(0, 1fr) !important;
		justify-items: stretch !important;
		align-items: start !important;
		overflow: hidden !important;
	}

	.kse-homepage .kse-about__portrait-wrap,
	.kse-homepage .kse-about__card,
	.kse-homepage .kse-certificates {
		grid-column: 1 !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		transform: none !important;
	}

	.kse-homepage .kse-about__portrait-wrap {
		width: min(100%, 252px) !important;
		height: min(66vw, 236px) !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.kse-homepage .kse-about__card {
		padding: 18px 16px 18px 15px !important;
		border-radius: 26px 20px 30px 20px !important;
		text-align: left !important;
		overflow: hidden !important;
	}

	.kse-homepage .kse-about__card *,
	.kse-homepage .kse-about__card .kse-section-title,
	.kse-homepage .kse-about__subtitle,
	.kse-homepage .kse-about__card p,
	.kse-homepage .kse-signature {
		max-width: 100% !important;
		min-width: 0 !important;
		text-align: left !important;
		overflow-wrap: anywhere !important;
		word-break: normal !important;
		hyphens: auto;
	}

	.kse-homepage .kse-about__card .kse-label {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.kse-homepage .kse-about__card .kse-section-title {
		font-size: clamp(26px, 7.5vw, 30px) !important;
		line-height: 1.02 !important;
		letter-spacing: -0.02em !important;
	}

	.kse-homepage .kse-about__subtitle {
		margin-top: 6px !important;
		font-size: 13.2px !important;
		line-height: 1.25 !important;
	}

	.kse-homepage .kse-about__card p {
		margin: 9px 0 8px !important;
		font-size: 12.4px !important;
		line-height: 1.42 !important;
		-webkit-line-clamp: 4 !important;
	}

	.kse-homepage .kse-signature {
		margin-top: 2px !important;
		font-size: 20px !important;
		line-height: 1 !important;
	}

	.kse-homepage .kse-testimonials {
		padding: 18px 0 16px !important;
		overflow-x: hidden !important;
	}

	.kse-homepage .kse-testimonials .kse-container {
		width: 100% !important;
		max-width: 100% !important;
		padding-left: var(--kse-side-padding) !important;
		padding-right: var(--kse-side-padding) !important;
		overflow: hidden !important;
	}

	.kse-homepage .kse-testimonials__header {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		gap: 8px !important;
		align-items: start !important;
		margin-bottom: 12px !important;
		text-align: left !important;
	}

	.kse-homepage .kse-testimonials__title,
	.kse-homepage .kse-testimonials__intro {
		text-align: left !important;
	}

	.kse-homepage .kse-testimonials__all {
		justify-self: start !important;
		width: auto !important;
		max-width: 100% !important;
		min-height: 34px !important;
		padding: 0 12px !important;
		font-size: 11px !important;
		white-space: nowrap !important;
	}

	.kse-homepage .kse-testimonials__shell {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-template-areas:
			"track track"
			"prev next" !important;
		gap: 10px 10px !important;
		align-items: center !important;
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 !important;
		overflow: visible !important;
	}

	.kse-homepage .kse-testimonials__viewport {
		grid-area: track !important;
		display: flex !important;
		grid-auto-flow: initial !important;
		grid-auto-columns: initial !important;
		gap: 12px !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		padding: 0 0 2px !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		scroll-padding-left: 0 !important;
		-webkit-overflow-scrolling: touch;
	}

	.kse-homepage .kse-testimonial-card {
		flex: 0 0 100% !important;
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		scroll-snap-align: start !important;
		border-radius: 24px 18px 26px 18px !important;
		box-shadow: 0 16px 34px rgba(74, 62, 45, 0.07) !important;
	}

	.kse-homepage .kse-story-card__thumb {
		aspect-ratio: 16 / 9 !important;
	}

	.kse-homepage .kse-story-card__body {
		padding: 12px 13px 13px !important;
	}

	.kse-homepage .kse-story-card__meta {
		gap: 7px !important;
		margin-bottom: 7px !important;
	}

	.kse-homepage .kse-story-card__tag {
		max-width: 60% !important;
		min-width: 0 !important;
		min-height: 21px !important;
		padding-inline: 8px !important;
		font-size: 9.4px !important;
	}

	.kse-homepage .kse-story-card__meta time {
		font-size: 9.4px !important;
	}

	.kse-homepage .kse-story-card__body h3 {
		font-size: 19px !important;
		line-height: 1.04 !important;
	}

	.kse-homepage .kse-story-card__body p {
		margin: 7px 0 9px !important;
		font-size: 11.8px !important;
		line-height: 1.34 !important;
		-webkit-line-clamp: 2 !important;
	}

	.kse-homepage .kse-story-card__link {
		font-size: 11px !important;
	}

	.kse-homepage .kse-carousel-arrow,
	.kse-homepage .kse-carousel-arrow:disabled {
		position: static !important;
		display: grid !important;
		place-items: center !important;
		width: 38px !important;
		height: 36px !important;
		margin: 0 !important;
		transform: none !important;
	}

	.kse-homepage .kse-carousel-arrow--prev {
		grid-area: prev !important;
		justify-self: end !important;
	}

	.kse-homepage .kse-carousel-arrow--next {
		grid-area: next !important;
		justify-self: start !important;
	}

	.kse-homepage .kse-carousel-arrow__icon {
		font-size: 38px !important;
		line-height: 0.76 !important;
		transform: translateY(-1px) !important;
	}

	.kse-homepage .kse-carousel-arrow:hover,
	.kse-homepage .kse-carousel-arrow:hover:not(:disabled),
	.kse-homepage .kse-carousel-arrow.is-disabled:hover {
		transform: none !important;
	}

	.kse-homepage .kse-testimonials.is-not-scrollable .kse-carousel-arrow {
		display: none !important;
	}
}

@media (max-width: 380px) {
	.kse-homepage .kse-about__card {
		padding-left: 13px !important;
		padding-right: 13px !important;
	}

	.kse-homepage .kse-about__card .kse-section-title {
		font-size: clamp(24px, 7.2vw, 28px) !important;
	}

	.kse-homepage .kse-testimonials__all {
		white-space: normal !important;
	}

	.kse-homepage .kse-story-card__body h3 {
		font-size: 18px !important;
	}
}

/* v1.0.45: compact labeled mobile menu toggle */
@media (max-width: 920px) {
	.kse-homepage .kse-menu-toggle {
		position: relative !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		flex-direction: row !important;
		width: auto !important;
		min-width: 62px !important;
		height: 32px !important;
		min-height: 32px !important;
		padding: 0 10px 0 28px !important;
		gap: 0 !important;
		border: 1px solid rgba(17, 17, 17, 0.16) !important;
		border-radius: 999px !important;
		background: rgba(255, 255, 255, 0.96) !important;
		box-shadow: 0 8px 18px rgba(49, 38, 25, 0.08) !important;
		color: #111111 !important;
		font-size: 11.5px !important;
		font-weight: 600 !important;
		line-height: 1 !important;
		letter-spacing: 0.02em !important;
		text-transform: none !important;
	}

	.kse-homepage .kse-menu-toggle::after {
		content: "Меню";
		display: block;
		color: #111111;
		font-size: inherit;
		font-weight: inherit;
		line-height: 1;
		letter-spacing: inherit;
	}

	.kse-homepage .kse-menu-toggle span:not(.kse-sr-only) {
		position: absolute !important;
		left: 10px !important;
		display: block !important;
		width: 12px !important;
		height: 1.5px !important;
		margin: 0 !important;
		border-radius: 999px !important;
		background: #111111 !important;
		transform-origin: center !important;
		transition: top 160ms ease, transform 160ms ease, opacity 160ms ease !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(2) {
		top: 10px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(3) {
		top: 15px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(4) {
		top: 20px !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(2) {
		top: 15px !important;
		transform: rotate(45deg) !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(3) {
		opacity: 0 !important;
		transform: scaleX(0.25) !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(4) {
		top: 15px !important;
		transform: rotate(-45deg) !important;
	}
}

@media (max-width: 380px) {
	.kse-homepage .kse-menu-toggle {
		min-width: 58px !important;
		height: 30px !important;
		min-height: 30px !important;
		padding-left: 26px !important;
		padding-right: 9px !important;
		font-size: 11px !important;
	}

	.kse-homepage .kse-menu-toggle span:not(.kse-sr-only) {
		left: 9px !important;
		width: 11px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(2) {
		top: 9px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(3),
	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(2),
	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(4) {
		top: 14px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(4) {
		top: 19px !important;
	}
}

/* v1.0.46: premium mobile menu trigger refinement */
@media (max-width: 920px) {
	.kse-homepage .kse-menu-toggle {
		position: relative !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: flex-start !important;
		flex-direction: row !important;
		width: auto !important;
		min-width: 84px !important;
		height: 38px !important;
		min-height: 38px !important;
		padding: 0 14px 0 42px !important;
		gap: 0 !important;
		border: 1px solid rgba(30, 24, 19, 0.14) !important;
		border-radius: 999px !important;
		background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 240, 0.96)) !important;
		box-shadow: 0 10px 22px rgba(49, 38, 25, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
		color: #111111 !important;
		font-size: 12px !important;
		font-weight: 600 !important;
		line-height: 1 !important;
		letter-spacing: 0.01em !important;
		text-transform: none !important;
		-webkit-tap-highlight-color: transparent !important;
		touch-action: manipulation !important;
		transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease !important;
	}

	.kse-homepage .kse-menu-toggle::before {
		content: "";
		position: absolute;
		left: 6px;
		top: 50%;
		width: 26px;
		height: 26px;
		border: 1px solid rgba(201, 164, 92, 0.24);
		border-radius: 999px;
		background: linear-gradient(180deg, rgba(255, 244, 224, 0.92), rgba(248, 224, 192, 0.78));
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
		transform: translateY(-50%);
		pointer-events: none;
	}

	.kse-homepage .kse-menu-toggle::after {
		content: "Меню" !important;
		display: block !important;
		color: #111111 !important;
		font-size: inherit !important;
		font-weight: inherit !important;
		line-height: 1 !important;
		letter-spacing: inherit !important;
		white-space: nowrap !important;
	}

	.kse-homepage .kse-menu-toggle:hover,
	.kse-homepage .kse-menu-toggle:focus-visible {
		border-color: rgba(201, 164, 92, 0.42) !important;
		box-shadow: 0 12px 26px rgba(49, 38, 25, 0.14), 0 0 0 4px rgba(201, 164, 92, 0.12) !important;
		outline: none !important;
	}

	.kse-homepage .kse-menu-toggle:active {
		transform: translateY(1px) !important;
		box-shadow: 0 7px 16px rgba(49, 38, 25, 0.10), 0 0 0 4px rgba(201, 164, 92, 0.10) !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] {
		border-color: rgba(47, 95, 62, 0.30) !important;
		background: linear-gradient(180deg, rgba(247, 255, 249, 0.98), rgba(239, 250, 241, 0.96)) !important;
		box-shadow: 0 12px 28px rgba(47, 95, 62, 0.12), 0 0 0 4px rgba(47, 95, 62, 0.08) !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"]::before {
		border-color: rgba(47, 95, 62, 0.22);
		background: linear-gradient(180deg, rgba(238, 250, 240, 0.95), rgba(220, 240, 224, 0.86));
	}

	.kse-homepage .kse-menu-toggle span:not(.kse-sr-only) {
		position: absolute !important;
		left: 12px !important;
		display: block !important;
		width: 14px !important;
		height: 1.7px !important;
		margin: 0 !important;
		border-radius: 999px !important;
		background: #111111 !important;
		transform-origin: center !important;
		transition: top 170ms ease, transform 170ms ease, opacity 170ms ease, width 170ms ease !important;
		z-index: 1 !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(2) {
		top: 13px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(3) {
		top: 18px !important;
		width: 12px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(4) {
		top: 23px !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(2) {
		top: 18px !important;
		width: 14px !important;
		transform: rotate(45deg) !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(3) {
		opacity: 0 !important;
		transform: scaleX(0.15) !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(4) {
		top: 18px !important;
		width: 14px !important;
		transform: rotate(-45deg) !important;
	}
}

@media (max-width: 380px) {
	.kse-homepage .kse-menu-toggle {
		min-width: 78px !important;
		height: 36px !important;
		min-height: 36px !important;
		padding-left: 39px !important;
		padding-right: 12px !important;
		font-size: 11.5px !important;
	}

	.kse-homepage .kse-menu-toggle::before {
		left: 6px;
		width: 24px;
		height: 24px;
	}

	.kse-homepage .kse-menu-toggle span:not(.kse-sr-only) {
		left: 11px !important;
		width: 13px !important;
		height: 1.6px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(2) {
		top: 12px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(3) {
		top: 17px !important;
		width: 11px !important;
	}

	.kse-homepage .kse-menu-toggle span:nth-child(4) {
		top: 22px !important;
	}

	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(2),
	.kse-homepage .kse-menu-toggle[aria-expanded="true"] span:nth-child(4) {
		top: 17px !important;
		width: 13px !important;
	}
}



/* v1.0.9: homepage hero line size refinement */
@media (min-width: 761px) {
	.kse-homepage .kse-hero-title,
	.kse-homepage .kse-hero-title span {
		font-size: 48px !important;
	}
}

/* v1.0.40: homepage diplomas now use real certificate previews with click-to-open lightbox */
.kse-homepage .kse-certificates__diplomas {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.kse-homepage .kse-diploma-card {
	min-height: 0;
	padding: 12px;
	border-radius: 24px 20px 26px 20px;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 12px;
	align-content: start;
}

.kse-homepage .kse-diploma-card::before {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	top: 10px;
	height: 2px;
	border-radius: 99px;
	background: linear-gradient(90deg, rgba(201, 164, 92, 0.1), rgba(201, 164, 92, 0.58), rgba(201, 164, 92, 0.1));
}

.kse-homepage .kse-diploma-card__thumb {
	position: relative;
	aspect-ratio: 1 / 1.08;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(180deg, rgba(251, 248, 242, 0.96), rgba(245, 240, 231, 0.86));
	box-shadow: inset 0 0 0 1px rgba(201, 164, 92, 0.12);
}

.kse-homepage .kse-diploma-card__image-button {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
	border-radius: inherit;
}

.kse-homepage .kse-diploma-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.35s ease, filter 0.35s ease;
}

.kse-homepage .kse-diploma-card__image-button:hover .kse-diploma-card__image,
.kse-homepage .kse-diploma-card__image-button:focus-visible .kse-diploma-card__image {
	transform: scale(1.035);
	filter: saturate(1.02) contrast(1.02);
}

.kse-homepage .kse-diploma-card__image-button:focus-visible {
	outline: 2px solid rgba(201, 164, 92, 0.7);
	outline-offset: 2px;
}

.kse-homepage .kse-diploma-card__zoom {
	position: absolute;
	right: 10px;
	bottom: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(31, 35, 32, 0.78);
	color: #fff;
	font-size: 10px;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 10px 22px rgba(31, 35, 32, 0.22);
}

.kse-homepage .kse-diploma-card__placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	background: linear-gradient(180deg, rgba(251, 248, 242, 0.98), rgba(245, 240, 231, 0.92));
}

.kse-homepage .kse-diploma-card__placeholder span {
	width: 52px;
	height: 68px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(201, 164, 92, 0.26), rgba(201, 164, 92, 0.1));
	box-shadow: inset 0 0 0 1px rgba(201, 164, 92, 0.2);
}

.kse-homepage .kse-diploma-card__content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.kse-homepage .kse-diploma-card__eyebrow {
	font-size: 9.5px;
	line-height: 1.15;
	font-weight: 500;
	letter-spacing: 0.08em;
	color: color-mix(in srgb, var(--kse-gold) 82%, var(--kse-muted));
	text-transform: uppercase;
}

.kse-homepage .kse-diploma-card__title {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.24;
	font-weight: 500;
	color: color-mix(in srgb, var(--kse-dark) 92%, #000 8%);
}

.kse-homepage .kse-diploma-card__issuer {
	font-size: 11px;
	line-height: 1.35;
	color: color-mix(in srgb, var(--kse-muted) 88%, var(--kse-dark));
}

.kset-cert-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	background: rgba(17, 20, 18, 0.82);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	backdrop-filter: blur(8px);
}

.kset-cert-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.kset-cert-lightbox__dialog {
	position: relative;
	max-width: min(92vw, 1200px);
	max-height: 92vh;
	padding: 18px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

.kset-cert-lightbox__dialog img {
	display: block;
	max-width: 100%;
	max-height: calc(92vh - 36px);
	width: auto;
	height: auto;
	border-radius: 12px;
	object-fit: contain;
}

.kset-cert-lightbox__close {
	position: absolute;
	right: 8px;
	top: 8px;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: rgba(31, 35, 32, 0.86);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
}

.kset-cert-lightbox__close:hover,
.kset-cert-lightbox__close:focus-visible {
	background: rgba(31, 35, 32, 0.96);
}

@media (max-width: 1280px) {
	.kse-homepage .kse-certificates__diplomas {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 980px) {
	.kse-homepage .kse-certificates__diplomas {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.kse-homepage .kse-certificates__diplomas {
		grid-template-columns: minmax(0, 1fr);
	}

	.kse-homepage .kse-diploma-card {
		padding: 12px;
	}

	.kse-homepage .kse-diploma-card__thumb {
		aspect-ratio: 1 / 0.9;
	}

	.kset-cert-lightbox {
		padding: 14px;
	}

	.kset-cert-lightbox__dialog {
		padding: 12px;
		border-radius: 18px;
	}

	.kset-cert-lightbox__dialog img {
		max-height: calc(100vh - 76px);
	}
}

/* v1.0.46: dynamic account/login state in the primary header navigation */
.kse-header .kse-header__nav-link--account,
.kse-page-header .kse-header__nav-link--account {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 400;
	white-space: nowrap;
}

.kse-header .kse-header__nav-link--account.is-logged-in::before,
.kse-page-header .kse-header__nav-link--account.is-logged-in::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #fa9503;
	box-shadow: 0 0 0 4px rgba(250, 149, 3, 0.10);
}

.kse-header .kse-header__nav-link--account.is-logged-out,
.kse-page-header .kse-header__nav-link--account.is-logged-out {
	color: #111111;
}

.kse-header .kse-header__nav-link--account.is-logged-out::after,
.kse-page-header .kse-header__nav-link--account.is-logged-out::after {
	width: 24px;
	background: #fa9503;
	opacity: 0.9;
}

@media (max-width: 1120px) {
	.kse-header .kse-header__nav-link--account,
	.kse-page-header .kse-header__nav-link--account {
		gap: 6px;
	}
}
