:root {
	--ink: #07131d;
	--panel: #102331;
	--panel-2: #132b3b;
	--paper: #f7f5ef;
	--muted: #adc0ca;
	--red: #ef5448;
	--blue: #2195ca;
	--sub: #d3e0e4;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	width: 100%;
	margin: 0;
	font-family: "DM Sans", sans-serif;
	background: var(--ink);
	color: var(--paper);
}

.storefront-shell {
	width: 100%;
	overflow: hidden;
	position: relative;
	background:
		radial-gradient(circle at 86% 9%, rgba(33, 149, 202, 0.16), transparent 25rem),
		radial-gradient(circle at 12% 35%, rgba(239, 84, 72, 0.13), transparent 27rem),
		linear-gradient(145deg, #07131d 0%, #0b1e2a 54%, #07131d 100%);
}

.storefront-shell::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	opacity: 0.25;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.site-width {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	position: relative;
	z-index: 1;
}

.hero-zone {
	padding: 1.5rem 0 3.5rem;
}

.hero-banner {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 560px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 30px;
	background: #0c1e29;
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.hero-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(5, 17, 25, 0.9) 0%, rgba(5, 17, 25, 0.6) 38%, rgba(5, 17, 25, 0.08) 76%);
	pointer-events: none;
}

.hero-collage {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	opacity: 0.92;
	transition: transform 0.7s ease;
}

.hero-banner:hover .hero-collage {
	transform: scale(1.025);
}

.hero-content {
	position: relative;
	z-index: 2;
	width: min(620px, 100%);
	min-height: 560px;
	padding: clamp(2rem, 5vw, 4.5rem);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.brand-lockup {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.brand-logo {
	width: 74px;
	height: 74px;
	object-fit: contain;
	background: #f7f5ef;
	border-radius: 13px;
	padding: 5px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.28);
	flex-shrink: 0;
}

.brand-title-wrap {
	min-width: 0;
}

.brand-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--paper);
	text-transform: uppercase;
}

.tagline {
	margin: 0;
	font-family: "Space Mono", monospace;
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	color: var(--muted);
	text-transform: uppercase;
}

.eyebrow-line {
	width: 52px;
	height: 3px;
	background: var(--red);
	margin: 0.55rem 0 0.7rem;
}

.hero-heading {
	margin: 0;
	font-size: clamp(2.1rem, 5vw, 3.375rem);
	font-weight: 800;
	line-height: 1.03;
	color: var(--paper);
}

.hero-sub {
	margin: 1rem 0 0;
	max-width: 28rem;
	font-size: 1.15rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--sub);
}

.price-section {
	padding: 1rem 0 5rem;
}

.section-head {
	display: flex;
	gap: 1.25rem;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.section-kicker {
	color: var(--red);
	font-family: "Space Mono", monospace;
	font-size: 0.73rem;
	letter-spacing: 0.16em;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 0 0.55rem;
}

.section-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--paper);
}

.heading-rule {
	flex: 1;
	height: 1px;
	max-width: 280px;
	margin-bottom: 0.75rem;
	background: linear-gradient(90deg, rgba(239, 84, 72, 0.75), transparent);
}

.apparel-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.45rem;
}

.product-card {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--panel);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
	transform: translateY(-7px);
	border-color: rgba(239, 84, 72, 0.68);
	box-shadow: 0 28px 52px rgba(0, 0, 0, 0.36);
}

.product-image-wrap {
	overflow: hidden;
	height: 226px;
	position: relative;
	background: #0c1b25;
}

.product-image-wrap::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 38%;
	background: linear-gradient(transparent, rgba(7, 19, 29, 0.75));
	pointer-events: none;
}

.product-image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image {
	transform: scale(1.055);
}

.product-content {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1.5rem;
}

.product-title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.15;
	color: var(--paper);
}

.product-description {
	min-height: 54px;
	margin: 0.75rem 0 1.55rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--muted);
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: auto;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.price-unit {
	padding: 1rem 0.75rem 0.2rem 0;
}

.price-unit + .price-unit {
	border-left: 1px solid rgba(255, 255, 255, 0.13);
	padding-left: 1rem;
}

.price-label {
	display: block;
	margin-bottom: 0.18rem;
	font-family: "Space Mono", monospace;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--muted);
	text-transform: uppercase;
}

.price-value {
	display: block;
	font-size: 2.1rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--red);
}

.accessory-intro {
	max-width: 650px;
	margin: -1rem auto 2rem;
	text-align: center;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--muted);
}

.accessory-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.accessory-card {
	min-height: 230px;
	position: relative;
	overflow: hidden;
	padding: 1.45rem;
	background: var(--panel-2);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, border-color 0.25s ease;
}

.accessory-card:hover {
	transform: translateY(-5px);
	border-color: rgba(33, 149, 202, 0.65);
}

.accessory-card::before {
	content: "";
	position: absolute;
	width: 115px;
	height: 115px;
	right: -34px;
	top: -34px;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 50%;
	pointer-events: none;
}

.accessory-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	border-radius: 12px;
	margin: -0.15rem 0 1.25rem;
	position: relative;
	z-index: 1;
}

.accessory-icon {
	width: 42px;
	height: 42px;
	color: var(--red);
	margin-bottom: 1.25rem;
	stroke-width: 1.55;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.accessory-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--paper);
	position: relative;
	z-index: 1;
}

.accessory-note {
	margin: 0.75rem 0 0;
	font-size: 0.85rem;
	line-height: 1.5;
	color: var(--muted);
	position: relative;
	z-index: 1;
}

.accessory-price-row {
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	position: relative;
	z-index: 1;
}

.starting-at {
	display: block;
	color: var(--muted);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.15rem;
}

.accessory-price {
	display: block;
	font-size: 1.875rem;
	font-weight: 800;
	line-height: 1.1;
	color: var(--red);
}

.cta-wrap {
	padding: 0 0 3.5rem;
}

.cta-panel {
	overflow: hidden;
	position: relative;
	border-radius: 26px;
	background: var(--red);
	border: 1px solid rgba(255, 255, 255, 0.16);
	box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.cta-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.14), transparent 17rem);
	pointer-events: none;
}

.cta-content {
	position: relative;
	z-index: 1;
	padding: clamp(2.3rem, 5vw, 4.25rem);
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.cta-panel .section-kicker {
	color: #fff4f2;
}

.cta-heading {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.08;
	color: #ffffff;
}

.cta-body {
	margin: 1rem auto 0;
	max-width: 42rem;
	font-size: 1.05rem;
	line-height: 1.5;
	color: #fff4f2;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.55rem;
	padding: 0.98rem 1.55rem;
	border-radius: 10px;
	background: var(--ink);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.025em;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 12px 25px rgba(63, 10, 8, 0.28);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-button:hover {
	transform: translateY(-3px);
	filter: brightness(1.08);
}

.cta-button:focus-visible,
a:focus-visible {
	outline: 3px solid #ffffff;
	outline-offset: 4px;
}

.cta-button svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

@media (max-width: 900px) {
	.apparel-grid {
		grid-template-columns: 1fr;
	}

	.accessory-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.product-image-wrap {
		height: 260px;
	}
}

@media (max-width: 620px) {
	.site-width {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.hero-zone {
		padding-top: 1rem;
		padding-bottom: 2.8rem;
	}

	.hero-banner,
	.hero-content {
		min-height: 600px;
	}

	.hero-banner::after {
		background: linear-gradient(90deg, rgba(5, 17, 25, 0.9), rgba(5, 17, 25, 0.52));
	}

	.brand-lockup {
		margin-bottom: 1.75rem;
	}

	.brand-logo {
		width: 58px;
		height: 58px;
	}

	.brand-title {
		font-size: 1rem;
	}

	.section-head {
		align-items: flex-start;
	}

	.heading-rule {
		display: none;
	}

	.accessory-grid {
		grid-template-columns: 1fr;
	}

	.accessory-card {
		min-height: 200px;
	}

	.price-section {
		padding-bottom: 3.7rem;
	}
}
