/* Venture Services — supplemental components for the /services/ section.
 *
 * Loaded only on: the Services landing page template, service-line archives,
 * and single venture_service posts (see inc/enqueue.php). Built entirely on
 * the theme's design tokens so it inherits light/dark theming automatically.
 * Reuses .practice-header / .cat-showcase / .service-card / .service-header
 * from components.css; this file adds only what those don't cover. */

/* ---- Tier eyebrow on landing + hub cards ------------------------------- */
.vs-card__eyebrow {
	display: block;
	font-family: var(--ff-mono);
	font-weight: 700;
	font-size: var(--fs-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--c-red);
	margin-bottom: var(--s-1);
}
.vs-card__meta {
	display: block;
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--c-ink-40);
	margin-top: var(--s-2);
}

/* ---- Single service: header eyebrow + fact row ------------------------- */
.vs-header__eyebrow {
	font-family: var(--ff-mono);
	font-weight: 700;
	font-size: var(--fs-sm);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-red);
	margin: 0 0 var(--s-2);
}
.vs-header__eyebrow a {
	color: inherit;
	text-decoration: none;
}
.vs-header__eyebrow a:hover,
.vs-header__eyebrow a:focus-visible {
	color: var(--c-red-dark);
}

.vs-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--s-2) var(--s-4);
	margin: var(--s-3) 0 0;
	padding-top: var(--s-3);
	border-top: 1px solid var(--c-ink-12);
}
.vs-meta__item {
	display: flex;
	flex-direction: column;
	gap: 0.15em;
}
.vs-meta__item dt {
	font-family: var(--ff-mono);
	font-size: var(--fs-xs);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--c-ink-40);
}
.vs-meta__item dd {
	margin: 0;
	font-family: var(--ff-mono);
	font-weight: 700;
	font-size: var(--fs-sm);
	color: var(--c-ink);
}

/* ---- Single service: body long-read ----------------------------------- */
.vs-body {
	background: var(--c-paper);
}

/* Two-column body: narrative + sticky Related Services sidebar, mirroring the
   blog post layout. Collapses to a single centered column below 1024px, with
   the related list dropping to the end. */
.vs-body__layout {
	max-width: var(--container);
	margin-inline: auto;
	padding: var(--s-5) var(--gutter) var(--s-6);
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: var(--s-5);
	align-items: start;
}
.vs-body__main { min-width: 0; }
.vs-body__aside {
	position: sticky;
	top: calc(28px + 2 * var(--s-2) + var(--s-3));
	align-self: start;
}
@media (max-width: 1023px) {
	.vs-body__layout {
		display: block;
		max-width: 72ch;
	}
	.vs-body__aside {
		position: static;
		margin-top: var(--s-6);
	}
}

.vs-narrative {
	color: var(--c-ink-70);
}
.vs-narrative > p {
	font-size: var(--fs-md);
	line-height: 1.65;
	margin: 0 0 var(--s-3);
}
.vs-narrative h2 {
	font-family: var(--ff-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-size: var(--fs-lg);
	color: var(--c-ink);
	margin: var(--s-5) 0 var(--s-3);
}
.vs-narrative h3 {
	font-family: var(--ff-mono);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-size: var(--fs-sm);
	color: var(--c-ink);
	margin: 0 0 var(--s-2);
}

/* Two-column card pair (Who this is for / How it works, etc.) */
.vs-cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--s-3);
	margin: var(--s-3) 0 var(--s-4);
}
@media (min-width: 760px) {
	.vs-cols { grid-template-columns: 1fr 1fr; }
}
.vs-card {
	border: 1px solid var(--c-ink-12);
	border-left: 3px solid var(--c-red);
	padding: var(--s-3);
}

/* Red-square bullet list */
.vs-points {
	list-style: none;
	margin: 0;
	padding: 0;
}
.vs-points li {
	position: relative;
	padding-left: 1.3rem;
	margin: 0 0 var(--s-2);
	font-size: var(--fs-sm);
	line-height: 1.5;
	color: var(--c-ink-70);
}
.vs-points li:last-child { margin-bottom: 0; }
.vs-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 0.5rem;
	height: 0.5rem;
	background: var(--c-red);
}
.vs-points li b,
.vs-points li strong { color: var(--c-ink); font-weight: 600; }

/* Stacked timeline (engagement structure / workshops) */
.vs-stack {
	margin: var(--s-3) 0 var(--s-4);
	max-width: 68ch;
}
.vs-stack-item {
	padding: var(--s-3) 0;
	border-bottom: 1px solid var(--c-ink-12);
}
.vs-stack-item:first-child { padding-top: 0; }
.vs-stack-item:last-child { border-bottom: none; }
.vs-stack-item h4 {
	font-family: var(--ff-mono);
	font-weight: 700;
	text-transform: uppercase;
	font-size: var(--fs-sm);
	letter-spacing: 0.02em;
	color: var(--c-ink);
	margin: 0 0 0.4rem;
}
.vs-stack-item p {
	font-size: var(--fs-sm);
	line-height: 1.55;
	color: var(--c-ink-70);
	margin: 0;
}

/* ---- Closing CTA — theme-aligned surface (light theme = white bg / dark
   text; dark theme = dark bg / light text). A subtle top rule separates it
   from the section above without breaking the theme's background color. --- */
.vs-cta {
	background: var(--c-paper);
	color: var(--c-ink);
	border-top: 1px solid var(--c-ink-06);
}
.vs-cta__inner {
	max-width: var(--container);
	margin-inline: auto;
	padding: var(--s-6) var(--gutter);
}
.vs-cta__eyebrow {
	font-family: var(--ff-mono);
	font-weight: 700;
	font-size: var(--fs-sm);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--c-red);
	margin: 0 0 var(--s-2);
}
.vs-cta__title {
	font-family: var(--ff-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	font-size: var(--fs-2xl);
	line-height: 1.05;
	margin: 0 0 var(--s-2);
	color: var(--c-ink);
}
.vs-cta__lede {
	max-width: 52ch;
	font-size: var(--fs-md);
	line-height: 1.55;
	color: var(--c-ink-70);
	margin: 0 0 var(--s-4);
}

/* Solid brand-red CTA, mirroring the blog post CTA button (.btn-watch):
   red fill, white bold uppercase letter-spaced label. Red reads on the
   inverted band in both themes; hover deepens to red-dark. */
.vs-cta .btn--primary {
	background: var(--c-red);
	color: #fff;
	border-color: var(--c-red);
	font-weight: 700;
	font-size: var(--fs-sm);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.vs-cta .btn--primary:hover,
.vs-cta .btn--primary:focus-visible {
	background: var(--c-red-dark);
	border-color: var(--c-red-dark);
	color: #fff;
}

/* Related Services — mirrors the blog "Related Articles" list (heading with a
   red underline over category/title/meta rows). Services carry no thumbnails,
   so items are text-only, which the blog pattern already allows. Aligned to
   the article body width. */
.rel-services__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--s-2);
	margin-bottom: var(--s-2);
	padding-bottom: var(--s-2);
	border-bottom: 2px solid var(--c-red);
}
.rel-services__heading {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-md);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	margin: 0;
}
.rel-services__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.rel-services__item + .rel-services__item {
	border-top: 1px solid var(--c-ink-06);
}
.rel-services__link {
	display: flex;
	gap: var(--s-2);
	align-items: flex-start;
	padding: var(--s-3) 0;
	text-decoration: none;
	color: inherit;
}
.rel-services__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.rel-services__cat {
	font-family: var(--ff-display);
	font-size: var(--fs-xs);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--c-red);
}
.rel-services__title {
	font-family: var(--ff-display);
	font-weight: 700;
	font-size: var(--fs-sm);
	line-height: 1.25;
	color: var(--c-ink);
	transition: color var(--dur-fast) ease;
}
.rel-services__link:hover .rel-services__title {
	color: var(--c-red);
}
.rel-services__meta {
	font-family: var(--ff-display);
	font-size: var(--fs-xs);
	letter-spacing: 0.06em;
	color: var(--c-ink-40);
}
