/* ==========================================================================
   Virginia Outside — Basecamp · base.css
   Tokens, type, layout primitives, header/nav, footer, shared components.
   Page families add their own file (home / landing / camp / pages).
   No border radius anywhere: Basecamp is square.
   ========================================================================== */

:root {
	--pine: #16332a;
	--pine-2: #234a3c;
	--pine-3: #0f241d;
	--orange: #d97b29;          /* buttons, rules, fills */
	--orange-hi: #f08f3a;       /* hover, and orange TEXT on dark grounds */
	--rust: #a9551a;            /* orange TEXT on light grounds (4.8:1 on page) */
	--on-orange: #241203;
	--cream: #f2ead8;
	--page: #faf6ea;
	--paper: #fff;
	--ink: #22302a;
	--rule: #ddd2b8;
	--muted: #5f6b5f;

	--font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
	--font-body: "Karla", system-ui, -apple-system, "Segoe UI", sans-serif;

	--wrap: 1200px;
	--gutter: 40px;
	--header-h: 76px;
	--shadow: 0 3px 14px rgba(34, 48, 42, .10);
	--shadow-lift: 0 14px 34px rgba(34, 48, 42, .18);
}

@media (max-width: 900px) {
	:root { --gutter: 20px; --header-h: 64px; }
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body.vob {
	margin: 0;
	background: var(--page);
	color: var(--ink);
	font: 400 16px/1.65 var(--font-body);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
:where(body.vob) img, :where(body.vob) video, :where(body.vob) iframe { max-width: 100%; }
:where(body.vob) img { height: auto; }
/* :where() keeps these at zero specificity so any component class wins without !important */
:where(body.vob) a { color: var(--rust); text-underline-offset: 3px; }
:where(body.vob) a:hover { color: var(--pine); }
body.vob :focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.vob-skip { position: absolute; left: -9999px; top: 8px; z-index: 1000; background: var(--orange); color: var(--on-orange); padding: 10px 16px; font-weight: 700; }
.vob-skip:focus { left: 8px; }

.vob-wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.vob-wrap--narrow { max-width: 860px; }
.vob-main { display: block; }
.vob-section { padding-block: 64px; }
.vob-section--tight { padding-block: 40px; }
.vob-section--cream { background: var(--cream); }
@media (max-width: 900px) { .vob-section { padding-block: 44px; } }

/* ---------- type ---------- */
.vob h1, .vob h2, .vob h3, .vob h4 {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--pine);
	text-transform: uppercase;
	letter-spacing: 1px;
	line-height: 1.02;
	margin: 0 0 .45em;
	text-wrap: balance;
}
.vob-h1 { font-size: clamp(40px, 6vw, 64px); }
.vob-h2 { font-size: clamp(30px, 3.6vw, 40px); }
.vob-h3 { font-size: clamp(22px, 2.4vw, 28px); }
.vob-eyebrow {
	font: 700 13px/1.3 var(--font-body);
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--rust);
	margin: 0 0 10px;
}
.vob-eyebrow--light { color: var(--cream); letter-spacing: 5px; }
.vob-lead { font-size: 19px; line-height: 1.6; max-width: 62ch; }
.vob-muted { color: var(--muted); }
.vob-rule { display: block; width: 44px; height: 4px; background: var(--orange); margin: 2px 0 14px; }
.vob-rule--sm { width: 36px; }
.vob-rule--center { margin-inline: auto; }

/* ---------- buttons ---------- */
.vob-btn, .vob .wp-block-button__link {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	min-height: 44px;
	padding: 12px 24px;
	border: 2px solid transparent;
	border-radius: 0 !important;
	font: 700 14px/1.2 var(--font-body);
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none !important;
	cursor: pointer;
	transition: background-color .15s, color .15s, border-color .15s, transform .15s;
}
.vob-btn--orange, .vob .wp-block-button__link { background: var(--orange) !important; color: var(--on-orange) !important; }
.vob-btn--orange:hover, .vob .wp-block-button__link:hover { background: var(--orange-hi) !important; color: var(--on-orange) !important; }
.vob-btn--pine { background: var(--pine); color: var(--cream) !important; }
.vob-btn--pine:hover { background: var(--pine-2); color: #fff !important; }
.vob-btn--ghost { background: transparent; border-color: var(--orange); color: var(--rust) !important; }
.vob-btn--ghost:hover { background: var(--orange); color: var(--on-orange) !important; }
.vob-btn--ghost-light { background: transparent; border-color: var(--cream); color: var(--cream) !important; }
.vob-btn--ghost-light:hover { background: var(--cream); color: var(--pine) !important; }
.vob-btn--lg { padding: 18px 40px; font-size: 16px; }
.vob-btn--block { display: flex; width: 100%; }
.vob-btn .vob-icon { flex: none; }

/* ---------- announcement ---------- */
.vob-announce {
	background: var(--orange);
	color: var(--on-orange);
	font: 700 13.5px/1.4 var(--font-body);
	text-align: center;
	padding: 9px 0;
}
.vob-announce a { color: var(--on-orange) !important; text-decoration: underline; }
.vob-announce p { margin: 0; }

/* ---------- header / nav ---------- */
.vob-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--pine);
	color: var(--cream);
	transition: box-shadow .2s;
}
body.admin-bar .vob-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .vob-header { top: 0; } }
.vob-header.is-stuck { box-shadow: 0 6px 20px rgba(0, 0, 0, .25); }
.vob-header__inner {
	max-width: calc(var(--wrap) + 80px);
	margin-inline: auto;
	height: var(--header-h);
	padding-inline: var(--gutter);
	display: flex; align-items: center; gap: 24px;
}
.vob-brand { display: flex; align-items: center; gap: 14px; text-decoration: none !important; flex: none; }
.vob-brand img { height: 44px; width: auto; display: block; }
.vob-brand__name {
	font: 700 24px/1 var(--font-display);
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--cream);
	white-space: nowrap;
}
.vob-nav { margin-left: auto; }
.vob-menu { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 4px; }
.vob-menu > li { position: relative; display: flex; align-items: center; }
.vob-menu a {
	display: block;
	color: var(--cream) !important;
	text-decoration: none !important;
	font: 600 14px/1.2 var(--font-body);
	letter-spacing: .6px;
	text-transform: uppercase;
	padding: 10px 12px;
}
.vob-menu > li > a:hover, .vob-menu > li:focus-within > a, .vob-menu > li.current-menu-item > a, .vob-menu > li.current-menu-ancestor > a, .vob-menu > li.current-page-ancestor > a {
	color: #fff !important;
	box-shadow: inset 0 -3px 0 var(--orange);
}
.vob-ext { display: inline-flex; margin-left: 4px; opacity: .7; vertical-align: 1px; }
.vob-sub-toggle { display: none; }
.vob-menu .sub-menu {
	list-style: none; margin: 0; padding: 8px 0;
	position: absolute; top: 100%; left: 0; min-width: 240px;
	background: var(--paper);
	box-shadow: var(--shadow-lift);
	border-top: 4px solid var(--orange);
	opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .15s, transform .15s, visibility .15s;
}
.vob-menu > li:hover > .sub-menu, .vob-menu > li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.vob-menu .sub-menu a {
	color: var(--ink) !important;
	text-transform: none;
	letter-spacing: 0;
	font: 600 15px/1.3 var(--font-body);
	padding: 10px 20px;
}
.vob-menu .sub-menu a:hover, .vob-menu .sub-menu .current-menu-item > a { background: var(--cream); color: var(--pine) !important; }
.vob-header__cta { flex: none; }
.vob-nav__drawer-foot { display: none; }
.vob-burger { display: none; }

@media (max-width: 1100px) {
	.vob-brand__name { font-size: 20px; letter-spacing: 2px; }
	.vob-menu a { padding-inline: 9px; font-size: 13px; }
}

@media (max-width: 900px) {
	.vob-header__inner { gap: 12px; }
	.vob-brand img { height: 38px; }
	.vob-brand__name { font-size: 18px; letter-spacing: 1.5px; line-height: 1.05; max-width: 7.5em; white-space: normal; }
	.vob-header__cta { margin-left: auto; padding: 10px 14px; min-height: 40px; font-size: 13px; }
	.vob-burger {
		display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
		width: 44px; height: 44px; padding: 10px;
		background: transparent; border: 0; cursor: pointer;
	}
	.vob-burger span { display: block; height: 2px; background: var(--cream); transition: transform .2s, opacity .2s; }
	.vob-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.vob-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
	.vob-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

	.vob-nav {
		position: fixed; left: 0; right: 0; bottom: 0;
		top: var(--vob-nav-top, var(--header-h));
		margin: 0;
		background: var(--page);
		overflow-y: auto;
		padding: 8px var(--gutter) 32px;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform .25s ease, visibility .25s;
		z-index: 99;
	}
	.vob-nav.is-open { transform: none; visibility: visible; }
	.vob-menu { flex-direction: column; align-items: stretch; gap: 0; }
	.vob-menu > li { flex-wrap: wrap; border-bottom: 1px solid var(--rule); }
	.vob-menu > li > a {
		flex: 1;
		color: var(--pine) !important;
		font: 700 22px/1.1 var(--font-display);
		letter-spacing: 1px;
		padding: 16px 0;
	}
	.vob-menu > li > a:hover, .vob-menu > li:focus-within > a, .vob-menu > li.current-menu-item > a, .vob-menu > li.current-menu-ancestor > a, .vob-menu > li.current-page-ancestor > a { color: var(--pine) !important; box-shadow: none; }
	.vob-sub-toggle {
		display: inline-flex; align-items: center; justify-content: center;
		width: 44px; height: 44px; background: transparent; border: 0; cursor: pointer;
	}
	.vob-sub-toggle span {
		width: 0; height: 0;
		border-left: 7px solid transparent; border-right: 7px solid transparent; border-top: 8px solid var(--orange);
		transition: transform .2s;
	}
	.vob-sub-toggle[aria-expanded="true"] span { transform: rotate(180deg); }
	.vob-menu .sub-menu {
		position: static; flex-basis: 100%;
		min-width: 0; padding: 0 0 10px;
		box-shadow: none; border-top: 0; background: transparent;
		opacity: 1; visibility: visible; transform: none;
		display: none;
	}
	.vob-menu > li.is-open > .sub-menu { display: block; }
	.vob-menu > li:hover > .sub-menu { opacity: 1; }
	.vob-menu .sub-menu a { padding: 11px 0 11px 12px; font-size: 16px; border-top: 1px solid rgba(221, 210, 184, .6); }
	.vob-menu .sub-menu a:hover { background: transparent; }
	.vob-nav__drawer-foot { display: block; padding-top: 24px; text-align: center; }
	.vob-nav__drawer-foot p { margin: 14px 0 0; font-size: 14px; color: var(--muted); }
	body.vob-nav-open { overflow: hidden; }
}

@media (max-width: 420px) {
	.vob-brand__name { display: none; }
}

/* ---------- hero ---------- */
.vob-hero { position: relative; overflow: hidden; background: var(--pine); color: var(--cream); display: flex; align-items: flex-end; }
.vob-hero--lg { min-height: 640px; }
.vob-hero--md { min-height: 420px; }
.vob-hero--sm { min-height: 340px; }
.vob-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vob-hero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 26, 19, .94) 0%, rgba(10, 26, 19, .55) 45%, rgba(10, 26, 19, .2) 100%); }
.vob-hero--plain .vob-hero__scrim { background: radial-gradient(ellipse at 80% 0%, rgba(217, 123, 41, .18), transparent 60%); }
.vob-hero__body { position: relative; padding-block: 56px 44px; }
.vob-hero--center { text-align: center; }
.vob-hero--center .vob-hero__body { display: flex; flex-direction: column; align-items: center; }
.vob-hero__title {
	color: var(--cream) !important;
	font-weight: 800 !important;
	font-size: clamp(38px, 5.4vw, 64px);
	line-height: .98 !important;
	letter-spacing: 1.5px !important;
	margin: 0 0 12px !important;
	max-width: 18ch;
}
.vob-hero--center .vob-hero__title { max-width: none; }
.vob-hero--lg .vob-hero__title { font-size: clamp(48px, 8.2vw, 104px); letter-spacing: 2px !important; line-height: .95 !important; }
.vob-hero__sub { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.5; margin: 0 0 26px; max-width: 600px; color: #fff; }
.vob-hero--sm .vob-hero__sub, .vob-hero--md .vob-hero__sub { margin-bottom: 0; }
@media (max-width: 900px) {
	.vob-hero--lg { min-height: 560px; }
	.vob-hero--md { min-height: 340px; }
	.vob-hero--sm { min-height: 280px; }
	.vob-hero__body { padding-block: 40px 30px; }
}

/* ---------- breadcrumbs ---------- */
.vob-crumbs { font: 700 12px/1.4 var(--font-body); letter-spacing: 3px; text-transform: uppercase; color: var(--cream); margin-bottom: 12px; }
.vob-crumbs a { color: var(--cream) !important; text-decoration: none; }
.vob-crumbs a:hover { color: #fff !important; text-decoration: underline; }
.vob-crumbs__sep { margin: 0 8px; opacity: .6; }

/* ---------- facts bar (cream, 4 cells) ---------- */
.vob-facts { background: var(--cream); border-bottom: 1px solid var(--rule); }
.vob-facts__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.vob-facts__cell { padding: 26px 20px; text-align: center; border-right: 1px solid var(--rule); }
.vob-facts__cell:last-child { border-right: 0; }
.vob-facts__big { font: 700 30px/1.05 var(--font-display); color: var(--pine); text-transform: uppercase; letter-spacing: .5px; }
.vob-facts__small { font: 600 13px/1.4 var(--font-body); color: var(--muted); margin-top: 4px; }
@media (max-width: 900px) {
	.vob-facts__grid { grid-template-columns: repeat(2, 1fr); }
	.vob-facts__cell { padding: 18px 12px; border-bottom: 1px solid var(--rule); }
	.vob-facts__cell:nth-child(2n) { border-right: 0; }
	.vob-facts__big { font-size: 24px; }
	.vob-facts__small { font-size: 12px; }
}

/* ---------- finder ---------- */
.vob-finder { background: var(--pine); }
.vob-finder__form { display: flex; align-items: center; gap: 14px; padding-block: 28px; }
.vob-finder__title { color: var(--cream) !important; font-size: 26px !important; letter-spacing: 2px !important; margin: 0 10px 0 0 !important; white-space: nowrap; }
.vob-select { position: relative; flex: 1; min-width: 0; }
.vob-select::after {
	content: ""; position: absolute; right: 16px; top: 50%; margin-top: -3px; pointer-events: none;
	border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid var(--muted);
}
.vob-select select {
	width: 100%; min-height: 48px;
	appearance: none; -webkit-appearance: none;
	border: 0; border-radius: 0;
	background: #fff; color: var(--ink);
	font: 600 15px/1.2 var(--font-body);
	padding: 12px 40px 12px 16px;
	cursor: pointer;
}
.vob-finder .vob-btn { min-height: 48px; padding-inline: 30px; }
@media (max-width: 900px) {
	.vob-finder__form { flex-direction: column; align-items: stretch; gap: 10px; padding-block: 22px; }
	.vob-finder__title { font-size: 22px !important; margin: 0 0 4px !important; }
}

/* ---------- cards ---------- */
.vob-grid { display: grid; gap: 28px; }
.vob-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.vob-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.vob-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 1000px) { .vob-grid--3, .vob-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .vob-grid--2, .vob-grid--3, .vob-grid--4 { grid-template-columns: 1fr; gap: 18px; } }

.vob-card { background: var(--paper); box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.vob-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.vob-card__link { display: flex; flex-direction: column; height: 100%; color: inherit !important; text-decoration: none !important; }
.vob-card__media { aspect-ratio: 3 / 2; background: var(--cream); overflow: hidden; }
.vob-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vob-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.vob-card__title { font-size: 26px !important; margin: 0 0 6px !important; }
.vob-card__meta { font: 600 14px/1.45 var(--font-body); color: var(--muted); margin: 0 0 14px; }
.vob-card__text { font-size: 15px; line-height: 1.6; margin: 0 0 16px; }
.vob-card__more {
	margin-top: auto;
	display: inline-flex; align-items: center; gap: 8px;
	font: 700 13px/1 var(--font-body); letter-spacing: 2px; text-transform: uppercase;
	color: var(--rust);
}
.vob-card:hover .vob-card__more { color: var(--pine); }

/* ---------- dark photo band ---------- */
.vob-band { position: relative; overflow: hidden; background: var(--pine); color: var(--cream); }
.vob-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vob-band__scrim { position: absolute; inset: 0; background: rgba(10, 26, 19, .88); }
.vob-band__body { position: relative; padding-block: 72px; }
.vob-band h2, .vob-band h3 { color: var(--cream) !important; }
@media (max-width: 900px) { .vob-band__body { padding-block: 48px; } }

/* ---------- quote ---------- */
.vob-quote { border-left: 4px solid var(--orange); padding-left: 28px; margin: 0; }
.vob-quote p { font: 400 21px/1.6 var(--font-body); margin: 0 0 16px; color: var(--cream); }
.vob-quote cite { font: 700 14px/1.4 var(--font-body); font-style: normal; letter-spacing: 2px; text-transform: uppercase; color: var(--orange-hi); }
.vob-stars { display: inline-flex; gap: 2px; color: var(--orange-hi); vertical-align: -3px; }

/* ---------- why-us strip ---------- */
.vob-points { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.vob-points h3 { font-size: 22px !important; margin: 0 0 8px !important; }
.vob-points p { font-size: 15px; line-height: 1.6; margin: 0; }
@media (max-width: 1000px) { .vob-points { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .vob-points { grid-template-columns: 1fr; gap: 24px; } }

/* ---------- sidebar card / details list (shared by camp + landing) ---------- */
.vob-panel { background: var(--paper); border: 1px solid var(--rule); padding: 24px; }
.vob-panel + .vob-panel { margin-top: 16px; }
.vob-panel__h { font: 700 12px/1.3 var(--font-body) !important; letter-spacing: 3px !important; text-transform: uppercase; color: var(--rust) !important; margin: 0 0 12px !important; }
.vob-dl { margin: 0; }
.vob-dl > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-top: 1px solid var(--rule); font-size: 14.5px; }
.vob-dl dt { font-weight: 700; color: var(--pine); flex: none; }
.vob-dl dd { margin: 0; text-align: right; }

/* ---------- WordPress content ("prose") ---------- */
.vob-prose { font-size: 17px; line-height: 1.7; }
.vob-prose > *:first-child { margin-top: 0; }
.vob-prose p { margin: 0 0 1.1em; }
.vob-prose h2 { font-size: 30px; margin: 1.6em 0 .5em; }
.vob-prose h3 { font-size: 24px; margin: 1.5em 0 .45em; }
.vob-prose h4, .vob-prose h5 { font-size: 19px; margin: 1.4em 0 .4em; }
.vob-prose ul, .vob-prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.vob-prose li { margin: .3em 0; }
.vob-prose ul li::marker { color: var(--orange); }
.vob-prose hr, .vob-prose .wp-block-separator { border: 0; border-top: 1px solid var(--rule) !important; margin: 2em 0; opacity: 1; height: 0; background: none; width: 100%; max-width: none; }
.vob-prose blockquote { border-left: 4px solid var(--orange); margin: 1.5em 0; padding: .2em 0 .2em 24px; font-size: 19px; }
.vob-prose img { display: block; }
.vob-prose figure { margin: 1.6em 0; }
.vob-prose figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }
.vob-prose table { width: 100%; border-collapse: collapse; margin: 1.4em 0; font-size: 15px; background: var(--paper); }
.vob-prose th, .vob-prose td { border: 1px solid var(--rule); padding: 10px 12px; text-align: left; }
.vob-prose .wp-block-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.4em 0; }
/* Galleries, old and new block markup. Core gives each photo a fixed fraction of the row;
   override it so the photos fill a simple square-cornered grid. */
.vob-prose .wp-block-gallery:has(> .blocks-gallery-grid) { display: block !important; margin: 1.8em 0; }
.vob-prose .blocks-gallery-grid, .vob-prose .wp-block-gallery.has-nested-images {
	display: grid !important; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)) !important;
	gap: 10px !important; margin: 1.8em 0 !important; padding: 0 !important; list-style: none;
}
.vob-prose .blocks-gallery-item, .vob-prose .wp-block-gallery.has-nested-images figure.wp-block-image {
	width: auto !important; max-width: none !important; margin: 0 !important; flex: none !important; display: block !important;
}
.vob-prose .blocks-gallery-item figure { margin: 0; height: 100%; }
.vob-prose .wp-block-gallery img, .vob-prose .blocks-gallery-item img { width: 100% !important; height: 100% !important; aspect-ratio: 4 / 3; object-fit: cover; }
@media (max-width: 600px) {
	.vob-prose .blocks-gallery-grid, .vob-prose .wp-block-gallery.has-nested-images { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 8px !important; }
}
.vob-prose .wp-block-columns { display: flex; gap: 32px; flex-wrap: wrap; }
.vob-prose .wp-block-column { flex: 1 1 280px; min-width: 0; }
.vob-prose .wp-block-file { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.vob-prose .wp-block-file__button { background: var(--orange); color: var(--on-orange) !important; padding: 10px 18px; font-weight: 700; text-decoration: none; border-radius: 0; }
/* Old editor palette colours mapped onto Basecamp so pasted green/blue text still fits. */
.vob-prose .has-vivid-green-cyan-color, .vob-prose .has-vivid-cyan-blue-color { color: var(--pine) !important; font-weight: 700; }
.vob-prose .has-luminous-vivid-amber-color, .vob-prose .has-vivid-red-color, .vob-prose .has-luminous-vivid-orange-color { color: var(--rust) !important; }
.vob-prose .has-black-color { color: var(--ink) !important; }
.vob-prose [style*="color:#"] { color: inherit; }
.vob-prose .has-text-align-center { text-align: center; }
.vob-embed, .vob-prose .embed-responsive, .vob-prose .wp-block-embed__wrapper { position: relative; aspect-ratio: 16 / 9; width: 100%; margin: 1.5em 0; background: #000; }
.vob-embed iframe, .vob-prose .embed-responsive iframe, .vob-prose .embed-responsive-item, .vob-prose .wp-block-embed__wrapper iframe { position: absolute; inset: 0; width: 100% !important; height: 100% !important; border: 0; }
/* Smart Slider galleries inside content: keep them full width and square */
.vob-prose .n2-section-smartslider { margin: 1.6em 0; }

/* ---------- footer ---------- */
.vob-footer { background: var(--pine); color: var(--cream); margin-top: 0; }
.vob-footer a { color: var(--cream) !important; text-decoration: none; }
.vob-footer a:hover { color: #fff !important; text-decoration: underline; }
.vob-footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 48px; padding-block: 56px 44px; }
.vob-footer__brand img { width: 120px; height: auto; display: block; margin-bottom: 18px; }
.vob-footer__mission { font-size: 15px; line-height: 1.65; opacity: .85; max-width: 38ch; margin: 0; }
.vob-footer__h { font: 700 20px/1 var(--font-display) !important; letter-spacing: 2px !important; color: var(--cream) !important; margin: 0 0 18px !important; }
.vob-footer__col p { font-size: 15px; opacity: .85; margin: 0 0 14px; }
.vob-footer__contact { list-style: none; margin: 0 0 18px; padding: 0; }
.vob-footer__contact li { display: flex; align-items: center; gap: 10px; padding: 5px 0; font-size: 15px; }
.vob-footer__contact .vob-icon { color: var(--orange-hi); flex: none; }
.vob-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 14px; }
.vob-footer-links a { opacity: .85; }
.vob-subscribe { display: flex; gap: 0; margin-bottom: 20px; }
.vob-subscribe input[type="email"] {
	flex: 1; min-width: 0; min-height: 46px;
	border: 1px solid rgba(242, 234, 216, .35); border-right: 0; border-radius: 0;
	background: rgba(255, 255, 255, .06); color: #fff;
	font: 500 15px var(--font-body); padding: 10px 14px;
}
.vob-subscribe input::placeholder { color: rgba(242, 234, 216, .6); }
.vob-hp { position: absolute; left: -5000px; }
.vob-social { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.vob-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border: 1px solid rgba(242, 234, 216, .35);
	transition: background-color .15s, border-color .15s;
}
.vob-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--on-orange) !important; }
.vob-footer__legal { border-top: 1px solid rgba(242, 234, 216, .15); font-size: 13px; }
.vob-footer__legal .vob-wrap { display: flex; flex-wrap: wrap; gap: 8px 24px; padding-block: 18px; opacity: .8; }
.vob-footer__since { margin-left: auto; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
@media (max-width: 900px) {
	.vob-footer__grid { grid-template-columns: 1fr; gap: 32px; padding-block: 44px 32px; }
	.vob-footer__since { margin-left: 0; }
}

/* ---------- utilities ---------- */
.vob-center { text-align: center; }
.vob-stack > * + * { margin-top: 16px; }
.vob-mt0 { margin-top: 0 !important; }
.vob-hide-mobile { }
@media (max-width: 900px) { .vob-hide-mobile { display: none !important; } }

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