/* Brand Story Section Styles */

.v10-story {
	position: relative;
	display: block;
	background: #fff;
	border: 1px solid var(--line);
	overflow: hidden;
	margin-top: clamp(100px, 8vw, 140px);
}

/* Story Copy */
.v10-story-copy {
	padding: clamp(30px, 3vw, 50px) clamp(46px, 5.5vw, 86px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 50%;
	position: relative;
	z-index: 1;
}

.v10-story-copy h2 {
	margin-top: 13px;
	font: 350 clamp(40px, 4.4vw, 68px) / 1.02 var(--serif);
	letter-spacing: -0.05em;
	margin-bottom: 0;
}

.v10-story-copy h2 span {
	font-weight: 300;
	color: #D99CA4;
}

.v10-story-copy p {
	max-width: 680px;
	margin-top: 20px;
	color: #34312E;
	font-size: 14px;
	line-height: 1.68;
}

.v10-story-copy .btn {
	margin-top: 30px;
}

/* Story Button */
.btn-soft {
	background: #F8E6E8;
	color: var(--ink);
	display: flex;
	align-items: center;
	gap: 34px;
}

.btn-soft:hover {
	color: var(--ink);
}

/* Story Reference Image */
.story-reference-crop {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 50%;
	overflow: hidden;
}

.story-reference-crop img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center;
}

/* Tablet — max-width 940px */
@media (max-width: 940px) {
	.v10-story {
		display: block;
	}

	.v10-story-copy {
		width: 100%;
	}

	.story-reference-crop {
		position: static;
		width: 100%;
		height: 400px;
	}

	.v10-story-copy {
		padding: clamp(30px, 3vw, 50px) clamp(30px, 3vw, 50px);
	}

	.v10-story-copy h2 {
		font-size: 40px;
	}
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
	.v10-story,
	.v10-story-copy {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
