/*
Theme Name: VexaRack
Theme URI: https://vexarack.com
Author: VexaRack
Description: A clear, conversion-focused WooCommerce storefront for VexaRack VPS plans.
Version: 1.1.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: vexarack
*/

:root {
	--ink: #10141a;
	--muted: #606873;
	--soft: #f5f7f8;
	--line: #e3e7eb;
	--paper: #ffffff;
	--accent: #d8ff43;
	--accent-ink: #1b2502;
	--dark: #141a20;
	--dark-soft: #202932;
	--max-width: 1200px;
	--radius: 18px;
	--shadow: 0 18px 50px rgba(20, 26, 32, 0.08);
	--font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Arial Narrow", "Roboto Condensed", var(--font-sans);
}
* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
}

body.admin-bar .site-header {
	top: 32px;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	color: inherit;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: #48560e;
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
.button,
input[type="submit"] {
	border: 0;
	cursor: pointer;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--paper);
	clip: auto !important;
	clip-path: none;
	color: var(--ink);
	display: block;
	font-size: 0.875rem;
	height: auto;
	left: 1rem;
	line-height: normal;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 100000;
}

.container {
	margin: 0 auto;
	max-width: var(--max-width);
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	width: 100%;
}

.site-header {
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(227, 231, 235, 0.8);
	position: sticky;
	top: 0;
	backdrop-filter: blur(18px);
	z-index: 20;
}

.header-inner {
	align-items: center;
	display: flex;
	gap: 2rem;
	min-height: 78px;
}

.brand {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 1.15rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	text-decoration: none;
}

.brand-mark {
	align-items: center;
	background: var(--ink);
	border-radius: 9px;
	color: var(--accent);
	display: inline-flex;
	height: 32px;
	justify-content: center;
	margin-right: 0.6rem;
	position: relative;
	width: 32px;
}

.brand-mark::before,
.brand-mark::after {
	background: currentColor;
	content: "";
	height: 3px;
	left: 8px;
	position: absolute;
	transform: skew(-20deg);
	width: 16px;
}

.brand-mark::before {
	top: 10px;
}

.brand-mark::after {
	top: 18px;
	width: 11px;
}

.primary-navigation {
	margin-left: auto;
}

.primary-navigation ul {
	align-items: center;
	display: flex;
	gap: 1.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation a {
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation .current-menu-item > a {
	color: var(--ink);
}

.header-actions {
	align-items: center;
	display: flex;
	gap: 0.75rem;
}

.header-search {
	align-items: center;
	display: flex;
	position: relative;
}

.header-search input[type="search"] {
	background: var(--soft);
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.85rem;
	max-width: 170px;
	padding: 0.58rem 2.4rem 0.58rem 1rem;
	transition: border-color 160ms ease, background 160ms ease;
	width: 100%;
}

.header-search input[type="search"]:focus {
	background: var(--paper);
	border-color: var(--ink);
	outline: none;
}

.header-search button {
	background: transparent;
	color: var(--ink);
	font-size: 1rem;
	padding: 0.35rem;
	position: absolute;
	right: 0.55rem;
}

.cart-link {
	align-items: center;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 0.42rem;
	text-decoration: none;
}

.cart-icon {
	border: 1.5px solid currentColor;
	border-radius: 3px;
	display: inline-block;
	height: 14px;
	position: relative;
	transform: skew(-8deg);
	width: 16px;
}

.cart-icon::before {
	border-top: 1.5px solid currentColor;
	content: "";
	left: -4px;
	position: absolute;
	top: -4px;
	transform: skew(8deg);
	width: 7px;
}

.cart-count {
	align-items: center;
	background: var(--accent);
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.7rem;
	height: 20px;
	justify-content: center;
	min-width: 20px;
	padding: 0 0.3rem;
}

.menu-toggle {
	background: transparent;
	display: none;
	font-size: 1.35rem;
	line-height: 1;
	padding: 0.45rem;
}

.hero {
	background: var(--soft);
	overflow: hidden;
	position: relative;
}

.hero::before {
	background-image: linear-gradient(rgba(16, 20, 26, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 20, 26, 0.045) 1px, transparent 1px);
	background-size: 48px 48px;
	content: "";
	inset: 0;
	mask-image: linear-gradient(to right, black, transparent 80%);
	opacity: 0.6;
	position: absolute;
}

.hero-inner {
	align-items: center;
	display: grid;
	gap: 4rem;
	grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
	min-height: 540px;
	padding-bottom: 5.2rem;
	padding-top: 5.2rem;
	position: relative;
}

.eyebrow {
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	margin: 0 0 1.1rem;
	text-transform: uppercase;
}

.hero h1 {
	font-family: var(--font-display);
	font-size: clamp(3.2rem, 7.1vw, 6.6rem);
	font-weight: 800;
	letter-spacing: -0.075em;
	line-height: 0.91;
	margin: 0;
	max-width: 720px;
}

.hero h1 em {
	color: #596f0c;
	font-style: normal;
}

.hero-copy {
	color: var(--muted);
	font-size: 1.07rem;
	margin: 1.6rem 0 0;
	max-width: 490px;
}

.hero-actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.button {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.9rem;
	font-weight: 800;
	gap: 0.75rem;
	justify-content: center;
	line-height: 1;
	padding: 0.95rem 1.35rem;
	text-decoration: none;
	transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
	color: inherit;
	transform: translateY(-2px);
}

.button--primary {
	background: var(--accent);
	color: var(--accent-ink);
}

.button--primary:hover {
	background: #c6eb32;
	color: var(--accent-ink);
}

.button--dark {
	background: var(--ink);
	color: var(--paper);
}

.button--dark:hover {
	background: #2a333b;
	color: var(--paper);
}

.button--outline {
	border: 1px solid var(--line);
	color: var(--ink);
}

.button--outline:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.hero-art {
	background: var(--dark);
	border-radius: 50%;
	box-shadow: 0 24px 60px rgba(20, 26, 32, 0.2);
	height: min(37vw, 420px);
	justify-self: end;
	max-height: 420px;
	max-width: 420px;
	min-height: 290px;
	min-width: 290px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.hero-art::before,
.hero-art::after {
	border: 1px solid rgba(216, 255, 67, 0.35);
	border-radius: 50%;
	content: "";
	inset: 14%;
	position: absolute;
}

.hero-art::after {
	inset: 28%;
}

.hero-art__orbit {
	border: 1px solid rgba(255, 255, 255, 0.19);
	border-radius: 50%;
	inset: 5%;
	position: absolute;
	transform: rotate(-35deg) scaleY(0.42);
}

.server-stack {
	bottom: 18%;
	left: 20%;
	position: absolute;
	right: 20%;
	top: 22%;
	transform: rotate(-9deg);
}

.server {
	background: linear-gradient(120deg, #37434d, #1d252c);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	box-shadow: 8px 12px 0 rgba(0, 0, 0, 0.2);
	height: 26%;
	left: 0;
	position: absolute;
	right: 0;
}

.server:nth-child(1) {
	top: 3%;
}

.server:nth-child(2) {
	top: 32%;
}

.server:nth-child(3) {
	top: 61%;
}

.server__lights {
	background: var(--accent);
	border-radius: 50%;
	box-shadow: 12px 0 0 #ffb86b, 24px 0 0 rgba(255, 255, 255, 0.38);
	height: 6px;
	left: 12%;
	position: absolute;
	top: 50%;
	width: 6px;
}

.hero-art__label {
	bottom: 13%;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.15em;
	position: absolute;
	right: 12%;
	text-transform: uppercase;
}

.stats-strip {
	background: var(--dark);
	color: var(--paper);
}

.stats-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.stat {
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.35rem 2rem 1.35rem 0;
}

.stat + .stat {
	padding-left: 2rem;
}

.stat:last-child {
	border-right: 0;
}

.stat strong {
	display: block;
	font-size: 0.88rem;
	letter-spacing: -0.01em;
}

.stat span {
	color: rgba(255, 255, 255, 0.55);
	display: block;
	font-size: 0.78rem;
	margin-top: 0.16rem;
}

.section {
	padding-bottom: 6rem;
	padding-top: 6rem;
}

.section--soft {
	background: var(--soft);
}

.section-heading {
	align-items: end;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	margin-bottom: 2.25rem;
}

.section-heading h2 {
	font-family: var(--font-display);
	font-size: clamp(2.6rem, 5vw, 4.4rem);
	letter-spacing: -0.065em;
	line-height: 0.95;
	margin: 0;
	max-width: 620px;
}

.section-heading p {
	color: var(--muted);
	margin: 0;
	max-width: 360px;
}

.plans-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.store-placeholder {
	background: #fffceb;
	border: 1px solid #ece3aa;
	border-radius: 12px;
	color: #5b5425;
	font-size: 0.9rem;
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
}

.plan-card {
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	padding: 1.35rem;
	transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.plan-card:hover {
	border-color: rgba(16, 20, 26, 0.32);
	box-shadow: var(--shadow);
	transform: translateY(-5px);
}

.plan-card__visual {
	background: linear-gradient(145deg, #f4f8d9, #e4ecbb);
	border-radius: 12px;
	height: 124px;
	overflow: hidden;
	position: relative;
}

.plan-card__visual::before,
.plan-card__visual::after {
	border: 1px solid rgba(80, 99, 11, 0.22);
	border-radius: 50%;
	content: "";
	position: absolute;
}

.plan-card__visual::before {
	height: 180px;
	right: -45px;
	top: -66px;
	width: 180px;
}

.plan-card__visual::after {
	bottom: -72px;
	height: 145px;
	left: -30px;
	width: 145px;
}

.plan-card__rack {
	background: #1e2a31;
	border-radius: 5px;
	bottom: 18px;
	box-shadow: 7px 7px 0 rgba(39, 52, 23, 0.15);
	height: 52px;
	left: 24px;
	position: absolute;
	transform: perspective(100px) rotateX(5deg) rotateY(-13deg);
	width: 92px;
	z-index: 1;
}

.plan-card__rack::before,
.plan-card__rack::after {
	background: var(--accent);
	border-radius: 50%;
	content: "";
	height: 5px;
	position: absolute;
	right: 13px;
	top: 14px;
	width: 5px;
}

.plan-card__rack::after {
	background: #f49a58;
	right: 23px;
}

.plan-card__rack-line {
	background: rgba(255, 255, 255, 0.18);
	height: 1px;
	left: 12px;
	position: absolute;
	top: 29px;
	width: 45px;
}

.plan-card__label {
	color: rgba(46, 58, 16, 0.72);
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	position: absolute;
	right: 15px;
	text-transform: uppercase;
	top: 16px;
}

.plan-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
}

.plan-card h2,
.plan-card h3 {
	font-size: 1.25rem;
	letter-spacing: -0.04em;
	margin: 1.2rem 0 0.25rem;
}

.plan-card__description {
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.45;
	margin: 0;
	min-height: 2.5rem;
}

.plan-card__price {
	align-items: baseline;
	display: flex;
	gap: 0.3rem;
	margin: 1.25rem 0;
}

.plan-card__price .amount,
.plan-card__price .price {
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: -0.06em;
}

.plan-card__price .woocommerce-Price-amount {
	font-size: inherit;
	font-weight: inherit;
}

.plan-card__price .woocommerce-Price-currencySymbol {
	font-size: 0.88em;
	margin-right: 0.05em;
}

.plan-card__price small {
	color: var(--muted);
	font-size: 0.76rem;
}

.plan-card__specs {
	border-top: 1px solid var(--line);
	list-style: none;
	margin: 0;
	padding: 0.8rem 0 1.2rem;
}

.plan-card__specs li {
	align-items: center;
	display: flex;
	font-size: 0.82rem;
	gap: 0.5rem;
	padding: 0.21rem 0;
}

.plan-card__specs li::before {
	color: #668000;
	content: "✓";
	font-weight: 800;
}

.plan-card .button {
	margin-top: auto;
	width: 100%;
}

.story-grid {
	align-items: center;
	display: grid;
	gap: 5rem;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.story-grid h2 {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 4.4vw, 4.1rem);
	letter-spacing: -0.065em;
	line-height: 0.95;
	margin: 0;
}

.story-grid__copy {
	color: var(--muted);
	font-size: 1.02rem;
	margin-top: 1.3rem;
}

.feature-list {
	display: grid;
	gap: 1rem 2rem;
	grid-template-columns: repeat(2, 1fr);
	list-style: none;
	margin: 2rem 0 0;
	padding: 0;
}

.feature-list li {
	border-top: 1px solid var(--line);
	font-size: 0.9rem;
	font-weight: 700;
	padding: 0.8rem 0;
}

.feature-list span {
	color: var(--muted);
	display: block;
	font-size: 0.78rem;
	font-weight: 400;
	margin-top: 0.2rem;
}

.story-visual {
	background: var(--dark);
	border-radius: var(--radius);
	min-height: 360px;
	overflow: hidden;
	padding: 1.3rem;
	position: relative;
}

.story-visual::before {
	background: linear-gradient(145deg, rgba(216, 255, 67, 0.25), transparent 60%);
	content: "";
	inset: 0;
	position: absolute;
}

.terminal {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.8);
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.73rem;
	line-height: 1.7;
	margin: 1.9rem auto 0;
	max-width: 410px;
	padding: 1.35rem;
	position: relative;
	transform: rotate(-3deg);
	z-index: 1;
}

.terminal__dots {
	display: flex;
	gap: 0.32rem;
	margin-bottom: 1.2rem;
}

.terminal__dots span {
	background: var(--accent);
	border-radius: 50%;
	height: 6px;
	width: 6px;
}

.terminal__dots span:nth-child(2) {
	background: #ffb86b;
}

.terminal__dots span:nth-child(3) {
	background: rgba(255, 255, 255, 0.5);
}

.terminal .muted {
	color: rgba(255, 255, 255, 0.45);
}

.terminal .green {
	color: var(--accent);
}

.cta-band {
	background: var(--accent);
	padding: 4.7rem 0;
}

.cta-band__inner {
	align-items: center;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
}

.cta-band h2 {
	font-family: var(--font-display);
	font-size: clamp(2.2rem, 4vw, 3.9rem);
	letter-spacing: -0.06em;
	line-height: 0.95;
	margin: 0;
	max-width: 640px;
}

.cta-band p {
	color: #52620b;
	margin: 0.7rem 0 0;
}

.site-footer {
	background: var(--dark);
	color: var(--paper);
	padding: 4rem 0 1.2rem;
}

.footer-grid {
	display: grid;
	gap: 3rem;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	padding-bottom: 4rem;
}

.site-footer .brand {
	color: var(--paper);
}

.footer-intro {
	color: rgba(255, 255, 255, 0.56);
	font-size: 0.86rem;
	max-width: 260px;
}

.footer-contact {
	color: rgba(255, 255, 255, 0.72);
	display: block;
	font-size: 0.82rem;
	margin-top: 1.2rem;
	text-decoration: none;
}

.footer-contact:hover {
	color: var(--accent);
}

.footer-heading {
	color: rgba(255, 255, 255, 0.44);
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.footer-links,
.site-footer .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li,
.site-footer .menu li {
	margin-bottom: 0.58rem;
}

.footer-links a,
.site-footer .menu a {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.84rem;
	text-decoration: none;
}

.footer-links a:hover,
.site-footer .menu a:hover {
	color: var(--accent);
}

.footer-bottom {
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(255, 255, 255, 0.42);
	display: flex;
	font-size: 0.74rem;
	gap: 1rem;
	justify-content: space-between;
	padding-top: 1.2rem;
}

.content-shell {
	min-height: 52vh;
	padding-bottom: 5rem;
	padding-top: 4.5rem;
}

.content-shell__header {
	margin-bottom: 2.4rem;
	max-width: 780px;
}

.content-shell__header h1,
.entry-title {
	font-family: var(--font-display);
	font-size: clamp(2.8rem, 6vw, 5rem);
	letter-spacing: -0.07em;
	line-height: 0.95;
	margin: 0;
}

.entry-content {
	font-size: 1.03rem;
	max-width: 780px;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content h2,
.entry-content h3 {
	letter-spacing: -0.035em;
	line-height: 1.1;
	margin-top: 2.5rem;
}

.entry-content a {
	color: #596f0c;
}

.entry-content blockquote {
	border-left: 3px solid var(--accent);
	margin-left: 0;
	padding-left: 1.2rem;
}

.entry-meta {
	color: var(--muted);
	font-size: 0.8rem;
	margin: 0.75rem 0 2rem;
}

.woocommerce .site-main,
.woocommerce-page .site-main {
	min-height: 52vh;
}

.woocommerce .woocommerce-breadcrumb {
	color: var(--muted);
	font-size: 0.8rem;
	margin: 0 0 1.8rem;
}

.woocommerce .woocommerce-breadcrumb a {
	color: inherit;
}

.woocommerce .product_title,
.woocommerce-page .product_title {
	font-family: var(--font-display);
	letter-spacing: -0.06em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--ink);
	font-weight: 800;
}

.woocommerce div.product .woocommerce-product-details__short-description {
	color: var(--muted);
}

.woocommerce span.onsale {
	background: var(--accent);
	color: var(--accent-ink);
	font-size: 0.7rem;
	line-height: 3.2em;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background: var(--ink);
	border-radius: 999px;
	color: var(--paper);
	font-weight: 800;
	padding: 0.85rem 1.25rem;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background: #2a333b;
	color: var(--paper);
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--accent);
}

.woocommerce ul.products {
	margin-left: 0;
}

.woocommerce ul.products li.product {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: 1.5rem;
	padding: 1rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: 1.1rem;
	letter-spacing: -0.03em;
}

.woocommerce ul.products li.product .price {
	color: var(--ink);
	font-weight: 800;
}

.woocommerce table.shop_table {
	border-color: var(--line);
	border-radius: 12px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-selection {
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 0.75rem;
}

.not-found {
	padding: 4rem 0;
	text-align: center;
}

.vexarack-contact {
	max-width: 680px;
}

.contact-form {
	margin-top: 1.8rem;
}

.contact-form__trap {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.contact-form__row {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form p {
	margin: 0 0 1.15rem;
}

.contact-form label {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.contact-form input:not([type="hidden"]),
.contact-form textarea {
	background: var(--paper);
	border: 1px solid #b8c1c9;
	border-radius: 8px;
	color: var(--ink);
	display: block;
	padding: 0.7rem 0.8rem;
	width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--ink);
	outline: 2px solid #d8ff43;
	outline-offset: 2px;
}

.contact-form button {
	background: var(--ink);
	border-radius: 8px;
	color: var(--paper);
	font-weight: 700;
	padding: 0.75rem 1.2rem;
}

.contact-form button:hover {
	background: #2a333b;
}

.contact-notice {
	border-left: 3px solid var(--ink);
	padding: 0.8rem 1rem;
}

.contact-notice--success {
	background: #f3f8df;
}

.contact-notice--error {
	background: #fff1ef;
}

@media (max-width: 1020px) {
	.header-inner {
		gap: 1rem;
	}

	.primary-navigation ul {
		gap: 0.95rem;
	}

	.plans-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-grid {
		grid-template-columns: 1.3fr repeat(2, 1fr);
	}
}

@media (max-width: 760px) {
	body.admin-bar .site-header {
		top: 46px;
	}

	.container {
		padding-left: 1.1rem;
		padding-right: 1.1rem;
	}

	.header-inner {
		min-height: 68px;
	}

	.menu-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.primary-navigation {
		background: var(--paper);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 20px 30px rgba(20, 26, 32, 0.08);
		display: none;
		left: 0;
		padding: 1rem 1.1rem 1.2rem;
		position: absolute;
		right: 0;
		top: 68px;
	}

	.primary-navigation.is-open {
		display: block;
	}

	.primary-navigation ul {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.primary-navigation li + li {
		border-top: 1px solid var(--line);
	}

	.primary-navigation a {
		display: block;
		padding: 0.72rem 0;
	}

	.header-search {
		margin-left: 0.2rem;
	}

	.header-search input[type="search"] {
		max-width: 130px;
	}

	.hero-inner {
		gap: 2.8rem;
		grid-template-columns: 1fr;
		min-height: auto;
		padding-bottom: 3.8rem;
		padding-top: 4rem;
	}

	.hero h1 {
		font-size: clamp(3.2rem, 17vw, 5rem);
	}

	.hero-copy {
		font-size: 1rem;
	}

	.hero-art {
		height: min(78vw, 350px);
		justify-self: center;
		min-height: 270px;
		min-width: 270px;
		width: min(78vw, 350px);
	}

	.stats-strip__inner {
		grid-template-columns: 1fr;
	}

	.stat,
	.stat + .stat {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
		border-right: 0;
		padding: 1rem 0;
	}

	.stat:last-child {
		border-bottom: 0;
	}

	.section {
		padding-bottom: 4rem;
		padding-top: 4rem;
	}

	.section-heading,
	.cta-band__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.section-heading {
		gap: 1rem;
		margin-bottom: 1.7rem;
	}

	.plans-grid {
		grid-template-columns: 1fr;
	}

	.plan-card__visual {
		height: 140px;
	}

	.story-grid {
		gap: 2.4rem;
		grid-template-columns: 1fr;
	}

	.story-visual {
		min-height: 290px;
	}

	.feature-list {
		grid-template-columns: 1fr;
	}

	.cta-band {
		padding: 3.4rem 0;
	}

	.footer-grid {
		gap: 2.2rem 1.2rem;
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid > :first-child {
		grid-column: 1 / -1;
	}

	.footer-bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.3rem;
	}
}

@media (max-width: 420px) {
	.contact-form__row {
		grid-template-columns: 1fr;
	}

	.header-actions {
		gap: 0.3rem;
	}

	.header-search input[type="search"] {
		max-width: 106px;
	}

	.cart-link {
		font-size: 0;
	}

	.cart-count {
		font-size: 0.7rem;
	}

	.hero-actions .button {
		width: 100%;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.footer-grid > :first-child {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
