/* Shared hero — homepage slider + service-page static */
.gup-hero {
	--gup-red: #CA3A3A;
	--gup-navy: #3E516F;
	--gup-muted: #8a919c;
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: #f3f0eb;
	min-height: clamp(560px, 82vh, 760px);
	width: 100%;
	max-width: none;
	margin: 0;
	font-family: "Saira", "Saira Condensed", sans-serif;
}

.gup-hero__slides {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
}

.gup-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease, visibility 1s ease;
	pointer-events: none;
}

.gup-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

/* Static heroes: single slide, no fade chrome needed.
   Service pages nest .gup-hero__inner inside the slide, so slides
   must stay in normal flow or the section collapses to 0 height. */
.gup-hero--static .gup-hero__slides {
	position: relative;
	inset: auto;
	width: 100%;
	height: auto;
	min-height: inherit;
	z-index: 0;
}

.gup-hero--static .gup-hero__slide {
	position: relative;
	inset: auto;
	width: 100%;
	height: auto;
	min-height: inherit;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: none;
}

.gup-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Images are composed with open fabric left + patches right */
	object-position: 62% center;
	display: block;
}

.gup-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: inherit;
	width: min(1240px, calc(100% - 64px));
	margin: 0 auto;
	padding: 88px 0 132px;
}

.gup-hero__copy {
	max-width: 700px;
	padding: 36px 40px 40px;
	border-radius: 18px;
	background:
		radial-gradient(
			ellipse 50% 50% at 50% 45%,
			rgb(255 255 255 / 58%) 0%,
			rgb(255 255 255 / 58%) 35%,
			rgba(255, 255, 255, 0.78) 58%,
			rgba(255, 255, 255, 0.35) 78%,
			rgba(255, 255, 255, 0) 100%
		);
}

.gup-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gup-muted);
}

.gup-hero__rule {
	display: inline-block;
	order: -1;
	width: 48px;
	height: 2px;
	background: var(--gup-red);
	flex-shrink: 0;
}

.gup-hero__title {
	margin: 0 0 16px;
	font-size: clamp(2.1rem, 4.4vw, 3.45rem);
	line-height: 1.1;
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--gup-navy);
}

.gup-hero__title em {
	font-style: normal;
	color: var(--gup-red);
}

.gup-hero__text {
	margin: 0 0 30px;
	max-width: 48ch;
	font-size: 1.02rem;
	line-height: 1.65;
	color: #5b6470;
}

.gup-hero__features {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
	max-width: 550px;
}

.gup-hero__features li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	min-width: 0;
	flex: 1 1 0;
}

.gup-hero__feat-label,
.gup-hero__features li > span:last-child {
	display: block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.01em;
	color: var(--gup-navy);
	white-space: nowrap;
}

.gup-hero__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	color: var(--gup-red);
}

.gup-hero__icon svg {
	width: 36px;
	height: 36px;
	display: block;
}

.gup-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 15px 28px;
	border-radius: 999px;
	background: var(--gup-red);
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none !important;
	box-shadow: 0 10px 24px rgba(202, 58, 58, 0.28);
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.gup-hero__cta:hover,
.gup-hero__cta:focus {
	background: #b43232;
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(202, 58, 58, 0.34);
	color: #fff !important;
}

/* Slider arrows */
.gup-hero .gup-hero__arrow {
	position: absolute !important;
	top: 50% !important;
	z-index: 4;
	transform: translateY(-50%);
	width: 42px !important;
	height: 42px !important;
	min-width: 42px !important;
	min-height: 42px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.9) !important;
	color: #1f2937 !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	cursor: pointer;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12) !important;
	transition: background 0.2s ease, transform 0.2s ease;
}

.gup-hero .gup-hero__arrow:hover,
.gup-hero .gup-hero__arrow:focus {
	background: #fff !important;
	color: #111 !important;
	transform: translateY(-50%) scale(1.04);
}

.gup-hero .gup-hero__arrow--prev { left: 18px !important; right: auto !important; }
.gup-hero .gup-hero__arrow--next { right: 18px !important; left: auto !important; }

.gup-hero .gup-hero__arrow,
.gup-hero .gup-hero__dots {
	display: none !important;
}

/* Pagination dots */
.gup-hero .gup-hero__dots {
	position: absolute;
	left: 50%;
	bottom: 78px;
	z-index: 4;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 9px;
}

.gup-hero .gup-hero__dot {
	width: 9px !important;
	height: 9px !important;
	min-width: 9px !important;
	min-height: 9px !important;
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.9) !important;
	box-shadow: 0 0 0 1px rgba(62, 81, 111, 0.15) !important;
	cursor: pointer;
	display: block !important;
	font-size: 0 !important;
	line-height: 0 !important;
}

.gup-hero .gup-hero__dot.is-active {
	background: var(--gup-red) !important;
	box-shadow: none !important;
}

/* Service pages: tuck red benefits bar under the brush wave */
.gup-bar.gup-bar--under-wave {
	position: relative;
	z-index: 2;
	margin-top: 0;
	padding-top: 14px;
}

@media (max-width: 900px) {
	.gup-bar.gup-bar--under-wave {
		margin-top: 0;
		padding-top: 14px;
	}
}

@media (max-width: 900px) {
	/* Size to content — don't force a tall empty fabric band above the card */
	.gup-hero {
		min-height: 0;
	}

	.gup-hero__slides,
	.gup-hero__slide,
	.gup-hero__bg {
		width: 100% !important;
		height: 100% !important;
		left: 0;
		right: 0;
	}

	.gup-hero--static .gup-hero__slides,
	.gup-hero--static .gup-hero__slide {
		height: auto !important;
		min-height: 0;
	}

	.gup-hero--static .gup-hero__bg {
		height: 100% !important;
	}

	.gup-hero__bg {
		object-fit: cover;
		object-position: 62% center;
	}

	.gup-hero__inner {
		align-items: flex-start;
		justify-content: flex-start;
		padding: 14px 0 52px;
		width: calc(100% - 24px);
		max-width: none;
		min-height: 0;
	}

	.gup-hero__copy {
		max-width: none;
		width: 100%;
		padding: 14px 14px 16px;
		border-radius: 14px;
		/* Solid panel so body copy stays readable over the photo */
		background: rgba(255, 255, 255, 0.94);
		box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
		backdrop-filter: blur(4px);
	}

	.gup-hero__eyebrow {
		gap: 10px;
		margin: 0 0 10px;
		font-size: 11px;
		letter-spacing: 0.12em;
		flex-wrap: nowrap;
		color: #6b7280;
	}

	.gup-hero__rule {
		width: 36px;
	}

	.gup-hero__title {
		font-size: clamp(1.55rem, 7.2vw, 2.15rem);
		margin: 0 0 12px;
		color: var(--gup-navy);
	}

	.gup-hero__text {
		margin: 0 0 16px;
		font-size: 0.92rem;
		line-height: 1.55;
		max-width: none;
		color: #4b5563;
	}

	.gup-hero__features {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px 10px;
		max-width: none;
		margin: 0 0 16px;
	}

	.gup-hero__features li {
		gap: 8px;
		align-items: flex-start;
	}

	.gup-hero__feat-label,
	.gup-hero__features li > span:last-child {
		font-size: 12px;
		white-space: normal;
		line-height: 1.25;
		color: var(--gup-navy);
	}

	.gup-hero__icon {
		width: 28px;
		height: 28px;
		flex-shrink: 0;
	}

	.gup-hero__cta {
		padding: 12px 18px !important;
		font-size: 14px !important;
		width: 100%;
		justify-content: center;
	}

	.gup-hero .gup-hero__arrow {
		width: 36px !important;
		height: 36px !important;
		min-width: 36px !important;
		min-height: 36px !important;
		font-size: 24px !important;
	}

	.gup-hero .gup-hero__arrow--prev { left: 10px !important; }
	.gup-hero .gup-hero__arrow--next { right: 10px !important; }

	.gup-hero .gup-hero__dots {
		bottom: 64px;
	}
}

@media (max-width: 480px) {
	.gup-hero {
		min-height: 0;
	}

	.gup-hero__inner {
		padding: 12px 0 48px;
		width: calc(100% - 20px);
	}

	.gup-hero__copy {
		padding: 12px 12px 14px;
	}

	.gup-hero__features {
		gap: 10px 8px;
	}
}

/* Service page detailed content + USA blocks */
.gup-prose { max-width: 48em; }
.gup-prose p { margin: 0 0 1em; line-height: 1.75; color: #556; }
.gup-prose p:last-child { margin-bottom: 0; }
.gup-specs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 8px;
}
@media (max-width: 900px) {
	.gup-specs { grid-template-columns: 1fr; }
}
.gup-spec {
	background: #fff;
	border: 1px solid var(--gup-line, #e6e8ec);
	border-radius: 14px;
	padding: 18px 16px;
}
.gup-spec h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	color: var(--gup-slate, #3E516F);
}
.gup-spec p {
	margin: 0;
	font-size: .94rem;
	line-height: 1.55;
	color: #556;
}
.gup-usa {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 28px;
	align-items: start;
}
@media (max-width: 900px) {
	.gup-usa { grid-template-columns: 1fr; }
}
.gup-usa__card {
	background: #fff;
	border: 1px solid var(--gup-line, #e6e8ec);
	border-radius: 14px;
	padding: 20px 18px;
}
.gup-usa__card h3 {
	margin: 0 0 10px;
	font-size: 1.1rem;
	color: var(--gup-slate, #3E516F);
}
.gup-usa__card ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 8px;
}
.gup-usa__card li {
	position: relative;
	padding-left: 18px;
	color: #556;
	line-height: 1.5;
	font-size: .95rem;
}
/* Utility pages (samples / contact / blog): shorter photo hero */
.gup-hero--page {
	min-height: clamp(380px, 52vh, 520px);
}
.gup-hero--page .gup-hero__inner {
	padding: 72px 0 88px;
}
.gup-hero--page .gup-hero__copy {
	max-width: 620px;
	padding: 28px 32px 32px;
}
.gup-hero--page .gup-hero__title {
	font-size: clamp(2rem, 4.2vw, 3.1rem);
}
@media (max-width: 767px) {
	.gup-hero--page {
		min-height: clamp(340px, 58vh, 460px);
	}
	.gup-hero--page .gup-hero__inner {
		padding: 56px 0 64px;
	}
}

