/* ──────────────────────────────────────────────────────────────────
 * Site chrome
 * Compliance banner, nav, mega menu, footer.
 * Layout-level only — components live in components.css.
 * ────────────────────────────────────────────────────────────────── */

/* ── Compliance banner ─────────────────────────────────────────── */
.compliance {
	background: var(--ink);
	color: #FFF;
	font-family: var(--sans);
	font-weight: 500;
	font-size: 11px;
	letter-spacing: 0.1em;
	padding: 10px var(--gutter);
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
	white-space: nowrap;
	gap: 24px;
}
.compliance__dim { color: #8890A0; font-weight: 500; }

/* ── Primary navigation ────────────────────────────────────────── */
.navWrap { position: relative; }

.nav {
	padding: 14px var(--gutter);
	border-bottom: 1px solid var(--line);
	display: grid;
	grid-template-columns: 260px 1fr auto;
	align-items: center;
	gap: 40px;
	background: var(--bg);
	position: sticky;
	top: 0;
	z-index: 10;
}

.nav__brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav__brand img.mark { height: 44px; width: auto; }
.nav__brand img.wm   { height: 22px; width: auto; }

.nav__links {
	display: flex;
	gap: 32px;
	font-size: 14px;
	align-items: center;
}
.nav__links a,
.nav__links button.navbtn {
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--ink);
	font-size: 14px;
	font-family: inherit;
}
.nav__links .navbtn[aria-expanded="true"] .caret { transform: rotate(180deg); }
.nav__links a .caret,
.navbtn .caret {
	font-size: 10px;
	color: var(--ink2);
	transition: transform 0.15s;
	display: inline-block;
}

.nav__right {
	display: flex;
	gap: 16px;
	align-items: center;
	font-size: 13px;
}
.nav__right .acct { color: var(--ink2); cursor: pointer; }
.nav__cart {
	background: var(--ink);
	color: #FFF;
	padding: 10px 18px;
	font-size: 13px;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Mobile-nav trigger button (hidden on desktop, displayed via mobile-nav.js styles + media query) */
.mnav__trigger {
	display: none;
}

/* ── Mega menu ─────────────────────────────────────────────────── */
.mega {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #FFF;
	border-bottom: 1px solid var(--line);
	box-shadow: 0 20px 40px -20px rgba(0,0,0,0.15);
	z-index: 50;
	display: none;
}
.mega[data-open="true"] { display: block; }
.mega__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 32px var(--gutter);
	display: grid;
	grid-template-columns: repeat(5, 1fr) 1.2fr;
	gap: 32px;
}

.mega__col .h {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.15em;
	color: var(--ink2);
	text-transform: uppercase;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
}
.mega__col .h .n { color: var(--accent); margin-left: 4px; }

.mega__col .item {
	font-size: 13px;
	padding: 6px 0;
	cursor: pointer;
	color: var(--ink);
	display: flex;
	justify-content: space-between;
	transition: color 0.12s;
	text-decoration: none;
}
.mega__col .item:hover { color: var(--accent); }
.mega__col .item > span:first-child { white-space: nowrap; }
.mega__col .item .price {
	color: var(--ink2);
	font-family: var(--mono);
	font-size: 11px;
	white-space: nowrap;
	padding-left: 8px;
}

.mega__full {
	background: var(--ink);
	color: #FFF;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
	text-decoration: none;
}
.mega__full .k {
	font-family: var(--mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	color: rgba(255,255,255,0.6);
	text-transform: uppercase;
}
.mega__full .big {
	font-size: 42px;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1;
	color: #FFF;
}
.mega__full .sub {
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin-top: 6px;
}
.mega__full .link {
	font-size: 13px;
	font-weight: 500;
	color: #FFF;
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
	background: var(--ink);
	color: #8C92A0;
	padding: 72px var(--gutter) 28px;
}
.footer__grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 56px;
	padding-bottom: 40px;
	border-bottom: 1px solid #1A1D25;
	max-width: var(--container);
	margin-left: auto;
	margin-right: auto;
}
.footer__brand {
	display: flex;
	align-items: center;
	gap: 12px;
}
.footer__brand img.mark { height: 44px; width: auto; }
.footer__brand img.wm   { height: 26px; width: auto; }
.footer__desc {
	font-size: 14px;
	line-height: 1.6;
	margin-top: 20px;
	max-width: 340px;
}

.footer__col h5 {
	font-size: 12px;
	letter-spacing: 0.15em;
	color: #FFF;
	text-transform: uppercase;
	margin: 0 0 18px;
	font-weight: 600;
}
.footer__col div {
	font-size: 14px;
	margin-bottom: 10px;
}
.footer__col a {
	color: inherit;
	transition: color 0.12s;
}
.footer__col a:hover { color: #FFF; }

.footer__bottom {
	display: flex;
	justify-content: space-between;
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	max-width: var(--container);
	margin: 0 auto;
}

/* ── Chrome mobile (<=860px) ──────────────────────────────────── */
@media (max-width: 860px) {
	.compliance {
		font-size: 10px;
		padding: 10px 20px;
		gap: 12px;
		overflow-x: auto;
		white-space: nowrap;
	}
	.compliance__dim { display: none; }

	.nav {
		grid-template-columns: 1fr auto;
		padding: 12px 20px;
		gap: 16px;
	}
	.nav__links,
	.nav__right { display: none; }
	.nav__brand img.mark { height: 36px; }
	.nav__brand img.wm   { height: 18px; }

	.footer { padding: 56px 20px 28px; }
	.footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.footer__bottom { flex-direction: column; gap: 8px; }
}
