:root {
 --ink:#08090b;
 --ink-raised:#111318;
 --ink-lift:#1a1d24;
 --paper:#eef0ee;
 --paper-dim:#dfe2df;
 --brass:#c08a2e;
 --mark:#e0a63f;
 --slate:#828d94;
 --text-ink:#0d1012;
 --display:"Space Grotesk", system-ui, sans-serif;
 --text:"Inter", system-ui, sans-serif;
 --wrap:1160px;
 --radius:14px;
 --radius-sm:8px;
 --rule:1px solid rgba(238,240,238,.10);
 --rule-dark:1px solid rgba(13,16,18,.10);
}
*, *::before, *::after {
	box-sizing: border-box;
}
html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--text);
	font-size: 1.03rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img, svg {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
}
:focus-visible {
	outline: 2px solid var(--mark);
	outline-offset: 3px;
	border-radius: 2px;
}
.wrap {
	width: min(var(--wrap), 92vw);
	margin-inline: auto;
}
.band {
	padding: clamp(3.5rem, 8vw, 7.5rem) 0;
}
h1, h2, h3 {
	font-family: var(--display);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -.03em;
	margin: 0;
}
h1 {
	font-size: clamp(2.5rem, 6.4vw, 4.4rem);
}
h2 {
	font-size: clamp(1.85rem, 3.8vw, 2.65rem);
	margin-bottom: .65rem;
}
h3 {
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
	letter-spacing: -.02em;
}
p {
	margin: 0 0 1rem;
	max-width: 60ch;
	color: rgba(238,240,238,.72);
}
/* ---------- navigation ---------- */
.site-head {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(8,9,11,.86);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom: var(--rule);
}
.head-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 66px;
}
.mark {
	display: inline-flex;
	align-items: center;
	gap: .65rem;
	font-family: var(--display);
	font-weight: 600;
	font-size: 1.05rem;
	letter-spacing: -.02em;
	text-decoration: none;
	color: var(--paper);
}
.mark svg {
	width: 24px;
	height: 24px;
	flex: none;
}
.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--paper);
	border-radius: var(--radius-sm);
	padding: .55rem .6rem;
	cursor: pointer;
	font-family: var(--display);
	font-size: .9rem;
}
.nav-toggle span {
	display: block;
	width: 18px;
	height: 1.5px;
	background: var(--paper);
	margin: 4px 0;
	transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-5.5px) rotate(-45deg);
}
.nav ul {
	display: flex;
	gap: 2.1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav a {
	font-family: var(--display);
	font-weight: 500;
	font-size: .92rem;
	color: rgba(238,240,238,.78);
	text-decoration: none;
	padding: .35rem 0;
	display: inline-block;
	position: relative;
	transition: color .15s ease;
}
.nav a:hover, .nav a:focus-visible, .nav a[aria-current="page"] {
	color: var(--paper);
}
.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 1.5px;
	background: var(--mark);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .2s cubic-bezier(.4,0,.2,1);
}
.nav a:hover::after, .nav a:focus-visible::after, .nav a[aria-current="page"]::after {
	transform: scaleX(1);
}
/* ---------- hero ---------- */
.hero {
	position: relative;
	padding-top: clamp(3.5rem, 8vw, 6rem);
	padding-bottom: 52px;
	background:
		radial-gradient(ellipse 900px 500px at 78% 0%, rgba(192,138,46,.16), transparent 60%),
		linear-gradient(180deg, #0c0f13 0%, var(--ink) 78%);
	overflow: clip;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(238,240,238,.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(238,240,238,.05) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 72%);
	mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 72%);
	pointer-events: none;
}
.hero .wrap {
	position: relative;
}
.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}
.hero p.lede {
	font-size: 1.14rem;
	color: rgba(238,240,238,.68);
	margin-top: 1.5rem;
	max-width: 54ch;
}
.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: .9rem;
	margin-top: 2.1rem;
}
.btn {
	font-family: var(--display);
	font-weight: 600;
	font-size: .93rem;
	letter-spacing: -.005em;
	text-decoration: none;
	padding: .85rem 1.7rem;
	border-radius: 999px;
	display: inline-block;
	transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn-solid {
	background: var(--mark);
	color: var(--ink);
	box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 8px 20px -10px rgba(224,166,63,.65);
}
.btn-solid:hover {
	transform: translateY(-1px);
	box-shadow: 0 1px 0 rgba(255,255,255,.3) inset, 0 12px 24px -10px rgba(224,166,63,.75);
}
.btn-line {
	border: 1px solid rgba(238,240,238,.22);
}
.btn-line:hover {
	border-color: rgba(238,240,238,.42);
	transform: translateY(-1px);
}
.driver {
	width: 100%;
	position: relative;
}
.driver img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.awards-badge {
	position: absolute;
	right: 0;
	bottom: 24px;
	width: clamp(140px, 90%, 240px);
	height: auto;
	z-index: 2;
	pointer-events: none;
	filter: drop-shadow(0 10px 22px rgba(0,0,0,.4));
}
.curve {
	margin-top: clamp(2.5rem, 5vw, 4rem);
	border-top: var(--rule);
	padding-top: 1.1rem;
}
.curve figcaption {
	font-size: .9rem;
	color: var(--slate);
	margin-top: .5rem;
}
.curve svg {
	width: 100%;
	height: clamp(70px, 10vw, 110px);
}
.curve path.trace {
	fill: none;
	stroke: var(--mark);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-dasharray: 1400;
	stroke-dashoffset: 1400;
	animation: draw 1.9s .35s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes draw {
	to { stroke-dashoffset: 0; }
}
/* ---------- products ---------- */
#products {
	background: var(--paper);
	color: var(--text-ink);
}
#products h2 {
	color: var(--text-ink);
}
.section-intro {
	max-width: 54ch;
	margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}
#products .section-intro p {
	color: #4a5459;
}
.product {
	display: grid;
	grid-template-columns: 150px 1.25fr 1fr;
	gap: clamp(1.5rem, 3vw, 3rem);
	align-items: start;
	padding: clamp(1.75rem, 3.4vw, 2.5rem);
	margin-bottom: 1.1rem;
	border: 1px solid rgba(13,16,18,.09);
	border-radius: var(--radius);
	background: #f6f7f6;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.product:hover {
	border-color: rgba(192,138,46,.45);
	box-shadow: 0 14px 30px -20px rgba(13,16,18,.35);
}
.product:last-of-type {
	margin-bottom: 0;
}
.cabinet {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 200px;
	position: relative;
}
.cabinet::before {
	content: "";
	position: absolute;
	inset: 8% 4% auto 4%;
	height: 84%;
	background: radial-gradient(closest-side, rgba(13,16,18,.06), transparent 72%);
	border-radius: 50%;
	z-index: 0;
}
.cabinet svg, .cabinet img {
	position: relative;
	z-index: 1;
}
.cabinet svg {
	height: 100%;
	width: auto;
}
.cabinet img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}
.product-body h3 {
	color: var(--text-ink);
}
.product-body .price {
	font-family: var(--display);
	font-weight: 600;
	font-size: .98rem;
	color: var(--brass);
	margin: .5rem 0 1rem;
}
.product-body p {
	color: #4a5459;
	margin-bottom: 0;
}
.specs {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: .5rem 1.25rem;
	font-size: .93rem;
}
.specs dt {
	color: #6b757b;
	font-size: .82rem;
	letter-spacing: .01em;
}
.specs dd {
	margin: 0;
	color: var(--text-ink);
	font-weight: 500;
	font-variant-numeric: tabular-nums;
}
/* ---------- reviews ---------- */
.reviews-label {
	font-family: var(--display);
	font-weight: 600;
	font-size: .78rem;
	letter-spacing: .01em;
	color: var(--slate);
	margin: 1.2rem 0 .6rem;
}
.reviews {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .6rem;
	max-width: 60ch;
}
.review {
	display: flex;
	align-items: center;
	gap: .65rem;
}
.review-icon {
	width: 17px;
	height: 17px;
	flex: none;
}
.award-icon {
	width: 15px;
	height: 15px;
	flex: none;
}
.review a {
	font-family: var(--display);
	font-weight: 500;
	font-size: .92rem;
	text-decoration: none;
	border-bottom: 1px solid rgba(192,138,46,.4);
	color: var(--text-ink);
	transition: border-color .15s ease;
}
.review a:hover {
	border-color: var(--brass);
}
.review .review-source {
	color: #6b757b;
	font-size: .84rem;
	margin-left: .15rem;
}
/* ---------- support ---------- */
#support {
	background: var(--ink);
	position: relative;
}
#support::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 1px;
	background: var(--rule);
}
.support-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-top: clamp(2rem, 4vw, 3rem);
	background: rgba(238,240,238,.08);
	border: 1px solid rgba(238,240,238,.08);
	border-radius: var(--radius);
	overflow: hidden;
}
.support-item {
	background: var(--ink-raised);
	padding: clamp(1.5rem, 2.6vw, 2rem);
	border-top: none;
	transition: background .18s ease;
}
.support-item:hover {
	background: var(--ink-lift);
}
.support-item h3 {
	font-size: 1.15rem;
	margin-bottom: .55rem;
}
.support-item p {
	color: rgba(238,240,238,.62);
	font-size: .98rem;
	margin-bottom: .8rem;
}
.support-item a {
	color: var(--mark);
	text-decoration: none;
	border-bottom: 1px solid rgba(224,166,63,.4);
	font-weight: 500;
}
.support-item a:hover {
	border-color: var(--mark);
}
/* ---------- contact ---------- */
#contact {
	background: var(--ink-lift);
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: clamp(2rem, 5vw, 4rem);
}
.contact-detail {
	margin: 1.75rem 0 0;
}
.contact-detail div {
	padding: 1rem 0;
	border-top: var(--rule);
}
.contact-detail dt {
	font-family: var(--display);
	font-size: .84rem;
	color: var(--slate);
	margin-bottom: .2rem;
}
.contact-detail dd {
	margin: 0;
}
.contact-detail a {
	text-decoration: none;
	border-bottom: 1px solid rgba(224,166,63,.45);
	transition: border-color .15s ease;
}
.contact-detail a:hover {
	border-color: var(--mark);
}
.contactImg {
	margin-bottom: 24px;
	width: 56px;
	height: 56px;
}
.field {
	margin-bottom: 1.2rem;
}
.field label {
	display: block;
	font-family: var(--display);
	font-size: .86rem;
	margin-bottom: .4rem;
	color: rgba(238,240,238,.72);
}
.field input, .field textarea {
	width: 100%;
	font-family: var(--text);
	font-size: 1rem;
	color: var(--paper);
	background: rgba(238,240,238,.05);
	border: 1px solid rgba(238,240,238,.16);
	border-radius: var(--radius-sm);
	padding: .75rem .85rem;
	transition: border-color .15s ease, background .15s ease;
}
.field textarea {
	min-height: 130px;
	resize: vertical;
}
.field input:focus, .field textarea:focus {
	border-color: var(--mark);
	background: rgba(238,240,238,.08);
	outline: none;
}
button.btn-solid {
	border: none;
	cursor: pointer;
	font-size: .95rem;
}
/* ---------- two-column content ---------- */
.content-section {
	background: var(--paper);
	color: var(--text-ink);
}
.content-section h2 {
	color: var(--text-ink);
}
.content-section .section-intro p {
	color: #4a5459;
}
.cols-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}
.col {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.col .col-text h3 {
	color: var(--text-ink);
	margin-bottom: .6rem;
}
.col .col-text p {
	color: #4a5459;
}
.col .col-text p:last-child {
	margin-bottom: 0;
}
.content-section .col p {
	color: #4a5459;
}
.col .col-list h3 {
	color: var(--text-ink);
	margin-bottom: .8rem;
}
.col ul.col-list-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: .7rem;
	max-width: 60ch;
}
.col ul.col-list-items li {
	position: relative;
	padding-left: 1.3rem;
	color: #4a5459;
}
.col ul.col-list-items li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .6em;
	width: 6px;
	height: 6px;
	background: var(--brass);
	border-radius: 50%;
}
.col .col-image img {
	width: 100%;
	height: auto;
	border-radius: var(--radius);
	display: block;
}
.col .col-image figcaption {
	font-size: .85rem;
	color: var(--slate);
	margin-top: .6rem;
}
.cols-grid + .cols-grid {
	margin-top: clamp(3rem, 6vw, 5rem);
}
.region {
	padding: clamp(1.75rem, 3.4vw, 2.5rem);
	margin-bottom: 1.1rem;
	border: 1px solid rgba(13,16,18,.09);
	border-radius: var(--radius);
	background: #f6f7f6;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.article-image {
	margin-bottom: 24px;
	border-radius: var(--radius);
}

@media (max-width: 900px) {
	.cols-grid { grid-template-columns: 1fr; }
}
/* ---------- responsive ---------- */
@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr; }
	.driver { width: 100%; order: -1; }
	.awards-badge { width: clamp(110px, 34%, 160px); }
	.product { grid-template-columns: 110px 1fr; }
	.cabinet { height: 150px; }
	.specs { grid-column: 1 / -1; }
	.support-grid { grid-template-columns: 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
	section[id] { scroll-margin-top: 68px; }
	.nav-toggle { display: block; }
	.nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		background: rgba(8,9,11,.98);
		backdrop-filter: blur(14px);
		border-bottom: var(--rule);
		display: none;
	}
	.nav.open { display: block; }
	.nav ul { flex-direction: column; gap: 0; padding: .5rem 4vw 1.25rem; }
	.nav li { border-top: var(--rule); }
	.nav a { display: block; padding: .9rem 0; font-size: 1.05rem; }
	.nav a::after { display: none; }
	.product { grid-template-columns: 1fr; padding: 1.4rem; }
	.cabinet { justify-content: flex-start; height: 120px; }
	.btn { flex: 1 1 auto; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.curve path.trace { animation: none; stroke-dashoffset: 0; }
	* { transition-duration: .01ms !important; }
}
