:root
{
	--bg: #ffffff;
	--bg-alt: #f4f6f9;
	--bg-dark: #0c1a2b;
	--text: #16202e;
	--text-muted: #51606f;
	--text-inverse: #eef2f7;
	--accent: #1a3a5c;        /* deep navy */
	--accent-dark: #112a44;
	--gold: #a9863f;          /* restrained brass accent */
	--border: #dfe4ea;
	--max-width: 1080px;
	--radius: 6px;
	--shadow-sm: 0 1px 2px rgba(12, 26, 43, 0.06);
	--shadow-md: 0 8px 22px rgba(12, 26, 43, 0.10);
	--serif: "Georgia", "Times New Roman", serif;
}

*
{
	box-sizing: border-box;
}

html
{
	scroll-behavior: smooth;
}

body
{
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a
{
	color: var(--accent);
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}

.container
{
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.site-header
{
	position: sticky;
	top: 0;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--border);
	z-index: 10;
}

.nav
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
}

.brand
{
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--accent);
	font-family: var(--serif);
	font-weight: 700;
	font-size: 1.2rem;
	letter-spacing: 0.01em;
}

.brand:hover
{
	text-decoration: none;
}

.brand-mark
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: var(--radius);
	background: var(--accent);
	color: var(--gold);
	font-family: var(--serif);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.brand-suffix
{
	color: var(--gold);
	font-weight: 600;
}

.site-header nav
{
	display: flex;
	align-items: center;
	gap: 26px;
}

.site-header nav a
{
	color: var(--text-muted);
	font-weight: 500;
	letter-spacing: 0.01em;
}

.site-header nav a:hover
{
	color: var(--accent);
	text-decoration: none;
}

.nav-cta
{
	background: var(--accent);
	color: #fff !important;
	padding: 9px 16px;
	border-radius: var(--radius);
}

.nav-cta:hover
{
	background: var(--accent-dark);
}

/* Hero */
.hero
{
	padding: 100px 0 84px;
	background: linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
	border-bottom: 1px solid var(--border);
	position: relative;
}

.hero::after
{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 88px;
	height: 4px;
	background: var(--gold);
}

.eyebrow
{
	display: inline-block;
	margin: 0 0 16px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero h1
{
	font-family: var(--serif);
	color: var(--accent);
	font-weight: 700;
	font-size: clamp(2.1rem, 4.6vw, 3.3rem);
	line-height: 1.14;
	margin: 0 0 18px;
	letter-spacing: -0.01em;
	max-width: 780px;
}

.hero .lede
{
	font-size: 1.15rem;
	color: var(--text-muted);
	max-width: 640px;
	margin: 0 0 32px;
}

.hero-actions
{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-actions-center
{
	justify-content: center;
}

/* Buttons */
.btn
{
	display: inline-block;
	padding: 12px 24px;
	border-radius: var(--radius);
	font-weight: 600;
	font-size: 1rem;
	border: 1px solid transparent;
	transition: transform 0.05s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover
{
	text-decoration: none;
	transform: translateY(-1px);
}

.btn-primary
{
	background: var(--accent);
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.btn-primary:hover
{
	background: var(--accent-dark);
}

.btn-ghost
{
	background: transparent;
	color: var(--accent);
	border-color: var(--border);
}

.btn-ghost:hover
{
	border-color: var(--accent);
}

.btn-large
{
	padding: 15px 30px;
	font-size: 1.05rem;
}

/* Sections */
.section
{
	padding: 84px 0;
}

.section-alt
{
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.section h2
{
	font-family: var(--serif);
	color: var(--accent);
	font-weight: 700;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	margin: 0 0 12px;
}

.section-lede
{
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 660px;
	margin: 0 0 40px;
}

/* Practice cards */
.cards
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 20px;
}

.card
{
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow-sm);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover
{
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.card h3
{
	font-family: var(--serif);
	color: var(--accent);
	margin: 0 0 10px;
	font-size: 1.2rem;
}

.card p
{
	margin: 0;
	color: var(--text-muted);
}

/* Firm */
.firm-grid
{
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: center;
}

.prose
{
	color: var(--text-muted);
	max-width: 60ch;
}

.stats
{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 16px;
}

.stats li
{
	background: #fff;
	border: 1px solid var(--border);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	padding: 18px 22px;
	display: flex;
	align-items: baseline;
	gap: 14px;
	box-shadow: var(--shadow-sm);
}

.stat-num
{
	font-family: var(--serif);
	font-size: 1.7rem;
	font-weight: 700;
	color: var(--accent);
	min-width: 88px;
}

.stat-label
{
	color: var(--text-muted);
	font-weight: 500;
}

/* Approach list */
.reasons
{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 18px;
}

.reasons li
{
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 22px 24px;
	box-shadow: var(--shadow-sm);
}

.reasons strong
{
	display: block;
	margin-bottom: 4px;
	color: var(--accent);
}

/* Contact */
.section-contact
{
	text-align: center;
	background: var(--bg);
}

.section-contact .section-lede
{
	margin-left: auto;
	margin-right: auto;
}

.contact-note
{
	margin-top: 18px;
	color: var(--text-muted);
}

.disclaimer
{
	margin: 28px auto 0;
	max-width: 620px;
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Footer */
.site-footer
{
	background: var(--bg-dark);
	color: var(--text-inverse);
	padding: 26px 0;
	border-top: 4px solid var(--gold);
}

.site-footer a
{
	color: var(--text-inverse);
}

.footer-row
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.95rem;
}

/* Small screens */
@media (max-width: 540px)
{
	.site-header nav
	{
		gap: 14px;
	}

	.site-header nav a:not(.nav-cta)
	{
		display: none;
	}

	.hero
	{
		padding: 68px 0 56px;
	}

	.section
	{
		padding: 56px 0;
	}

	.firm-grid
	{
		grid-template-columns: 1fr;
	}
}
