@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');
:root {
	--ink: #111827;
	--muted: #617083;
	--paper: #f7f9fc;
	--white: #fff;
	--cyan: #17b9d4;
	--blue: #3575ed;
	--magenta: #d849a7;
	--container: 1180px;
	--radius: 22px;
	--shadow: 0 22px 60px #18385d18;
	--ease: 220ms ease;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: 'DM Sans', sans-serif;
	line-height: 1.6;
}
a {
	color: inherit;
	text-decoration: none;
}
a:focus-visible,
button:focus-visible {
	outline: 3px solid var(--cyan);
	outline-offset: 4px;
}
.container {
	width: min(calc(100% - 48px), var(--container));
	margin: auto;
}
.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	transition:
		background var(--ease),
		box-shadow var(--ease),
		border var(--ease);
}
.site-header.is-scrolled {
	background: #ffffffeb;
	border-bottom: 1px solid #dce4ef;
	box-shadow: 0 8px 30px #18385d0b;
	backdrop-filter: blur(14px);
}
.header-inner {
	height: 82px;
	display: flex;
	align-items: center;
	gap: 30px;
}
.logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}
.logo-mark {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--cyan), var(--blue));
	color: #fff;
	font: 700 24px 'Space Grotesk';
	box-shadow: 0 8px 18px #2278be36;
}
.logo-name {
	display: flex;
	flex-direction: column;
	font: 700 17px/1.05 'Space Grotesk';
	letter-spacing: -0.04em;
}
.logo-name small {
	font: 600 9px/1.4 'DM Sans';
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}
.main-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
	font-size: 14px;
	font-weight: 600;
	color: #4d5d70;
}
.main-nav a:not(.button) {
	transition: color var(--ease);
}
.main-nav a:not(.button):hover {
	color: var(--blue);
}
.button {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	border-radius: 999px;
	padding: 15px 22px;
	background: var(--ink);
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 10px 22px #1118271c;
	transition:
		transform var(--ease),
		box-shadow var(--ease),
		background var(--ease);
}
.button:hover {
	transform: translateY(-2px);
	background: var(--blue);
	box-shadow: 0 14px 25px #3575ed40;
}
.button-small {
	padding: 11px 17px;
	font-size: 13px;
}
.header-cta {
	margin-left: 0;
}
.nav-cta,
.menu-toggle {
	display: none;
}
.hero {
	position: relative;
	min-height: 760px;
	overflow: hidden;
	padding: 170px 0 90px;
	background: linear-gradient(135deg, #f9fbff 0%, #eef8fb 52%, #f9f0fb 100%);
}
.hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.02fr 0.98fr;
	align-items: center;
	gap: 55px;
}
.hero-copy {
	max-width: 620px;
}
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	color: var(--blue);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}
.eyebrow span {
	width: 28px;
	height: 2px;
	background: var(--cyan);
}
h1 {
	max-width: 650px;
	margin: 0;
	font: 700 clamp(45px, 5.6vw, 78px)/1.02 'Space Grotesk';
	letter-spacing: -0.07em;
}
h1 em {
	font-style: normal;
	background: linear-gradient(90deg, var(--blue), var(--magenta));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero-lede {
	max-width: 550px;
	margin: 26px 0 32px;
	color: var(--muted);
	font-size: 17px;
}
.hero-actions {
	display: flex;
	align-items: center;
	gap: 28px;
}
.text-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--ink);
}
.text-link span {
	margin-left: 8px;
	color: var(--blue);
	font-size: 20px;
}
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 11px 23px;
	margin-top: 62px;
	color: #667487;
	font-size: 12px;
	font-weight: 600;
}
.trust-row span:before {
	content: '✦';
	margin-right: 7px;
	color: var(--cyan);
}
.product-stage {
	position: relative;
	min-height: 480px;
}
.stage-ring {
	position: absolute;
	width: 420px;
	height: 420px;
	top: 30px;
	left: 80px;
	border: 1px solid #3575ed24;
	border-radius: 50%;
	box-shadow:
		0 0 0 35px #3575ed05,
		0 0 0 70px #d849a705;
}
.product-card {
	position: absolute;
	background: #fff;
	border: 1px solid #dce5ef;
	border-radius: 18px;
	box-shadow: var(--shadow);
}
.shirt {
	width: 248px;
	height: 285px;
	top: 38px;
	left: 35px;
	padding: 20px;
	transform: rotate(-6deg);
}
.jersey {
	width: 225px;
	height: 270px;
	right: 20px;
	top: 7px;
	padding: 20px;
	transform: rotate(7deg);
}
.card-label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #92a1b1;
}
.product-card strong {
	display: block;
	margin-top: 13px;
	font: 600 15px 'Space Grotesk';
}
.shirt-shape {
	display: grid;
	place-items: center;
	height: 185px;
	margin-top: 12px;
	border-radius: 14px;
	background: linear-gradient(145deg, #172334, #314b64);
	clip-path: polygon(
		17% 7%,
		36% 0,
		43% 10%,
		57% 10%,
		64% 0,
		83% 7%,
		100% 25%,
		84% 42%,
		76% 31%,
		76% 100%,
		24% 100%,
		24% 31%,
		16% 42%,
		0 25%
	);
	color: #77def0;
	font: 700 78px 'Space Grotesk';
}
.jersey {
	background: #fff5fc;
}
.jersey-shape {
	display: grid;
	place-items: center;
	height: 180px;
	margin-top: 13px;
	border-radius: 14px;
	background: linear-gradient(150deg, #d849a7, #7b52db);
	clip-path: polygon(
		23% 0,
		38% 9%,
		62% 9%,
		77% 0,
		100% 19%,
		82% 38%,
		74% 30%,
		74% 100%,
		26% 100%,
		26% 30%,
		18% 38%,
		0 19%
	);
	color: #fff;
	font: 700 63px 'Space Grotesk';
}
.mug {
	width: 145px;
	height: 125px;
	right: 109px;
	bottom: 42px;
	padding: 19px;
	transform: rotate(-8deg);
}
.mug-shape {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 91px;
	height: 72px;
	border-radius: 9px 9px 22px 22px;
	background: linear-gradient(135deg, #fff, #dbeef6);
	box-shadow: inset 0 -5px 0 #b7d9e5;
	color: var(--blue);
	font: 700 35px 'Space Grotesk';
}
.mug-shape:after {
	content: '';
	position: absolute;
	width: 25px;
	height: 32px;
	right: 2px;
	border: 6px solid #c5e0ea;
	border-left: 0;
	border-radius: 0 18px 18px 0;
}
.sticker-sheet {
	position: absolute;
	right: 7px;
	bottom: 3px;
	display: grid;
	grid-template-columns: repeat(3, 31px);
	gap: 8px;
	padding: 14px;
	transform: rotate(8deg);
	background: #fff;
	border: 1px solid #dce5ef;
	border-radius: 12px;
	box-shadow: var(--shadow);
}
.sticker-sheet i {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	border-radius: 50%;
	background: #dff8f9;
	color: var(--blue);
	font-style: normal;
	font-weight: 700;
}
.sticker-sheet i:nth-child(2n) {
	background: #fce2f1;
	color: var(--magenta);
}
.business-card {
	position: absolute;
	bottom: 33px;
	left: 5px;
	width: 178px;
	height: 100px;
	padding: 16px;
	background: var(--ink);
	color: #fff;
	border-radius: 9px;
	box-shadow: var(--shadow);
	transform: rotate(-4deg);
}
.business-card small {
	display: block;
	color: var(--cyan);
	font-size: 8px;
	letter-spacing: 0.2em;
}
.business-card b {
	display: block;
	font: 600 17px 'Space Grotesk';
}
.business-card span {
	font-size: 10px;
	color: #a8b6c5;
}
.cmyk-dot {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}
.dot-cyan {
	top: 4px;
	right: 120px;
	background: var(--cyan);
}
.dot-magenta {
	bottom: 17px;
	right: 60px;
	background: var(--magenta);
}
.hero-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(3px);
	opacity: 0.55;
}
.hero-glow-one {
	width: 300px;
	height: 300px;
	left: -130px;
	top: 100px;
	background: #17b9d41f;
}
.hero-glow-two {
	width: 360px;
	height: 360px;
	right: -130px;
	bottom: -120px;
	background: #d849a71c;
}
.site-footer {
	padding: 76px 0 24px;
	background: #101a29;
	color: #d7e1ed;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
	gap: 45px;
	padding-bottom: 65px;
}
.footer-brand p {
	max-width: 285px;
	margin-top: 22px;
	color: #8f9daf;
	font-size: 13px;
}
.site-footer .logo-name {
	color: #fff;
}
.site-footer h2 {
	margin: 4px 0 20px;
	color: #fff;
	font: 600 13px 'Space Grotesk';
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.site-footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.site-footer li {
	margin: 0 0 10px;
	color: #8f9daf;
	font-size: 13px;
}
.site-footer a:hover {
	color: var(--cyan);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid #ffffff17;
	color: #738195;
	font-size: 11px;
}
.footer-bottom span a {
	margin-left: 18px;
}
.back-top {
	color: #c2cedb;
}
@media (max-width: 900px) {
	.header-cta {
		display: none;
	}
	.menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		margin-left: auto;
		padding: 10px;
		border: 0;
		background: none;
		cursor: pointer;
	}
	.menu-toggle span {
		width: 23px;
		height: 2px;
		background: var(--ink);
	}
	.main-nav {
		position: absolute;
		top: 75px;
		left: 24px;
		right: 24px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		background: #fff;
		border: 1px solid #dce4ef;
		border-radius: 15px;
		box-shadow: var(--shadow);
	}
	.main-nav.is-open {
		display: flex;
	}
	.main-nav a:not(.button) {
		padding: 11px 10px;
	}
	.nav-cta {
		display: flex;
		justify-content: center;
		margin-top: 6px;
	}
	.hero {
		padding-top: 135px;
	}
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.hero-copy {
		max-width: 700px;
	}
	.product-stage {
		width: min(100%, 570px);
		margin: auto;
		min-height: 450px;
	}
	.footer-grid {
		grid-template-columns: 1.3fr 1fr 1fr;
	}
	.footer-grid > div:last-child {
		grid-column: span 3;
	}
}
@media (max-width: 620px) {
	.container {
		width: min(calc(100% - 34px), var(--container));
	}
	.header-inner {
		height: 72px;
	}
	.hero {
		min-height: 0;
		padding: 120px 0 55px;
	}
	.hero-lede {
		font-size: 15px;
	}
	.hero-actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}
	.trust-row {
		margin-top: 38px;
		gap: 10px 15px;
	}
	.product-stage {
		min-height: 350px;
		transform: scale(0.78);
		transform-origin: top center;
		margin-bottom: -70px;
	}
	.stage-ring {
		width: 360px;
		height: 360px;
		left: 34px;
	}
	.shirt {
		left: 0;
	}
	.jersey {
		right: 0;
	}
	.mug {
		right: 78px;
		bottom: 15px;
	}
	.sticker-sheet {
		right: -4px;
		bottom: -20px;
	}
	.business-card {
		bottom: 5px;
	}
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 35px 20px;
	}
	.footer-grid > div:first-child,
	.footer-grid > div:last-child {
		grid-column: span 2;
	}
	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer-bottom span a {
		margin-left: 12px;
	}
}
@media (prefers-reduced-motion: reduce) {
	*,
	*:before,
	*:after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
.logo[data-astro-cid-f7espo7c] {
  display: inline-flex;
  align-items: center;
}

.brand-logo[data-astro-cid-f7espo7c] {
  display: block;
  width: 190px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.brand-logo[data-astro-cid-f7espo7c].compact, .brand-logo[data-astro-cid-f7espo7c].inverse {
  width: 215px;
  max-height: 58px;
}
.site-header:not(.is-scrolled) .brand-logo-dark {
		display: none;
	}
	.site-header.is-scrolled .brand-logo-light {
		display: none;
	}
	.site-header:not(.is-scrolled) .main-nav {
		color: #e6edf7;
	}
	.site-header:not(.is-scrolled) .main-nav a:not(.button):hover {
		color: #fff;
	}
	.site-header:not(.is-scrolled) .menu-toggle span {
		background: #fff;
	}
	.site-header:not(.is-scrolled) .header-cta {
		background: #e5232b;
		color: #fff;
	}.hero {
		position: relative;
		isolation: isolate;
		min-height: 820px;
		padding: 190px 0 110px;
		background: #101010;
		overflow: hidden;
	}
	.hero-background {
		position: absolute;
		inset: 0;
		z-index: 0;
		opacity: 0;
		transition: opacity 0.55s;
	}
	.hero-background img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		opacity: 0;
		transition: opacity 1s;
	}
	.hero-background:after {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(90deg, #030812d1, #03081285 35%, #03081214 75%);
	}
	.hero-grid {
		position: relative;
		z-index: 2;
		display: grid;
		grid-template-columns: 1fr;
	}
	.hero-copy {
		max-width: 650px;
	}
	.headline-slot {
		min-height: 210px;
	}
	.typing-headline {
		margin: 0;
		color: #fff;
		font: 700 clamp(45px, 5.6vw, 78px)/1.02 'Space Grotesk';
		letter-spacing: -0.07em;
		transform-origin: center center;
	}
	.headline-line {
		display: block;
		min-height: 1.02em;
	}
	.headline-line.accent {
		color: #ef2b2f;
	}
	.entrance-pending .hero-copy {
		min-height: 100vh;
		display: grid;
		place-content: center;
		max-width: none;
	}
	.entrance-pending .hero-reveal,
	.entrance-pending .hero-background,
	.entrance-pending .hero-glow,
	.entrance-pending .product-stage {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	.entrance-typing .typing-headline {
		transform: scale(1.15);
	}
	.entrance-typing .headline-line:not(.typed):after {
		content: '|';
		color: #ef2b2f;
		animation: caret 0.8s steps(1) infinite;
	}
	.headline-settle {
		transition: transform 0.7s ease;
		transform: scale(1) !important;
	}
	.entrance-ready .hero-background {
		opacity: 1;
	}
	.entrance-ready .hero-reveal,
	.entrance-ready .product-stage {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
		transition:
			opacity 0.55s ease,
			transform 0.55s ease;
	}
	.entrance-ready .hero-reveal,
	.entrance-ready .product-stage {
		transform: translateY(16px);
		animation: reveal 0.55s ease forwards;
	}
	.eyebrow {
		color: #ff4650;
	}
	.hero-lede,
	.trust-row,
	.text-link {
		color: #f8fafc;
	}
	.trust-row {
		display: flex;
		gap: 22px;
		margin-top: 28px;
	}
	.trust-row > span {
		display: flex;
		flex-direction: column;
		color: #fff;
		font-size: 11px;
		text-transform: uppercase;
	}
	.trust-row svg {
		margin-bottom: 8px;
		color: #ef2b2f;
	}
	.trust-row small {
		margin-top: 4px;
		color: #d4d9e1;
		font-size: 9px;
		text-transform: none;
	}
	.hero-actions {
		display: flex;
		gap: 28px;
		margin: 25px 0;
	}
	.button {
		display: inline-flex;
		gap: 10px;
	}
	.hero-glow {
		position: absolute;
		border-radius: 50%;
		filter: blur(3px);
	}
	@keyframes caret {
		50% {
			opacity: 0;
		}
	}
	@keyframes reveal {
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	@media (max-width: 900px) {
		.hero {
			min-height: 760px;
			padding-top: 135px;
		}
		.entrance-pending .hero-copy {
			min-height: 620px;
		}
		.headline-slot {
			min-height: 150px;
		}
		.typing-headline {
			font-size: clamp(40px, 10vw, 62px);
		}
	}
	@media (max-width: 620px) {
		.hero {
			min-height: 720px;
			padding: 120px 0 55px;
		}
		.headline-slot {
			min-height: 125px;
		}
		.hero-actions {
			flex-direction: column;
			align-items: flex-start;
		}
		.trust-row {
			gap: 15px;
		}
	}.entrance-typing .typing-headline {
		transform: scale(1.5);
		transform-origin: left center;
	}
	.entrance-ready .hero-background {
		transition: opacity 0.05s ease;
	}
	.entrance-ready .hero-background img {
		transition: opacity 0.25s ease;
	}.hero .trust-row > span:before {
		content: none !important;
	}.entrance-ready .hero-copy {
		display: block;
		min-height: 0;
		place-content: initial;
		max-width: 650px;
		text-align: left;
	}
	.entrance-ready .headline-slot {
		width: 100%;
	}
	.entrance-ready .typing-headline {
		width: 100%;
		max-width: none;
	}@media (min-width: 901px) and (min-height: 700px) {
		.hero {
			height: 100vh;
			min-height: 680px;
			max-height: 1080px;
			padding: 112px 0 42px;
		}
		.hero-grid {
			align-items: start;
		}
		.hero-copy {
			padding-top: 24px;
		}
	}
	.entrance-ready .hero-background img {
		transition: opacity 1.2s ease;
	}
	.entrance-pending .hero-background {
		opacity: 0;
		visibility: hidden;
	}
	.entrance-pending .hero-background img {
		opacity: 0 !important;
	}
	@media (min-width: 901px) {
		.hero-copy {
			margin-left: auto;
			text-align: right;
		}
		.hero-copy .hero-actions,
		.hero-copy .trust-row {
			justify-content: flex-end;
		}
		.hero-copy .trust-row > span {
			align-items: flex-end;
		}
		.entrance-pending .hero-copy {
			padding-top: 8vh;
		}
	}
	@media (max-width: 900px) {
		.hero-copy {
			text-align: left;
		}
		.hero-copy .hero-actions,
		.hero-copy .trust-row {
			justify-content: flex-start;
		}
		.hero-copy .trust-row > span {
			align-items: flex-start;
		}
	}
	@media (min-width: 901px) {
		.hero-copy {
			margin-left: 0;
			margin-right: auto;
			text-align: left;
		}
		.hero-copy .hero-actions,
		.hero-copy .trust-row {
			justify-content: flex-start;
		}
		.hero-copy .trust-row > span {
			align-items: flex-start;
		}
		.entrance-pending .hero-copy {
			padding-top: 3vh;
		}
	}
	@media (min-width: 901px) {
		.entrance-pending .hero-copy {
			place-content: start;
			padding-top: 8vh;
		}
	}.services-section {
		padding: 100px 0 110px;
		background: #f8fafc;
	}
	.section-heading {
		text-align: center;
		max-width: 1000px;
		margin: 0 auto 34px;
	}
	.section-heading h2 {
		margin: 0;
		font: 700 clamp(38px, 5vw, 62px)/1.05 'Space Grotesk';
		letter-spacing: -0.06em;
		white-space: nowrap;
	}
	.section-heading h2 em {
		font-style: normal;
		color: #e12f38;
	}
	.section-heading > .eyebrow {
		justify-content: center;
		color: #e12f38;
	}
	.section-heading > .eyebrow span {
		background: #e12f38;
	}
	.section-heading > p:last-child {
		max-width: 1000px;
		margin: 14px auto 0;
		color: #64748b;
	}
	.services-viewport {
		width: 100%;
		overflow: hidden;
	}
	.services-track {
		display: flex;
		flex-wrap: nowrap;
		width: max-content;
		gap: 18px;
	}
	.service-card {
		flex: 0 0 clamp(290px, 28vw, 390px);
		overflow: hidden;
		background: #fff;
		border: 1px solid #e4eaf1;
		border-radius: 16px;
		box-shadow: 0 12px 30px #18385d0a;
	}
	.service-image {
		overflow: hidden;
		background: #f7f7f7;
	}
	.service-image img {
		width: 100%;
		height: auto;
		display: block;
		object-fit: contain;
	}
	.service-content {
		padding: 12px 16px 14px;
	}
	.service-content h3 {
		margin: 0 0 5px;
		font: 700 18px/1.15 'Space Grotesk';
	}
	.service-content p {
		margin: 0;
		color: #667085;
		font-size: 12px;
		line-height: 1.3;
	}
	.services-cta {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 30px;
		margin: 24px auto 0;
		padding: 18px 24px;
		background: #fff;
		border: 1px solid #e4eaf1;
		border-radius: 17px;
	}
	.services-cta h3 {
		margin: 0;
		font: 700 20px 'Space Grotesk';
	}
	.services-cta p {
		margin: 4px 0 0;
		color: #667085;
		font-size: 13px;
	}
	.services-cta .button {
		background: #df252b;
	}
	@media (max-width: 900px) {
		.section-heading h2 {
			white-space: normal;
		}
		.service-card {
			flex-basis: calc((100vw - 66px) / 2);
		}
	}
	@media (max-width: 600px) {
		.services-section {
			padding: 75px 0;
		}
		.service-card {
			flex-basis: 82vw;
		}
		.services-cta {
			align-items: flex-start;
			flex-direction: column;
		}
	}.contact-section[data-astro-cid-he3spzz3] {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-grid[data-astro-cid-he3spzz3] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-grid[data-astro-cid-he3spzz3] h2[data-astro-cid-he3spzz3] {
  font: 700 clamp(42px, 5vw, 66px) / 1.02 Space Grotesk;
}

.contact-grid[data-astro-cid-he3spzz3] em[data-astro-cid-he3spzz3] {
  font-style: normal;
  color: #df252b;
}

.contact-details[data-astro-cid-he3spzz3] b[data-astro-cid-he3spzz3] {
  color: #df252b;
  text-transform: uppercase;
  font-size: 11px;
}

.contact-form[data-astro-cid-he3spzz3] {
  padding: 30px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
}

.contact-form[data-astro-cid-he3spzz3] input[data-astro-cid-he3spzz3], .contact-form[data-astro-cid-he3spzz3] textarea[data-astro-cid-he3spzz3] {
  width: 100%;
  margin: 0 0 15px;
  padding: 14px;
  border: 1px solid #d9e0e8;
  border-radius: 8px;
  font: inherit;
}

.contact-form[data-astro-cid-he3spzz3] .button[data-astro-cid-he3spzz3] {
  width: 100%;
  justify-content: center;
  background: #df252b;
}

@media (width <= 800px) {
  .contact-grid[data-astro-cid-he3spzz3] {
    grid-template-columns: 1fr;
  }
}
.about-section[data-astro-cid-oxgmilyn] {
  padding: 105px 0 0;
  background: #f8fafc;
}

.about-intro[data-astro-cid-oxgmilyn] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 520px;
}

.about-copy[data-astro-cid-oxgmilyn] {
  padding: 20px 55px 44px 0;
}

.about-copy[data-astro-cid-oxgmilyn] h2[data-astro-cid-oxgmilyn] {
  margin: 0 0 22px;
  font: 700 clamp(38px, 4.5vw, 62px) / 1.03 Space Grotesk;
  letter-spacing: -.06em;
}

.about-copy[data-astro-cid-oxgmilyn] h2[data-astro-cid-oxgmilyn] em[data-astro-cid-oxgmilyn] {
  font-style: normal;
  color: #df252b;
}

.about-copy[data-astro-cid-oxgmilyn] > p[data-astro-cid-oxgmilyn]:not(.eyebrow) {
  max-width: 690px;
  color: #2e3a49;
  font-size: 14px;
  line-height: 1.65;
}

.about-main-image[data-astro-cid-oxgmilyn] {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  clip-path: polygon(17% 0, 100% 0, 100% 100%, 0 100%);
  padding-left: 20px;
}

.about-strip[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn]:before {
  content: none !important;
}

.about-strip[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn] {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-strip-icon[data-astro-cid-oxgmilyn] {
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: grid !important;
  margin: 0 !important;
  color: #df252b !important;
}

.about-strip-icon[data-astro-cid-oxgmilyn] svg[data-astro-cid-oxgmilyn] {
  stroke-width: 1.8px;
}

.about-strip[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn] {
  min-width: 0;
}

.about-values[data-astro-cid-oxgmilyn] {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 35px;
  padding: 52px 0;
}

.values-copy[data-astro-cid-oxgmilyn] h3[data-astro-cid-oxgmilyn] {
  margin: 0 0 22px;
  font: 700 30px Space Grotesk;
  letter-spacing: -.04em;
}

.values-copy[data-astro-cid-oxgmilyn] h3[data-astro-cid-oxgmilyn] em[data-astro-cid-oxgmilyn] {
  font-style: normal;
  color: #df252b;
}

.values-grid[data-astro-cid-oxgmilyn] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.values-grid[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn] {
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid #dce3eb;
}

.values-grid[data-astro-cid-oxgmilyn] b[data-astro-cid-oxgmilyn] {
  font: 700 15px Space Grotesk;
}

.values-grid[data-astro-cid-oxgmilyn] p[data-astro-cid-oxgmilyn] {
  margin: 7px 0 0;
  color: #5f6d7c;
  font-size: 12px;
  line-height: 1.5;
}

.about-gallery[data-astro-cid-oxgmilyn] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.about-gallery[data-astro-cid-oxgmilyn] img[data-astro-cid-oxgmilyn] {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.about-strip[data-astro-cid-oxgmilyn] {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 35px 30px;
  background: #101010;
  color: #fff;
}

.about-strip[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn] {
  padding-left: 22px;
  border-left: 1px solid #ffffff40;
}

.about-strip[data-astro-cid-oxgmilyn] b[data-astro-cid-oxgmilyn] {
  display: block;
  font: 700 16px Space Grotesk;
}

.about-strip[data-astro-cid-oxgmilyn] span[data-astro-cid-oxgmilyn] {
  display: block;
  margin-top: 7px;
  color: #c7cbd1;
  font-size: 12px;
  line-height: 1.5;
}

@media (width <= 850px) {
  .about-intro[data-astro-cid-oxgmilyn], .about-values[data-astro-cid-oxgmilyn] {
    grid-template-columns: 1fr;
  }

  .about-copy[data-astro-cid-oxgmilyn] {
    padding-right: 0;
  }

  .about-main-image[data-astro-cid-oxgmilyn] {
    min-height: 360px;
    padding: 0;
    clip-path: none;
  }

  .about-gallery[data-astro-cid-oxgmilyn] img[data-astro-cid-oxgmilyn] {
    height: 210px;
  }

  .about-strip[data-astro-cid-oxgmilyn] {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width <= 560px) {
  .about-section[data-astro-cid-oxgmilyn] {
    padding-top: 75px;
  }

  .about-copy[data-astro-cid-oxgmilyn] h2[data-astro-cid-oxgmilyn] {
    font-size: 42px;
  }

  .about-gallery[data-astro-cid-oxgmilyn] {
    grid-template-columns: 1fr;
  }

  .about-gallery[data-astro-cid-oxgmilyn] img[data-astro-cid-oxgmilyn] {
    height: 220px;
  }

  .about-strip[data-astro-cid-oxgmilyn] {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 20px;
  }

  .about-strip[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn] {
    padding-left: 15px;
  }
}

.about-copy[data-astro-cid-oxgmilyn] > .eyebrow[data-astro-cid-oxgmilyn] {
  color: #172033;
}

.about-copy[data-astro-cid-oxgmilyn] > .eyebrow[data-astro-cid-oxgmilyn] span[data-astro-cid-oxgmilyn] {
  background: #172033;
}

.values-grid[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn]:before {
  content: "✦";
  display: block;
  float: left;
  width: 38px;
  height: 38px;
  margin: 0 10px 25px 0;
  border: 2px solid #df252b;
  border-radius: 10px;
  color: #df252b;
  text-align: center;
  line-height: 34px;
  font-size: 22px;
}

.values-grid[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn]:before {
  content: none !important;
}

.values-grid[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn] {
  position: relative;
  padding-left: 48px;
}

.value-icon[data-astro-cid-oxgmilyn] {
  position: absolute;
  left: 0;
  top: 18px;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid #df252b;
  border-radius: 10px;
  display: grid !important;
  margin: 0 !important;
  color: #df252b !important;
}

.value-icon[data-astro-cid-oxgmilyn] svg[data-astro-cid-oxgmilyn] {
  stroke-width: 1.8px;
}

.about-strip[data-astro-cid-oxgmilyn] > div[data-astro-cid-oxgmilyn]:before {
  content: "✧";
  display: block;
  float: left;
  width: 38px;
  height: 38px;
  margin: 0 12px 22px 0;
  color: #df252b;
  font-size: 32px;
}

.about-main-image[data-astro-cid-oxgmilyn] {
  aspect-ratio: 1.1;
  object-position: center;
}

.about-gallery[data-astro-cid-oxgmilyn] {
  align-items: stretch;
}

.about-gallery[data-astro-cid-oxgmilyn] img[data-astro-cid-oxgmilyn] {
  aspect-ratio: 1.25;
  height: auto;
}

.about-main-image[data-astro-cid-oxgmilyn] {
  aspect-ratio: 1;
  object-position: center;
  clip-path: none;
  padding-left: 0;
  min-height: 0;
  height: auto;
  align-self: start;
}
.about-stats:before {
		content: 'About Repalz Printshop\A\A Built on quality and trust\A\A Repalz Printshop delivers premium sublimation printing, custom apparel, sportswear, and business printing solutions with dependable service and attention to every detail.\A\A  ◯  Custom Apparel     ◯  Business Printing     ◯  Reliable Support';
		font-size: clamp(13px, 1.3vw, 18px);
		line-height: 1.55;
		white-space: pre-wrap;
		color: #c3ccdc;
	}
	.about-stats:before::first-line {
		color: #ff970f;
	}.about-stats > div:nth-child(1) strong {
		color: #18c9ef;
	}
	.about-stats > div:nth-child(2) strong {
		color: #ff1680;
	}
	.about-stats > div:nth-child(3) strong {
		color: #ff970f;
	}
	.about-stats > div:nth-child(4) strong {
		color: #20d39a;
	}
	.about-stats > div:after {
		content: '◌';
		display: block;
		margin-top: 10px;
		color: #29416d;
		font-size: 24px;
	}.about-stats {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 14px;
		margin-top: 28px;
		padding: 34px;
		border: 1px solid #30425f;
		border-radius: 24px;
		background: #0b1425;
		color: #fff;
	}
	.about-stats:before {
		content: 'About Repalz Printshop\A\A Built on quality and trust';
		white-space: pre-wrap;
		grid-row: span 2;
		align-self: center;
		color: #fff;
		font: 700 clamp(28px, 3.4vw, 52px)/1.05 'Space Grotesk';
	}
	.about-stats > div {
		padding: 28px;
		border: 1px solid #30425f;
		border-radius: 18px;
		background: #101d33;
		text-align: left;
	}
	.about-stats strong {
		display: block;
		font: 800 clamp(34px, 4vw, 56px)/1 'Space Grotesk';
	}
	.about-stats span {
		display: block;
		margin-top: 10px;
		color: #b9c4d7;
		font-size: 13px;
		font-weight: 700;
	}
	.about-stats > div:nth-child(1) strong {
		color: #18c9ef;
	}
	.about-stats > div:nth-child(2) strong {
		color: #ff1680;
	}
	.about-stats > div:nth-child(3) strong {
		color: #ff970f;
	}
	.about-stats > div:nth-child(4) strong {
		color: #20d39a;
	}
	@media (max-width: 700px) {
		.about-stats {
			grid-template-columns: 1fr 1fr;
			padding: 20px;
		}
		.about-stats:before {
			grid-column: span 2;
			grid-row: auto;
		}
		.about-stats > div {
			padding: 18px;
		}
	}
	@media (max-width: 420px) {
		.about-stats {
			grid-template-columns: 1fr;
		}
		.about-stats:before {
			grid-column: auto;
		}
	}.who-serve[data-astro-cid-56eocoxb] {
  padding: 100px 0;
  background: #f8fafc;
}

.who-heading[data-astro-cid-56eocoxb] {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 45px;
}

.who-heading[data-astro-cid-56eocoxb] > .eyebrow[data-astro-cid-56eocoxb] {
  justify-content: center;
  color: #df252b;
}

.who-heading[data-astro-cid-56eocoxb] h2[data-astro-cid-56eocoxb] {
  font: 700 clamp(38px, 5vw, 64px) / 1.02 Space Grotesk;
}

.who-heading[data-astro-cid-56eocoxb] em[data-astro-cid-56eocoxb] {
  font-style: normal;
  color: #df252b;
}

.who-heading[data-astro-cid-56eocoxb] > p[data-astro-cid-56eocoxb]:last-child {
  color: #617083;
}

.audience-grid[data-astro-cid-56eocoxb] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-grid[data-astro-cid-56eocoxb] article[data-astro-cid-56eocoxb] {
  display: grid;
  grid-template-columns: 1fr 43%;
  min-height: 245px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
}

.audience-grid[data-astro-cid-56eocoxb] article[data-astro-cid-56eocoxb] > div[data-astro-cid-56eocoxb] {
  padding: 24px;
}

.audience-icon[data-astro-cid-56eocoxb] {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #df252b;
  border-radius: 50%;
  color: #df252b;
}

.audience-grid[data-astro-cid-56eocoxb] h3[data-astro-cid-56eocoxb] {
  font: 700 18px Space Grotesk;
}

.audience-grid[data-astro-cid-56eocoxb] p[data-astro-cid-56eocoxb] {
  color: #617083;
  font-size: 12px;
}

.audience-grid[data-astro-cid-56eocoxb] a[data-astro-cid-56eocoxb] {
  color: #df252b;
  font-size: 12px;
  font-weight: 700;
}

.audience-grid[data-astro-cid-56eocoxb] img[data-astro-cid-56eocoxb] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (width <= 900px) {
  .audience-grid[data-astro-cid-56eocoxb] {
    grid-template-columns: 1fr 1fr;
  }
}

@media (width <= 600px) {
  .audience-grid[data-astro-cid-56eocoxb] {
    grid-template-columns: 1fr;
  }
}
