/* ── Intro block ── */

.intro-block {
	padding-block: clamp(60px, 7vw, 110px);
}

/* ── Header ── */

.intro-block__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: var(--space-m);
	
	margin-inline: auto;
	margin-bottom: clamp(40px, 5vw, 72px);
}

.intro-block__title {
color: #1A1919;
text-align: center;
font-size: 60px;
font-style: normal;
font-weight: 500;
line-height: 64px; /* 106.667% */
letter-spacing: -1.2px;
	margin: 0;
}
.intro-block__header .section-desc{
	max-width: 514px;
}
/* ── Visual ── */

.intro-block__visual {
	border-radius: clamp(10px, 1.2vw, 16px);
	overflow: hidden;
	width: 100%;
	line-height: 0;
}

.intro-block__visual img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

/* ── Responsive ── */

@media (max-width: 768px) {
	.intro-block__title {
		letter-spacing: -0.02em;
	}
}

/* Tablet: scale the fixed 60px title down to match the fluid section rhythm. */
@media (min-width: 769px) and (max-width: 1024px) {
	.intro-block__title {
		font-size: 46px;
		line-height: 1.08;
	}
}
