/* =================================================================
 * VOODOO VODKA — LAYOUT
 *
 * Navbar, footer, mobile menu, sections, page chrome.
 * Structural skeleton of the site.
 * ================================================================= */


/* -----------------------------------------------------------------
 * 1. SITE WRAPPER & MAIN
 * --------------------------------------------------------------- */

#vv-site {
	position: relative;
	z-index: var(--vv-z-base);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#vv-main {
	flex: 1;
	min-height: 60vh;
	padding-top: var(--vv-nav-height);
	position: relative;
	z-index: var(--vv-z-raised);
}

@media (max-width: 1023px) {
	#vv-main { padding-top: var(--vv-nav-height-mobile); }
}


/* -----------------------------------------------------------------
 * 2. NAVBAR
 * Transparent on hero, transitions to glass on scroll.
 * Centered wordmark, primary nav left, utility right.
 * --------------------------------------------------------------- */

.vv-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--vv-z-nav);
	height: var(--vv-nav-height);
	background: transparent;
	border-bottom: 1px solid transparent;
	transition:
		background var(--vv-dur-base) var(--vv-ease-out-expo),
		border-color var(--vv-dur-base) var(--vv-ease-out-expo),
		backdrop-filter var(--vv-dur-base) var(--vv-ease-out-expo),
		height var(--vv-dur-base) var(--vv-ease-out-expo);
}

.vv-nav.is-scrolled {
	background: rgba(21, 16, 14, 0.94);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom-color: var(--vv-border-gold);
}

@media (max-width: 1023px) {
	.vv-nav { height: var(--vv-nav-height-mobile); }
}

.vv-nav__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100%;
	gap: var(--vv-space-5);
}

@media (max-width: 1023px) {
	.vv-nav__inner {
		grid-template-columns: auto 1fr auto;
	}
}


/* Brand wordmark in nav. Desktop reorders it to the left corner (see the
   min-width:1024px block below); on mobile it keeps its original placement. */
.vv-nav__wordmark {
	font-family: var(--vv-font-display);
	font-size: 1.125rem;
	font-weight: var(--vv-fw-bold);
	letter-spacing: var(--vv-ls-nav);

	color: var(--vv-gold);
	text-decoration: none;
	background-image: none;
	white-space: nowrap;
	transition: color var(--vv-dur-fast) var(--vv-ease-out-expo);
	display: inline-block;
}

.vv-nav__wordmark:hover {
	color: var(--vv-gold-bright);
	background-image: none;
}

.vv-nav__wordmark-mark {
	display: inline-block;
	margin: 0 0.25em;
	color: var(--vv-gold-bright);
	font-style: italic;
	font-family: var(--vv-font-ritual);
	font-weight: var(--vv-fw-regular);
}

/* Header logo art (bone wordmark) — replaces the text wordmark when present. */
.vv-nav__logo { display: block; height: 1.5rem; width: auto; }


/* Primary nav — hidden on mobile; on desktop it takes the page-centred column. */
.vv-nav__menu {
	display: none;
	align-items: center;
	justify-content: center;
}

/* Desktop header order: logo left corner, primary nav centred, utility right.
   The middle `auto` column sits between two equal 1fr columns, so it is
   page-centred. Explicit grid-row:1 keeps all three on a single row despite the
   DOM order (menu, wordmark, utility). Mobile keeps the original layout. */
@media (min-width: 1024px) {
	.vv-nav__menu    { display: flex; grid-column: 2; grid-row: 1; }
	.vv-nav__wordmark { grid-column: 1; grid-row: 1; justify-self: start; }
	.vv-nav__utility  { grid-column: 3; grid-row: 1; }
}

.vv-nav__list {
	display: flex;
	align-items: center;
	gap: var(--vv-space-6);
}

.vv-nav__item { position: relative; }

.vv-nav__link {
	display: inline-block;
	padding: var(--vv-space-2) 0;
	font-family: var(--vv-font-ui);
	font-size: var(--vv-fs-nav);
	font-weight: var(--vv-fw-medium);
	letter-spacing: var(--vv-ls-nav);
	text-transform: uppercase;
	color: var(--vv-bone-70);
	text-decoration: none;
	background-image: none;
	position: relative;
	white-space: nowrap;
	transition: color var(--vv-dur-fast) var(--vv-ease-out-expo);
}

.vv-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: var(--vv-gold);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--vv-dur-base) var(--vv-ease-out-expo);
}

.vv-nav__link:hover,
.vv-nav__item.is-active .vv-nav__link {
	color: var(--vv-gold);
	background-image: none;
}

.vv-nav__link:hover::after,
.vv-nav__item.is-active .vv-nav__link::after {
	transform: scaleX(1);
}


/* Utility — right side: cart, search, CTA (desktop grid placement is in the
   min-width:1024px block above). */
.vv-nav__utility {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--vv-space-4);
}

.vv-nav__cart {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--vv-bone-70);
	border-radius: var(--vv-radius-xs);
	background-image: none;
	transition: color var(--vv-dur-fast) var(--vv-ease-out-expo);
}

.vv-nav__cart:hover {
	color: var(--vv-gold);
	background-image: none;
}

.vv-nav__cart-count {
	position: absolute;
	top: 2px;
	right: 0;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vv-gold);
	color: var(--vv-midnight);
	font-family: var(--vv-font-ui);
	font-size: 10px;
	font-weight: var(--vv-fw-bold);
	letter-spacing: 0;
	line-height: 1;
	border-radius: var(--vv-radius-pill);
	font-variant-numeric: tabular-nums;
	opacity: 0;
	transform: scale(0.6);
	transition:
		opacity var(--vv-dur-fast) var(--vv-ease-out-expo),
		transform var(--vv-dur-fast) var(--vv-ease-out-expo);
}

.vv-nav__cart.has-items .vv-nav__cart-count {
	opacity: 1;
	transform: scale(1);
}


/* Utility text links (Where to Buy · Shop) — desktop only */
.vv-nav__link--utility {
	display: none;
}

@media (min-width: 1024px) {
	.vv-nav__link--utility { display: inline-block; }
}

/* Account / icon buttons */
.vv-nav__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--vv-bone-70);
	background-image: none;
	transition: color var(--vv-dur-fast) var(--vv-ease-out-expo);
}

.vv-nav__icon:hover { color: var(--vv-marigold); }

@media (max-width: 1023px) {
	.vv-nav__account { display: none; }
}

/* Standing secondary CTA — Find Near You */
.vv-nav__cta {
	white-space: nowrap;
}

@media (max-width: 1023px) {
	.vv-nav__cta { display: none; }
}


/* Mobile toggle — marigold-flower glyph */
.vv-nav__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--vv-brass);
}

@media (min-width: 1024px) {
	.vv-nav__toggle { display: none; }
}

.vv-nav__flower {
	pointer-events: none;
	transition: transform var(--vv-dur-base) var(--vv-ease-out-expo);
}

.vv-nav__toggle[aria-expanded="true"] .vv-nav__flower {
	transform: rotate(72deg);
}

/* -----------------------------------------------------------------
 * 3. MOBILE MENU
 * Full-screen Ink overlay. Large Anton nav.
 * --------------------------------------------------------------- */

.vv-mobile-menu {
	position: fixed;
	inset: 0;
	z-index: var(--vv-z-mobile-menu);
	background: var(--vv-ink);
	background-image:
		radial-gradient(ellipse 70% 50% at 50% 0%, var(--vv-cathedral-tint) 0%, transparent 60%),
		radial-gradient(ellipse 40% 30% at 50% 100%, var(--vv-gold-tint-08) 0%, transparent 65%);
	transform: translateY(-100%);
	transition: transform var(--vv-dur-base) var(--vv-ease-out-expo);
	overflow-y: auto;
	visibility: hidden;
}

.vv-mobile-menu.is-open {
	visibility: visible;
	transform: translateY(0);
}

@media (min-width: 1024px) {
	.vv-mobile-menu { display: none; }
}

.vv-mobile-menu__inner {
	min-height: 100vh;
	min-height: 100dvh;   /* §6.9 — full dynamic viewport, clear of mobile browser chrome */
	padding: calc(var(--vv-nav-height-mobile) + var(--vv-space-7)) var(--vv-space-5) var(--vv-space-7);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: var(--vv-space-7);
}

.vv-mobile-menu__list {
	display: flex;
	flex-direction: column;
}

.vv-mobile-menu__list li {
	border-bottom: 1px solid var(--vv-border);
}

.vv-mobile-menu__list li:last-child { border-bottom: 0; }

.vv-mobile-menu__list a {
	display: block;
	padding: var(--vv-space-4) 0;
	font-family: var(--vv-font-display);
	font-size: var(--vv-fs-h2);
	font-weight: var(--vv-fw-bold);
	letter-spacing: var(--vv-ls-headline);

	color: var(--vv-bone);
	text-decoration: none;
	background-image: none;
	transition:
		color var(--vv-dur-fast) var(--vv-ease-out-expo),
		transform var(--vv-dur-fast) var(--vv-ease-out-expo);
}

.vv-mobile-menu__list a:hover,
.vv-mobile-menu__list a:focus {
	color: var(--vv-gold);
	transform: translateX(8px);
	background-image: none;
}

.vv-mobile-menu__footer {
	font-family: var(--vv-font-ritual);
	font-style: italic;
	font-size: var(--vv-fs-small);
	color: var(--vv-bone-50);
	line-height: var(--vv-lh-relaxed);
	text-align: center;
}

.vv-mobile-menu__footer-flourish {
	margin-bottom: var(--vv-space-4);
}

/* §6.9 — robust body scroll-lock while the mobile menu is open. position:fixed
   holds iOS Safari (which ignores overflow:hidden on <body>); nav.js preserves
   and restores the scroll offset via body.style.top. */
body.vv-menu-open {
	position: fixed;
	width: 100%;
	overflow: hidden;
}

/* §6.9 — the mobile bar is visible from load (solid, not transparent-until-scroll),
   so the wordmark and menu toggle are always legible over full-bleed heroes.
   Desktop keeps the transparent → is-scrolled behavior. */
@media (max-width: 1023px) {
	.vv-nav {
		background: rgba(21, 16, 14, 0.94);
		-webkit-backdrop-filter: blur(14px) saturate(140%);
		        backdrop-filter: blur(14px) saturate(140%);
		border-bottom: 1px solid var(--vv-border-gold);
	}
}


/* -----------------------------------------------------------------
 * 4. SECTIONS
 * --------------------------------------------------------------- */

.vv-section {
	position: relative;
	padding: var(--vv-space-10) 0;  /* Rev5 — more air (was space-9); desktop goes larger below */
}

@media (min-width: 1024px) {
	.vv-section { padding: var(--vv-space-11) 0; }  /* Rev4 — enormous desktop margins (was space-10) */
}

.vv-section--lg { padding: var(--vv-space-10) 0; }

@media (min-width: 1024px) {
	.vv-section--lg { padding: var(--vv-space-11) 0; }
}

.vv-section--sm { padding: var(--vv-space-7) 0; }

/* Parchment section override */
.vv-section--parchment {
	background: var(--vv-candle);
	color: var(--vv-cathedral-deep);
}

.vv-section--cathedral {
	background: var(--vv-cathedral);
	color: var(--vv-bone);
}

.vv-section--midnight-2 {
	background: var(--vv-midnight-2);
}


/* Section head — eyebrow + headline */
.vv-section__head {
	margin-bottom: var(--vv-space-9);  /* Rev4 — more air under section heads (was space-8) */
}

.vv-section__head--center {
	text-align: center;
}

.vv-section__head--center .vv-rule {
	margin-inline: auto;
}

.vv-section__head--split {
	display: grid;
	gap: var(--vv-space-5);
	align-items: end;
}

@media (min-width: 768px) {
	.vv-section__head--split {
		grid-template-columns: 1fr auto;
		gap: var(--vv-space-7);
	}
}

.vv-section__sub {
	font-family: var(--vv-font-ritual);
	font-style: italic;
	font-size: var(--vv-fs-lead);
	line-height: var(--vv-lh-snug);
	color: var(--vv-bone-70);
	max-width: 56ch;
	margin-top: var(--vv-space-4);
}

body.vv-mode-parchment .vv-section__sub {
	color: var(--vv-cathedral);
}


/* -----------------------------------------------------------------
 * 5. GRIDS
 * --------------------------------------------------------------- */

.vv-grid {
	display: grid;
	gap: var(--vv-space-5);
}

@media (min-width: 768px) { .vv-grid { gap: var(--vv-space-6); } }

.vv-grid--2 { grid-template-columns: 1fr; }
.vv-grid--3 { grid-template-columns: 1fr; }
.vv-grid--4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
	.vv-grid--2 { grid-template-columns: repeat(2, 1fr); }
	.vv-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.vv-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
	.vv-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.vv-grid--4 { grid-template-columns: repeat(4, 1fr); }
}


/* Split layout — text + image */
.vv-split {
	display: grid;
	gap: var(--vv-space-6);
	align-items: center;
}

@media (min-width: 768px) {
	.vv-split {
		grid-template-columns: 1fr 1fr;
		gap: var(--vv-space-8);
	}
}

.vv-split--narrow-left {
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.vv-split--narrow-left { grid-template-columns: 1fr 1.4fr; }
}

.vv-split--wide-left {
	grid-template-columns: 1fr;
}
@media (min-width: 768px) {
	.vv-split--wide-left { grid-template-columns: 1.4fr 1fr; }
}


/* -----------------------------------------------------------------
 * 6. FOOTER
 * --------------------------------------------------------------- */

.vv-footer {
	position: relative;
	background: #0E0A08;
	color: var(--vv-bone-70);
	padding: var(--vv-space-9) 0 var(--vv-space-5);
	border-top: 1px solid var(--vv-border-gold);
	z-index: var(--vv-z-raised);
}

.vv-footer::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 1px;
	background: var(--vv-brass);
	box-shadow: 0 0 16px var(--vv-brass);
}

.vv-footer__inner {
	display: grid;
	gap: var(--vv-space-7);
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.vv-footer__inner {
		grid-template-columns: 2fr 1fr 1fr 1.5fr;
		gap: var(--vv-space-8);
	}
}

.vv-footer__brand {
	font-family: var(--vv-font-display);
	font-size: 1.5rem;
	letter-spacing: var(--vv-ls-headline);

	color: var(--vv-gold);
	margin-bottom: var(--vv-space-3);
}

/* Footer logo art (reversed stacked lockup) — replaces the text brand when present. */
/* Footer lockup — no backdrop; the dark outline is allowed to blend into the
   footer, the pale face carries it. */
.vv-footer__logo {
	display: block;
	height: 12.5rem; width: auto;
	margin-bottom: var(--vv-space-4);
}

.vv-footer__tagline {
	font-family: var(--vv-font-ritual);
	font-style: italic;
	color: var(--vv-gold-bright);
	margin-bottom: var(--vv-space-5);
}

/* ------------------------------------------------------------------
 * Editorial footer anchor (Phase C/D) — a tiny tracked kicker set
 * against an oversized italic statement that bleeds off the right
 * edge. The wrap clips the overflow so the bleed never produces a
 * horizontal scrollbar (CLS/UX safe). Realises the roadmap's
 * "edge-bleed display" + tiny-eyebrow→oversized-Didone scale contrast.
 * ------------------------------------------------------------------ */
.vv-footer__statement-wrap {
	overflow: hidden;
	margin-bottom: var(--vv-space-9);
	padding-top: var(--vv-space-5);
	border-top: 1px solid var(--vv-border);
}

.vv-footer__statement-kicker {
	display: flex;
	align-items: center;
	gap: var(--vv-space-3);
	font-family: var(--vv-font-ui);
	font-size: var(--vv-fs-eyebrow);
	font-weight: var(--vv-fw-semibold);
	letter-spacing: var(--vv-ls-eyebrow);
	text-transform: uppercase;
	color: var(--vv-bone-50);
	margin: 0 0 var(--vv-space-4);
}

.vv-footer__statement-kicker::before {
	content: "";
	width: 2.5rem;
	height: 1px;
	background: var(--vv-brass);
	flex: 0 0 auto;
}

.vv-footer__statement {
	font-family: var(--vv-font-ritual);
	font-style: italic;
	font-weight: 400;
	font-size: clamp(2.75rem, 10vw, 9rem);
	line-height: 0.9;
	letter-spacing: -0.01em;
	color: var(--vv-bone);
	white-space: nowrap;
	margin: 0;
	/* The tight line-height lets descenders ("p") fall below the line box,
	   where the wrap's overflow:hidden (needed for the edge-bleed clip) cuts
	   them. Pad the box down so descenders clear the clip without changing
	   the horizontal bleed. */
	padding-bottom: 0.2em;
}

.vv-footer__sub {
	font-size: var(--vv-fs-small);
	line-height: var(--vv-lh-normal);
	color: var(--vv-bone-50);
	max-width: 32ch;
}

/* Fictional-character attribution (Blueprint Ch. 06 column 1) */
.vv-footer__attribution {
	font-size: var(--vv-fs-meta);
	line-height: var(--vv-lh-normal);
	color: var(--vv-bone-50);
	max-width: 40ch;
}

.vv-footer__col-title {
	font-family: var(--vv-font-body);
	font-size: var(--vv-fs-eyebrow);
	font-weight: var(--vv-fw-semibold);
	letter-spacing: var(--vv-ls-eyebrow);
	text-transform: uppercase;
	color: var(--vv-gold);
	margin-bottom: var(--vv-space-4);
}

.vv-footer__nav {
	display: flex;
	flex-direction: column;
	gap: var(--vv-space-3);
}

.vv-footer__nav a {
	color: var(--vv-bone-70);
	font-size: var(--vv-fs-small);
	background-image: none;
	transition: color var(--vv-dur-fast) var(--vv-ease-out-expo);
}

.vv-footer__nav a:hover {
	color: var(--vv-gold);
	background-image: none;
}

.vv-footer__newsletter {
	margin-top: var(--vv-space-4);
}

.vv-footer__newsletter-label {
	font-size: var(--vv-fs-small);
	color: var(--vv-bone-70);
	margin-bottom: var(--vv-space-3);
	line-height: var(--vv-lh-normal);
}

/* The inline (field + flush button) layout squeezes the email field in the
   narrow footer column, clipping the placeholder ("your@email.co…"). Stack
   it here so the field gets the full column width; the button sits beneath.
   Scoped to the footer — the wider where-to-buy/club/home forms stay inline. */
.vv-footer .vv-newsletter-form {
	flex-direction: column;
	gap: var(--vv-space-3);
	max-width: none;
	margin-inline: 0;
}

.vv-footer .vv-newsletter-form .vv-field__input {
	border-right: 1px solid var(--vv-border-gold);  /* restore — no longer flush to the button */
}

.vv-footer .vv-newsletter-form .vv-btn {
	align-self: flex-start;  /* compact button below the field, not full-width */
}

.vv-footer__social {
	display: flex;
	gap: var(--vv-space-4);
	margin-top: var(--vv-space-5);
}

.vv-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--vv-gold-deep);
	color: var(--vv-bone-70);
	background-image: none;
	transition:
		color var(--vv-dur-fast) var(--vv-ease-out-expo),
		border-color var(--vv-dur-fast) var(--vv-ease-out-expo),
		background var(--vv-dur-fast) var(--vv-ease-out-expo);
}

.vv-footer__social a:hover {
	color: var(--vv-midnight);
	background: var(--vv-gold);
	border-color: var(--vv-gold);
	background-image: none;
}

.vv-footer__consent-note {
	margin-top: var(--vv-space-3);
	font-size: var(--vv-fs-meta);
	line-height: var(--vv-lh-normal);
	color: var(--vv-bone-50);
}


/* The legally-loaded band — built once, never abbreviated */
.vv-footer__legal-band {
	margin-top: var(--vv-space-8);
	padding-top: var(--vv-space-6);
	border-top: 1px solid var(--vv-border);
}

.vv-footer__legal-statement {
	font-size: var(--vv-fs-meta);
	line-height: var(--vv-lh-relaxed);
	color: var(--vv-bone-50);
	max-width: 92ch;
	margin-bottom: var(--vv-space-5);
}

.vv-footer__legal-statement strong {
	color: var(--vv-bone-70);
}

.vv-footer__legal-statement a {
	color: var(--vv-bone-70);
	text-decoration: underline;
	text-underline-offset: 2px;
	background-image: none;
}

.vv-footer__legal-statement a:hover { color: var(--vv-marigold); }

.vv-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: var(--vv-space-4) var(--vv-space-5);
	align-items: center;
	margin-bottom: var(--vv-space-5);
}

.vv-footer__legal a,
.vv-consent-renew {
	color: var(--vv-bone-50);
	background-image: none;
	font-size: var(--vv-fs-meta);
	letter-spacing: var(--vv-ls-meta);
	text-transform: uppercase;
}

.vv-footer__legal a:hover,
.vv-consent-renew:hover {
	color: var(--vv-brass);
	background-image: none;
}

.vv-consent-renew {
	padding: 0;
	font-family: var(--vv-font-ui);
	cursor: pointer;
}

.vv-footer__copy {
	font-size: var(--vv-fs-meta);
	letter-spacing: var(--vv-ls-meta);
	color: var(--vv-bone-30);
	text-transform: uppercase;
}


/* -----------------------------------------------------------------
 * 7. BREADCRUMB
 * --------------------------------------------------------------- */

.vv-breadcrumb {
	max-width: var(--vv-max-width);
	margin: 0 auto;
	padding: var(--vv-space-4) var(--vv-space-5);
	font-size: var(--vv-fs-meta);
	letter-spacing: var(--vv-ls-meta);
	text-transform: uppercase;
	color: var(--vv-bone-50);
}

.vv-breadcrumb ol {
	display: flex;
	flex-wrap: wrap;
	gap: var(--vv-space-3);
	align-items: center;
}

.vv-breadcrumb li {
	display: flex;
	align-items: center;
	gap: var(--vv-space-3);
}

.vv-breadcrumb li + li::before {
	content: "·";
	color: var(--vv-gold-deep);
	margin-right: 0;
}

.vv-breadcrumb a {
	color: var(--vv-bone-50);
	background-image: none;
}

.vv-breadcrumb a:hover {
	color: var(--vv-gold);
	background-image: none;
}

.vv-breadcrumb [aria-current="page"] {
	color: var(--vv-gold);
}

/* =================================================================
 * 8. GRID SYSTEM & ACTS — Rev6 "One Evening at the House"
 * Content max 1360px, 12 cols, generous outer margins. Staged sections
 * alternate 7/5 and 5/7 splits (asymmetry law); quiet sections center a
 * single measure. Hour hues never appear here — layout only.
 * ================================================================= */
.vv-grid-12 {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: clamp(20px, 3vw, 32px);
	max-width: 1360px;
	margin-inline: auto;
	padding-inline: clamp(20px, 6vw, 88px);
}
.vv-split { display: grid; gap: clamp(24px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) {
	.vv-split--7-5   { grid-template-columns: 7fr 5fr; }
	.vv-split--5-7   { grid-template-columns: 5fr 7fr; }
	.vv-split--5-2-5 { grid-template-columns: 5fr 2fr 5fr; }
}
.vv-measure { max-width: 68ch; }              /* body measure 60-75ch */
.vv-measure--center { margin-inline: auto; }
.vv-act { padding-block: var(--vv-space-act); }
.vv-act--tight { padding-block: calc(var(--vv-space-act) * 0.6); }

/* Section ambient — a <=5% hour radial behind a staged act. Set --vv-hour
 * (an hour hue token) on the section; nothing renders until it is set. */
.vv-act--ambient { position: relative; isolation: isolate; }
.vv-act--ambient::before {
	content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
	background: radial-gradient(70% 55% at 50% 0%,
		color-mix(in srgb, var(--vv-hour, transparent) 5%, transparent) 0%,
		transparent 70%);
}
