@charset "utf-8";

/* Homepage banner with static text overlay */
.home-banner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.home-banner__slider.device,
.home-banner__slider .swiper-container {
	width: 100% !important;
	height: auto !important;
}

.home-banner__slider .swiper-slide img {
	display: block;
	width: 100% !important;
	height: auto !important;
	object-fit: cover;
}

.home-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 0 clamp(12px, 3vw, 24px) clamp(52px, 11vh, 145px);
	box-sizing: border-box;
	pointer-events: none;
}

.home-banner__overlay .container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}

.home-banner__content {
	width: 100%;
	max-width: min(920px, 100%);
	margin: 0 auto;
	padding: 0;
	text-align: left;
	box-sizing: border-box;
}

.home-banner__title {
	margin: 0 0 clamp(12px, 2vw, 22px);
	color: #fff;
	font-size: clamp(24px, 4.1vw, 54px);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: -0.02em;
	-webkit-text-stroke: clamp(1.5px, 0.32vw, 4px) #000;
	paint-order: stroke fill;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.72), 0 2px 8px rgba(0, 0, 0, 0.62), 0 1px 2px rgba(0, 0, 0, 0.85);
	max-width: 100%;
}

.home-banner__title-line {
	display: block;
	max-width: 100%;
}

.home-banner__title-line + .home-banner__title-line {
	margin-top: clamp(6px, 1vw, 10px);
}

.home-banner__title-line--nowrap {
	white-space: normal;
}

.home-banner__subtitle {
	margin: 0;
	max-width: 100%;
	color: #fff;
	font-size: clamp(14px, 1.55vw, 20px);
	font-weight: 400;
	line-height: 1.45;
	-webkit-text-stroke: clamp(1px, 0.22vw, 3px) #000;
	paint-order: stroke fill;
	text-shadow: 0 3px 14px rgba(0, 0, 0, 0.72), 0 2px 6px rgba(0, 0, 0, 0.62), 0 1px 2px rgba(0, 0, 0, 0.85);
}

.home-banner__subtitle--nowrap {
	white-space: normal;
	max-width: 100%;
}

.home-banner__subtitle + .home-banner__subtitle {
	margin-top: clamp(4px, 0.8vw, 8px);
}

@media screen and (min-width: 1025px) {
	.home-banner__title-line--nowrap,
	.home-banner__subtitle--nowrap {
		white-space: nowrap;
	}
}

@media screen and (min-width: 1200px) {
	.home-banner__title {
		line-height: 1.28;
	}

	.home-banner__title-line + .home-banner__title-line {
		margin-top: 10px;
	}
}

@media screen and (min-width: 653px) and (max-width: 1024px) {
	.home-banner__overlay {
		padding-bottom: clamp(64px, 10vh, 110px);
	}

	.home-banner__title {
		font-size: clamp(22px, 3.6vw, 40px);
		-webkit-text-stroke: clamp(2px, 0.28vw, 3px) #000;
	}

	.home-banner__subtitle {
		font-size: clamp(13px, 1.45vw, 17px);
		-webkit-text-stroke: clamp(1px, 0.18vw, 2px) #000;
	}
}

@media screen and (max-width: 652px) {
	.home-banner__overlay {
		align-items: center;
		padding: 28px 12px 46px;
	}

	.home-banner__overlay .container {
		align-items: center;
	}

	.home-banner__content {
		max-width: 100%;
	}

	.home-banner__title {
		font-size: clamp(16px, 4.8vw, 22px);
		line-height: 1.18;
		margin-bottom: 8px;
		-webkit-text-stroke: 2px #000;
	}

	.home-banner__title-line + .home-banner__title-line {
		margin-top: 4px;
	}

	.home-banner__title-line--nowrap {
		white-space: normal;
	}

	.home-banner__subtitle {
		font-size: clamp(11px, 3.2vw, 14px);
		line-height: 1.35;
		-webkit-text-stroke: 1px #000;
	}

	.home-banner__subtitle--nowrap {
		white-space: normal;
	}

	.home-banner__subtitle + .home-banner__subtitle {
		margin-top: 4px;
	}
}

@media screen and (max-width: 480px) {
	.home-banner__overlay {
		padding: 24px 12px 40px;
	}

	.home-banner__title {
		margin-bottom: 0;
	}

	.home-banner__subtitle {
		display: none;
	}
}

.home-banner .pagination {
	position: absolute;
	left: 0;
	bottom: 18px;
	width: 100%;
	text-align: center;
	z-index: 12;
}

/* Kitchen Sink Factory intro section */
.home-intro {
	background: #fff;
	padding: 56px 0 48px;
}

.home-intro .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
	box-sizing: border-box;
}

.home-intro__title {
	margin: 0 0 40px;
	text-align: center;
	color: #111;
	font-size: 32px;
	font-weight: 800;
	line-height: 1.25;
}

.home-intro__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 28px 24px;
}

.home-intro__item {
	text-align: left;
}

.home-intro__icon {
	display: block;
	width: 56px;
	height: 56px;
	margin: 0 auto 14px;
	object-fit: contain;
}

.home-intro__item-title {
	margin: 0 0 12px;
	color: #111;
	font-size: 18px;
	font-weight: 800;
	font-style: italic;
	line-height: 1.35;
}

.home-intro__item-title::after {
	content: "";
	display: block;
	width: 52px;
	height: 5px;
	margin-top: 10px;
	background: rgb(200, 2, 3);
}

.home-intro__item-desc {
	margin: 0;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.65;
}

@media screen and (max-width: 991px) {
	.home-intro__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 20px;
	}

	.home-intro__title {
		font-size: 26px;
		margin-bottom: 32px;
	}
}

@media screen and (max-width: 640px) {
	.home-intro {
		padding: 36px 0 32px;
	}

	.home-intro__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.home-intro__title {
		font-size: 22px;
		margin-bottom: 24px;
	}
}
