.cb-brand-story {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 120px 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.cb-brand-story__overlay {
	position: absolute;
	inset: 0;
	background: rgba(27, 19, 14, 0.36);
	z-index: 0;
}

.cb-brand-story__container {
	position: relative;
	z-index: 1;
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
}

.cb-brand-story__content {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

.cb-brand-story__logo img {
	display: block;
	max-width: 140px;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.cb-brand-story__title {
	margin: 0;
	font-size: clamp(28px, 4.2vw, 42px);
	line-height: 1.3;
	font-weight: 700;
	color: #fff;
	
	text-align: center;
}

.cb-brand-story__description,
.cb-brand-story__description p {
	margin: 0;
	font-size: 18px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.94);
	text-align: center;
}

.cb-brand-story__description p + p {
	margin-top: 12px;
}

.cb-brand-story__actions {
	display: flex;
	justify-content: center;
}

.cb-brand-story__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 26px;
	border-radius: 15px;
	background: #ffffff;
	color: #2f241d;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.cb-brand-story__button:hover {
	transform: translateY(-1px);
	opacity: 0.96;
}

@media (max-width: 991px) {
	.cb-brand-story {
		padding: 100px 0;
		background-attachment: scroll !important;
	}
}

@media (max-width: 767px) {
	.cb-brand-story {
		padding: 84px 0;
	}

	.cb-brand-story__container {
		width: min(100% - 20px, 1280px);
		padding:0px 33px;
	}

	.cb-brand-story__title {
		font-size: clamp(28px, 7vw, 40px);
	}

	.cb-brand-story__description,
	.cb-brand-story__description p {
		font-size: 16px;
		line-height: 1.7;
	}

	.cb-brand-story__logo img {
		max-width: 110px;
	}
}