.cl-hero {
	position: relative;
	padding: clamp(1.75rem, 4vw, 3rem) 0 0;
	overflow: hidden;
	background-color: #fff;
}
.cl-hero .cl-wrap {
	width: min(1180px, calc(100% - 4rem));
}
.cl-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.9fr);
	gap: clamp(1.5rem, 4vw, 3.5rem);
	align-items: end;
	min-height: min(62vh, 560px);
}
.cl-hero__copy {
	max-width: 34rem;
	padding: 1.5rem 0 3rem;
	align-self: center;
}
.cl-hero__copy h1 {
	color: #111;
	max-width: 16ch;
	font-size: clamp(2.05rem, 4.2vw, 3.05rem);
}
.cl-hero .cl-btn--outline {
	border-color: #1a1816;
	background: #fff;
}
.cl-hero__visual {
	position: relative;
	height: min(62vh, 560px);
	min-height: 460px;
}
.cl-hero__arch {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 0;
	width: min(82%, 340px);
	height: 70%;
	transform: translateX(-50%);
	background: #5a5a5a;
	border-radius: 999px 999px 0 0;
}
.cl-hero__figure {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 1;
	margin: 0;
	width: min(100%, 430px);
	transform: translateX(-50%);
}
.cl-hero__figure img {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 10px 22px rgba(17, 17, 17, 0.18));
}

.cl-band {
	background: var(--cl-gold-soft);
	color: var(--cl-ink-soft);
	padding: 1.1rem 0;
	font-weight: 500;
	text-align: center;
	border-block: 1px solid var(--cl-line);
}
.cl-band__text {
	margin: 0;
	font-size: 1.12rem;
	text-align: center;
	hyphens: none;
}

.cl-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.15rem;
}
.cl-card {
	background: #fff;
	border-radius: var(--cl-radius);
	overflow: hidden;
	text-decoration: none;
	border: 1px solid var(--cl-line);
	box-shadow: 0 8px 24px rgba(22, 19, 16, 0.04);
	transition: transform var(--cl-ease), box-shadow var(--cl-ease);
}
.cl-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 32px rgba(22, 19, 16, 0.08);
}
.cl-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: center 18%;
}
.cl-card--top img { object-position: center top; }
.cl-card--mid img { object-position: center 32%; }
.cl-card__body { padding: 1.1rem 1.15rem 1.3rem; }
.cl-card__body p {
	color: var(--cl-muted);
	font-size: 0.98rem;
	margin-bottom: 0.75rem;
}
.cl-card__more { font-weight: 600; color: var(--cl-gold-deep); font-size: 0.9rem; }

.cl-split { padding: clamp(3rem, 7vw, 5rem) 0; background: #fff; }
.cl-split__grid {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: 2.5rem;
	align-items: center;
}
.cl-split__grid--contact {
	grid-template-columns: 2fr 1fr;
	gap: 2rem;
	align-items: start;
}
.cl-split__grid--contact img {
	width: 100%;
	max-width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: top center;
}
.cl-split img {
	border-radius: var(--cl-radius);
	width: 100%;
	object-fit: cover;
	box-shadow: 0 16px 40px rgba(22, 19, 16, 0.08);
}

.cl-cta {
	background: var(--cl-cream);
	padding: 4rem 0;
	text-align: center;
	border-top: 1px solid var(--cl-line);
}
.cl-cta__inner { max-width: 36rem; margin: 0 auto; }
.cl-cta__inner p {
	color: var(--cl-muted);
	text-align: justify;
}

@media (max-width: 900px) {
	.cl-hero {
		padding-top: 2rem;
	}
	.cl-hero .cl-wrap {
		width: min(var(--cl-max), calc(100% - 2.5rem));
	}
	.cl-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
		align-items: start;
	}
	.cl-hero__visual {
		order: -1;
		height: 420px;
		min-height: 420px;
	}
	.cl-hero__arch {
		width: min(70%, 260px);
		height: 74%;
	}
	.cl-hero__figure {
		width: min(78%, 300px);
	}
	.cl-hero__copy {
		padding: 1.5rem 0 2.5rem;
	}
	.cl-hero__copy h1 { max-width: none; }
	.cl-cards,
	.cl-split__grid { grid-template-columns: 1fr; }
	.cl-cards { grid-template-columns: 1fr; }
}

@media (min-width: 901px) and (max-width: 1100px) {
	.cl-cards { grid-template-columns: repeat(2, 1fr); }
}
