/* Campaign Hero Section Styles */

:where(.campaign-hero) {
	height: calc(100svh - 32px);
	min-height: 700px;
	background: #EDAF9C;
	position: relative;
	overflow: hidden;
}

.campaign-hero::after {
	display: none;
}

.mobile-hero-logo {
	display: none;
	position: absolute;
	z-index: 3;
	left: 50%;
	top: 118px;
	width: 112.2px;
	transform: translateX(-50%);
	pointer-events: none;
	user-select: none;
}

.mobile-hero-logo .hero-lockup {
	display: block;
	width: 100%;
	height: auto;
}

.campaign-girls {
	position: absolute;
	z-index: 1;
	left: 50%;
	bottom: -1px;
	width: min(78vw, 1240px);
	height: auto;
	max-height: 88%;
	object-fit: contain;
	transform: translateX(-50%);
	pointer-events: none;
	user-select: none;
}

.campaign-copy {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 7.5%;
	width: min(670px, 86vw);
	height: auto;
	padding: 0;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	color: #fff;
	text-shadow: 0 2px 22px rgba(22, 21, 19, 0.42);
}

.campaign-copy h1 {
	max-width: none;
	font-family: var(--serif, "Poppins", Arial, sans-serif);
	font-size: clamp(27px, 2.45vw, 42px);
	font-weight: 400;
	line-height: 1.22;
	letter-spacing: -0.035em;
	margin: 0;
	text-align: center;
}

.hero-cta {
	display: block;
	margin-top: 28px;
	min-width: 315px;
	padding: 18px 34px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--ink, #161513);
	text-shadow: none;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.15em;
	transition: background 0.25s, color 0.25s;
	text-align: center;
}

.hero-cta:hover {
	background: var(--ink, #161513);
	color: #fff;
}

/* Mobile / Tablet — max-width 940px */
@media (max-width: 940px) {
	.campaign-hero {
		height: 100svh;
		min-height: 720px;
	}

	.mobile-hero-logo {
		display: block;
	}

	.campaign-girls {
		width: 100%;
		height: auto;
		left: 50%;
		max-width: none;
	}

	.campaign-copy {
		bottom: 8%;
		width: calc(100% - 44px);
	}

	.campaign-copy h1 {
		font-size: clamp(28px, 7.4vw, 42px);
		line-height: 1.12;
	}

	.hero-cta {
		width: min(310px, 86vw);
		margin-top: 22px;
	}
}

/* Mobile — max-width 560px */
@media (max-width: 560px) {
	.campaign-hero {
		min-height: 690px;
	}

	.campaign-girls {
		width: 690px;
		left: 50%;
	}

	.campaign-copy {
		bottom: 5.5%;
	}

	.campaign-copy h1 {
		font-size: 28px;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.campaign-hero,
	.campaign-hero *,
	.campaign-hero *::before,
	.campaign-hero *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
