/* Bottom call-to-action band */

.gallery-cta {
	background:
		linear-gradient(135deg, rgba(18, 27, 41, 0.95), rgba(29, 44, 68, 0.92)),
		radial-gradient(circle at 80% 30%, rgba(214, 69, 40, 0.4), transparent 60%);
	background-color: #121b29;
	color: #f7fafc;
}

.gallery-cta__inner {
	text-align: center;
	padding-top: clamp(3rem, 7vw, 5rem);
	padding-bottom: clamp(3rem, 7vw, 5rem);
}

.gallery-cta__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	line-height: 1.2;
	letter-spacing: -0.01em;
}

.gallery-cta__text {
	margin: 0 auto 1.75rem;
	max-width: 560px;
	font-size: 1.05rem;
	line-height: 1.6;
	color: rgba(247, 250, 252, 0.85);
}

.gallery-cta__button {
	display: inline-block;
	padding: 0.9rem 2.25rem;
	border-radius: 999px;
	background: var(--gallery-accent, #d64528);
	color: #fff;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(214, 69, 40, 0.4);
	transition: background-color 200ms ease, transform 150ms ease, box-shadow 200ms ease;
}

.gallery-cta__button:hover {
	background: var(--gallery-accent-dark, #b5371d);
	transform: translateY(-2px);
	box-shadow: 0 14px 32px rgba(214, 69, 40, 0.5);
}

.gallery-cta__button:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.8);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.gallery-cta__button:hover {
		transform: none;
	}
}
