:root {
	--ink: #0e1a2b;
	--ink-soft: #2a3a52;
	--muted: #6b7589;
	--rule: #d9d4c7;
	--bg: #f5f1e8;
	--bg-alt: #ffffff;
	--accent: #8a6d3b;
	--serif: "Cormorant Garamond", "Times New Roman", serif;
	--sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
	font-family: var(--sans);
	font-weight: 300;
	color: var(--ink);
	background: var(--bg);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 2.5rem;
}

/* ── Header ───────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(245, 241, 232, 0.92);
	backdrop-filter: saturate(140%) blur(8px);
	-webkit-backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid var(--rule);
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.4rem;
	padding-bottom: 1.4rem;
}

.brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
	color: var(--ink);
	letter-spacing: 0.02em;
}

.brand .mark {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.5rem;
	letter-spacing: 0.08em;
}

.brand-divider {
	width: 1px;
	height: 1.1rem;
	background: var(--ink);
	opacity: 0.35;
}

.brand .wordmark {
	font-family: var(--sans);
	font-weight: 400;
	font-size: 0.78rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	gap: 2.4rem;
}

.nav-links a {
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--ink-soft);
	transition: color 0.2s ease;
}

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

/* ── Hero ─────────────────────────────────────────── */
.hero {
	padding: 9rem 0 7rem;
	border-bottom: 1px solid var(--rule);
}

.eyebrow {
	font-size: 0.74rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 2rem;
	font-weight: 400;
}

.hero h1 {
	font-family: var(--serif);
	font-weight: 300;
	font-size: clamp(2.6rem, 6vw, 4.6rem);
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin-bottom: 2.2rem;
	max-width: 18ch;
}

.lede {
	font-family: var(--serif);
	font-weight: 300;
	font-size: clamp(1.15rem, 1.7vw, 1.4rem);
	line-height: 1.55;
	color: var(--ink-soft);
	max-width: 42rem;
}

/* ── Sections ─────────────────────────────────────── */
.section {
	padding: 6.5rem 0;
}

.section.bordered {
	border-bottom: 1px solid var(--rule);
}

.two-col {
	display: grid;
	grid-template-columns: 1fr 2.4fr;
	gap: 4rem;
	align-items: start;
}

.col-label {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-top: 0.5rem;
}

.col-label.centered {
	flex-direction: row;
	justify-content: center;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 4rem;
	padding-top: 0;
}

.section-num {
	font-family: var(--serif);
	font-size: 1rem;
	color: var(--accent);
	letter-spacing: 0.05em;
}

.section-name {
	font-size: 0.74rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--muted);
}

.col-body h2,
.contact h2 {
	font-family: var(--serif);
	font-weight: 300;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.2;
	color: var(--ink);
	margin-bottom: 1.6rem;
	max-width: 22ch;
}

.col-body p {
	color: var(--ink-soft);
	margin-bottom: 1.2rem;
	max-width: 38rem;
}

.col-body p:last-child { margin-bottom: 0; }

/* ── Approach pillars ─────────────────────────────── */
.pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem;
}

.pillar {
	border-top: 1px solid var(--ink);
	padding-top: 1.5rem;
}

.pillar h3 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 1.5rem;
	color: var(--ink);
	margin-bottom: 0.9rem;
	letter-spacing: 0.01em;
}

.pillar p {
	color: var(--ink-soft);
	font-size: 0.96rem;
}

/* ── Focus list ───────────────────────────────────── */
.focus-list {
	list-style: none;
	margin-top: 0.5rem;
}

.focus-list li {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 2rem;
	padding: 1.6rem 0;
	border-top: 1px solid var(--rule);
	align-items: baseline;
}

.focus-list li:last-child { border-bottom: 1px solid var(--rule); }

.focus-title {
	font-family: var(--serif);
	font-size: 1.3rem;
	color: var(--ink);
}

.focus-desc {
	color: var(--ink-soft);
	font-size: 0.98rem;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
	text-align: center;
	padding: 7rem 0;
	background: var(--ink);
	color: #f5f1e8;
}

.contact .eyebrow { color: #c9a96a; }

.contact h2 {
	color: #f5f1e8;
	margin: 0 auto 2.2rem;
	max-width: 24ch;
}

.contact-line a {
	font-family: var(--serif);
	font-size: clamp(1.2rem, 2vw, 1.6rem);
	color: #f5f1e8;
	text-decoration: none;
	border-bottom: 1px solid rgba(245, 241, 232, 0.35);
	padding-bottom: 0.2rem;
	transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-line a:hover {
	color: #c9a96a;
	border-color: #c9a96a;
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
	padding: 2.4rem 0;
	border-top: 1px solid var(--rule);
	background: var(--bg);
}

.footer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2rem;
	font-size: 0.78rem;
	color: var(--muted);
	letter-spacing: 0.04em;
}

.footer-note { font-style: italic; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 820px) {
	.container { padding: 0 1.5rem; }
	.nav-links { display: none; }
	.hero { padding: 5.5rem 0 4rem; }
	.section { padding: 4.5rem 0; }
	.two-col { grid-template-columns: 1fr; gap: 1.8rem; }
	.pillars { grid-template-columns: 1fr; gap: 2rem; }
	.focus-list li { grid-template-columns: 1fr; gap: 0.4rem; }
	.footer-row { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
}
