.hat-portfolio {
	color: #fff;
	padding: 0 0 clamp(132px, 11.45vw, 220px);
	margin: clamp(132px, 11.45vw, 220px) 0 0;
	overflow: hidden;
}

.hat-portfolio__grid {
	width: 100%;
}

/* ---- Header ---- */
.hat-portfolio__header {
	margin-bottom: clamp(48px, 4.688vw, 90px);
}

.hat-portfolio__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 0.625vw, 12px);
	margin: 0 0 clamp(24px, 1.875vw, 36px);
	font-size: clamp(12px, 0.833vw, 16px);
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.hat-portfolio__eyebrow-bracket {
	opacity: 1;
}

.hat-portfolio__title-row {
	display: flex;
	align-items: flex-end;
	gap: clamp(32px, 20.052vw, 385px);
	padding-left: clamp(16px, 7.813vw, 150px);
}

.hat-portfolio__title {
	margin: 0;
	font-weight: 500;
	font-size: clamp(44px, 5.208vw, 100px);
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #fff;
}

.hat-portfolio__title-line {
	display: block;
}

.hat-portfolio__title-line:nth-child(2) {
	padding-left: clamp(24px, 4.688vw, 90px);
}

.hat-portfolio__ornament {
	flex-shrink: 0;
	display: flex;
	align-items: flex-end;
}

.hat-portfolio__ornament img {
	width: 100%;
	height: clamp(44px, 4.427vw, 85px);
	display: block;
}

/* ---- Grid ---- */
.hat-portfolio__grid {
	background: #000;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(8px, 0.677vw, 13px);
}

.hat-portfolio__item {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.hat-portfolio__item.is-hidden {
	display: none;
}

.hat-portfolio__item.is-revealing {
	animation: hat-portfolio-reveal 0.45s ease both;
}

.hat-portfolio__item--wide {
	grid-column: 1 / -1;
}

.hat-portfolio__item--half:nth-child(2) {
	padding-left: clamp(10px, 1.354vw, 26px);
}

.hat-portfolio__item--half:nth-child(3) {
	padding-right: clamp(10px, 1.354vw, 26px);
}

.hat-portfolio__img-wrap {
	position: relative;
	overflow: hidden;
}

.hat-portfolio__item--wide .hat-portfolio__img-wrap {
	aspect-ratio: 16 / 9;
}

.hat-portfolio__item--half .hat-portfolio__img-wrap {
	aspect-ratio: 10 / 9;
}

.hat-portfolio__img-wrap img,
.hat-portfolio__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.hat-portfolio__item:hover .hat-portfolio__img-wrap img,
.hat-portfolio__item:hover .hat-portfolio__img {
	transform: scale(1.03);
}

@keyframes hat-portfolio-reveal {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hat-portfolio__item.is-revealing {
		animation: none;
	}
}

.hat-portfolio__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
}

/* ---- Footer / "Voir plus" ---- */
.hat-portfolio__footer {
	display: flex;
	justify-content: center;
	margin-top: clamp(56px, 5.469vw, 105px);
}

.hat-portfolio__footer.is-hidden {
	display: none;
}

.hat-portfolio__more {
	display: inline-flex;
	align-items: center;
	gap: clamp(8px, 0.78vw, 15px);
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font: inherit;
	text-decoration: none;
	font-weight: 400;
	font-size: clamp(13px, 1.458vw, 28px);
	line-height: clamp(16px, 1.458vw, 28px);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.hat-portfolio__more:hover {
	opacity: 0.7;
}

.hat-portfolio__more-arrow {
	font-size: 1.4em;
	line-height: 1;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.hat-portfolio__title-row {
		position: relative;
		flex-direction: column;
		align-items: center;
		gap: 12px;
		padding-left: 0;
	}

	.hat-portfolio__ornament {
		position: absolute;
		top: 0;
		right: 14%;
		align-self: auto;
		padding-top: 0;
	}

	.hat-portfolio__item--half:nth-child(2),
	.hat-portfolio__item--half:nth-child(3) {
		padding-left: 0;
		padding-right: 0;
	}
}

@media (max-width: 640px) {
	.hat-portfolio {
		margin-top: 72px;
		padding-bottom: 72px;
	}

	.hat-portfolio__header {
		margin-bottom: 22px;
	}

	.hat-portfolio__eyebrow {
		margin-bottom: 12px;
		gap: 14px;
		font-size: 14px;
		letter-spacing: 0.12em;
	}

	.hat-portfolio__title {
		font-size: clamp(24px, 9.3vw, 40px);
		line-height: 1.05;
		text-align: left;
		margin: 0 auto;
	}


	.hat-portfolio__title-line:nth-child(2) {
		padding-left: 0;
	}
	.hat-portfolio__ornament img {
		height: 28px;
	}

	.hat-portfolio__grid {
		grid-template-columns: 1fr 1fr;
		gap: 13px;
	}

	.hat-portfolio__item--wide {
		grid-column: 1 / -1;
	}

	.hat-portfolio__item--wide .hat-portfolio__img-wrap {
		aspect-ratio: 393 / 406;
	}

	.hat-portfolio__item--half .hat-portfolio__img-wrap {
		aspect-ratio: 190 / 255;
	}

	.hat-portfolio__footer {
		margin-top: 46px;
	}

	.hat-portfolio__more {
		font-size: clamp(13px, 4.07vw, 16px);
		font-weight: 600;
		line-height: clamp(16px, 4.83vw, 19px);
		letter-spacing: 0.01em;
		gap: clamp(12px, 3.82vw, 15px);
	}

	.hat-portfolio__more-arrow {
		width: clamp(11px, 3.56vw, 14px);
		height: clamp(10px, 3.31vw, 13px);
	}
}
