/* ============================================================
   Venture Mentor Hub — Chrome (header, footer, language switcher,
   shared utilities, buttons, eyebrows, reveal animations).
   Loaded on EVERY view (Section 15 Pattern 1).
   All selectors scoped under .vmh-chrome to avoid leaking onto
   parent-rendered fallback views.
   ============================================================ */

/* -------- Reset/baseline (chrome-scoped) -------- */
.vmh-chrome *,
.vmh-chrome *::before,
.vmh-chrome *::after { box-sizing: border-box; }

.vmh-chrome { -webkit-text-size-adjust: 100%; }

/* Stronger reset only on owned views — keeps parent fallbacks intact */
.vmh-page {
	margin: 0;
	font-family: var(--vmh-f-body);
	font-size: var(--vmh-t-body);
	line-height: 1.6;
	color: var(--vmh-c-text);
	background: var(--vmh-c-bg);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

.vmh-page img,
.vmh-chrome .vmh-nav img,
.vmh-chrome .vmh-foot img {
	max-width: 100%;
	height: auto;
	display: block;
}

.vmh-chrome .vmh-nav a,
.vmh-chrome .vmh-foot a,
.vmh-chrome .vmh-drawer a {
	text-decoration: none;
}

/* Prose/content links only — never buttons or card CTAs in <main> */
.vmh-page #main a:not([class*="vmh-btn"]) {
	color: inherit;
	text-decoration: none;
}

.vmh-chrome .vmh-nav button,
.vmh-chrome .vmh-drawer button,
.vmh-chrome .vmh-burger {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
	padding: 0;
}

.vmh-chrome .vmh-nav ul,
.vmh-chrome .vmh-nav ol,
.vmh-chrome .vmh-foot ul,
.vmh-chrome .vmh-foot ol,
.vmh-chrome .vmh-drawer ul,
.vmh-chrome .vmh-drawer ol,
.vmh-page ul,
.vmh-page ol { padding: 0; margin: 0; list-style: none; }

.vmh-chrome :focus-visible,
.vmh-page :focus-visible {
	outline: 3px solid var(--vmh-c-slate);
	outline-offset: 3px;
	border-radius: 0;
}

.vmh-page h1,
.vmh-page h2,
.vmh-page h3,
.vmh-page h4 {
	font-family: var(--vmh-f-display);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.025em;
	margin: 0;
	color: var(--vmh-c-text);
}
.vmh-page h1 { font-size: var(--vmh-t-h1); letter-spacing: -0.03em; }
.vmh-page h2 { font-size: var(--vmh-t-h2); }
.vmh-page h3 { font-size: var(--vmh-t-h3); line-height: 1.15; }
.vmh-page h4 { font-size: var(--vmh-t-h4); line-height: 1.25; }
.vmh-page em.vmh-acc,
.vmh-page .vmh-acc { font-style: italic; font-weight: 500; color: var(--vmh-c-crimson); }

/* Hero-style "highlighter" — Italic + paper-coloured marker block behind text.
   Used for the editorial "Build a business that *actually works.*" pattern. */
.vmh-page .vmh-hl {
	display: inline-block;
	position: relative;
	font-style: italic;
	font-weight: 500;
	color: var(--vmh-c-anchor);
	padding: 0 4px;
	z-index: 0;
	white-space: nowrap;
}
.vmh-page .vmh-hl::before {
	content: "";
	position: absolute;
	inset: 18% -2px 18% -2px;
	z-index: -1;
	background: var(--vmh-c-paper);
}

.vmh-page p { margin: 0 0 1em; }

@media (prefers-reduced-motion: reduce) {
	.vmh-chrome *,
	.vmh-chrome *::before,
	.vmh-chrome *::after,
	.vmh-page *,
	.vmh-page *::before,
	.vmh-page *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* -------- Container / sections -------- */
.vmh-chrome .vmh-container,
.vmh-page   .vmh-container {
	width: 100%;
	max-width: var(--vmh-container);
	margin: 0 auto;
	padding-inline: var(--vmh-gutter);
}

.vmh-page .vmh-section { padding-block: var(--vmh-section-y); }
.vmh-page .vmh-section--alt  { background: var(--vmh-c-bg-alt); }
.vmh-page .vmh-section--dark { background: var(--vmh-c-anchor); color: rgba(255, 255, 255, .94); }
.vmh-page .vmh-section--dark h1,
.vmh-page .vmh-section--dark h2,
.vmh-page .vmh-section--dark h3,
.vmh-page .vmh-section--dark h4 { color: #fff; }

/* -------- Skip link / sr-only -------- */
.vmh-skip {
	position: absolute; left: -9999px; top: auto;
	width: 1px; height: 1px; overflow: hidden;
	background: var(--vmh-c-anchor);
	color: #fff;
	padding: var(--vmh-s-3) var(--vmh-s-4);
	z-index: 9999;
	font-family: var(--vmh-f-body);
	font-weight: 500;
}
.vmh-skip:focus {
	left: var(--vmh-s-4); top: var(--vmh-s-4);
	width: auto; height: auto;
}
.vmh-sr-only {
	position: absolute !important;
	width: 1px !important; height: 1px !important;
	padding: 0 !important; margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0,0,0,0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* -------- Eyebrows -------- */
.vmh-eyebrow {
	font-family: var(--vmh-f-mono);
	font-size: var(--vmh-t-eyebrow);
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	gap: var(--vmh-s-2);
	color: var(--vmh-c-text-soft);
}
.vmh-eyebrow--crimson { background: var(--vmh-c-crimson); color: #fff; padding: 5px 10px; }
.vmh-eyebrow--slate   { color: var(--vmh-c-slate); }
.vmh-eyebrow--slate::before { content: ""; width: 24px; height: 1px; background: var(--vmh-c-slate); }
.vmh-eyebrow--paper   { color: var(--vmh-c-paper); }
.vmh-eyebrow--paper::before { content: ""; width: 24px; height: 1px; background: var(--vmh-c-paper); }

/* -------- Buttons -------- */
.vmh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--vmh-s-2);
	padding: 14px 22px;
	border-radius: 0;
	font-family: var(--vmh-f-body);
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: -0.005em;
	transition: background 200ms var(--vmh-ease),
	            color 200ms var(--vmh-ease),
	            border-color 200ms var(--vmh-ease),
	            transform 200ms var(--vmh-ease),
	            box-shadow 200ms var(--vmh-ease);
	white-space: nowrap;
	min-height: 46px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
}
.vmh-btn--primary { background: var(--vmh-c-crimson); color: #fff; border-color: var(--vmh-c-crimson); }
.vmh-btn--primary:hover { background: #053F5F; color: #fff; border-color: #053F5F; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(7, 89, 133, .25); }
.vmh-btn--ghost   { background: transparent; color: var(--vmh-c-text); border-color: var(--vmh-c-border); }
.vmh-btn--ghost:hover  { border-color: var(--vmh-c-anchor); background: var(--vmh-c-surface); }
.vmh-btn--paper   { background: var(--vmh-c-paper); color: var(--vmh-c-anchor); border-color: var(--vmh-c-paper); }
.vmh-btn--paper:hover  { background: #A8BCD4; transform: translateY(-1px); }
.vmh-btn--sm      { padding: 10px 16px; font-size: 0.875rem; min-height: 38px; }

/* -------- Tags -------- */
.vmh-tag {
	display: inline-flex;
	align-items: center;
	font-family: var(--vmh-f-mono);
	font-size: 0.65rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 0;
	background: var(--vmh-c-slate-soft);
	color: var(--vmh-c-slate);
}
.vmh-tag[data-cat="mindset"] { background: rgba(192, 38, 211, .08); color: #A21CAF; }
.vmh-tag[data-cat="freedom"] { background: rgba(4, 120, 87, .08);  color: #047857; }
.vmh-tag[data-cat="ai"]      { background: rgba(109, 40, 217, .08); color: #6D28D9; }
.vmh-tag[data-cat="side"]    { background: rgba(14, 116, 144, .08); color: #0E7490; }
.vmh-tag[data-cat="scale"]   { background: var(--vmh-c-warn-soft); color: var(--vmh-c-warn); }

/* -------- Reveal animation -------- */
.vmh-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 700ms var(--vmh-ease), transform 700ms var(--vmh-ease);
}
.vmh-reveal.is-visible { opacity: 1; transform: none; }

/* -------- Section heading bar -------- */
.vmh-section-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: var(--vmh-s-6);
	margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
	padding-bottom: var(--vmh-s-5);
	border-bottom: 1px solid var(--vmh-c-border);
}
.vmh-section--dark .vmh-section-head { border-bottom-color: rgba(255,255,255,.1); }
.vmh-section-head__title { max-width: 760px; }
.vmh-section-head__title h2 { margin-top: var(--vmh-s-3); }
.vmh-section-head__link {
	font-family: var(--vmh-f-body);
	font-size: 0.875rem; font-weight: 500;
	color: var(--vmh-c-text-soft);
	display: inline-flex; align-items: center;
	gap: var(--vmh-s-2);
	padding-bottom: 4px;
	border-bottom: 1px solid var(--vmh-c-border);
	transition: color 200ms var(--vmh-ease),
	            border-color 200ms var(--vmh-ease),
	            gap 200ms var(--vmh-ease);
	white-space: nowrap;
}
.vmh-section-head__link:hover { color: var(--vmh-c-slate); border-color: var(--vmh-c-slate); gap: var(--vmh-s-3); }
.vmh-section--dark .vmh-section-head__link { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.vmh-section--dark .vmh-section-head__link:hover { color: var(--vmh-c-paper); border-color: var(--vmh-c-paper); }

/* ========================================================== */
/* NAV (sticky, dark, blur, scroll-aware — per mockup)         */
/* ========================================================== */
.vmh-nav {
	position: sticky; top: 0; z-index: 100;
	background: rgba(11, 31, 56, .92);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 300ms var(--vmh-ease);
	container-type: inline-size;
	container-name: vmh-nav;
}
.vmh-nav.is-scrolled { border-bottom-color: rgba(255,255,255,.1); }
.vmh-nav__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--vmh-s-6);
	padding-block: var(--vmh-s-4);
}

/* Logo — star glyph + cyan pipe + serif wordmark */
.vmh-nav__logo {
	display: inline-flex;
	align-items: stretch;
	padding: 8px 0;
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity 200ms var(--vmh-ease);
}
.vmh-nav__logo:hover { opacity: 0.85; }
.vmh-nav__logo-star {
	display: grid; place-items: center;
	padding-right: 10px;
	flex-shrink: 0;
	color: #FFFFFF;
}
.vmh-nav__logo-star svg { width: 24px; height: 24px; display: block; }
.vmh-nav__logo-pipe {
	width: 2px;
	background: var(--vmh-c-sage);
	opacity: 0.8;
	margin-block: 4px;
	flex-shrink: 0;
}
.vmh-nav__logo-word {
	display: flex; align-items: center;
	padding-left: 10px;
	font-family: var(--vmh-f-serif);
	font-weight: 400;
	font-size: 1.125rem;
	letter-spacing: -0.005em;
	line-height: 1;
	color: #FFFFFF;
	white-space: nowrap;
}
.vmh-nav__logo-word em {
	font-style: italic;
	color: var(--vmh-c-sage);
	padding-right: 0.2em;
}
.vmh-nav__logo-img {
	display: block;
	height: 2rem;
	width: auto;
	max-width: 12rem;
	object-fit: contain;
}

.vmh-nav__links {
	display: flex; align-items: center;
	gap: var(--vmh-s-7);
}
.vmh-nav__links a {
	font-family: var(--vmh-f-body);
	font-weight: 500;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.7);
	transition: color 200ms var(--vmh-ease);
}
.vmh-nav__links a:hover { color: #FFFFFF; }

.vmh-nav__actions {
	display: flex; align-items: center; gap: var(--vmh-s-3);
}
.vmh-nav__actions .vmh-btn--ghost {
	color: #FFFFFF;
	border-color: rgba(255,255,255,0.25);
	background: transparent;
}
.vmh-nav__actions .vmh-btn--ghost:hover {
	border-color: rgba(255,255,255,0.6);
	background: rgba(255,255,255,0.05);
}
.vmh-nav__actions .vmh-btn--primary {
	background: #37C2D6;
	color: #0B1F38;
	border-color: #37C2D6;
}
.vmh-nav__actions .vmh-btn--primary:hover {
	background: #1A8FA0;
	color: #fff;
	border-color: #1A8FA0;
	transform: translateY(-1px);
	box-shadow: none;
}

/* Burger hidden on desktop — container query reveals it < 64rem */
.vmh-burger { display: none; }
@container vmh-nav (max-width: 64rem) {
	.vmh-nav__links { display: none; }
	.vmh-nav__btn-magazine { display: none; }
	.vmh-nav__btn-iq { display: none; }
	.vmh-lang { display: none; }
	.vmh-burger { display: inline-flex; }
}
/* Fallback for browsers without container queries */
@supports not (container-type: inline-size) {
	@media (max-width: 64rem) {
		.vmh-nav__links,
		.vmh-nav__btn-magazine,
		.vmh-nav__btn-iq,
		.vmh-nav .vmh-lang { display: none; }
		.vmh-burger { display: inline-flex; }
	}
}

/* ========================================================== */
/* BURGER (white-on-dark, drawer trigger)                      */
/* ========================================================== */
.vmh-burger {
	position: relative;
	width: 44px; height: 44px;
	align-items: center; justify-content: center;
	flex-direction: column;
	gap: 5px;
	background: transparent;
	border: 1px solid rgba(255,255,255,0.25);
	cursor: pointer;
	padding: 0;
	transition: border-color 200ms var(--vmh-ease), background 200ms var(--vmh-ease);
	flex-shrink: 0;
}
.vmh-burger:hover { border-color: rgba(255,255,255,0.6); }
.vmh-burger__line {
	display: block;
	width: 18px; height: 1.5px;
	background: #FFFFFF;
	transition: transform 350ms var(--vmh-ease), opacity 200ms var(--vmh-ease), background 200ms var(--vmh-ease);
	transform-origin: center;
}
/* "Open" state morphs the lines into an X */
.vmh-burger[aria-expanded="true"] {
	border-color: #FFFFFF;
	background: #FFFFFF;
}
.vmh-burger[aria-expanded="true"] .vmh-burger__line { background: var(--vmh-c-anchor); }
.vmh-burger[aria-expanded="true"] .vmh-burger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.vmh-burger[aria-expanded="true"] .vmh-burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.vmh-burger[aria-expanded="true"] .vmh-burger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========================================================== */
/* LANGUAGE SWITCHER (dark toggle in nav, light dropdown)      */
/* ========================================================== */
.vmh-lang { position: relative; }
.vmh-chrome .vmh-lang__toggle {
	display: flex; align-items: center; gap: var(--vmh-s-2);
	padding: 8px 12px;
	border: 1px solid rgba(255,255,255,0.25);
	font-family: var(--vmh-f-mono);
	font-size: 0.75rem; font-weight: 500;
	background: transparent;
	color: #FFFFFF;
	transition: border-color 200ms var(--vmh-ease), background 200ms var(--vmh-ease);
}
.vmh-chrome .vmh-lang__toggle:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
.vmh-chrome .vmh-lang__toggle .vmh-lang__code {
	text-transform: uppercase;
	color: #FFFFFF;
}
.vmh-chrome .vmh-lang__toggle .vmh-lang__chevron {
	width: 12px; height: 12px;
	transition: transform 200ms var(--vmh-ease);
	color: rgba(255,255,255,0.7);
}
.vmh-lang[aria-expanded="true"] .vmh-lang__chevron { transform: rotate(180deg); }
.vmh-lang__menu {
	position: absolute;
	top: calc(100% + 8px); right: 0;
	background: var(--vmh-c-surface);
	border: 1px solid var(--vmh-c-border);
	box-shadow: var(--vmh-sh-lg);
	min-width: 220px;
	padding: var(--vmh-s-2);
	opacity: 0; visibility: hidden;
	transform: translateY(-8px);
	transition: opacity 200ms var(--vmh-ease),
	            transform 200ms var(--vmh-ease),
	            visibility 200ms var(--vmh-ease);
}
.vmh-lang[aria-expanded="true"] .vmh-lang__menu {
	opacity: 1; visibility: visible; transform: none;
}
.vmh-lang__option {
	display: flex; align-items: center; gap: var(--vmh-s-3);
	padding: 10px 12px;
	width: 100%;
	font-family: var(--vmh-f-body);
	font-size: 0.875rem; font-weight: 500;
	color: var(--vmh-c-text-soft);
	text-align: left;
	transition: background 150ms ease, color 150ms ease;
}
.vmh-lang__option:hover { background: var(--vmh-c-bg-alt); color: var(--vmh-c-text); }
.vmh-lang__option[aria-current="true"] { background: var(--vmh-c-slate-soft); color: var(--vmh-c-slate); font-weight: 600; }
.vmh-lang__option-name { flex: 1; }
.vmh-lang__option-code { font-family: var(--vmh-f-mono); font-size: 0.6875rem; color: var(--vmh-c-text-mute); }

/* -------- Language flags (emoji from Jenva lang registry) -------- */
.vmh-lang__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25rem;
	flex-shrink: 0;
	font-size: 1rem;
	line-height: 1;
}
.vmh-foot__lang-btn .vmh-lang__flag { font-size: 0.9375rem; }
.vmh-drawer__lang-btn .vmh-lang__flag { font-size: 0.9375rem; }

/* ========================================================== */
/* FOOTER                                                      */
/* ========================================================== */
.vmh-foot {
	background: var(--vmh-c-anchor);
	color: rgba(255,255,255,.7);
	padding-block: clamp(3rem, 6vw, 5rem) var(--vmh-s-6);
}
.vmh-foot a { color: rgba(255,255,255,.7); transition: color 200ms var(--vmh-ease); }
.vmh-foot a:hover { color: #fff; }

.vmh-foot__lang-prompt {
	text-align: center;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.vmh-foot__lang-label {
	font-family: var(--vmh-f-mono);
	font-size: var(--vmh-t-eyebrow);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vmh-c-paper);
	display: block;
	margin-bottom: var(--vmh-s-4);
}
.vmh-foot__lang-question {
	font-family: var(--vmh-f-display);
	font-style: italic;
	font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.625rem);
	font-weight: 500;
	color: rgba(255,255,255,.85);
	margin: 0 0 var(--vmh-s-6);
	letter-spacing: -0.015em;
}
.vmh-foot__langs {
	display: flex; justify-content: center; flex-wrap: wrap; gap: var(--vmh-s-2);
}
.vmh-foot__lang-btn {
	display: inline-flex; align-items: center; gap: var(--vmh-s-2);
	padding: 8px 14px;
	border: 1px solid rgba(255,255,255,.12);
	font-family: var(--vmh-f-mono);
	font-size: 0.75rem;
	color: rgba(255,255,255,.7);
	transition: border-color 200ms ease, color 200ms ease;
}
.vmh-foot__lang-btn:hover,
.vmh-foot__lang-btn.is-active,
.vmh-foot__lang-btn[aria-current="true"] { border-color: var(--vmh-c-paper); color: var(--vmh-c-paper); }

.vmh-foot__grid {
	display: grid;
	grid-template-columns: minmax(min(100%, 18rem), 2fr) repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
	gap: clamp(2rem, 4vw, 4rem);
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 880px) {
	.vmh-foot__grid { grid-template-columns: 1fr 1fr; gap: var(--vmh-s-8); }
}
@media (max-width: 520px) {
	.vmh-foot__grid { grid-template-columns: 1fr; }
}
.vmh-foot__brand .vmh-nav__logo { margin-bottom: var(--vmh-s-4); }
.vmh-foot__about {
	font-size: 0.875rem;
	line-height: 1.65;
	max-width: 380px;
	color: rgba(255,255,255,.6);
}
.vmh-foot__col h4 {
	font-family: var(--vmh-f-mono);
	font-size: var(--vmh-t-eyebrow);
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vmh-c-paper);
	margin: 0 0 var(--vmh-s-5);
}
.vmh-foot__col ul { display: flex; flex-direction: column; gap: var(--vmh-s-3); }
.vmh-foot__col a {
	font-family: var(--vmh-f-body);
	font-size: 0.875rem;
}

.vmh-foot__bottom {
	border-top: 1px solid rgba(255,255,255,.08);
	padding-top: var(--vmh-s-6);
	display: flex; flex-wrap: wrap;
	justify-content: space-between; align-items: center;
	gap: var(--vmh-s-4);
	font-family: var(--vmh-f-mono);
	font-size: 0.7rem;
	color: rgba(255,255,255,.4);
	letter-spacing: 0.05em;
}
.vmh-foot__bottom-links {
	display: flex; gap: var(--vmh-s-5); flex-wrap: wrap;
}

/* ========================================================== */
/* PAGINATION (used on archive)                                */
/* ========================================================== */
.vmh-page .vmh-pagination,
.vmh-page nav.vmh-pagination {
	margin-top: var(--vmh-s-12);
	display: flex; justify-content: center;
}
.vmh-page .vmh-pagination .nav-links,
.vmh-page nav.vmh-pagination .nav-links {
	display: flex; gap: var(--vmh-s-2); flex-wrap: wrap;
}
.vmh-page .vmh-pagination a,
.vmh-page .vmh-pagination span {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 42px; min-height: 42px;
	padding: 0 var(--vmh-s-3);
	border: 1px solid var(--vmh-c-border);
	font-family: var(--vmh-f-mono);
	font-size: 0.8125rem;
	color: var(--vmh-c-text);
	background: var(--vmh-c-surface);
	transition: border-color 200ms var(--vmh-ease), background 200ms var(--vmh-ease);
}
.vmh-page .vmh-pagination a:hover { border-color: var(--vmh-c-anchor); }
.vmh-page .vmh-pagination .current,
.vmh-page .vmh-pagination span.current {
	background: var(--vmh-c-anchor); color: #fff; border-color: var(--vmh-c-anchor);
}

/* ========================================================== */
/* DRAWER (slide-in from right, every view, all breakpoints)  */
/* ========================================================== */

/* Backdrop — soft anchor-tinted blur */
.vmh-drawer-backdrop {
	position: fixed; inset: 0;
	background: rgba(11, 31, 56, 0.55);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0; visibility: hidden;
	transition: opacity 400ms var(--vmh-ease),
	            visibility 400ms var(--vmh-ease);
	z-index: 200;
}
.vmh-drawer-backdrop.is-open { opacity: 1; visibility: visible; }

/* Drawer */
.vmh-drawer {
	position: fixed;
	top: 0; right: 0;
	height: 100%;
	height: 100dvh;
	width: min(440px, 100%);
	background: var(--vmh-c-bg);
	z-index: 201;
	transform: translateX(100%);
	transition: transform 500ms var(--vmh-ease);
	display: flex; flex-direction: column;
	box-shadow: -24px 0 60px rgba(11, 31, 56, 0.18);
	overflow: hidden;
}
.vmh-drawer.is-open { transform: translateX(0); }

.vmh-drawer__inner {
	display: flex; flex-direction: column;
	height: 100%;
	position: relative;
}
/* Subtle paper texture noise — per mockup */
.vmh-drawer__inner::before {
	content: "";
	position: absolute; inset: 0;
	pointer-events: none;
	opacity: 0.4;
	background-image:
		radial-gradient(circle at 100% 0%, rgba(220, 201, 166, 0.18), transparent 40%),
		radial-gradient(circle at 0%   100%, rgba(159, 18, 57, 0.05), transparent 50%);
}

/* Drawer head */
.vmh-drawer__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: var(--vmh-s-5) var(--vmh-s-6);
	border-bottom: 1px solid var(--vmh-c-border);
	flex-shrink: 0;
	position: relative; z-index: 1;
}
.vmh-drawer__logo .vmh-nav__logo-star { color: var(--vmh-c-anchor); }
.vmh-drawer__logo .vmh-nav__logo-star svg { width: 22px; height: 22px; }
.vmh-drawer__logo .vmh-nav__logo-word { font-size: 1rem; color: var(--vmh-c-anchor); }

.vmh-drawer__close {
	width: 44px; height: 44px;
	display: inline-flex; align-items: center; justify-content: center;
	border: 1px solid var(--vmh-c-border);
	background: transparent;
	color: var(--vmh-c-text);
	cursor: pointer;
	transition: background 200ms var(--vmh-ease), color 200ms var(--vmh-ease), border-color 200ms var(--vmh-ease);
	flex-shrink: 0;
}
.vmh-drawer__close:hover {
	background: var(--vmh-c-anchor);
	color: #fff;
	border-color: var(--vmh-c-anchor);
}

/* Drawer body — scrollable */
.vmh-drawer__body {
	flex: 1;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: var(--vmh-s-7) var(--vmh-s-6) var(--vmh-s-6);
	position: relative; z-index: 1;
	display: flex; flex-direction: column;
}

/* Eyebrow inside drawer */
.vmh-drawer__eyebrow {
	display: inline-flex; align-items: center;
	gap: var(--vmh-s-2);
	font-family: var(--vmh-f-mono);
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vmh-c-text-soft);
	margin-bottom: var(--vmh-s-5);
}
.vmh-drawer__eyebrow::before {
	content: "";
	width: 24px; height: 1px;
	background: var(--vmh-c-crimson);
}

/* Drawer category links */
.vmh-drawer__nav {
	display: flex; flex-direction: column;
	margin-bottom: var(--vmh-s-7);
}
.vmh-drawer__link {
	display: grid;
	grid-template-columns: 2.25rem 1fr;
	align-items: baseline;
	gap: var(--vmh-s-3);
	padding: var(--vmh-s-4) 0;
	border-bottom: 1px solid var(--vmh-c-border);
	text-decoration: none;
	color: var(--vmh-c-text);
	position: relative;
	transition: padding-left 350ms var(--vmh-ease);
}
.vmh-drawer__link::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, var(--vmh-c-paper) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 350ms var(--vmh-ease);
	pointer-events: none;
	z-index: -1;
}
.vmh-drawer__link:hover,
.vmh-drawer__link:focus-visible { padding-left: var(--vmh-s-3); }
.vmh-drawer__link:hover::before,
.vmh-drawer__link:focus-visible::before { opacity: 0.5; }

.vmh-drawer__link-num {
	font-family: var(--vmh-f-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	color: var(--vmh-c-crimson);
	font-weight: 500;
}
.vmh-drawer__link-name {
	font-family: var(--vmh-f-display);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--vmh-c-anchor);
}

/* Divider */
.vmh-drawer__divider {
	height: 1px;
	background: var(--vmh-c-border);
	margin: var(--vmh-s-3) 0 var(--vmh-s-7);
}

/* CTA block: VentureIQ primary + Newsletter secondary */
.vmh-drawer__cta-block {
	display: flex; flex-direction: column;
	gap: var(--vmh-s-3);
	margin-bottom: var(--vmh-s-7);
}
.vmh-drawer__cta-primary {
	display: flex; align-items: center; justify-content: space-between;
	gap: var(--vmh-s-4);
	padding: var(--vmh-s-5);
	background: var(--vmh-c-anchor);
	color: #fff;
	text-decoration: none;
	position: relative; overflow: hidden;
	transition: background 250ms var(--vmh-ease);
}
.vmh-drawer__cta-primary::before {
	content: "";
	position: absolute; top: 0; right: -100%;
	width: 100%; height: 100%;
	background: linear-gradient(90deg, transparent, rgba(198, 212, 230, 0.15), transparent);
	transition: right 700ms var(--vmh-ease);
}
.vmh-drawer__cta-primary:hover { background: #000; }
.vmh-drawer__cta-primary:hover::before { right: 100%; }

.vmh-drawer__cta-text { display: flex; flex-direction: column; gap: 2px; }
.vmh-drawer__cta-eyebrow {
	font-family: var(--vmh-f-mono);
	font-size: 0.65rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--vmh-c-paper);
}
.vmh-drawer__cta-title {
	font-family: var(--vmh-f-display);
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.1;
	color: #fff;
}
.vmh-drawer__cta-meta {
	font-family: var(--vmh-f-mono);
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 4px;
}
.vmh-drawer__cta-arrow {
	width: 24px; height: 24px;
	flex-shrink: 0;
	color: var(--vmh-c-paper);
	transition: transform 300ms var(--vmh-ease);
}
.vmh-drawer__cta-primary:hover .vmh-drawer__cta-arrow { transform: translateX(4px); }

.vmh-drawer__cta-secondary {
	display: flex; align-items: center; justify-content: space-between;
	padding: var(--vmh-s-4) var(--vmh-s-5);
	border: 1px solid var(--vmh-c-border);
	text-decoration: none;
	color: var(--vmh-c-text);
	font-family: var(--vmh-f-body);
	font-weight: 500;
	font-size: 0.9375rem;
	transition: border-color 200ms var(--vmh-ease), background 200ms var(--vmh-ease);
}
.vmh-drawer__cta-secondary:hover {
	border-color: var(--vmh-c-anchor);
	background: var(--vmh-c-surface);
}
.vmh-drawer__cta-arrow-sm {
	color: var(--vmh-c-crimson);
	transition: transform 250ms var(--vmh-ease);
}
.vmh-drawer__cta-secondary:hover .vmh-drawer__cta-arrow-sm { transform: translateX(4px); }

/* Drawer language grid */
.vmh-drawer__lang { margin-bottom: auto; }
.vmh-drawer__lang-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
	gap: var(--vmh-s-2);
}
.vmh-drawer__lang-btn {
	display: inline-flex; align-items: center;
	gap: var(--vmh-s-2);
	padding: 10px 12px;
	border: 1px solid var(--vmh-c-border);
	background: transparent;
	font-family: var(--vmh-f-body);
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--vmh-c-text-soft);
	text-decoration: none;
	cursor: pointer;
	transition: border-color 200ms var(--vmh-ease), color 200ms var(--vmh-ease), background 200ms var(--vmh-ease);
	text-align: left;
}
.vmh-drawer__lang-btn:hover {
	border-color: var(--vmh-c-anchor);
	color: var(--vmh-c-text);
}
.vmh-drawer__lang-btn[aria-current="true"] {
	background: var(--vmh-c-anchor);
	color: #fff;
	border-color: var(--vmh-c-anchor);
}
.vmh-drawer__lang-btn[aria-current="true"] .vmh-lang__flag {
	opacity: 1;
}

/* Drawer foot */
.vmh-drawer__foot {
	flex-shrink: 0;
	padding: var(--vmh-s-5) var(--vmh-s-6);
	border-top: 1px solid var(--vmh-c-border);
	background: rgba(242, 237, 224, 0.5);
	position: relative; z-index: 1;
}
.vmh-drawer__foot-trust {
	display: flex; align-items: center;
	gap: var(--vmh-s-2);
	font-family: var(--vmh-f-mono);
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--vmh-c-text-soft);
	margin-bottom: var(--vmh-s-3);
}
.vmh-drawer__foot-dot { color: var(--vmh-c-crimson); font-weight: 700; }
.vmh-drawer__foot-links {
	display: flex; gap: var(--vmh-s-4);
	flex-wrap: wrap;
}
.vmh-drawer__foot-links a {
	font-family: var(--vmh-f-body);
	font-size: 0.8125rem;
	color: var(--vmh-c-text-soft);
	text-decoration: none;
	transition: color 200ms ease;
}
.vmh-drawer__foot-links a:hover { color: var(--vmh-c-crimson); }

/* Stagger animation — items fade in when drawer opens */
[data-drawer-stagger] {
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 500ms var(--vmh-ease), transform 500ms var(--vmh-ease);
}
.vmh-drawer.is-open [data-drawer-stagger] {
	opacity: 1;
	transform: none;
}
.vmh-drawer.is-open [data-drawer-stagger="1"]  { transition-delay: 120ms; }
.vmh-drawer.is-open [data-drawer-stagger="2"]  { transition-delay: 165ms; }
.vmh-drawer.is-open [data-drawer-stagger="3"]  { transition-delay: 210ms; }
.vmh-drawer.is-open [data-drawer-stagger="4"]  { transition-delay: 255ms; }
.vmh-drawer.is-open [data-drawer-stagger="5"]  { transition-delay: 300ms; }
.vmh-drawer.is-open [data-drawer-stagger="6"]  { transition-delay: 345ms; }
.vmh-drawer.is-open [data-drawer-stagger="7"]  { transition-delay: 390ms; }
.vmh-drawer.is-open [data-drawer-stagger="8"]  { transition-delay: 435ms; }
.vmh-drawer.is-open [data-drawer-stagger="9"]  { transition-delay: 480ms; }
.vmh-drawer.is-open [data-drawer-stagger="10"] { transition-delay: 525ms; }
.vmh-drawer.is-open [data-drawer-stagger="11"] { transition-delay: 570ms; }
.vmh-drawer.is-open [data-drawer-stagger="12"] { transition-delay: 615ms; }

/* Body lock when drawer is open — prevents background scroll */
body.vmh-drawer-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
	.vmh-drawer { transition: none; }
	.vmh-drawer-backdrop { transition: none; }
	[data-drawer-stagger] { transition: none; transform: none; opacity: 1; }
}
