/* ==========================================================================
   TOKENS
   ========================================================================== */
:root {
	--gp-bg: #050506;
	--gp-bg-alt: #0d0e10;
	--gp-surface: #141519;
	--gp-surface-2: #191b20;
	--gp-text: #f4efe7;
	--gp-muted: #b8b1a7;
	--gp-line: rgba(244, 239, 231, 0.12);
	--gp-line-strong: rgba(244, 239, 231, 0.2);
	--gp-accent: #8b1220;
	--gp-accent-hover: #a71627;
	--gp-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
	--gp-radius: 18px;
	--gp-shell: min(1180px, calc(100vw - 32px));
	--gp-transition: 180ms ease;
	--gp-sans: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ==========================================================================
   BASE
   ========================================================================== */
html {
	background: var(--gp-bg);
}

body.gp-store-theme {
	background: var(--gp-bg);
	color: var(--gp-text);
	font-family: var(--gp-sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

body.gp-store-theme .site,
body.gp-store-theme .site-content,
body.gp-store-theme .content-area,
body.gp-store-theme .site-main {
	background: transparent;
	color: var(--gp-text);
}

body.gp-store-theme .site-content {
	padding-top: 0;
}

body.gp-store-theme .col-full {
	max-width: 100%;
}

body.gp-store-theme p {
	margin: 0;
	line-height: 1.65;
	color: var(--gp-muted);
}

body.gp-store-theme h1,
body.gp-store-theme h2,
body.gp-store-theme h3,
body.gp-store-theme h4,
body.gp-store-theme h5,
body.gp-store-theme h6 {
	margin: 0;
	color: var(--gp-text);
	font-weight: 800;
	line-height: 1.04;
}

body.gp-store-theme a,
body.gp-store-theme a:visited {
	color: var(--gp-text);
}

body.gp-store-theme img {
	max-width: 100%;
	height: auto;
}

body.gp-store-theme input,
body.gp-store-theme textarea,
body.gp-store-theme select {
	background: #0f1115;
	color: var(--gp-text);
	border-color: var(--gp-line);
}

body.gp-store-theme a:focus,
body.gp-store-theme button:focus,
body.gp-store-theme input:focus,
body.gp-store-theme select:focus,
body.gp-store-theme textarea:focus {
	outline: 2px solid rgba(255, 255, 255, 0.32);
	outline-offset: 3px;
}

/* ==========================================================================
   UI
   ========================================================================== */
.gp-home-shell,
.gp-store-footer,
.gp-error-section__inner {
	width: var(--gp-shell);
	margin: 0 auto;
}

.gp-home-section {
	padding: 28px 0;
}

.gp-section-eyebrow {
	display: inline-flex;
	margin-bottom: 16px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gp-muted);
}

.gp-section-heading {
	display: grid;
	gap: 14px;
	margin-bottom: 18px;
}

.gp-section-heading__meta {
	display: grid;
	gap: 10px;
	align-content: end;
}

.gp-button,
.gp-button:visited,
body.gp-store-theme .button,
body.gp-store-theme button.button,
body.gp-store-theme input[type="submit"],
body.gp-store-theme .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0.85rem 1.1rem;
	border: 1px solid var(--gp-accent);
	border-radius: 999px;
	background: var(--gp-accent);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
	text-decoration: none !important;
	transition: background-color var(--gp-transition), border-color var(--gp-transition), color var(--gp-transition), opacity var(--gp-transition);
}

.gp-button:hover,
.gp-button:focus,
body.gp-store-theme .button:hover,
body.gp-store-theme .button:focus,
body.gp-store-theme button.button:hover,
body.gp-store-theme input[type="submit"]:hover,
body.gp-store-theme .wp-block-button__link:hover {
	background: var(--gp-accent-hover);
	border-color: var(--gp-accent-hover);
	color: #fff;
	text-decoration: none !important;
}

.gp-button--ghost,
.gp-button--ghost:visited {
	background: transparent;
	border-color: var(--gp-line-strong);
	color: var(--gp-text);
}

.gp-button--ghost:hover,
.gp-button--ghost:focus {
	background: var(--gp-surface);
	border-color: var(--gp-line-strong);
	color: var(--gp-text);
}

.gp-text-link,
.gp-text-link:visited {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gp-text);
}

/* ==========================================================================
   HOMEPAGE HEADER
   ========================================================================== */
body.gp-store-home-layout .site-header {
	background: rgba(5, 5, 6, 0.96);
	border: 0;
	border-bottom: 1px solid var(--gp-line);
	padding: 0;
	margin: 0;
	backdrop-filter: blur(12px);
}

body.gp-store-home-layout .site-header .col-full {
	width: var(--gp-shell);
	margin: 0 auto;
	padding: 0;
}

.gp-home-header {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	align-items: center;
	min-height: 78px;
	padding: 14px 0;
}

.gp-home-header__brand,
.gp-home-header__brand:visited {
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
}

.gp-home-header__nav,
.gp-home-header__links,
.gp-home-header__socials {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.gp-home-header__nav a,
.gp-home-header__links a,
.gp-home-header__socials a,
.gp-home-header__cart,
.gp-home-header__nav a:visited,
.gp-home-header__links a:visited,
.gp-home-header__socials a:visited,
.gp-home-header__cart:visited {
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gp-muted);
}

.gp-home-header__nav a:hover,
.gp-home-header__nav a:focus,
.gp-home-header__links a:hover,
.gp-home-header__links a:focus,
.gp-home-header__socials a:hover,
.gp-home-header__socials a:focus,
.gp-home-header__cart:hover,
.gp-home-header__cart:focus {
	color: var(--gp-text);
}

/* ==========================================================================
   HOMEPAGE HERO
   ========================================================================== */
.gp-home-hero {
	padding-top: 26px;
}

.gp-home-hero__shell {
	display: grid;
	gap: 16px;
}

.gp-home-hero__copy,
.gp-home-hero__panel {
	position: relative;
	border: 1px solid var(--gp-line);
	border-radius: calc(var(--gp-radius) + 4px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)), var(--gp-bg-alt);
	box-shadow: var(--gp-shadow);
	overflow: hidden;
}

.gp-home-hero__copy {
	display: grid;
	gap: 18px;
	padding: 28px 22px;
}

.gp-home-hero__title {
	font-size: clamp(2.5rem, 8vw, 5.6rem);
	max-width: 8.5ch;
}

.gp-home-hero__text {
	max-width: 34rem;
	font-size: clamp(1rem, 2.2vw, 1.12rem);
}

.gp-home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.gp-home-hero__note {
	font-size: 0.88rem;
}

.gp-home-hero__panel {
	min-height: 300px;
	background:
		radial-gradient(circle at top left, rgba(139, 18, 32, 0.36), transparent 38%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.02), transparent 64%),
		var(--gp-surface);
}

.gp-home-hero__panel::before {
	content: "";
	position: absolute;
	inset: auto auto 56px 50%;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 55%, transparent 70%);
	transform: translateX(-50%);
}

.gp-home-hero__panel-line {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.gp-home-hero__panel-block {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 22px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	z-index: 1;
}

.gp-home-hero__panel-block span {
	display: inline-flex;
	padding: 10px 12px;
	border: 1px solid var(--gp-line-strong);
	border-radius: 999px;
	background: rgba(16, 16, 18, 0.86);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* ==========================================================================
   HOMEPAGE COLLECTIONS / PRODUCTS
   ========================================================================== */
.gp-home-product-grid,
.gp-home-collection-grid,
.gp-home-trust-strip__grid {
	display: grid;
	gap: 16px;
}

.gp-home-product-card,
.gp-home-collection-card,
.gp-home-trust-card,
.gp-home-brand-statement__content,
.gp-home-empty {
	border: 1px solid var(--gp-line);
	border-radius: var(--gp-radius);
	background: var(--gp-bg-alt);
	box-shadow: var(--gp-shadow);
}

.gp-home-product-card {
	overflow: hidden;
}

.gp-home-product-card__media {
	display: block;
	aspect-ratio: 1 / 1.15;
	background: var(--gp-surface);
	overflow: hidden;
}

.gp-home-product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 300ms ease;
}

.gp-home-product-card:hover .gp-home-product-card__image,
.gp-home-product-card:focus-within .gp-home-product-card__image {
	transform: scale(1.03);
}

.gp-home-product-card__body {
	display: grid;
	gap: 12px;
	padding: 18px;
}

.gp-home-product-card__title {
	font-size: 1.1rem;
}

.gp-home-product-card__title a {
	text-decoration: none;
}

.gp-home-product-card__price,
.gp-shop-product-card__price {
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--gp-text);
}

.gp-home-collection-card {
	display: block;
	text-decoration: none;
}

.gp-home-collection-card__inner {
	display: grid;
	gap: 16px;
	padding: 22px;
	min-height: 220px;
}

.gp-home-collection-card__eyebrow {
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gp-muted);
}

.gp-home-collection-card__title {
	font-size: 1.45rem;
}

.gp-home-collection-card__text {
	max-width: 24rem;
}

.gp-home-collection-card__footer {
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.gp-home-collection-card__count,
.gp-home-collection-card__status {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--gp-text);
}

.gp-home-collection-card.is-unavailable {
	opacity: 0.82;
}

.gp-home-collection-card.is-unavailable .gp-home-collection-card__status {
	color: #f4c7cc;
}

.gp-home-empty {
	padding: 18px 20px;
}

.gp-home-empty--warning {
	border-color: rgba(244, 199, 204, 0.22);
	background: rgba(130, 25, 38, 0.08);
}

.gp-home-brand-statement__content {
	padding: 28px 22px;
}

.gp-home-brand-statement__content h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	max-width: 14ch;
	margin-bottom: 18px;
}

.gp-home-trust-card {
	padding: 22px;
}

.gp-home-trust-card__title {
	font-size: 1rem;
	margin-bottom: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
body.gp-store-theme .site-footer {
	background: transparent;
	border-top: 1px solid var(--gp-line);
	padding: 28px 0 44px;
}

.gp-store-footer {
	display: grid;
	gap: 16px;
}

.gp-store-footer__line {
	color: var(--gp-text);
	font-size: 0.95rem;
}

.gp-store-footer__links,
.gp-store-footer__socials,
.gp-store-footer__nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
}

.gp-store-footer__socials a,
.gp-store-footer__nav a,
.gp-store-footer__socials a:visited,
.gp-store-footer__nav a:visited {
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gp-muted);
}

.gp-store-footer__socials a:hover,
.gp-store-footer__socials a:focus,
.gp-store-footer__nav a:hover,
.gp-store-footer__nav a:focus {
	color: var(--gp-text);
}

/* ==========================================================================
   COMMERCE BASICS
   ========================================================================== */
body.gp-store-theme ul.products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.gp-shop-product-card {
	margin: 0;
	list-style: none;
	border: 1px solid var(--gp-line);
	border-radius: var(--gp-radius);
	background: var(--gp-bg-alt);
	overflow: hidden;
}

.gp-shop-product-card__media {
	display: block;
	aspect-ratio: 1 / 1.15;
	background: var(--gp-surface);
	overflow: hidden;
}

.gp-shop-product-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gp-shop-product-card__body {
	display: grid;
	gap: 12px;
	padding: 18px;
}

.gp-shop-product-card__title {
	font-size: 1rem;
}

.gp-shop-product-card__title a {
	text-decoration: none;
}

.gp-shop-product-card__button {
	width: 100%;
}

/* ==========================================================================
   ERROR TEMPLATE
   ========================================================================== */
.gp-error-section {
	padding: 56px 0 72px;
}

.gp-error-section__inner {
	display: grid;
	gap: 18px;
	max-width: 720px;
	padding: 28px 22px;
	border: 1px solid var(--gp-line);
	border-radius: var(--gp-radius);
	background: var(--gp-bg-alt);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 700px) {
	.gp-home-header {
		grid-template-columns: auto 1fr auto;
	}

	.gp-section-heading {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
		align-items: end;
	}

	.gp-home-product-grid,
	.gp-home-collection-grid,
	.gp-home-trust-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.gp-store-theme ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	.gp-home-section {
		padding: 40px 0;
	}

	.gp-home-hero__shell {
		grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
		align-items: stretch;
	}

	.gp-home-hero__copy {
		padding: 44px;
	}

	.gp-home-hero__panel {
		min-height: auto;
	}

	.gp-home-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

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

	.gp-home-trust-strip__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	body.gp-store-theme ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 699px) {
	.gp-home-header__nav {
		order: 3;
	}

	.gp-home-header__links {
		order: 2;
	}

	.gp-home-hero__title {
		max-width: 10ch;
	}
}



/* ==========================================================================
   HOMEPAGE CORRECTION PASS
   ========================================================================== */
body.gp-store-home-layout .gp-home-section {
	padding: 36px 0;
}

body.gp-store-home-layout .gp-homepage h1,
body.gp-store-home-layout .gp-homepage h2,
body.gp-store-home-layout .gp-homepage h3 {
	font-weight: 650;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

body.gp-store-home-layout .gp-homepage p {
	line-height: 1.58;
}

body.gp-store-home-layout .gp-homepage .gp-section-eyebrow {
	margin-bottom: 12px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: none;
	color: rgba(244, 239, 231, 0.62);
}

body.gp-store-home-layout .gp-home-header__brand,
body.gp-store-home-layout .gp-home-header__brand:visited {
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: none;
}

body.gp-store-home-layout .gp-home-header__nav a,
body.gp-store-home-layout .gp-home-header__links a,
body.gp-store-home-layout .gp-home-header__socials a,
body.gp-store-home-layout .gp-home-header__cart,
body.gp-store-home-layout .gp-home-header__nav a:visited,
body.gp-store-home-layout .gp-home-header__links a:visited,
body.gp-store-home-layout .gp-home-header__socials a:visited,
body.gp-store-home-layout .gp-home-header__cart:visited {
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
}

body.gp-store-home-layout .gp-home-hero {
	padding-top: 34px;
}

body.gp-store-home-layout .gp-home-hero__shell {
	gap: 22px;
}

body.gp-store-home-layout .gp-home-hero__copy {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding: 0;
	gap: 16px;
}

body.gp-store-home-layout .gp-home-hero__title {
	font-size: clamp(2.8rem, 8vw, 5.4rem);
	max-width: 9ch;
	font-weight: 620;
	letter-spacing: -0.04em;
}

body.gp-store-home-layout .gp-home-hero__text {
	max-width: 30rem;
	font-size: clamp(1rem, 2.2vw, 1.08rem);
	color: rgba(244, 239, 231, 0.74);
}

body.gp-store-home-layout .gp-home-hero__actions {
	gap: 10px;
	padding-top: 6px;
}

body.gp-store-home-layout .gp-home-hero .gp-button,
body.gp-store-home-layout .gp-home-hero .gp-button:visited {
	min-height: 42px;
	padding: 0.75rem 1.05rem;
	font-size: 0.82rem;
	font-weight: 650;
	letter-spacing: 0.03em;
	text-transform: none;
}

body.gp-store-home-layout .gp-home-hero .gp-button--ghost,
body.gp-store-home-layout .gp-home-hero .gp-button--ghost:visited {
	border-color: rgba(244, 239, 231, 0.14);
	background: transparent;
}

body.gp-store-home-layout .gp-home-hero__note {
	font-size: 0.82rem;
	color: rgba(244, 239, 231, 0.58);
}

body.gp-store-home-layout .gp-home-hero__panel {
	min-height: 340px;
	border: 1px solid rgba(244, 239, 231, 0.08);
	border-radius: calc(var(--gp-radius) + 6px);
	background:
		radial-gradient(circle at 18% 18%, rgba(139, 18, 32, 0.2), transparent 28%),
		radial-gradient(circle at 72% 32%, rgba(255, 255, 255, 0.08), transparent 24%),
		linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0) 56%),
		#101114;
	box-shadow: none;
}

body.gp-store-home-layout .gp-home-hero__panel::before {
	content: "";
	position: absolute;
	inset: auto 11% 12% auto;
	width: 44%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
	filter: blur(6px);
}

body.gp-store-home-layout .gp-home-hero__panel-line,
body.gp-store-home-layout .gp-home-hero__panel-block {
	display: none;
}

body.gp-store-home-layout .gp-section-heading {
	gap: 12px;
	margin-bottom: 24px;
}

body.gp-store-home-layout .gp-section-heading__meta {
	gap: 6px;
}

body.gp-store-home-layout .gp-section-heading__meta p {
	max-width: 28rem;
	font-size: 0.95rem;
	color: rgba(244, 239, 231, 0.62);
}

body.gp-store-home-layout .gp-homepage .gp-text-link,
body.gp-store-home-layout .gp-homepage .gp-text-link:visited {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: none;
	color: rgba(244, 239, 231, 0.84);
}

body.gp-store-home-layout .gp-home-product-grid,
body.gp-store-home-layout .gp-home-collection-grid,
body.gp-store-home-layout .gp-home-trust-strip__grid {
	gap: 22px;
}

body.gp-store-home-layout .gp-home-product-card,
body.gp-store-home-layout .gp-home-collection-card,
body.gp-store-home-layout .gp-home-trust-card,
body.gp-store-home-layout .gp-home-brand-statement__content,
body.gp-store-home-layout .gp-home-empty {
	box-shadow: none;
}

body.gp-store-home-layout .gp-home-product-card {
	border: 0;
	border-radius: 0;
	background: transparent;
}

body.gp-store-home-layout .gp-home-product-card__media {
	aspect-ratio: 1 / 1.2;
	border-radius: 18px;
	background: #111215;
}

body.gp-store-home-layout .gp-home-product-card__body {
	gap: 8px;
	padding: 16px 4px 0;
}

body.gp-store-home-layout .gp-home-product-card__title {
	font-size: 1rem;
	font-weight: 620;
}

body.gp-store-home-layout .gp-home-product-card__price {
	font-size: 0.88rem;
	font-weight: 600;
	color: rgba(244, 239, 231, 0.76);
}

body.gp-store-home-layout .gp-home-collection-card {
	border: 1px solid rgba(244, 239, 231, 0.08);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.02);
}

body.gp-store-home-layout .gp-home-collection-card__inner {
	gap: 12px;
	padding: 24px;
	min-height: 0;
}

body.gp-store-home-layout .gp-home-collection-card__title {
	font-size: 1.25rem;
	font-weight: 620;
}

body.gp-store-home-layout .gp-home-collection-card__text {
	max-width: 18rem;
	font-size: 0.95rem;
	color: rgba(244, 239, 231, 0.62);
}

body.gp-store-home-layout .gp-home-brand-statement__content {
	border: 0;
	border-top: 1px solid rgba(244, 239, 231, 0.1);
	border-radius: 0;
	background: transparent;
	padding: 32px 0 0;
}

body.gp-store-home-layout .gp-home-brand-statement__content h2 {
	font-size: clamp(1.9rem, 4vw, 3.1rem);
	max-width: 13ch;
	margin-bottom: 14px;
}

body.gp-store-home-layout .gp-home-brand-statement__content p:last-child {
	max-width: 34rem;
	font-size: 1rem;
	color: rgba(244, 239, 231, 0.68);
}

body.gp-store-home-layout .gp-home-trust-card {
	border: 1px solid rgba(244, 239, 231, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
	padding: 18px;
}

body.gp-store-home-layout .gp-home-trust-card__title {
	font-size: 0.94rem;
	font-weight: 620;
	margin-bottom: 6px;
}

body.gp-store-home-layout .gp-home-trust-card__text {
	font-size: 0.92rem;
	color: rgba(244, 239, 231, 0.62);
}

body.gp-store-home-layout .gp-home-empty,
body.gp-store-home-layout .gp-home-empty--warning {
	border: 1px solid rgba(244, 239, 231, 0.08);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
	padding: 16px 18px;
}

@media (min-width: 960px) {
	body.gp-store-home-layout .gp-home-section {
		padding: 52px 0;
	}

	body.gp-store-home-layout .gp-home-hero__shell {
		grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.75fr);
		align-items: center;
	}

	body.gp-store-home-layout .gp-home-hero__panel {
		min-height: 100%;
	}
}


body.gp-store-home-layout .gp-home-collection-card--notice {
	border-style: dashed;
	border-color: rgba(244, 239, 231, 0.18);
	background: rgba(255, 255, 255, 0.015);
	cursor: default;
}

body.gp-store-home-layout .gp-home-collection-card--notice .gp-home-collection-card__text {
	max-width: 20rem;
	color: rgba(244, 239, 231, 0.56);
}


/* ==========================================================================
   HOMEPAGE ART DIRECTION CORRECTION PASS
   ========================================================================== */
body.gp-store-home-layout .gp-home-section {
	padding: 42px 0;
}

body.gp-store-home-layout .gp-homepage h1,
body.gp-store-home-layout .gp-homepage h2,
body.gp-store-home-layout .gp-homepage h3 {
	font-weight: 600;
	line-height: 1.03;
	letter-spacing: -0.03em;
}

body.gp-store-home-layout .gp-homepage p {
	line-height: 1.52;
}

body.gp-store-home-layout .gp-section-heading {
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
	margin-bottom: 28px;
}

body.gp-store-home-layout .gp-section-heading__meta {
	max-width: 26rem;
	gap: 4px;
}

body.gp-store-home-layout .gp-section-heading__meta p {
	font-size: 0.92rem;
	color: rgba(244, 239, 231, 0.58);
}

body.gp-store-home-layout .gp-home-hero {
	padding-top: 48px;
	padding-bottom: 22px;
}

body.gp-store-home-layout .gp-home-hero__shell {
	display: block;
	max-width: 760px;
}

body.gp-store-home-layout .gp-home-hero__copy {
	gap: 18px;
}

body.gp-store-home-layout .gp-home-hero__title {
	font-size: clamp(2.45rem, 7vw, 4.75rem);
	max-width: 10ch;
	font-weight: 560;
	line-height: 0.96;
	letter-spacing: -0.045em;
}

body.gp-store-home-layout .gp-home-hero__text {
	max-width: 25rem;
	font-size: 0.98rem;
	color: rgba(244, 239, 231, 0.7);
}

body.gp-store-home-layout .gp-home-hero__actions {
	gap: 12px;
	padding-top: 8px;
}

body.gp-store-home-layout .gp-home-hero .gp-button,
body.gp-store-home-layout .gp-home-hero .gp-button:visited {
	min-height: 40px;
	padding: 0.72rem 1rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	border-color: rgba(244, 239, 231, 0.14);
	box-shadow: none;
}

body.gp-store-home-layout .gp-home-hero .gp-button,
body.gp-store-home-layout .gp-home-hero .gp-button:visited {
	background: rgba(244, 239, 231, 0.92);
	color: #101114;
}

body.gp-store-home-layout .gp-home-hero .gp-button:hover,
body.gp-store-home-layout .gp-home-hero .gp-button:focus {
	background: #ffffff;
	border-color: #ffffff;
	color: #101114;
}

body.gp-store-home-layout .gp-home-hero .gp-button--ghost,
body.gp-store-home-layout .gp-home-hero .gp-button--ghost:visited {
	background: transparent;
	color: rgba(244, 239, 231, 0.84);
}

body.gp-store-home-layout .gp-home-hero .gp-button--ghost:hover,
body.gp-store-home-layout .gp-home-hero .gp-button--ghost:focus {
	background: rgba(255, 255, 255, 0.03);
	border-color: rgba(244, 239, 231, 0.22);
	color: #fff;
}

body.gp-store-home-layout .gp-home-product-grid,
body.gp-store-home-layout .gp-home-collection-grid,
body.gp-store-home-layout .gp-home-trust-strip__grid {
	gap: 28px 24px;
}

body.gp-store-home-layout .gp-home-product-card,
body.gp-store-home-layout .gp-home-collection-card,
body.gp-store-home-layout .gp-home-trust-card,
body.gp-store-home-layout .gp-home-brand-statement__content,
body.gp-store-home-layout .gp-home-empty {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body.gp-store-home-layout .gp-home-product-card__media {
	aspect-ratio: 4 / 5;
	border-radius: 0;
	background: #111215;
}

body.gp-store-home-layout .gp-home-product-card__body {
	gap: 6px;
	padding: 16px 0 0;
}

body.gp-store-home-layout .gp-home-product-card__title {
	font-size: 0.98rem;
	font-weight: 580;
}

body.gp-store-home-layout .gp-home-product-card__price {
	font-size: 0.84rem;
	font-weight: 500;
	color: rgba(244, 239, 231, 0.66);
}

body.gp-store-home-layout .gp-home-collection-card__inner,
body.gp-store-home-layout .gp-home-trust-card,
body.gp-store-home-layout .gp-home-empty {
	padding: 18px 0 0;
	border-top: 1px solid rgba(244, 239, 231, 0.1);
}

body.gp-store-home-layout .gp-home-collection-card__inner {
	gap: 10px;
	min-height: 0;
}

body.gp-store-home-layout .gp-home-collection-card__title {
	font-size: 1.18rem;
	font-weight: 580;
}

body.gp-store-home-layout .gp-home-collection-card__text,
body.gp-store-home-layout .gp-home-trust-card__text {
	max-width: 18rem;
	font-size: 0.92rem;
	color: rgba(244, 239, 231, 0.58);
}

body.gp-store-home-layout .gp-home-brand-statement__content {
	padding: 10px 0 0;
	border-top: 1px solid rgba(244, 239, 231, 0.1);
}

body.gp-store-home-layout .gp-home-brand-statement__content h2 {
	font-size: clamp(1.8rem, 4vw, 2.9rem);
	max-width: 14ch;
	font-weight: 580;
	margin-bottom: 12px;
}

body.gp-store-home-layout .gp-home-brand-statement__content p:last-child {
	max-width: 28rem;
	font-size: 0.98rem;
	color: rgba(244, 239, 231, 0.64);
}

body.gp-store-home-layout .gp-home-trust-card {
	padding-right: 0;
	padding-left: 0;
}

body.gp-store-home-layout .gp-home-trust-card__title {
	font-size: 0.92rem;
	font-weight: 580;
	margin-bottom: 6px;
}

body.gp-store-home-layout .gp-home-empty,
body.gp-store-home-layout .gp-home-empty--warning {
	padding-right: 0;
	padding-left: 0;
}

body.gp-store-home-layout .gp-home-collection-card--notice {
	border-style: none;
	cursor: default;
}

body.gp-store-home-layout .gp-home-collection-card--notice .gp-home-collection-card__inner {
	border-top-style: dashed;
	border-top-color: rgba(244, 239, 231, 0.18);
}

@media (min-width: 960px) {
	body.gp-store-home-layout .gp-home-section {
		padding: 64px 0;
	}

	body.gp-store-home-layout .gp-home-hero {
		padding-top: 64px;
		padding-bottom: 30px;
	}

	body.gp-store-home-layout .gp-home-hero__shell {
		max-width: 820px;
	}
}


/* ==========================================================================
   HOMEPAGE FINAL POLISH PASS
   ========================================================================== */
body.gp-store-home-layout {
	--gp-bg: #121110;
	--gp-bg-alt: #181614;
	--gp-surface: #1c1a18;
	--gp-surface-2: #211d1b;
	--gp-text: #efe8de;
	--gp-muted: #b4ab9f;
	--gp-line: rgba(239, 232, 222, 0.08);
	--gp-line-strong: rgba(239, 232, 222, 0.14);
	background:
		radial-gradient(circle at top center, rgba(122, 33, 44, 0.08), transparent 34%),
		linear-gradient(180deg, #151311 0%, #121110 28%, #0f0f10 100%);
	color: var(--gp-text);
}

body.gp-store-home-layout .site,
body.gp-store-home-layout .site-content,
body.gp-store-home-layout .content-area,
body.gp-store-home-layout .site-main {
	background: transparent;
}

body.gp-store-home-layout .site-header {
	background: rgba(18, 17, 16, 0.78);
	border-bottom: 1px solid rgba(239, 232, 222, 0.06);
	backdrop-filter: none;
}

body.gp-store-home-layout .gp-home-header {
	min-height: 72px;
	padding: 12px 0;
}

body.gp-store-home-layout .gp-home-header__brand,
body.gp-store-home-layout .gp-home-header__brand:visited {
	font-size: 0.8rem;
	font-weight: 620;
	letter-spacing: 0.04em;
	color: rgba(239, 232, 222, 0.92);
}

body.gp-store-home-layout .gp-home-header__nav a,
body.gp-store-home-layout .gp-home-header__links a,
body.gp-store-home-layout .gp-home-header__socials a,
body.gp-store-home-layout .gp-home-header__cart,
body.gp-store-home-layout .gp-home-header__nav a:visited,
body.gp-store-home-layout .gp-home-header__links a:visited,
body.gp-store-home-layout .gp-home-header__socials a:visited,
body.gp-store-home-layout .gp-home-header__cart:visited {
	font-size: 0.74rem;
	font-weight: 520;
	letter-spacing: 0.02em;
	color: rgba(239, 232, 222, 0.66);
}

body.gp-store-home-layout .gp-home-section {
	padding: 44px 0;
}

body.gp-store-home-layout .gp-homepage h1,
body.gp-store-home-layout .gp-homepage h2,
body.gp-store-home-layout .gp-homepage h3 {
	font-weight: 540;
	line-height: 1.02;
	letter-spacing: -0.032em;
}

body.gp-store-home-layout .gp-homepage p {
	line-height: 1.56;
}

body.gp-store-home-layout .gp-homepage .gp-section-eyebrow {
	margin-bottom: 10px;
	font-size: 0.68rem;
	font-weight: 560;
	letter-spacing: 0.03em;
	color: rgba(239, 232, 222, 0.56);
}

body.gp-store-home-layout .gp-home-hero {
	padding-top: 72px;
	padding-bottom: 18px;
}

body.gp-store-home-layout .gp-home-hero__shell {
	display: block;
	max-width: 680px;
}

body.gp-store-home-layout .gp-home-hero__copy {
	gap: 14px;
	padding: 0;
	border: 0;
	background: transparent;
}

body.gp-store-home-layout .gp-home-hero__title {
	max-width: 11ch;
	font-size: clamp(2.3rem, 6.8vw, 4.35rem);
	font-weight: 500;
	line-height: 0.98;
	letter-spacing: -0.04em;
}

body.gp-store-home-layout .gp-home-hero__text {
	max-width: 24rem;
	font-size: 0.96rem;
	color: rgba(239, 232, 222, 0.68);
}

body.gp-store-home-layout .gp-home-hero__actions {
	gap: 10px;
	padding-top: 10px;
}

body.gp-store-home-layout .gp-home-hero .gp-button,
body.gp-store-home-layout .gp-home-hero .gp-button:visited {
	min-height: 38px;
	padding: 0.7rem 0.95rem;
	border-color: rgba(239, 232, 222, 0.12);
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 560;
	letter-spacing: 0.015em;
}

body.gp-store-home-layout .gp-home-hero .gp-button,
body.gp-store-home-layout .gp-home-hero .gp-button:visited {
	background: rgba(239, 232, 222, 0.9);
	color: #161413;
}

body.gp-store-home-layout .gp-home-hero .gp-button--ghost,
body.gp-store-home-layout .gp-home-hero .gp-button--ghost:visited {
	background: transparent;
	color: rgba(239, 232, 222, 0.78);
}

body.gp-store-home-layout .gp-home-hero .gp-button--ghost:hover,
body.gp-store-home-layout .gp-home-hero .gp-button--ghost:focus {
	background: rgba(255, 255, 255, 0.025);
	border-color: rgba(239, 232, 222, 0.2);
}

body.gp-store-home-layout .gp-section-heading {
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
	margin-bottom: 26px;
}

body.gp-store-home-layout .gp-section-heading__meta {
	max-width: 24rem;
	gap: 4px;
}

body.gp-store-home-layout .gp-section-heading__meta p {
	font-size: 0.9rem;
	color: rgba(239, 232, 222, 0.56);
}

body.gp-store-home-layout .gp-home-product-grid,
body.gp-store-home-layout .gp-home-collection-grid {
	gap: 32px 22px;
}

body.gp-store-home-layout .gp-home-trust-strip__grid {
	gap: 18px 26px;
}

body.gp-store-home-layout .gp-home-product-card,
body.gp-store-home-layout .gp-home-collection-card,
body.gp-store-home-layout .gp-home-trust-card,
body.gp-store-home-layout .gp-home-brand-statement__content,
body.gp-store-home-layout .gp-home-empty {
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body.gp-store-home-layout .gp-home-product-card__media {
	aspect-ratio: 4 / 5;
	border-radius: 2px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)), #181614;
}

body.gp-store-home-layout .gp-home-product-card__image {
	transition: opacity 200ms ease;
}

body.gp-store-home-layout .gp-home-product-card:hover .gp-home-product-card__image,
body.gp-store-home-layout .gp-home-product-card:focus-within .gp-home-product-card__image {
	transform: none;
	opacity: 0.96;
}

body.gp-store-home-layout .gp-home-product-card__body {
	gap: 5px;
	padding: 14px 0 0;
}

body.gp-store-home-layout .gp-home-product-card__title {
	font-size: 0.94rem;
	font-weight: 540;
	letter-spacing: -0.01em;
}

body.gp-store-home-layout .gp-home-product-card__title a {
	color: rgba(239, 232, 222, 0.92);
}

body.gp-store-home-layout .gp-home-product-card__price {
	font-size: 0.82rem;
	font-weight: 500;
	color: rgba(239, 232, 222, 0.6);
}

body.gp-store-home-layout .gp-home-collection-card__inner {
	gap: 8px;
	min-height: 0;
	padding: 0 0 18px;
	border-top: 0;
	border-bottom: 1px solid rgba(239, 232, 222, 0.08);
}

body.gp-store-home-layout .gp-home-collection-card__title {
	font-size: 1.12rem;
	font-weight: 540;
}

body.gp-store-home-layout .gp-home-collection-card__text {
	max-width: 17rem;
	font-size: 0.9rem;
	color: rgba(239, 232, 222, 0.56);
}

body.gp-store-home-layout .gp-home-collection-card--notice .gp-home-collection-card__inner {
	border-bottom-style: dashed;
	border-bottom-color: rgba(239, 232, 222, 0.14);
}

body.gp-store-home-layout .gp-home-brand-statement__content {
	padding: 12px 0 0;
	border-top: 1px solid rgba(239, 232, 222, 0.08);
}

body.gp-store-home-layout .gp-home-brand-statement__content h2 {
	max-width: 13ch;
	font-size: clamp(1.7rem, 4vw, 2.65rem);
	font-weight: 540;
	margin-bottom: 10px;
}

body.gp-store-home-layout .gp-home-brand-statement__content p:last-child {
	max-width: 26rem;
	font-size: 0.95rem;
	color: rgba(239, 232, 222, 0.6);
}

body.gp-store-home-layout .gp-home-trust-strip .gp-home-shell {
	padding-top: 18px;
	border-top: 1px solid rgba(239, 232, 222, 0.08);
}

body.gp-store-home-layout .gp-home-trust-card {
	padding: 0;
}

body.gp-store-home-layout .gp-home-trust-card__title {
	font-size: 0.88rem;
	font-weight: 540;
	margin-bottom: 5px;
	color: rgba(239, 232, 222, 0.84);
}

body.gp-store-home-layout .gp-home-trust-card__text {
	max-width: 17rem;
	font-size: 0.88rem;
	color: rgba(239, 232, 222, 0.54);
}

body.gp-store-home-layout .gp-home-empty,
body.gp-store-home-layout .gp-home-empty--warning {
	padding: 14px 0 0;
	border-top: 1px solid rgba(239, 232, 222, 0.08);
}

body.gp-store-home-layout .gp-home-empty--warning {
	border-top-style: dashed;
}

body.gp-store-home-layout .gp-store-footer__line {
	color: rgba(239, 232, 222, 0.78);
}

body.gp-store-home-layout .gp-store-footer__socials a,
body.gp-store-home-layout .gp-store-footer__nav a,
body.gp-store-home-layout .gp-store-footer__socials a:visited,
body.gp-store-home-layout .gp-store-footer__nav a:visited {
	font-weight: 520;
	letter-spacing: 0.02em;
	text-transform: none;
	color: rgba(239, 232, 222, 0.6);
}

@media (min-width: 700px) {
	body.gp-store-home-layout .gp-home-product-grid,
	body.gp-store-home-layout .gp-home-collection-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 960px) {
	body.gp-store-home-layout .gp-home-section {
		padding: 66px 0;
	}

	body.gp-store-home-layout .gp-home-hero {
		padding-top: 84px;
		padding-bottom: 20px;
	}

	body.gp-store-home-layout .gp-home-hero__shell {
		max-width: 720px;
	}

	body.gp-store-home-layout .gp-home-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px 26px;
	}

	body.gp-store-home-layout .gp-home-trust-strip__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
