/* ==========================================================
   SEO → CMO — theme styles
   Palette: Ink #14202E · Paper #F2F1EA · Burnt Orange #BF5700
            SERP Green #1E7A4C · Slate #5C6B78 · Line #D9D6CA
   Type:    Archivo (display) · Newsreader (body) · IBM Plex Mono (queries)
   ========================================================== */

:root {
	--ink: #14202E;
	--ink-deep: #0C141E;
	--paper: #F2F1EA;
	--white: #FFFFFF;
	--orange: #BF5700;
	--orange-dark: #9E4800;
	--green: #1E7A4C;
	--slate: #5C6B78;
	--line: #D9D6CA;
	--line-dark: #2A3949;

	--font-display: "Archivo", system-ui, sans-serif;
	--font-body: "Newsreader", Georgia, serif;
	--font-mono: "IBM Plex Mono", ui-monospace, monospace;

	--wrap: 1140px;
	--radius: 10px;
	--header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--ink);
	background: var(--paper);
}
body.nav-locked { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--white); padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
	font-family: var(--font-display);
	line-height: 1.05;
	letter-spacing: -0.015em;
	margin: 0 0 0.5em;
	color: inherit;
}
h1 { font-weight: 900; font-size: clamp(3rem, 8vw, 5.6rem); text-transform: uppercase; }
h2 { font-weight: 900; font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h4 { font-weight: 700; font-size: 1.15rem; letter-spacing: 0; }
p { margin: 0 0 1em; }

.section-head { max-width: 22ch; }
.section-head em { font-style: normal; color: var(--orange); }

/* Search-query chip — the site's signature label */
.query-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-mono);
	font-size: 0.85rem;
	color: var(--green);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 8px 18px;
	margin: 0 0 22px;
	box-shadow: 0 1px 0 rgba(20, 32, 46, 0.06);
}
.query-glass { transform: rotate(-45deg); display: inline-block; color: var(--slate); font-size: 1rem; }
.query-caret { width: 8px; height: 1.1em; background: var(--green); margin-left: 2px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
	.query-caret { animation: none; }
	html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	border-radius: 999px;
	padding: 13px 26px;
	border: 2px solid transparent;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { display: block; text-align: center; }
.btn-solid { background: var(--orange); color: var(--white); }
.btn-solid:hover { background: var(--orange-dark); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-deep); }
.btn-outline-light { border-color: rgba(255,255,255,0.55); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.text-link {
	font-family: var(--font-display);
	font-weight: 700;
	text-decoration: none;
	color: var(--orange);
	border-bottom: 2px solid currentColor;
	padding-bottom: 2px;
}
.text-link:hover { color: var(--orange-dark); }

/* ---------- Header / sticky nav ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(242, 241, 234, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 20px rgba(20,32,46,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }

.brand {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 1.35rem;
	letter-spacing: -0.02em;
	text-decoration: none;
	color: var(--ink);
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
}
.brand-arrow { color: var(--orange); }
.brand-cmo { color: var(--orange); }

.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	color: var(--ink);
	padding-bottom: 3px;
	border-bottom: 2px solid transparent;
}
.nav-list a:hover, .nav-list .current-menu-item > a, .nav-list .current_page_item > a { border-bottom-color: var(--orange); }

.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle-bar { display: block; width: 26px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

@media (max-width: 900px) {
	.nav-toggle { display: block; }
	.site-nav {
		position: fixed;
		inset: var(--header-h) 0 0 0;
		background: var(--paper);
		flex-direction: column;
		justify-content: flex-start;
		padding: 40px 24px;
		gap: 24px;
		transform: translateX(100%);
		transition: transform 0.25s ease;
	}
	.site-nav.is-open { transform: translateX(0); }
	.nav-list { flex-direction: column; gap: 18px; text-align: center; }
	.nav-list a { font-size: 1.25rem; }
}

/* ---------- Hero ---------- */
.hero {
	background:
		radial-gradient(1200px 600px at 85% -10%, rgba(191, 87, 0, 0.22), transparent 60%),
		linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
	color: var(--white);
	padding: 80px 0 100px;
	overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero .query-chip { background: rgba(255,255,255,0.06); border-color: var(--line-dark); color: #6FCF97; }
.hero .query-glass { color: #8899AA; }
.hero .query-caret { background: #6FCF97; }
.serp-rank {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 10px;
}
.serp-rank::before { content: "1 · "; font-weight: 700; }
.hero h1 { color: var(--white); margin-bottom: 0.35em; }
.hero-sub { font-size: 1.25rem; max-width: 46ch; color: #C9D2DB; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 22px; }
.hero-byline { font-family: var(--font-mono); font-size: 0.85rem; color: #8FA0B0; }
.hero-byline strong { color: var(--white); font-weight: 500; }

/* Portrait + 3D book composition */
.hero-visual { position: relative; min-height: 440px; }
.portrait {
	margin: 0;
	position: absolute;
	inset: 0 0 60px 40px;
	border-radius: var(--radius);
	overflow: hidden;
	background: linear-gradient(160deg, #223449, #17222F);
	border: 1px solid var(--line-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-fallback {
	display: none;
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 6rem;
	color: rgba(255,255,255,0.12);
}
.portrait.portrait-empty .portrait-fallback { display: block; }

.book {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 210px;
	aspect-ratio: 2 / 3;
	transform: rotate(-4deg);
	filter: drop-shadow(0 24px 30px rgba(0,0,0,0.45));
}
.book-cover {
	position: absolute;
	inset: 0;
	background: linear-gradient(165deg, var(--orange) 0%, var(--orange-dark) 100%);
	border-radius: 3px 8px 8px 3px;
	padding: 20px 18px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.book-spine {
	position: absolute;
	left: -10px;
	top: 3px;
	bottom: 3px;
	width: 12px;
	background: var(--orange-dark);
	border-radius: 3px 0 0 3px;
	transform: skewY(-2deg);
}
.book-kicker { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin: 0; }
.book-title {
	font-family: var(--font-display);
	font-weight: 900;
	font-size: 2rem;
	line-height: 0.95;
	color: var(--white);
	margin: 0;
	letter-spacing: -0.01em;
}
.book-author { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: rgba(255,255,255,0.9); margin: 0; border-top: 1px solid rgba(255,255,255,0.35); padding-top: 10px; }

@media (max-width: 900px) {
	.hero-grid { grid-template-columns: 1fr; }
	.hero-visual { min-height: 380px; max-width: 420px; }
	.hero { padding: 56px 0 72px; }
}

/* ---------- Trust logos ---------- */
.trust { padding: 72px 0; background: var(--white); border-bottom: 1px solid var(--line); text-align: center; }
.query-chip-dark { background: var(--paper); }
.trust-head { font-size: clamp(1.4rem, 3vw, 2rem); max-width: 26ch; margin-inline: auto; }
.logo-grid {
	list-style: none;
	margin: 40px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px;
}
.logo-slot {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	min-height: 84px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 18px;
	background: var(--paper);
}
.logo-slot span {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 0.9rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: var(--slate);
	text-align: center;
}
.logo-slot img { max-height: 52px; width: auto; filter: grayscale(1); opacity: 0.85; }

/* ---------- Four parts ---------- */
.parts { padding: 90px 0 40px; }
.parts > .wrap:first-child { margin-bottom: 20px; }
.part-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	padding-block: 56px;
	border-top: 1px solid var(--line);
}
.part-row-flip .part-visual { order: 2; }
@media (max-width: 820px) {
	.part-row { grid-template-columns: 1fr; gap: 28px; padding-block: 44px; }
	.part-row-flip .part-visual { order: 0; }
}
.part-label {
	font-family: var(--font-mono);
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: 8px;
}
.part-copy p { color: #3A4652; max-width: 54ch; }

.part-visual {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 36px;
	gap: 16px;
}

/* Part I — SERP */
.part-visual-serp { flex-direction: column; align-items: stretch; }
.serp-card { display: flex; align-items: center; gap: 16px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.serp-card-top { background: var(--white); border-color: var(--orange); box-shadow: 0 8px 24px rgba(191,87,0,0.14); }
.serp-pos {
	font-family: var(--font-display); font-weight: 900; font-size: 1.2rem;
	width: 40px; height: 40px; border-radius: 50%; flex: none;
	display: flex; align-items: center; justify-content: center;
	background: var(--orange); color: var(--white);
}
.serp-pos-dim { background: var(--line); color: var(--slate); }
.serp-lines { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.serp-line { height: 8px; border-radius: 4px; background: var(--ink); opacity: 0.85; width: 55%; }
.serp-line-title { width: 80%; height: 12px; background: var(--green); }
.serp-line.dim, .serp-line-title.dim { background: var(--line); opacity: 1; }

/* Part II — CMO letters */
.part-visual-letters { gap: 12px; }
.letter-tile {
	flex: 1; text-align: center; border: 1px solid var(--line); border-radius: 8px;
	padding: 28px 10px; background: var(--paper);
}
.letter-tile b { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(2.6rem, 5vw, 4rem); line-height: 1; }
.letter-tile i { font-family: var(--font-mono); font-style: normal; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); }
.letter-tile-accent { background: var(--ink); border-color: var(--ink); }
.letter-tile-accent b { color: var(--orange); }
.letter-tile-accent i { color: #AABBCB; }

/* Part III — stages */
.part-visual-stages { align-items: flex-end; height: 300px; }
.stage {
	flex: 1; height: var(--h); background: var(--ink); border-radius: 6px 6px 0 0;
	position: relative; display: flex; align-items: flex-end; justify-content: center;
	padding-bottom: 12px;
}
.stage-accent { background: var(--orange); }
.stage i {
	font-family: var(--font-mono); font-style: normal; font-size: 0.7rem;
	letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.9);
	writing-mode: initial;
}

/* Part IV — roadmap svg */
.roadmap-svg { width: 100%; height: auto; }
.map-path { stroke: var(--line); stroke-width: 3; stroke-dasharray: 6 7; }
.map-dots circle { fill: var(--ink); }
.map-dots .map-dot-end { fill: var(--orange); }
.roadmap-svg text {
	font-family: var(--font-display); font-weight: 700; font-size: 11px;
	fill: var(--white); text-anchor: middle;
}

/* ---------- CTA band ---------- */
.cta-band { padding: 90px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-card { border-radius: var(--radius); padding: 44px 40px; }
.cta-card h3 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-card-book { background: var(--ink); color: var(--white); }
.cta-card-book p { color: #C9D2DB; }
.cta-card-book .part-label { color: #6FCF97; }
.cta-card-hire { background: var(--orange); color: var(--white); }
.cta-card-hire p { color: #FFE3CC; }
.cta-card-hire .part-label { color: var(--ink); }
.cta-band-single { padding: 70px 0; background: var(--white); border-top: 1px solid var(--line); }
.cta-single { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-single h3 { margin: 0; }

/* ---------- Inner page hero ---------- */
.page-hero {
	background: linear-gradient(180deg, var(--ink) 0%, var(--ink-deep) 100%);
	color: var(--white);
	padding: 72px 0;
}
.page-hero .query-chip { background: rgba(255,255,255,0.06); border-color: var(--line-dark); color: #6FCF97; }
.page-hero .query-glass { color: #8899AA; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
.page-hero-sub { font-size: 1.2rem; color: #C9D2DB; max-width: 62ch; margin-bottom: 1.4em; }
.page-hero-compact { padding: 52px 0; }

/* ---------- Prose sections ---------- */
.prose-section { padding: 72px 0; }
.prose h2 { font-size: 1.6rem; margin-top: 1.6em; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #3A4652; }
.prose-narrow { max-width: 760px; }
.prose-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 820px) { .prose-grid { grid-template-columns: 1fr; } }

.fact-rail { display: grid; gap: 14px; position: sticky; top: calc(var(--header-h) + 24px); }
.fact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.fact-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin: 0 0 4px; }
.fact-value { font-family: var(--font-display); font-weight: 700; margin: 0; }
.fact-card-cta { background: var(--ink); color: var(--white); border-color: var(--ink); }
.fact-card-cta p { margin-bottom: 14px; }

/* ---------- Principles (services) ---------- */
.principles { background: var(--white); border-bottom: 1px solid var(--line); padding: 56px 0; }
.principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
@media (max-width: 820px) { .principle-grid { grid-template-columns: 1fr; } }
.principle-head { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin-bottom: 6px; border-top: 3px solid var(--orange); padding-top: 12px; }
.principle p:last-child { color: #3A4652; margin: 0; }

/* ---------- Roadmap (services) ---------- */
.roadmap { padding: 80px 0 20px; }
.roadmap-intro { max-width: 62ch; color: #3A4652; }
.phase { padding: 48px 24px; border-top: 1px solid var(--line); }
.phase-marker { display: flex; gap: 16px; align-items: baseline; margin-bottom: 6px; }
.phase-num { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.phase-time { font-family: var(--font-mono); font-size: 0.8rem; color: var(--slate); }
.phase-title { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 900; }

.step-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 6px; }
.step {
	display: flex; gap: 20px; align-items: flex-start;
	background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
	padding: 24px;
	position: relative;
}
.step + .step::before {
	content: "";
	position: absolute;
	left: 43px;
	top: -7px;
	width: 3px;
	height: 8px;
	background: var(--line);
}
.step-dot {
	flex: none;
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--ink); color: var(--white);
	font-family: var(--font-display); font-weight: 900; font-size: 1.15rem;
	display: flex; align-items: center; justify-content: center;
}
.step h4 { margin-bottom: 4px; }
.step p { margin: 0; color: #3A4652; }

.phase-cta {
	margin-top: 26px;
	display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
	background: var(--paper); border: 1px dashed var(--line);
	border-radius: var(--radius); padding: 20px 26px;
}
.phase-cta p { margin: 0; font-family: var(--font-display); font-weight: 500; }
.phase-cta-final { display: block; background: var(--ink); color: var(--white); border: 0; padding: 40px; }
.phase-cta-final h3 { color: var(--white); }
.phase-cta-final p { font-family: var(--font-body); font-weight: 400; color: #C9D2DB; margin-bottom: 22px; }

/* ---------- Fit (services) ---------- */
.fit { padding: 72px 0; }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 24px; }
@media (max-width: 720px) { .fit-grid { grid-template-columns: 1fr; } }
.fit-card { border-radius: var(--radius); padding: 30px 32px; background: var(--white); border: 1px solid var(--line); }
.fit-head { font-family: var(--font-display); font-weight: 900; font-size: 1.2rem; margin-bottom: 12px; }
.fit-yes { border-top: 5px solid var(--green); }
.fit-no { border-top: 5px solid var(--slate); }
.fit-card ul { margin: 0; padding-left: 20px; color: #3A4652; }
.fit-card li { margin-bottom: 8px; }

/* ---------- Case studies ---------- */
.cases { padding: 40px 0 20px; }
.case {
	display: grid; grid-template-columns: 0.8fr 1.6fr; gap: 56px;
	padding-block: 56px; border-top: 1px solid var(--line); align-items: start;
}
@media (max-width: 820px) { .case { grid-template-columns: 1fr; gap: 20px; } }
.case:first-child { border-top: 0; }
.case-stat { position: sticky; top: calc(var(--header-h) + 24px); }
.case-number {
	font-family: var(--font-display); font-weight: 900;
	font-size: clamp(4rem, 9vw, 6.5rem); line-height: 0.9;
	color: var(--orange); margin: 0;
}
.case-number-label { font-family: var(--font-mono); font-size: 0.85rem; color: var(--slate); max-width: 24ch; }
.case-body h2 { font-size: clamp(1.6rem, 3.4vw, 2.2rem); }
.case-body p { color: #3A4652; max-width: 62ch; }

/* ---------- Work with us ---------- */
.work-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 820px) { .work-grid { grid-template-columns: 1fr; } }
.plain-steps { padding-left: 22px; color: #3A4652; }
.plain-steps li { margin-bottom: 14px; }
.diagnostic-list { list-style: none; padding: 0; margin: 0 0 1em; }
.diagnostic-list li {
	background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--orange);
	border-radius: 8px; padding: 16px 20px; margin-bottom: 10px; color: #3A4652;
	font-family: var(--font-body);
}
.work-form-rail { display: grid; gap: 14px; position: sticky; top: calc(var(--header-h) + 24px); }
.contact-card { background: var(--ink); color: var(--white); border-radius: var(--radius); padding: 30px; }
.contact-card h3 { color: var(--white); }
.contact-card p { color: #C9D2DB; }
.contact-note { font-size: 0.95rem; margin: 14px 0 0; }
.contact-note a { color: #FFB27A; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-deep); color: #C9D2DB; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-wordmark { font-size: 1.4rem; margin-bottom: 8px; color: var(--white); }
.footer-tag { max-width: 30ch; margin-bottom: 20px; }
.footer-head { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #7E8FA0; margin-bottom: 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: #C9D2DB; text-decoration: none; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-legal {
	display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
	border-top: 1px solid var(--line-dark); margin-top: 50px; padding-top: 24px;
	font-family: var(--font-mono); font-size: 0.8rem; color: #7E8FA0;
}
.footer-legal a { color: #C9D2DB; }
.footer-legal p { margin: 0; }
