/* Raid Ultra Shop — dark fantasy catalog */

:root {
	/* Palette from user mockup: electric purple + bright gold on near-black */
	--bg: #07060c;
	--bg-elevated: #12101a;
	--bg-card: #14121f;
	--ink: #f3f0f8;
	--ink-muted: #b5a8c9;
	--gold: #e8c45a;
	--gold-bright: #ffe28a;
	--gold-dim: #b8922e;
	--purple: #9b4dff;
	--purple-bright: #c084ff;
	--purple-deep: #5a1fd4;
	--purple-glow: rgba(155, 77, 255, 0.55);
	--line: rgba(192, 132, 255, 0.28);
	--line-gold: rgba(232, 196, 90, 0.45);
	--shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
	--radius: 6px;
	--font-display: "Playfair Display", "Times New Roman", serif;
	--font-body: "Manrope", "Segoe UI", Tahoma, sans-serif;
	--shell: min(1120px, calc(100% - 2.5rem));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 1.05rem;
	line-height: 1.55;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	background:
		radial-gradient(ellipse 70% 45% at 15% 0%, rgba(155, 77, 255, 0.22), transparent 55%),
		radial-gradient(ellipse 55% 40% at 90% 20%, rgba(90, 31, 212, 0.18), transparent 50%),
		radial-gradient(ellipse 50% 30% at 50% 100%, rgba(232, 196, 90, 0.06), transparent 50%),
		linear-gradient(180deg, #0c0a14 0%, var(--bg) 40%, #05040a 100%);
	background-attachment: fixed;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	opacity: 0.07;
	background-image:
		repeating-linear-gradient(
			0deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.03) 2px,
			rgba(255, 255, 255, 0.03) 3px
		);
	mix-blend-mode: overlay;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--purple-bright);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
	color: var(--gold-bright);
}

.shell {
	width: var(--shell);
	margin-inline: auto;
	position: relative;
	z-index: 1;
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	z-index: 100;
	background: var(--gold);
	color: #111;
	padding: 0.5rem 1rem;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* Header removed — brand lives in hero */

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	color: inherit;
	text-decoration: none;
}

.brand:hover {
	color: inherit;
}

.brand__mark {
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid var(--gold);
	background:
		linear-gradient(135deg, rgba(155, 77, 255, 0.45), transparent 55%),
		var(--bg-elevated);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	box-shadow:
		inset 0 0 12px rgba(155, 77, 255, 0.35),
		0 0 16px rgba(155, 77, 255, 0.35);
}

.brand__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.brand__name {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--gold-bright);
}

.brand__tag {
	font-size: 0.78rem;
	color: var(--ink-muted);
	letter-spacing: 0.02em;
	text-transform: none;
}

.custom-logo-link img {
	max-height: 52px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	text-transform: none;
}

.site-nav a {
	color: var(--ink);
	text-decoration: none;
}

.site-nav a:hover {
	color: var(--purple-bright);
	text-shadow: 0 0 12px var(--purple-glow);
}

.site-nav__tg {
	padding: 0.45rem 0.8rem;
	border: 1px solid rgba(155, 77, 255, 0.45);
	color: var(--purple-bright) !important;
	box-shadow: 0 0 18px rgba(155, 77, 255, 0.2);
}

/* Buttons — purple glow primary (mockup), gold outline secondary */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.85rem;
	padding: 0.65rem 1.35rem;
	border: 1px solid rgba(192, 132, 255, 0.55);
	border-radius: 999px;
	background: linear-gradient(180deg, #a855ff 0%, #6d28d9 55%, #4c1d95 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		0 0 22px rgba(155, 77, 255, 0.45),
		0 8px 20px rgba(0, 0, 0, 0.35);
	color: #fff;
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease, filter 0.15s ease;
}

.btn:hover {
	color: #fff;
	filter: brightness(1.08);
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.28),
		0 0 32px rgba(192, 132, 255, 0.65),
		0 10px 24px rgba(0, 0, 0, 0.4);
}

.btn:active,
.btn.is-pressed {
	transform: translateY(1px);
	filter: brightness(0.92);
	box-shadow:
		inset 0 2px 8px rgba(0, 0, 0, 0.45),
		0 0 12px rgba(155, 77, 255, 0.35);
}

.btn--primary {
	background: linear-gradient(180deg, #b56cff 0%, #7c3aed 45%, #5b21b6 100%);
	border-color: rgba(232, 196, 90, 0.55);
	color: #fff;
}

.btn--ghost {
	background: transparent;
	box-shadow: 0 0 0 transparent;
	border-color: var(--line-gold);
	color: var(--gold-bright);
	filter: none;
}

.btn--ghost:hover {
	color: var(--gold-bright);
	border-color: var(--gold);
	box-shadow: 0 0 18px rgba(232, 196, 90, 0.25);
	filter: none;
}

.btn--small {
	min-height: 2.35rem;
	padding: 0.45rem 0.95rem;
	font-size: 0.7rem;
}

/* Hero */
.hero {
	position: relative;
	isolation: isolate;
	min-height: min(100vh, 920px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: #0a0812;
}

.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(38vh, 320px);
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		180deg,
		transparent 0%,
		rgba(8, 6, 14, 0.35) 40%,
		rgba(8, 6, 14, 0.82) 75%,
		#0a0812 100%
	);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.hero__content {
	--hero-lift: -6vh;
	position: relative;
	z-index: 2;
	padding: 2.5rem 1.25rem 5rem;
	max-width: 42rem;
	width: min(42rem, calc(100% - 2rem));
	margin: 0 auto;
	text-align: center;
	transform: translateY(var(--hero-lift));
	animation: hero-rise 0.9s ease both;
}

.hero__logo {
	display: block;
	width: min(420px, 78vw);
	height: auto;
	margin: 0 auto 1.25rem;
	mix-blend-mode: lighten;
	filter: drop-shadow(0 10px 32px rgba(0, 0, 0, 0.65));
}

.hero__title {
	margin: 0 auto 1rem;
	max-width: 22ch;
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.6vw, 1.85rem);
	font-weight: 600;
	line-height: 1.3;
	color: var(--ink);
	text-wrap: balance;
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.75);
}

.hero__lead {
	margin: 0 auto 1.75rem;
	max-width: 36ch;
	color: #e8d9ff;
	font-family: var(--font-body);
	font-size: 1.05rem;
	font-weight: 500;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.85rem;
}

@keyframes hero-rise {
	from { opacity: 0; transform: translateY(calc(var(--hero-lift, -6vh) + 18px)); }
	to { opacity: 1; transform: translateY(var(--hero-lift, -6vh)); }
}

@keyframes rise-in {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Sections */
/* Catalog — atmospheric continuation of hero (ice / void / fire) */
.catalog {
	position: relative;
	padding: 0 0 3rem;
	margin-top: -1px;
	overflow: hidden;
	background:
		radial-gradient(ellipse 45% 55% at 0% 20%, rgba(80, 180, 255, 0.14), transparent 55%),
		radial-gradient(ellipse 45% 55% at 100% 25%, rgba(255, 110, 40, 0.12), transparent 55%),
		radial-gradient(ellipse 70% 50% at 50% 0%, rgba(120, 60, 220, 0.16), transparent 60%),
		radial-gradient(ellipse 60% 40% at 50% 100%, rgba(155, 77, 255, 0.08), transparent 55%),
		linear-gradient(180deg, #0a0812 0%, #100e1a 45%, #0b0914 100%);
}

.catalog__bridge {
	height: 4.5rem;
	background: linear-gradient(180deg, #0a0812, transparent);
	pointer-events: none;
}

.catalog__inner {
	position: relative;
	z-index: 1;
	padding-top: 0.5rem;
}

.catalog::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 0.35;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1.5px),
		radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1.5px);
	background-size: 180px 180px, 240px 240px;
	background-position: 0 0, 40px 60px;
}

.section-ornament {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	margin: 0 auto 1.75rem;
	max-width: 28rem;
}

.section-ornament__line {
	flex: 1;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(160, 210, 255, 0.55),
		rgba(232, 196, 90, 0.75),
		rgba(255, 140, 60, 0.55),
		transparent
	);
	box-shadow: 0 0 12px rgba(192, 132, 255, 0.35);
}

.section-ornament__gem {
	width: 0.65rem;
	height: 0.65rem;
	rotate: 45deg;
	border: 1px solid var(--gold-bright);
	background: linear-gradient(135deg, var(--purple), #ff8a3d);
	box-shadow:
		0 0 16px rgba(155, 77, 255, 0.55),
		0 0 10px rgba(255, 140, 60, 0.35);
	flex-shrink: 0;
}

.catalog--archive {
	padding-top: 3rem;
}

.section-head {
	margin-bottom: 2.25rem;
	max-width: 40rem;
}

.section-head--center {
	margin-inline: auto;
	text-align: center;
}

.section-head--center .section-head__lead {
	margin-inline: auto;
	max-width: 42ch;
}

.section-head__title {
	margin: 0 0 0.55rem;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	color: var(--gold-bright);
	letter-spacing: 0.01em;
	text-shadow: 0 0 28px rgba(232, 196, 90, 0.25);
}

.section-head__lead {
	margin: 0;
	color: var(--ink-muted);
	font-size: 1rem;
	font-weight: 400;
}

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

.empty-note {
	padding: 2rem;
	border: 1px dashed var(--line);
	color: var(--ink-muted);
	text-align: center;
}

/* Cards — purple glow + gold edge (mockup) */
.account-card {
	display: flex;
	flex-direction: column;
	background:
		linear-gradient(180deg, rgba(155, 77, 255, 0.12), transparent 42%),
		var(--bg-card);
	border: 1px solid rgba(155, 77, 255, 0.32);
	border-top-color: rgba(232, 196, 90, 0.55);
	box-shadow:
		var(--shadow),
		0 0 28px rgba(155, 77, 255, 0.12);
	overflow: hidden;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	animation: rise-in 0.7s ease both;
}

.account-card:nth-child(2) { animation-delay: 0.06s; }
.account-card:nth-child(3) { animation-delay: 0.12s; }
.account-card:nth-child(4) { animation-delay: 0.18s; }
.account-card:nth-child(5) { animation-delay: 0.24s; }
.account-card:nth-child(6) { animation-delay: 0.3s; }

.account-card:hover {
	border-color: rgba(192, 132, 255, 0.65);
	border-top-color: var(--gold-bright);
	transform: translateY(-4px);
	box-shadow:
		var(--shadow),
		0 0 40px rgba(155, 77, 255, 0.28);
}

.account-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0b0e16;
	text-decoration: none;
}

.account-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.account-card:hover .account-card__img {
	transform: scale(1.04);
}

.account-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 12rem;
	color: var(--ink-muted);
	font-family: var(--font-body);
	font-size: 0.85rem;
	letter-spacing: 0.01em;
	text-transform: none;
	background:
		radial-gradient(circle at 30% 20%, rgba(155, 77, 255, 0.22), transparent 45%),
		linear-gradient(160deg, #1a1528, #0a0812);
}

.account-card__placeholder--large {
	min-height: 22rem;
	padding: 2rem;
	text-align: center;
}

/* Scalable CSS ornaments — corners stay put when card resizes */
.account-card__ornament,
.account-card__ornament::before,
.account-card__ornament::after {
	pointer-events: none;
}

.account-card__ornament {
	position: absolute;
	inset: 0.45rem;
	border: 1px solid rgba(192, 132, 255, 0.28);
}

.account-card__ornament::before,
.account-card__ornament::after {
	content: "";
	position: absolute;
	width: 1.1rem;
	height: 1.1rem;
	border-color: var(--gold-bright);
	border-style: solid;
	filter: drop-shadow(0 0 4px rgba(232, 196, 90, 0.45));
}

.account-card__ornament::before {
	top: -1px;
	left: -1px;
	border-width: 2px 0 0 2px;
}

.account-card__ornament::after {
	right: -1px;
	bottom: -1px;
	border-width: 0 2px 2px 0;
}

.account-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1.15rem 1.2rem 1.25rem;
	flex: 1;
}

.account-card__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0;
}

.account-card__title a {
	color: var(--ink);
	text-decoration: none;
}

.account-card__title a:hover {
	color: var(--gold-bright);
}

.account-card__text {
	margin: 0;
	color: var(--ink-muted);
	font-size: 0.95rem;
	flex: 1;
}

.account-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding-top: 0.35rem;
	border-top: 1px solid rgba(155, 77, 255, 0.22);
}

.account-card__price {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--gold-bright);
	letter-spacing: 0;
	text-shadow: 0 0 14px rgba(232, 196, 90, 0.35);
}

/* Contact band */
.contact-band {
	position: relative;
	padding: 1rem 0 4.5rem;
	background:
		radial-gradient(ellipse 50% 60% at 50% 0%, rgba(155, 77, 255, 0.12), transparent 60%),
		linear-gradient(180deg, transparent, rgba(8, 6, 14, 0.6));
}

.contact-band__inner {
	padding: 2.25rem 1.75rem;
	border: 1px solid rgba(155, 77, 255, 0.35);
	background:
		linear-gradient(120deg, rgba(155, 77, 255, 0.18), transparent 45%),
		linear-gradient(180deg, rgba(232, 196, 90, 0.08), transparent),
		var(--bg-elevated);
	text-align: center;
	box-shadow:
		var(--shadow),
		0 0 40px rgba(155, 77, 255, 0.15);
}

.contact-band h2 {
	margin: 0 0 0.5rem;
	font-family: var(--font-display);
	font-size: 1.55rem;
	color: var(--gold-bright);
}

.contact-band p {
	margin: 0 0 1.25rem;
	color: var(--ink-muted);
}

/* Single product */
/* Product page top bar (not on homepage) */
.product-top {
	position: relative;
	z-index: 5;
	border-bottom: 1px solid var(--line);
	background:
		radial-gradient(ellipse 50% 120% at 0% 50%, rgba(80, 180, 255, 0.1), transparent 55%),
		radial-gradient(ellipse 40% 100% at 100% 50%, rgba(255, 110, 40, 0.08), transparent 50%),
		rgba(8, 6, 14, 0.92);
	backdrop-filter: blur(10px);
}

.product-top__inner {
	display: flex;
	align-items: center;
	gap: 1.15rem;
	padding: 0.85rem 0;
}

.product-top__logo {
	flex-shrink: 0;
	display: block;
	line-height: 0;
	text-decoration: none;
}

.product-top__logo img {
	width: auto;
	height: 150px;
	max-width: 150px;
	object-fit: contain;
	mix-blend-mode: lighten;
	filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

.product-top__copy {
	flex: 1;
	min-width: 0;
	text-align: left;
}

.product-top__title {
	margin: 0 0 0.35rem;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 2vw, 1.35rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--ink);
	text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.product-top__lead {
	margin: 0;
	max-width: 46ch;
	color: var(--ink-muted);
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.4;
}

.product-top__tg {
	flex-shrink: 0;
	align-self: center;
}

@media (max-width: 720px) {
	.product-top__inner {
		flex-wrap: wrap;
		gap: 0.75rem;
	}

	.product-top__logo img {
		height: 96px;
		max-width: 96px;
	}

	.product-top__tg {
		margin-left: auto;
	}

	.product-top__copy {
		flex: 1 1 calc(100% - 120px);
	}

	.product-top__lead {
		display: none;
	}
}

.account-single {
	padding: 2.5rem 0 2rem;
}

.related {
	padding: 1rem 0 4rem;
	margin-top: 0;
}

.related .section-ornament {
	margin-top: 0.5rem;
}

.account-single__layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 2rem;
	align-items: start;
}

.account-single__eyebrow {
	margin: 0 0 0.75rem;
	font-family: var(--font-body);
	font-size: 0.88rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.account-single__eyebrow a {
	color: var(--ink-muted);
	text-decoration: none;
}

.account-single__title {
	margin: 0 0 0.75rem;
	font-family: var(--font-display);
	font-size: clamp(1.6rem, 2.8vw, 2.15rem);
	line-height: 1.2;
	color: var(--gold-bright);
}

.account-single__price {
	margin: 0 0 1.25rem;
	font-family: var(--font-display);
	font-size: 1.5rem;
	color: var(--ink);
}

.account-single__content {
	color: var(--ink-muted);
	margin-bottom: 1.75rem;
}

.account-single__content p {
	margin-top: 0;
}

.account-single__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Gallery */
.gallery__stage {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	border: 1px solid rgba(155, 77, 255, 0.35);
	background: #0b0914;
	box-shadow:
		var(--shadow),
		0 0 30px rgba(155, 77, 255, 0.15);
}

.gallery__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease;
}

.gallery__slide.is-active {
	opacity: 1;
	visibility: visible;
	position: relative;
}

.gallery__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(155, 77, 255, 0.45);
	background: rgba(7, 6, 12, 0.8);
	color: var(--gold-bright);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	box-shadow: 0 0 16px rgba(155, 77, 255, 0.25);
}

.gallery__nav:hover {
	border-color: var(--purple-bright);
	color: #fff;
}

.gallery__nav--prev { left: 0.65rem; }
.gallery__nav--next { right: 0.65rem; }

.gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.gallery__thumb {
	padding: 0;
	border: 1px solid transparent;
	background: #0b0e16;
	cursor: pointer;
	opacity: 0.65;
	aspect-ratio: 1;
	overflow: hidden;
}

.gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gallery__thumb.is-active,
.gallery__thumb:hover {
	opacity: 1;
	border-color: var(--purple-bright);
	box-shadow: 0 0 12px rgba(155, 77, 255, 0.45);
}

/* Footer */
.site-footer {
	border-top: 1px solid var(--line);
	padding: 2.5rem 0 1.5rem;
	background: rgba(0, 0, 0, 0.35);
	position: relative;
	z-index: 1;
}

.site-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
}

.site-footer__brand strong {
	display: block;
	font-family: var(--font-display);
	color: var(--gold-bright);
	margin-bottom: 0.45rem;
	letter-spacing: 0.01em;
	font-size: 1.15rem;
}

.site-footer__brand p {
	margin: 0;
	max-width: 36ch;
	color: var(--ink-muted);
	font-size: 1.05rem;
}

.site-footer__links {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.75rem;
}

.site-footer__copy {
	color: var(--ink-muted);
	font-size: 0.95rem;
	opacity: 0.8;
}

/* WP overrides */
.custom-logo-link {
	display: inline-flex;
}

/* Responsive */
@media (max-width: 960px) {
	.account-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.account-single__layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	:root {
		--shell: min(100% - 1.5rem, 1120px);
	}

	.site-nav a:not(.site-nav__tg) {
		display: none;
	}

	.hero {
		min-height: 88vh;
	}

	.hero__content {
		--hero-lift: -4vh;
		padding: 2rem 1rem 4rem;
	}

	.hero__logo {
		width: min(340px, 82vw);
	}

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

	.site-footer__links {
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
		scroll-behavior: auto !important;
	}
}
