:root {
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: 'Public Sans', sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.mc-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 40px;
}

.mc-eyebrow {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brass);
	display: flex;
	align-items: center;
	gap: 10px;
}

.mc-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--brass);
}

h1,h2,h3 {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	letter-spacing: -.01em;
}

h1,h2,h3,.mc-logo,.mc-stat-num {
	font-variation-settings: opsz 9;
}

/* ledger tick rule — signature element */
.mc-ledger-rule {
	position: relative;
	height: 1px;
	background: var(--line);
	width: 100%;
}

.mc-ledger-rule.mc-on-dark {
	background: var(--line-deep);
}

.mc-ledger-rule::after {
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
	width: 100%;
	height: 7px;
	background-image: repeating-linear-gradient(90deg, var(--brass) 0, var(--brass) 1px, transparent 1px, transparent 64px);
	opacity: .6;
}

/* nav */
header {
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bg);
	box-shadow: 0 4px 20px rgba(27,26,21,0.05);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mc-logo {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	font-size: 21px;
	letter-spacing: -.01em;
}

.mc-logo em {
	font-style: italic;
	color: var(--brass);
}

.mc-nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.mc-nav-links a {
	position: relative;
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	transition: color .2s;
	padding-bottom: 2px;
}

.mc-nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--brass);
	transition: width .25s ease;
}

.mc-nav-links a:hover {
	color: var(--ink);
}

.mc-nav-links a:hover::after {
	width: 100%;
}

.mc-btn {
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 11px 22px;
	border-radius: 2px;
	text-decoration: none;
	display: inline-block;
	transition: transform .2s ease, background 0.2s, color 0.2s, border-color .2s;
	letter-spacing: .01em;
}

.mc-btn-primary {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-btn-primary:hover {
	background: var(--maroon);
	transform: translateY(-2px);
}

.mc-btn-ghost {
	border: 1px solid var(--ink);
	color: var(--ink);
}

.mc-btn-ghost:hover {
	background: var(--ink);
	color: var(--bg);
	transform: translateY(-2px);
}

.mc-btn-on-dark {
	border: 1px solid var(--brass-light);
	color: var(--brass-light);
}

.mc-btn-on-dark:hover {
	background: var(--brass-light);
	color: var(--bg-deep);
	transform: translateY(-2px);
}

/* hero */
.mc-hero {
	padding: 64px 0 56px;
}

.mc-hero h1 {
	font-size: 56px;
	line-height: 1.08;
	max-width: 780px;
	margin: 22px 0 26px;
}

.mc-hero h1 .mc-accent {
	font-style: italic;
	color: var(--brass);
}

.mc-hero p.mc-lead {
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 540px;
	margin-bottom: 34px;
}

.mc-hero-ctas {
	display: flex;
	gap: 16px;
	margin-bottom: 56px;
}

/* stat ledger strip */
.mc-stat-strip {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0;
	padding: 30px 0 8px;
	max-width: 520px;
}

.mc-stat-item {
	padding: 0 28px;
	border-left: 1px solid var(--line);
}

.mc-stat-item:first-child {
	padding-left: 0;
	border-left: none;
}

.mc-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 30px;
	font-weight: 500;
	color: var(--bg-deep);
}

.mc-stat-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11.5px;
	color: var(--ink-soft);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 6px;
}

.mc-stat-note {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: #9A9484;
	margin-top: 14px;
}

/* philosophy */
section {
	padding: 76px 0;
}

.mc-section-sage {
	background: var(--bg-sage);
}

.mc-section-head {
	max-width: 600px;
	margin-bottom: 48px;
}

.mc-section-head h2 {
	font-size: 34px;
	margin-top: 16px;
	line-height: 1.2;
}

.mc-values-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1px;
	background: var(--line-sage);
}

.mc-value-card {
	background: var(--bg-sage);
	padding: 30px 26px;
	transition: background .25s ease;
}

.mc-value-card:hover {
	background: #D7DECB;
}

.mc-value-icon-badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(169,121,61,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: background .3s ease, transform .3s ease;
}

.mc-value-card:hover .mc-value-icon-badge {
	background: rgba(169,121,61,0.18);
	transform: rotate(-6deg) scale(1.06);
}

.mc-value-icon {
	width: 24px;
	height: 24px;
	color: var(--brass);
}

@keyframes drawIcon {
	from {
	}
	
	to {
	}
}

.mc-value-icon {
	animation: drawIcon 1s ease .3s forwards;
}

.mc-value-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.mc-value-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.6;
}

/* how we invest — dark section */
.mc-invest-section {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-invest-section .mc-eyebrow {
	color: var(--brass-light);
}

.mc-invest-section .mc-section-head h2 {
	color: #F5F2E9;
}

.mc-invest-row {
	display: grid;
	grid-template-columns: 220px 1fr 210px;
	gap: 32px;
	align-items: start;
	padding: 30px 24px;
	margin: 0 -24px;
	border-top: 1px solid var(--line-deep);
	transition: background .25s ease;
}

.mc-invest-row:last-child {
	border-bottom: 1px solid var(--line-deep);
}

.mc-invest-row:hover {
	background: rgba(201,166,107,0.06);
}

.mc-invest-row h3 {
	font-size: 23px;
	color: #F5F2E9;
}

.mc-invest-row p {
	font-size: 14.5px;
	color: #B9C4BA;
	max-width: 480px;
}

.mc-invest-tag {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass-light);
	justify-self: end;
	padding-top: 4px;
	white-space: nowrap;
	transition: color .25s ease;
}

.mc-invest-row:hover .mc-invest-tag {
	color: #F5F2E9;
}

/* legacy split */
.mc-legacy-solo {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.mc-legacy-solo .mc-eyebrow {
	justify-content: center;
}

.mc-legacy-solo .mc-eyebrow::before {
	display: none;
}

.mc-legacy-solo h2 {
	font-size: 32px;
	margin: 16px 0 20px;
	line-height: 1.25;
}

.mc-legacy-solo p {
	font-size: 15.5px;
	color: var(--ink-soft);
	margin: 0 auto 16px;
	max-width: 560px;
}

.mc-legacy-solo a {
	color: var(--bg-deep);
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	border-bottom: 1px solid var(--brass);
}

/* contact cta */
.mc-cta-section {
	text-align: center;
}

.mc-cta-section .mc-eyebrow {
	justify-content: center;
}

.mc-cta-section .mc-eyebrow::before {
	display: none;
}

.mc-cta-section h2 {
	font-size: 38px;
	max-width: 600px;
	margin: 18px auto 30px;
	line-height: 1.25;
}

.mc-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
}

footer {
	padding: 44px 0;
	border-top: 1px solid var(--line);
}

.mc-footer-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mc-footer-links {
	display: flex;
	gap: 28px;
	list-style: none;
}

.mc-footer-links a {
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 13.5px;
}

.mc-footer-addr {
	font-size: 13px;
	color: #8A8578;
	margin-top: 6px;
}

/* on-load reveal animations — pure CSS, no JavaScript required */
html {
	scroll-behavior: smooth;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mc-reveal {
	animation: fadeUp .8s ease both;
}

.mc-reveal-stagger .mc-stagger-child {
	animation: fadeUp .7s ease both;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(1) {
	animation-delay: .05s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(2) {
	animation-delay: .15s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(3) {
	animation-delay: .25s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(4) {
	animation-delay: .35s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(5) {
	animation-delay: .45s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(6) {
	animation-delay: .55s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(7) {
	animation-delay: .65s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(8) {
	animation-delay: .75s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(9) {
	animation-delay: .85s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(10) {
	animation-delay: .95s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(11) {
	animation-delay: 1.05s;
}

@media (prefers-reduced-motion: reduce) {
	.mc-reveal, .mc-reveal-stagger .mc-stagger-child {
		animation: none;
	}
}

@media (max-width:880px) {
	.mc-wrap {
		padding: 0 22px;
	}
	
	.mc-hero h1 {
		font-size: 36px;
	}
	
	.mc-stat-strip {
		grid-template-columns: repeat(3,1fr);
		max-width: none;
	}
	
	.mc-values-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.mc-invest-row {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 0;
	}
	
	.mc-invest-tag {
		justify-self: start;
	}
	
	.mc-nav-links {
		display: none;
	}
}

/* ===== combined from all pages ===== */
:root {
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: 'Public Sans', sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.mc-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 40px;
}

.mc-eyebrow {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brass);
	display: flex;
	align-items: center;
	gap: 10px;
}

.mc-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--brass);
}

h1,h2,h3 {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	letter-spacing: -.01em;
}

h1,h2,h3,.mc-logo,.mc-stat-num {
	font-variation-settings: opsz 9;
}

/* ledger tick rule — signature element */
.mc-ledger-rule {
	position: relative;
	height: 1px;
	background: var(--line);
	width: 100%;
}

.mc-ledger-rule.mc-on-dark {
	background: var(--line-deep);
}

.mc-ledger-rule::after {
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
	width: 100%;
	height: 7px;
	background-image: repeating-linear-gradient(90deg, var(--brass) 0, var(--brass) 1px, transparent 1px, transparent 64px);
	opacity: .6;
}

/* nav */
header {
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bg);
	box-shadow: 0 4px 20px rgba(27,26,21,0.05);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mc-logo {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	font-size: 21px;
	letter-spacing: -.01em;
}

.mc-logo em {
	font-style: italic;
	color: var(--brass);
}

.mc-nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.mc-nav-links a {
	position: relative;
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	transition: color .2s;
	padding-bottom: 2px;
}

.mc-nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--brass);
	transition: width .25s ease;
}

.mc-nav-links a:hover {
	color: var(--ink);
}

.mc-nav-links a:hover::after {
	width: 100%;
}

.mc-btn {
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 11px 22px;
	border-radius: 2px;
	text-decoration: none;
	display: inline-block;
	transition: transform .2s ease, background 0.2s, color 0.2s, border-color .2s;
	letter-spacing: .01em;
}

.mc-btn-primary {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-btn-primary:hover {
	background: var(--maroon);
	transform: translateY(-2px);
}

.mc-btn-ghost {
	border: 1px solid var(--ink);
	color: var(--ink);
}

.mc-btn-ghost:hover {
	background: var(--ink);
	color: var(--bg);
	transform: translateY(-2px);
}

.mc-btn-on-dark {
	border: 1px solid var(--brass-light);
	color: var(--brass-light);
}

.mc-btn-on-dark:hover {
	background: var(--brass-light);
	color: var(--bg-deep);
	transform: translateY(-2px);
}

/* hero */
.mc-hero {
	padding: 64px 0 56px;
}

.mc-hero h1 {
	font-size: 56px;
	line-height: 1.08;
	max-width: 780px;
	margin: 22px 0 26px;
}

.mc-hero h1 .mc-accent {
	font-style: italic;
	color: var(--brass);
}

.mc-hero p.mc-lead {
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 540px;
	margin-bottom: 34px;
}

.mc-hero-ctas {
	display: flex;
	gap: 16px;
	margin-bottom: 56px;
}

/* stat ledger strip */
.mc-stat-strip {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0;
	padding: 30px 0 8px;
	max-width: 520px;
}

.mc-stat-item {
	padding: 0 28px;
	border-left: 1px solid var(--line);
}

.mc-stat-item:first-child {
	padding-left: 0;
	border-left: none;
}

.mc-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 30px;
	font-weight: 500;
	color: var(--bg-deep);
}

.mc-stat-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11.5px;
	color: var(--ink-soft);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 6px;
}

.mc-stat-note {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: #9A9484;
	margin-top: 14px;
}

/* philosophy */
section {
	padding: 76px 0;
}

.mc-section-sage {
	background: var(--bg-sage);
}

.mc-section-head {
	max-width: 600px;
	margin-bottom: 48px;
}

.mc-section-head h2 {
	font-size: 34px;
	margin-top: 16px;
	line-height: 1.2;
}

.mc-values-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1px;
	background: var(--line-sage);
}

.mc-value-card {
	background: var(--bg-sage);
	padding: 30px 26px;
	transition: background .25s ease;
}

.mc-value-card:hover {
	background: #D7DECB;
}

.mc-value-icon-badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(169,121,61,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: background .3s ease, transform .3s ease;
}

.mc-value-card:hover .mc-value-icon-badge {
	background: rgba(169,121,61,0.18);
	transform: rotate(-6deg) scale(1.06);
}

.mc-value-icon {
	width: 24px;
	height: 24px;
	color: var(--brass);
}

@keyframes drawIcon {
	from {
	}
	
	to {
	}
}

.mc-value-icon {
	animation: drawIcon 1s ease .3s forwards;
}

.mc-value-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.mc-value-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.6;
}

/* how we invest — dark section */
.mc-invest-section {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-invest-section .mc-eyebrow {
	color: var(--brass-light);
}

.mc-invest-section .mc-section-head h2 {
	color: #F5F2E9;
}

.mc-invest-row {
	display: grid;
	grid-template-columns: 220px 1fr 160px;
	gap: 32px;
	align-items: start;
	padding: 30px 24px;
	margin: 0 -24px;
	border-top: 1px solid var(--line-deep);
	transition: background .25s ease;
}

.mc-invest-row:last-child {
	border-bottom: 1px solid var(--line-deep);
}

.mc-invest-row:hover {
	background: rgba(201,166,107,0.06);
}

.mc-invest-row h3 {
	font-size: 23px;
	color: #F5F2E9;
}

.mc-invest-row p {
	font-size: 14.5px;
	color: #B9C4BA;
	max-width: 480px;
}

.mc-invest-tag {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass-light);
	justify-self: end;
	padding-top: 4px;
	transition: color .25s ease;
}

.mc-invest-row:hover .mc-invest-tag {
	color: #F5F2E9;
}

/* legacy split */
.mc-legacy-solo {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.mc-legacy-solo .mc-eyebrow {
	justify-content: center;
}

.mc-legacy-solo .mc-eyebrow::before {
	display: none;
}

.mc-legacy-solo h2 {
	font-size: 32px;
	margin: 16px 0 20px;
	line-height: 1.25;
}

.mc-legacy-solo p {
	font-size: 15.5px;
	color: var(--ink-soft);
	margin: 0 auto 16px;
	max-width: 560px;
}

.mc-legacy-solo a {
	color: var(--bg-deep);
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	border-bottom: 1px solid var(--brass);
}

/* contact cta */
.mc-cta-section {
	text-align: center;
}

.mc-cta-section .mc-eyebrow {
	justify-content: center;
}

.mc-cta-section .mc-eyebrow::before {
	display: none;
}

.mc-cta-section h2 {
	font-size: 38px;
	max-width: 600px;
	margin: 18px auto 30px;
	line-height: 1.25;
}

.mc-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
}

footer {
	padding: 44px 0;
	border-top: 1px solid var(--line);
}

.mc-footer-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mc-footer-links {
	display: flex;
	gap: 28px;
	list-style: none;
}

.mc-footer-links a {
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 13.5px;
}

.mc-footer-addr {
	font-size: 13px;
	color: #8A8578;
	margin-top: 6px;
}

/* on-load reveal animations — pure CSS, no JavaScript required */
html {
	scroll-behavior: smooth;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mc-reveal {
	animation: fadeUp .8s ease both;
}

.mc-reveal-stagger .mc-stagger-child {
	animation: fadeUp .7s ease both;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(1) {
	animation-delay: .05s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(2) {
	animation-delay: .15s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(3) {
	animation-delay: .25s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(4) {
	animation-delay: .35s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(5) {
	animation-delay: .45s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(6) {
	animation-delay: .55s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(7) {
	animation-delay: .65s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(8) {
	animation-delay: .75s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(9) {
	animation-delay: .85s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(10) {
	animation-delay: .95s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(11) {
	animation-delay: 1.05s;
}

@media (prefers-reduced-motion: reduce) {
	.mc-reveal, .mc-reveal-stagger .mc-stagger-child {
		animation: none;
	}
}

/* secondary page hero */
.mc-page-hero {
	padding: 52px 0 60px;
}

.mc-page-hero h1 {
	font-size: 44px;
	line-height: 1.15;
	max-width: 720px;
	margin: 18px 0 20px;
}

.mc-page-hero p.mc-lead {
	font-size: 17px;
	color: var(--ink-soft);
	max-width: 620px;
}

/* team grid — about page */
.mc-team-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin-top: 8px;
}

.mc-team-card {
	flex: 0 1 33.333%;
	box-sizing: border-box;
	border: .5px solid var(--line-sage);
}

.mc-team-card {
	background: var(--bg-sage);
	padding: 32px 28px;
	transition: background .25s ease;
}

.mc-team-card:hover {
	background: #D7DECB;
}

.mc-team-avatar {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: var(--brass);
	color: #F6F1E4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 18px;
	transition: transform .3s ease;
	overflow: hidden;
}

.mc-team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mc-team-card:hover .mc-team-avatar {
	transform: rotate(-4deg) scale(1.05);
}

.mc-team-card h3 {
	font-size: 19px;
	margin-bottom: 4px;
}

.mc-team-role {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
	margin-bottom: 14px;
}

.mc-team-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.65;
}

/* portfolio grid */
.mc-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1px;
	background: var(--line-sage);
	margin-top: 8px;
}

.mc-portfolio-card {
	background: var(--bg-sage);
	padding: 34px 28px;
	text-align: left;
	transition: background .25s ease;
}

.mc-portfolio-card:hover {
	background: #D7DECB;
}

.mc-portfolio-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.mc-portfolio-sector {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
}

.mc-portfolio-card.mc-pending {
	background: transparent;
	border: 1px dashed #B7BDA9;
}

.mc-portfolio-card.mc-pending h3 {
	color: #8A8578;
	font-style: italic;
	font-weight: 400;
}

.mc-portfolio-card.mc-pending .mc-portfolio-sector {
	color: #8A8578;
}

/* contact page */
.mc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.mc-contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.mc-form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mc-form-row label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ink-soft);
}

.mc-form-row input, .mc-form-row textarea {
	font-family: 'Public Sans', sans-serif;
	font-size: 15px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 2px;
	background: #FFFFFF;
	color: var(--ink);
	transition: border-color .2s ease;
	width: 100%;
}

.mc-form-row input:focus, .mc-form-row textarea:focus {
	outline: none;
	border-color: var(--brass);
}

.mc-form-row textarea {
	resize: vertical;
	min-height: 120px;
	font-family: 'Public Sans', sans-serif;
}

.mc-form-note {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: #9A9484;
	margin-top: -4px;
}

.mc-contact-details {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.mc-contact-detail-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
	margin-bottom: 6px;
}

.mc-contact-detail-value {
	font-size: 15.5px;
	color: var(--ink);
	line-height: 1.6;
}

.mc-contact-detail-value a {
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--brass);
}

.mc-hours-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.mc-hours-table td {
	padding: 6px 0;
	border-top: 1px solid var(--line);
}

.mc-hours-table td:first-child {
	color: var(--ink);
}

.mc-hours-table td:last-child {
	text-align: right;
	color: var(--ink-soft);
}

.mc-map-frame {
	width: 100%;
	aspect-ratio: 16/10;
	border: 0;
	margin-top: 6px;
	border-radius: 2px;
}

@media (max-width:880px) {
	.mc-wrap {
		padding: 0 22px;
	}
	
	.mc-hero h1 {
		font-size: 36px;
	}
	
	.mc-stat-strip {
		grid-template-columns: repeat(3,1fr);
		max-width: none;
	}
	
	.mc-values-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.mc-invest-row {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 0;
	}
	
	.mc-invest-tag {
		justify-self: start;
	}
	
	.mc-nav-links {
		display: none;
	}
	
	.mc-team-card {
		flex-basis: 50%;
	}
	
	.mc-contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

/* ===== combined from all pages ===== */
:root {
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: 'Public Sans', sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.mc-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 40px;
}

.mc-eyebrow {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brass);
	display: flex;
	align-items: center;
	gap: 10px;
}

.mc-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--brass);
}

h1,h2,h3 {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	letter-spacing: -.01em;
}

h1,h2,h3,.mc-logo,.mc-stat-num {
	font-variation-settings: opsz 9;
}

/* ledger tick rule — signature element */
.mc-ledger-rule {
	position: relative;
	height: 1px;
	background: var(--line);
	width: 100%;
}

.mc-ledger-rule.mc-on-dark {
	background: var(--line-deep);
}

.mc-ledger-rule::after {
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
	width: 100%;
	height: 7px;
	background-image: repeating-linear-gradient(90deg, var(--brass) 0, var(--brass) 1px, transparent 1px, transparent 64px);
	opacity: .6;
}

/* nav */
header {
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bg);
	box-shadow: 0 4px 20px rgba(27,26,21,0.05);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mc-logo {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	font-size: 21px;
	letter-spacing: -.01em;
}

.mc-logo em {
	font-style: italic;
	color: var(--brass);
}

.mc-nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.mc-nav-links a {
	position: relative;
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	transition: color .2s;
	padding-bottom: 2px;
}

.mc-nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--brass);
	transition: width .25s ease;
}

.mc-nav-links a:hover {
	color: var(--ink);
}

.mc-nav-links a:hover::after {
	width: 100%;
}

.mc-btn {
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 11px 22px;
	border-radius: 2px;
	text-decoration: none;
	display: inline-block;
	transition: transform .2s ease, background 0.2s, color 0.2s, border-color .2s;
	letter-spacing: .01em;
}

.mc-btn-primary {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-btn-primary:hover {
	background: var(--maroon);
	transform: translateY(-2px);
}

.mc-btn-ghost {
	border: 1px solid var(--ink);
	color: var(--ink);
}

.mc-btn-ghost:hover {
	background: var(--ink);
	color: var(--bg);
	transform: translateY(-2px);
}

.mc-btn-on-dark {
	border: 1px solid var(--brass-light);
	color: var(--brass-light);
}

.mc-btn-on-dark:hover {
	background: var(--brass-light);
	color: var(--bg-deep);
	transform: translateY(-2px);
}

/* hero */
.mc-hero {
	padding: 64px 0 56px;
}

.mc-hero h1 {
	font-size: 56px;
	line-height: 1.08;
	max-width: 780px;
	margin: 22px 0 26px;
}

.mc-hero h1 .mc-accent {
	font-style: italic;
	color: var(--brass);
}

.mc-hero p.mc-lead {
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 540px;
	margin-bottom: 34px;
}

.mc-hero-ctas {
	display: flex;
	gap: 16px;
	margin-bottom: 56px;
}

/* stat ledger strip */
.mc-stat-strip {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0;
	padding: 30px 0 8px;
	max-width: 520px;
}

.mc-stat-item {
	padding: 0 28px;
	border-left: 1px solid var(--line);
}

.mc-stat-item:first-child {
	padding-left: 0;
	border-left: none;
}

.mc-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 30px;
	font-weight: 500;
	color: var(--bg-deep);
}

.mc-stat-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11.5px;
	color: var(--ink-soft);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 6px;
}

.mc-stat-note {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: #9A9484;
	margin-top: 14px;
}

/* philosophy */
section {
	padding: 76px 0;
}

.mc-section-sage {
	background: var(--bg-sage);
}

.mc-section-head {
	max-width: 600px;
	margin-bottom: 48px;
}

.mc-section-head h2 {
	font-size: 34px;
	margin-top: 16px;
	line-height: 1.2;
}

.mc-values-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1px;
	background: var(--line-sage);
}

.mc-value-card {
	background: var(--bg-sage);
	padding: 30px 26px;
	transition: background .25s ease;
}

.mc-value-card:hover {
	background: #D7DECB;
}

.mc-value-icon-badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(169,121,61,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: background .3s ease, transform .3s ease;
}

.mc-value-card:hover .mc-value-icon-badge {
	background: rgba(169,121,61,0.18);
	transform: rotate(-6deg) scale(1.06);
}

.mc-value-icon {
	width: 24px;
	height: 24px;
	color: var(--brass);
}

@keyframes drawIcon {
	from {
	}
	
	to {
	}
}

.mc-value-icon {
	animation: drawIcon 1s ease .3s forwards;
}

.mc-value-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.mc-value-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.6;
}

/* how we invest — dark section */
.mc-invest-section {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-invest-section .mc-eyebrow {
	color: var(--brass-light);
}

.mc-invest-section .mc-section-head h2 {
	color: #F5F2E9;
}

.mc-invest-row {
	display: grid;
	grid-template-columns: 220px 1fr 160px;
	gap: 32px;
	align-items: start;
	padding: 30px 24px;
	margin: 0 -24px;
	border-top: 1px solid var(--line-deep);
	transition: background .25s ease;
}

.mc-invest-row:last-child {
	border-bottom: 1px solid var(--line-deep);
}

.mc-invest-row:hover {
	background: rgba(201,166,107,0.06);
}

.mc-invest-row h3 {
	font-size: 23px;
	color: #F5F2E9;
}

.mc-invest-row p {
	font-size: 14.5px;
	color: #B9C4BA;
	max-width: 480px;
}

.mc-invest-tag {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass-light);
	justify-self: end;
	padding-top: 4px;
	transition: color .25s ease;
}

.mc-invest-row:hover .mc-invest-tag {
	color: #F5F2E9;
}

/* legacy split */
.mc-legacy-solo {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.mc-legacy-solo .mc-eyebrow {
	justify-content: center;
}

.mc-legacy-solo .mc-eyebrow::before {
	display: none;
}

.mc-legacy-solo h2 {
	font-size: 32px;
	margin: 16px 0 20px;
	line-height: 1.25;
}

.mc-legacy-solo p {
	font-size: 15.5px;
	color: var(--ink-soft);
	margin: 0 auto 16px;
	max-width: 560px;
}

.mc-legacy-solo a {
	color: var(--bg-deep);
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	border-bottom: 1px solid var(--brass);
}

/* contact cta */
.mc-cta-section {
	text-align: center;
}

.mc-cta-section .mc-eyebrow {
	justify-content: center;
}

.mc-cta-section .mc-eyebrow::before {
	display: none;
}

.mc-cta-section h2 {
	font-size: 38px;
	max-width: 600px;
	margin: 18px auto 30px;
	line-height: 1.25;
}

.mc-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
}

footer {
	padding: 44px 0;
	border-top: 1px solid var(--line);
}

.mc-footer-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mc-footer-links {
	display: flex;
	gap: 28px;
	list-style: none;
}

.mc-footer-links a {
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 13.5px;
}

.mc-footer-addr {
	font-size: 13px;
	color: #8A8578;
	margin-top: 6px;
}

/* on-load reveal animations — pure CSS, no JavaScript required */
html {
	scroll-behavior: smooth;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mc-reveal {
	animation: fadeUp .8s ease both;
}

.mc-reveal-stagger .mc-stagger-child {
	animation: fadeUp .7s ease both;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(1) {
	animation-delay: .05s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(2) {
	animation-delay: .15s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(3) {
	animation-delay: .25s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(4) {
	animation-delay: .35s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(5) {
	animation-delay: .45s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(6) {
	animation-delay: .55s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(7) {
	animation-delay: .65s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(8) {
	animation-delay: .75s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(9) {
	animation-delay: .85s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(10) {
	animation-delay: .95s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(11) {
	animation-delay: 1.05s;
}

@media (prefers-reduced-motion: reduce) {
	.mc-reveal, .mc-reveal-stagger .mc-stagger-child {
		animation: none;
	}
}

/* secondary page hero */
.mc-page-hero {
	padding: 52px 0 60px;
}

.mc-page-hero h1 {
	font-size: 44px;
	line-height: 1.15;
	max-width: 720px;
	margin: 18px 0 20px;
}

.mc-page-hero p.mc-lead {
	font-size: 17px;
	color: var(--ink-soft);
	max-width: 620px;
}

/* team grid — about page */
.mc-team-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1px;
	background: var(--line-sage);
	margin-top: 8px;
}

.mc-team-card {
	background: var(--bg-sage);
	padding: 32px 28px;
	transition: background .25s ease;
}

.mc-team-card:hover {
	background: #D7DECB;
}

.mc-team-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--brass);
	color: #F6F1E4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 18px;
	transition: transform .3s ease;
}

.mc-team-card:hover .mc-team-avatar {
	transform: rotate(-4deg) scale(1.05);
}

.mc-team-card h3 {
	font-size: 19px;
	margin-bottom: 4px;
}

.mc-team-role {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
	margin-bottom: 14px;
}

.mc-team-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.65;
}

/* portfolio grid */
.mc-portfolio-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0;
	margin-top: 8px;
}

.mc-portfolio-card {
	flex: 0 1 33.333%;
	box-sizing: border-box;
	border: .5px solid var(--line-sage);
}

.mc-portfolio-card {
	background: var(--bg-sage);
	padding: 34px 28px;
	text-align: left;
	transition: background .25s ease;
	display: block;
	text-decoration: none;
	color: inherit;
}

.mc-portfolio-card:hover {
	background: #D7DECB;
}

.mc-portfolio-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.mc-portfolio-card .mc-arrow {
	font-size: 14px;
	color: var(--brass);
	opacity: 0;
	transition: opacity .2s ease, transform .2s ease;
	transform: translateX(-4px);
	display: inline-block;
}

.mc-portfolio-card:hover .mc-arrow {
	opacity: 1;
	transform: translateX(0);
}

.mc-portfolio-sector {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
}

.mc-portfolio-card.mc-pending {
	background: transparent;
	border: 1px dashed #B7BDA9;
}

.mc-portfolio-card.mc-pending h3 {
	color: #8A8578;
	font-style: italic;
	font-weight: 400;
}

.mc-portfolio-card.mc-pending .mc-portfolio-sector {
	color: #8A8578;
}

/* contact page */
.mc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.mc-contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.mc-form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mc-form-row label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ink-soft);
}

.mc-form-row input, .mc-form-row textarea {
	font-family: 'Public Sans', sans-serif;
	font-size: 15px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 2px;
	background: #FFFFFF;
	color: var(--ink);
	transition: border-color .2s ease;
	width: 100%;
}

.mc-form-row input:focus, .mc-form-row textarea:focus {
	outline: none;
	border-color: var(--brass);
}

.mc-form-row textarea {
	resize: vertical;
	min-height: 120px;
	font-family: 'Public Sans', sans-serif;
}

.mc-form-note {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: #9A9484;
	margin-top: -4px;
}

.mc-portfolio-note {
	font-size: 14px;
	color: var(--ink-soft);
	max-width: 640px;
	line-height: 1.6;
}

.mc-contact-details {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.mc-contact-detail-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
	margin-bottom: 6px;
}

.mc-contact-detail-value {
	font-size: 15.5px;
	color: var(--ink);
	line-height: 1.6;
}

.mc-contact-detail-value a {
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--brass);
}

.mc-hours-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.mc-hours-table td {
	padding: 6px 0;
	border-top: 1px solid var(--line);
}

.mc-hours-table td:first-child {
	color: var(--ink);
}

.mc-hours-table td:last-child {
	text-align: right;
	color: var(--ink-soft);
}

.mc-map-frame {
	width: 100%;
	aspect-ratio: 16/10;
	border: 0;
	margin-top: 6px;
	border-radius: 2px;
}

@media (max-width:880px) {
	.mc-wrap {
		padding: 0 22px;
	}
	
	.mc-hero h1 {
		font-size: 36px;
	}
	
	.mc-stat-strip {
		grid-template-columns: repeat(3,1fr);
		max-width: none;
	}
	
	.mc-values-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.mc-invest-row {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 0;
	}
	
	.mc-invest-tag {
		justify-self: start;
	}
	
	.mc-nav-links {
		display: none;
	}
	
	.mc-portfolio-card {
		flex-basis: 50%;
	}
	
	.mc-contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}

/* ===== combined from all pages ===== */
:root {
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: 'Public Sans', sans-serif;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.mc-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 40px;
}

.mc-eyebrow {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--brass);
	display: flex;
	align-items: center;
	gap: 10px;
}

.mc-eyebrow::before {
	content: "";
	width: 22px;
	height: 1px;
	background: var(--brass);
}

h1,h2,h3 {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	letter-spacing: -.01em;
}

h1,h2,h3,.mc-logo,.mc-stat-num {
	font-variation-settings: opsz 9;
}

/* ledger tick rule — signature element */
.mc-ledger-rule {
	position: relative;
	height: 1px;
	background: var(--line);
	width: 100%;
}

.mc-ledger-rule.mc-on-dark {
	background: var(--line-deep);
}

.mc-ledger-rule::after {
	content: "";
	position: absolute;
	left: 0;
	top: -3px;
	width: 100%;
	height: 7px;
	background-image: repeating-linear-gradient(90deg, var(--brass) 0, var(--brass) 1px, transparent 1px, transparent 64px);
	opacity: .6;
}

/* nav */
header {
	padding: 16px 0;
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--bg);
	box-shadow: 0 4px 20px rgba(27,26,21,0.05);
}

nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mc-logo {
	font-family: 'Fraunces', serif;
	font-weight: 500;
	font-size: 21px;
	letter-spacing: -.01em;
}

.mc-logo em {
	font-style: italic;
	color: var(--brass);
}

.mc-nav-links {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
}

.mc-nav-links a {
	position: relative;
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 14.5px;
	font-weight: 500;
	transition: color .2s;
	padding-bottom: 2px;
}

.mc-nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 1px;
	background: var(--brass);
	transition: width .25s ease;
}

.mc-nav-links a:hover {
	color: var(--ink);
}

.mc-nav-links a:hover::after {
	width: 100%;
}

.mc-btn {
	font-family: 'Public Sans', sans-serif;
	font-weight: 600;
	font-size: 14px;
	padding: 11px 22px;
	border-radius: 2px;
	text-decoration: none;
	display: inline-block;
	transition: transform .2s ease, background 0.2s, color 0.2s, border-color .2s;
	letter-spacing: .01em;
}

.mc-btn-primary {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-btn-primary:hover {
	background: var(--maroon);
	transform: translateY(-2px);
}

.mc-btn-ghost {
	border: 1px solid var(--ink);
	color: var(--ink);
}

.mc-btn-ghost:hover {
	background: var(--ink);
	color: var(--bg);
	transform: translateY(-2px);
}

.mc-btn-on-dark {
	border: 1px solid var(--brass-light);
	color: var(--brass-light);
}

.mc-btn-on-dark:hover {
	background: var(--brass-light);
	color: var(--bg-deep);
	transform: translateY(-2px);
}

/* hero */
.mc-hero {
	padding: 64px 0 56px;
}

.mc-hero h1 {
	font-size: 56px;
	line-height: 1.08;
	max-width: 780px;
	margin: 22px 0 26px;
}

.mc-hero h1 .mc-accent {
	font-style: italic;
	color: var(--brass);
}

.mc-hero p.mc-lead {
	font-size: 18px;
	color: var(--ink-soft);
	max-width: 540px;
	margin-bottom: 34px;
}

.mc-hero-ctas {
	display: flex;
	gap: 16px;
	margin-bottom: 56px;
}

/* stat ledger strip */
.mc-stat-strip {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 0;
	padding: 30px 0 8px;
	max-width: 520px;
}

.mc-stat-item {
	padding: 0 28px;
	border-left: 1px solid var(--line);
}

.mc-stat-item:first-child {
	padding-left: 0;
	border-left: none;
}

.mc-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 30px;
	font-weight: 500;
	color: var(--bg-deep);
}

.mc-stat-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11.5px;
	color: var(--ink-soft);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-top: 6px;
}

.mc-stat-note {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: #9A9484;
	margin-top: 14px;
}

/* philosophy */
section {
	padding: 76px 0;
}

.mc-section-sage {
	background: var(--bg-sage);
}

.mc-section-head {
	max-width: 600px;
	margin-bottom: 48px;
}

.mc-section-head h2 {
	font-size: 34px;
	margin-top: 16px;
	line-height: 1.2;
}

.mc-values-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 1px;
	background: var(--line-sage);
}

.mc-value-card {
	background: var(--bg-sage);
	padding: 30px 26px;
	transition: background .25s ease;
}

.mc-value-card:hover {
	background: #D7DECB;
}

.mc-value-icon-badge {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(169,121,61,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: background .3s ease, transform .3s ease;
}

.mc-value-card:hover .mc-value-icon-badge {
	background: rgba(169,121,61,0.18);
	transform: rotate(-6deg) scale(1.06);
}

.mc-value-icon {
	width: 24px;
	height: 24px;
	color: var(--brass);
}

@keyframes drawIcon {
	from {
	}
	
	to {
	}
}

.mc-value-icon {
	animation: drawIcon 1s ease .3s forwards;
}

.mc-value-card h3 {
	font-size: 18px;
	margin-bottom: 10px;
}

.mc-value-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.6;
}

/* how we invest — dark section */
.mc-invest-section {
	background: var(--bg-deep);
	color: #F1EEE6;
}

.mc-invest-section .mc-eyebrow {
	color: var(--brass-light);
}

.mc-invest-section .mc-section-head h2 {
	color: #F5F2E9;
}

.mc-invest-row {
	display: grid;
	grid-template-columns: 220px 1fr 160px;
	gap: 32px;
	align-items: start;
	padding: 30px 24px;
	margin: 0 -24px;
	border-top: 1px solid var(--line-deep);
	transition: background .25s ease;
}

.mc-invest-row:last-child {
	border-bottom: 1px solid var(--line-deep);
}

.mc-invest-row:hover {
	background: rgba(201,166,107,0.06);
}

.mc-invest-row h3 {
	font-size: 23px;
	color: #F5F2E9;
}

.mc-invest-row p {
	font-size: 14.5px;
	color: #B9C4BA;
	max-width: 480px;
}

.mc-invest-tag {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass-light);
	justify-self: end;
	padding-top: 4px;
	transition: color .25s ease;
}

.mc-invest-row:hover .mc-invest-tag {
	color: #F5F2E9;
}

/* legacy split */
.mc-legacy-solo {
	max-width: 640px;
	margin: 0 auto;
	text-align: center;
}

.mc-legacy-solo .mc-eyebrow {
	justify-content: center;
}

.mc-legacy-solo .mc-eyebrow::before {
	display: none;
}

.mc-legacy-solo h2 {
	font-size: 32px;
	margin: 16px 0 20px;
	line-height: 1.25;
}

.mc-legacy-solo p {
	font-size: 15.5px;
	color: var(--ink-soft);
	margin: 0 auto 16px;
	max-width: 560px;
}

.mc-legacy-solo a {
	color: var(--bg-deep);
	font-weight: 600;
	font-size: 14.5px;
	text-decoration: none;
	border-bottom: 1px solid var(--brass);
}

/* contact cta */
.mc-cta-section {
	text-align: center;
}

.mc-cta-section .mc-eyebrow {
	justify-content: center;
}

.mc-cta-section .mc-eyebrow::before {
	display: none;
}

.mc-cta-section h2 {
	font-size: 38px;
	max-width: 600px;
	margin: 18px auto 30px;
	line-height: 1.25;
}

.mc-cta-btns {
	display: flex;
	gap: 16px;
	justify-content: center;
}

footer {
	padding: 44px 0;
	border-top: 1px solid var(--line);
}

.mc-footer-grid {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mc-footer-links {
	display: flex;
	gap: 28px;
	list-style: none;
}

.mc-footer-links a {
	color: var(--ink-soft);
	text-decoration: none;
	font-size: 13.5px;
}

.mc-footer-addr {
	font-size: 13px;
	color: #8A8578;
	margin-top: 6px;
}

/* on-load reveal animations — pure CSS, no JavaScript required */
html {
	scroll-behavior: smooth;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.mc-reveal {
	animation: fadeUp .8s ease both;
}

.mc-reveal-stagger .mc-stagger-child {
	animation: fadeUp .7s ease both;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(1) {
	animation-delay: .05s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(2) {
	animation-delay: .15s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(3) {
	animation-delay: .25s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(4) {
	animation-delay: .35s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(5) {
	animation-delay: .45s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(6) {
	animation-delay: .55s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(7) {
	animation-delay: .65s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(8) {
	animation-delay: .75s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(9) {
	animation-delay: .85s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(10) {
	animation-delay: .95s;
}

.mc-reveal-stagger .mc-stagger-child:nth-child(11) {
	animation-delay: 1.05s;
}

@media (prefers-reduced-motion: reduce) {
	.mc-reveal, .mc-reveal-stagger .mc-stagger-child {
		animation: none;
	}
}

/* secondary page hero */
.mc-page-hero {
	padding: 52px 0 60px;
}

.mc-page-hero h1 {
	font-size: 44px;
	line-height: 1.15;
	max-width: 720px;
	margin: 18px 0 20px;
}

.mc-page-hero p.mc-lead {
	font-size: 17px;
	color: var(--ink-soft);
	max-width: 620px;
}

/* team grid — about page */
.mc-team-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1px;
	background: var(--line-sage);
	margin-top: 8px;
}

.mc-team-card {
	background: var(--bg-sage);
	padding: 32px 28px;
	transition: background .25s ease;
}

.mc-team-card:hover {
	background: #D7DECB;
}

.mc-team-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--brass);
	color: #F6F1E4;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 18px;
	transition: transform .3s ease;
}

.mc-team-card:hover .mc-team-avatar {
	transform: rotate(-4deg) scale(1.05);
}

.mc-team-card h3 {
	font-size: 19px;
	margin-bottom: 4px;
}

.mc-team-role {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
	margin-bottom: 14px;
}

.mc-team-card p {
	font-size: 14px;
	color: var(--ink-soft);
	line-height: 1.65;
}

/* portfolio grid */
.mc-portfolio-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 1px;
	background: var(--line-sage);
	margin-top: 8px;
}

.mc-portfolio-card {
	background: var(--bg-sage);
	padding: 34px 28px;
	text-align: left;
	transition: background .25s ease;
}

.mc-portfolio-card:hover {
	background: #D7DECB;
}

.mc-portfolio-card h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.mc-portfolio-sector {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
}

.mc-portfolio-card.mc-pending {
	background: transparent;
	border: 1px dashed #B7BDA9;
}

.mc-portfolio-card.mc-pending h3 {
	color: #8A8578;
	font-style: italic;
	font-weight: 400;
}

.mc-portfolio-card.mc-pending .mc-portfolio-sector {
	color: #8A8578;
}

/* contact page */
.mc-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}

.mc-contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.mc-form-row {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mc-form-row label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ink-soft);
}

.mc-form-row input, .mc-form-row textarea {
	font-family: 'Public Sans', sans-serif;
	font-size: 15px;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 2px;
	background: #FFFFFF;
	color: var(--ink);
	transition: border-color .2s ease;
	width: 100%;
}

.mc-form-row input:focus, .mc-form-row textarea:focus {
	outline: none;
	border-color: var(--brass);
}

.mc-form-row textarea {
	resize: vertical;
	min-height: 120px;
	font-family: 'Public Sans', sans-serif;
}

.mc-form-note {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	color: #9A9484;
	margin-top: -4px;
}

.mc-contact-details {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.mc-contact-detail-label {
	font-family: 'IBM Plex Mono', monospace;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--brass);
	margin-bottom: 6px;
}

.mc-contact-detail-value {
	font-size: 15.5px;
	color: var(--ink);
	line-height: 1.6;
}

.mc-contact-detail-value a {
	color: var(--ink);
	text-decoration: none;
	border-bottom: 1px solid var(--brass);
}

.mc-hours-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.mc-hours-table td {
	padding: 6px 0;
	border-top: 1px solid var(--line);
}

.mc-hours-table td:first-child {
	color: var(--ink);
}

.mc-hours-table td:last-child {
	text-align: right;
	color: var(--ink-soft);
}

.mc-map-frame {
	width: 100%;
	aspect-ratio: 16/10;
	border: 0;
	margin-top: 6px;
	border-radius: 2px;
}

@media (max-width:880px) {
	.mc-wrap {
		padding: 0 22px;
	}
	
	.mc-hero h1 {
		font-size: 36px;
	}
	
	.mc-stat-strip {
		grid-template-columns: repeat(3,1fr);
		max-width: none;
	}
	
	.mc-values-grid {
		grid-template-columns: 1fr 1fr;
	}
	
	.mc-invest-row {
		grid-template-columns: 1fr;
		gap: 8px;
		margin: 0;
	}
	
	.mc-invest-tag {
		justify-self: start;
	}
	
	.mc-nav-links {
		display: none;
	}
	
	.mc-contact-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
}