/* ============ PROJECTS HERO ============ */
.hero--projects {
	height: 470px;
}
.hero--projects__overlay {
	background: linear-gradient(180deg, rgba(15, 22, 32, .1) 0%, rgba(15, 22, 32, .05) 30%, rgba(15, 22, 32, .96) 100%);
}
.hero--projects__copy {
	position: relative;
	margin: 0 0 70px 40px;
	max-width: 620px;
}
.hero--projects__title {
	color: #fff;
	font-size: 66px;
	font-weight: 800;
	letter-spacing: .01em;
	text-transform: uppercase;
	margin: 0 0 14px;
	line-height: .92;
}
.hero--projects__tagline {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin: 0;
	line-height: 1.4;
}

/* ============ SIGNATURE PROJECTS GALLERY VIEWER ============ */
.sig-viewer {
	padding: 60px 70px 70px 40px;
	max-width: 1600px;
	margin: 0 auto;
}
.sig-viewer__title {
	color: var(--aab-blue);
	margin-bottom: 44px;
}
.sig-viewer {
	scroll-margin-top: 90px;
}
.sig-viewer__stage {
	position: relative;
}
/* Only the image itself is 75% width and right-aligned. The text card (left,
   overhanging) and the nav dots (far right) stay put because they're positioned
   relative to the full-width stage, not the image. The gallery below is also
   full width. */
.sig-viewer__feature {
	position: relative;
	overflow: hidden;
	width: 75%;
	margin-left: auto;
	border-radius: 4px;
	height: 540px;
	background-size: cover;
	background-position: center;
}
/* Crossfade layer used by JS when switching projects, so the image transition
   is seamless rather than an instant swap. */
.sig-viewer__fade-layer {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity .55s ease;
	pointer-events: none;
}
.sig-viewer__fade-layer.is-in {
	opacity: 1;
}
@keyframes sigInfoFade {
	from { opacity: .2; }
	to { opacity: 1; }
}
.sig-viewer__info.is-fade {
	animation: sigInfoFade .5s ease;
}
@media (prefers-reduced-motion: reduce) {
	.sig-viewer__fade-layer { transition: none; }
	.sig-viewer__info.is-fade { animation: none; }
}
/* Glassy, transparent info card — overhanging the bottom-left of the image. */
.sig-viewer__info {
	position: absolute;
	left: 2%;
	bottom: -22px;
	width: 640px;
	max-width: calc(100% - 40px);
	background: linear-gradient(109deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 100%);
	backdrop-filter: blur(28px) saturate(1.1);
	-webkit-backdrop-filter: blur(28px) saturate(1.1);
	border: 2px solid rgba(69, 189, 164, 0.2);
	border-radius: 16px;
	padding: 24px 28px;
	z-index: 20;
}
.sig-viewer__info h3 {
	font-size: clamp(24px, 3.2vw, 40px);
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.02;
	margin: 0 0 12px;
	color: #fff;
}
.sig-viewer__info p {
	font-size: clamp(13px, 1.1vw, 15.5px);
	line-height: 1.55;
	color: rgba(255, 255, 255, .9);
	margin: 0;
}
.sig-viewer__info-cta {
	margin-top: 18px;
	font-size: 12px;
	padding: 11px 20px;
}
/* Nav column sits OUTSIDE the image on the right; arrows top & bottom, dots
   filling the middle. */
.sig-viewer__pagination {
	position: absolute;
	right: -54px;
	top: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	z-index: 21;
}
.sig-viewer__nav-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: none;
	background: #2a3342;
	color: #fff;
	cursor: var(--aab-cursor-arrow);
	font-size: 12px;
}
.sig-viewer__dots {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 6px 0;
}
.sig-viewer__dot {
	width: 14px;
	height: 14px;
	flex: none;
	border-radius: 50%;
	cursor: var(--aab-cursor-arrow);
	background: rgba(255, 255, 255, .45);
	border: none;
	padding: 0;
}
.sig-viewer__dot.is-active {
	background: var(--aab-orange);
}
.sig-viewer__gallery-big {
	position: relative;
	overflow: hidden;
	margin-top: 60px;
	border-radius: 4px;
	height: 480px;
	background-size: cover;
	background-position: center;
}
.sig-viewer__thumbs {
	display: flex;
	gap: 8px;
	margin-top: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
}
.sig-viewer__thumb {
	width: 122px;
	height: 84px;
	flex: none;
	border-radius: 4px;
	cursor: var(--aab-cursor-arrow);
	opacity: .4;
	background-size: cover;
	background-position: center;
	transition: opacity .2s;
}
.sig-viewer__thumb.is-active {
	opacity: 1;
}

/* ============ SUGGESTED PROJECTS ============ */
.suggested {
	padding: 30px 40px 80px;
	max-width: 1180px;
	margin: 0 auto;
}
.suggested__title {
	color: var(--aab-orange);
	margin-bottom: 44px;
}
.suggested__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 26px;
}
.suggested__cta {
	display: flex;
	justify-content: center;
	margin-top: 44px;
}
.suggested__card {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	min-height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.suggested__card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.suggested__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11, 16, 24, .55) 0%, rgba(11, 16, 24, .5) 35%, rgba(11, 16, 24, .95) 100%);
}
.suggested__card-year {
	position: absolute;
	top: 16px;
	left: 22px;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	opacity: .85;
}
.suggested__card-body {
	position: relative;
	padding: 24px;
	color: #fff;
}
.suggested__card-body h3 {
	font-size: 21px;
	font-weight: 800;
	margin: 0 0 12px;
}
.suggested__card-body p {
	font-size: 12px;
	line-height: 1.55;
	color: rgba(255, 255, 255, .78);
	margin: 0 0 18px;
}
.suggested__card-footer {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.suggested__card-footer .btn-pill {
	font-size: 11px;
	padding: 11px 20px;
}
.suggested__card-disclaimer {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, .5);
	font-size: 9.5px;
	line-height: 1.3;
	max-width: 230px;
}
.suggested__card-disclaimer svg {
	flex: none;
}

@media (max-width: 900px) {
	.suggested__grid {
		grid-template-columns: 1fr;
	}
	/* Back to a normal centred, evenly-padded viewer on smaller screens. */
	.sig-viewer {
		max-width: 1180px;
		margin: 0 auto;
		padding: 60px 24px 70px;
	}
	.sig-viewer__feature {
		width: auto;
		margin-left: 0;
	}
	.sig-viewer__info {
		position: static;
		width: auto;
		margin-top: 14px;
	}
	/* Mobile: swipe the image left/right to change projects; hide the dots and
	   keep just the two arrows, centred. */
	.sig-viewer__pagination {
		position: static;
		flex-direction: row;
		justify-content: center;
		gap: 18px;
		margin-top: 16px;
	}
	.sig-viewer__dots {
		display: none;
	}
	.sig-viewer__stage {
		touch-action: pan-y;
	}
	/* Point the arrows left/right on mobile (they're up/down on desktop). The
	   inline SVG rotation needs !important to override here. */
	#proj-prev .aab-arrow-icon {
		transform: rotate(180deg) !important;
	}
	#proj-next .aab-arrow-icon {
		transform: rotate(0deg) !important;
	}
	.sig-viewer__gallery-big {
		margin-top: 20px;
	}
}
@media (max-width: 640px) {
	.hero--projects {
		height: 380px;
	}
	.hero--projects__copy {
		margin: 0 24px 40px 24px;
	}
	.hero--projects__title {
		font-size: 34px;
	}
	.hero--projects__tagline {
		font-size: 12px;
	}
}
@media (max-width: 380px) {
	.hero--projects__title {
		font-size: 29px;
	}
	.sig-viewer__feature {
		height: 220px;
	}
	.sig-viewer__gallery-big {
		height: 200px;
	}
	.sig-viewer {
		padding-left: 24px;
		padding-right: 24px;
	}
	.suggested {
		padding-left: 24px;
		padding-right: 24px;
	}
}
