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

:root {
	--ink: #2a3344;
	--ink-deep: #1e2530;
	--paper: #fff;
	--canvas: #f6f4f0;
	--line: #ddd8cf;
	--line-dark: #c4bdb2;
	--accent: #b84a2e;
	--accent-hover: #9a3d26;
	--slate: #5c6675;
	--muted: #8b939f;
	--positive: #3a5248;
	--alert: #a84820;
	--chart-pension: #7d6b52;
	--radius: 4px;
	--max: 1040px;
}

html {
	scroll-behavior: smooth
}

body {
	font-family: 'DM Sans', sans-serif;
	background: var(--canvas);
	color: var(--ink);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--paper);
	border-bottom: 1px solid var(--line);
	padding: 16px 5%
}

.site-nav-inner {
	max-width: var(--max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px
}

.nav-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Fraunces', serif;
	font-size: 1.2rem;
	color: var(--ink-deep);
	font-weight: 600;
	text-decoration: none
}

.nav-logo-mark {
	display: block;
	width: 34px;
	height: 34px;
	flex-shrink: 0
}

.nav-logo-text {
	line-height: 1.15
}

@media(max-width:480px) {
	.nav-logo {
		font-size: 1.05rem
	}

	.nav-logo-mark {
		width: 30px;
		height: 30px
	}
}

.nav-logo em {
	font-style: normal;
	color: var(--accent)
}

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

.nav-links a {
	font-size: .875rem;
	color: var(--slate);
	text-decoration: none;
	font-weight: 500
}

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

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

.nav-cta:hover {
	background: var(--accent-hover) !important;
	color: #fff !important
}

@media(max-width:720px) {
	.nav-links .hide-m {
		display: none
	}

	.nav-links {
		gap: 14px
	}
}

.hero {
	background: var(--paper);
	padding: 56px 5% 64px;
	border-bottom: 1px solid var(--line)
}

.hero-inner {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 40px;
	align-items: start
}

@media(max-width:860px) {
	.hero-inner {
		grid-template-columns: 1fr
	}
}

.hero-badge {
	display: inline-block;
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--accent);
	border: 1px solid var(--line);
	padding: 5px 10px;
	margin-bottom: 18px
}

.hero h1 {
	font-family: 'Fraunces', serif;
	font-size: clamp(1.85rem, 4vw, 2.5rem);
	color: var(--ink-deep);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 14px;
	max-width: 520px
}

.hero-lead {
	font-size: 1.05rem;
	color: var(--slate);
	max-width: 480px;
	line-height: 1.65
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: var(--radius);
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: inherit
}

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

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

.btn-outline {
	background: var(--paper);
	color: var(--ink-deep);
	border: 1px solid var(--line-dark)
}

.btn-outline:hover {
	border-color: var(--ink);
	background: var(--canvas)
}

.hero-stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	border: 1px solid var(--line)
}

.stat {
	padding: 20px 22px;
	text-align: left;
	border-bottom: 1px solid var(--line);
	background: var(--canvas)
}

.stat:last-child {
	border-bottom: none
}

.stat strong {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: 1.15rem;
	color: var(--ink-deep);
	margin-bottom: 3px;
	font-weight: 600
}

.stat span {
	font-size: .8rem;
	color: var(--muted);
	line-height: 1.45
}

section {
	padding: 56px 5%
}

.section-inner {
	max-width: var(--max);
	margin: 0 auto
}

.section-label {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px
}

.section-title {
	font-family: 'Fraunces', serif;
	font-size: clamp(1.4rem, 3vw, 1.75rem);
	color: var(--ink-deep);
	margin-bottom: 10px;
	font-weight: 600
}

.section-intro {
	color: var(--slate);
	font-size: .975rem;
	max-width: 600px;
	margin-bottom: 32px;
	line-height: 1.7
}

.section-intro.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center
}

.section-how {
	background: var(--paper);
	border-top: 1px solid var(--line)
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--line);
	border: 1px solid var(--line)
}

@media(max-width:700px) {
	.steps {
		grid-template-columns: 1fr
	}
}

.step {
	padding: 28px 24px;
	background: var(--paper)
}

.step-num {
	font-family: 'Fraunces', serif;
	font-size: 1.75rem;
	color: var(--line-dark);
	line-height: 1;
	margin-bottom: 12px
}

.step h3 {
	font-size: 1rem;
	color: var(--ink-deep);
	margin-bottom: 8px;
	font-weight: 600
}

.step p {
	font-size: .875rem;
	color: var(--slate);
	line-height: 1.6;
	margin: 0
}

.section-benefits {
	background: var(--canvas)
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px
}

@media(max-width:600px) {
	.benefits-grid {
		grid-template-columns: 1fr
	}
}

.benefit {
	display: flex;
	gap: 18px;
	padding: 22px;
	background: var(--paper);
	border: 1px solid var(--line)
}

.benefit-num {
	flex-shrink: 0;
	font-size: .75rem;
	font-weight: 700;
	color: var(--accent);
	letter-spacing: .05em;
	padding-top: 2px
}

.benefit h3 {
	font-size: .95rem;
	color: var(--ink-deep);
	margin-bottom: 5px;
	font-weight: 600
}

.benefit p {
	font-size: .875rem;
	color: var(--slate);
	margin: 0;
	line-height: 1.55
}

.section-calc {
	background: var(--paper);
	border-top: 1px solid var(--line)
}

.calc-wrap {
	max-width: 880px;
	margin: 0 auto
}

.calc-card {
	border: 1px solid var(--line);
	background: var(--paper)
}

.calc-header {
	background: var(--ink-deep);
	padding: 24px 28px;
	border-bottom: 3px solid var(--accent)
}

.calc-header h2 {
	font-family: 'Fraunces', serif;
	font-size: 1.25rem;
	color: #fff;
	margin-bottom: 4px
}

.calc-header p {
	font-size: .85rem;
	color: rgba(255, 255, 255, .65)
}

.calc-body {
	padding: 28px
}

.input-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 22px
}

@media(max-width:560px) {
	.input-grid {
		grid-template-columns: 1fr
	}
}

.field {
	display: flex;
	flex-direction: column;
	gap: 5px
}

.field label {
	font-size: .78rem;
	font-weight: 600;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: .04em
}

.field input,
.field select {
	padding: 10px 12px;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: .95rem;
	color: var(--ink-deep);
	background: var(--paper);
	outline: none;
	width: 100%
}

.field input:focus,
.field select:focus {
	border-color: var(--ink)
}

.prefix-wrap {
	position: relative
}

.prefix-wrap span {
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--muted);
	pointer-events: none
}

.prefix-wrap input {
	padding-left: 22px
}

.calc-btn {
	width: 100%;
	background: var(--accent);
	color: #fff;
	padding: 14px;
	font-size: .95rem;
	border-radius: var(--radius)
}

.calc-btn:hover {
	background: var(--accent-hover)
}

.results {
	display: none;
	padding: 0 28px 28px;
	border-top: 1px solid var(--line)
}

.results.show {
	display: block;
	padding-top: 24px
}

.result-bar {
	background: var(--canvas);
	border: 1px solid var(--line);
	padding: 16px 18px;
	margin-bottom: 20px;
	font-size: .925rem;
	color: var(--slate)
}

.result-bar strong {
	color: var(--ink-deep)
}

.metrics {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 20px
}

@media(max-width:480px) {
	.metrics {
		grid-template-columns: 1fr
	}
}

.metric {
	background: var(--canvas);
	border: 1px solid var(--line);
	padding: 14px 16px
}

.metric-label {
	font-size: .68rem;
	color: var(--muted);
	text-transform: uppercase;
	letter-spacing: .06em;
	margin-bottom: 5px
}

.metric-value {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--ink-deep);
	font-family: 'Fraunces', serif
}

.metric-value.warn {
	color: var(--alert)
}

.metric-value.ok {
	color: var(--positive)
}

.chart-legend {
	display: flex;
	gap: 18px;
	margin-bottom: 8px;
	font-size: .75rem;
	color: var(--muted)
}

.legend-swatch {
	width: 16px;
	height: 2px;
	display: inline-block;
	margin-right: 5px;
	vertical-align: middle
}

.legend-swatch--super {
	background: #2a3344
}

.legend-swatch--pension {
	background: #7d6b52;
	border-top: 2px dashed #7d6b52;
	height: 0
}

.chart-wrap {
	height: 230px;
	margin-bottom: 20px;
	border: 1px solid var(--line);
	padding: 12px;
	background: var(--paper)
}

.insight {
	border-left: 3px solid var(--ink-deep);
	padding: 14px 16px;
	background: var(--canvas);
	font-size: .875rem;
	color: var(--slate);
	margin-bottom: 16px
}

.insight.warn {
	border-left-color: var(--alert)
}

.insight a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px
}

.cta-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-bottom: 12px
}

@media(max-width:600px) {
	.cta-row {
		grid-template-columns: 1fr
	}
}

.cta-pill {
	padding: 16px 18px;
	border: 1px solid var(--line);
	display: flex;
	flex-direction: column;
	gap: 10px;
	background: var(--canvas)
}

.cta-pill.dark {
	background: var(--ink-deep);
	border-color: var(--ink-deep)
}

.cta-pill p {
	font-size: .85rem;
	color: var(--slate);
	margin: 0
}

.cta-pill.dark p {
	color: rgba(255, 255, 255, .75)
}

.cta-pill a {
	align-self: flex-start;
	font-size: .8rem;
	font-weight: 600;
	padding: 8px 14px;
	border-radius: var(--radius);
	text-decoration: none;
	color: var(--ink-deep);
	border: 1px solid var(--line-dark);
	background: var(--paper)
}

.cta-pill.dark a {
	color: #fff;
	border-color: rgba(255, 255, 255, .35);
	background: transparent
}

.cta-pill a:hover {
	border-color: var(--ink)
}

.calc-note {
	font-size: .7rem;
	color: var(--muted);
	line-height: 1.55
}

.section-topics {
	background: var(--canvas);
	border-top: 1px solid var(--line)
}

.topics-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px
}

@media(max-width:600px) {
	.topics-grid {
		grid-template-columns: 1fr
	}
}

.topic-card {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 20px 22px;
	text-decoration: none;
	color: inherit
}

.topic-card:not(.static):hover {
	border-color: var(--ink)
}

.topic-card h3 {
	font-size: .95rem;
	color: var(--ink-deep);
	margin-bottom: 6px;
	font-weight: 600
}

.topic-card.link h3::after {
	content: ' →';
	color: var(--accent)
}

.topic-card p {
	font-size: .85rem;
	color: var(--slate);
	margin: 0;
	line-height: 1.55
}

.topic-card.static a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px
}

.section-faq {
	background: var(--paper);
	border-top: 1px solid var(--line)
}

.faq-list {
	max-width: 680px
}

.faq-item {
	border-top: 1px solid var(--line)
}

.faq-item:last-child {
	border-bottom: 1px solid var(--line)
}

.faq-item summary {
	padding: 18px 4px 18px 0;
	font-weight: 600;
	color: var(--ink-deep);
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: .925rem
}

.faq-item summary::-webkit-details-marker {
	display: none
}

.faq-item summary::after {
	content: '+';
	font-size: 1.1rem;
	color: var(--accent);
	font-weight: 400
}

.faq-item[open] summary::after {
	content: '−'
}

.faq-item p {
	padding: 0 0 18px;
	font-size: .875rem;
	color: var(--slate);
	line-height: 1.65;
	margin: 0
}

.faq-item a {
	color: var(--accent)
}

.section-guide-form {
	background: var(--paper);
	border-top: 1px solid var(--line)
}

.guide-form-layout {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 48px;
	align-items: start
}

@media(max-width:800px) {
	.guide-form-layout {
		grid-template-columns: 1fr;
		gap: 32px
	}
}

.guide-form-copy h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(1.35rem, 3vw, 1.65rem);
	color: var(--ink-deep);
	margin-bottom: 12px
}

.guide-form-copy>p {
	font-size: .95rem;
	color: var(--slate);
	margin-bottom: 20px;
	line-height: 1.7
}

.guide-includes {
	list-style: none;
	margin: 0 0 20px
}

.guide-includes li {
	font-size: .875rem;
	color: var(--slate);
	padding: 10px 0 10px 28px;
	border-bottom: 1px solid var(--line);
	position: relative;
	line-height: 1.5
}

.guide-includes li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 8px;
	height: 8px;
	background: var(--accent);
	border-radius: 1px
}

.guide-includes li:last-child {
	border-bottom: none
}

.guide-form-note {
	font-size: .8rem;
	color: var(--muted);
	line-height: 1.55
}

.guide-form-note a {
	color: var(--accent)
}

.guide-form-box {
	border: 1px solid var(--line);
	background: var(--canvas);
	padding: 28px
}

.guide-form-box h3 {
	font-size: 1rem;
	color: var(--ink-deep);
	margin-bottom: 4px;
	font-weight: 600
}

.guide-form-box .form-lead {
	font-size: .85rem;
	color: var(--slate);
	margin-bottom: 20px;
	line-height: 1.55
}

.guide-form .field {
	margin-bottom: 14px
}

.guide-form .field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

@media(max-width:480px) {
	.guide-form .field-row {
		grid-template-columns: 1fr
	}
}

.guide-form label {
	display: block;
	font-size: .75rem;
	font-weight: 600;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-bottom: 5px
}

.guide-form input,
.guide-form select,
.guide-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: .9rem;
	color: var(--ink-deep);
	background: var(--paper)
}

.guide-form input:focus,
.guide-form select:focus,
.guide-form textarea:focus {
	outline: none;
	border-color: var(--ink)
}

.guide-form textarea {
	resize: vertical;
	min-height: 72px
}

.guide-form .checkbox-field {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 16px 0 18px
}

.guide-form .checkbox-field input {
	width: auto;
	margin-top: 3px;
	flex-shrink: 0
}

.guide-form .checkbox-field label {
	text-transform: none;
	font-size: .8rem;
	font-weight: 400;
	color: var(--slate);
	letter-spacing: 0;
	line-height: 1.45
}

.guide-form .checkbox-field label a {
	color: var(--accent)
}

.label-optional {
	font-weight: 400;
	text-transform: none;
	color: var(--muted)
}

.guide-form-submit {
	width: 100%;
	background: var(--accent);
	color: #fff;
	padding: 14px;
	border: none;
	border-radius: var(--radius);
	font-size: .95rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit
}

.guide-form-submit:hover {
	background: var(--accent-hover)
}

.form-success {
	display: none;
	padding: 24px 20px;
	border: 1px solid var(--line);
	background: var(--paper);
	text-align: center
}

.form-success.show {
	display: block
}

.form-success h3 {
	font-family: 'Fraunces', serif;
	font-size: 1.2rem;
	color: var(--ink-deep);
	margin-bottom: 8px
}

.form-success p {
	font-size: .9rem;
	color: var(--slate);
	margin-bottom: 14px
}

.form-success a {
	font-size: .875rem;
	font-weight: 600;
	color: var(--accent)
}

.page-hero {
	background: var(--paper);
	padding: 48px 5% 44px;
	border-bottom: 1px solid var(--line)
}

.page-hero-inner {
	max-width: 720px;
	margin: 0 auto
}

.page-hero .label {
	font-size: .7rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 10px
}

.page-hero h1 {
	font-family: 'Fraunces', serif;
	font-size: clamp(1.65rem, 4vw, 2.15rem);
	color: var(--ink-deep);
	margin-bottom: 14px;
	line-height: 1.2
}

.page-hero p {
	font-size: 1.05rem;
	color: var(--slate);
	line-height: 1.7
}

.main {
	max-width: var(--max);
	margin: 0 auto;
	padding: 48px 5% 56px;
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 40px;
	align-items: start
}

.main--contact {
	grid-template-columns: 300px 1fr
}

@media(max-width:860px) {

	.main,
	.main--contact {
		grid-template-columns: 1fr
	}
}

.content {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 36px 32px
}

.content h2 {
	font-family: 'Fraunces', serif;
	font-size: 1.2rem;
	color: var(--ink-deep);
	margin: 36px 0 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line)
}

.content h2:first-of-type {
	margin-top: 0;
	padding-top: 0;
	border-top: none
}

.content p,
.content li {
	font-size: .95rem;
	color: var(--slate);
	margin-bottom: 14px;
	line-height: 1.75
}

.content ul {
	margin: 0 0 16px 1.25rem
}

.content li {
	margin-bottom: 6px
}

.content a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px
}

.callout {
	background: var(--canvas);
	border-left: 3px solid var(--accent);
	padding: 16px 18px;
	margin: 24px 0;
	font-size: .9rem;
	color: var(--slate);
	line-height: 1.65
}

.do-dont {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin: 20px 0
}

@media(max-width:560px) {
	.do-dont {
		grid-template-columns: 1fr
	}
}

.do-dont div {
	padding: 18px;
	border: 1px solid var(--line)
}

.do-dont h3 {
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ink-deep);
	margin-bottom: 10px;
	font-weight: 600
}

.do-dont ul {
	margin: 0 0 0 1.1rem
}

.do-dont li {
	font-size: .85rem;
	margin-bottom: 5px
}

.sidebar {
	position: sticky;
	top: 80px
}

.sidebar-box {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 22px;
	margin-bottom: 14px
}

.sidebar-box h3 {
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted);
	margin-bottom: 12px;
	font-weight: 600
}

.sidebar-box a {
	display: block;
	font-size: .9rem;
	color: var(--ink-deep);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 500
}

.sidebar-box a:last-child {
	border-bottom: none
}

.sidebar-box a:hover {
	color: var(--accent)
}

.sidebar-address {
	font-size: .85rem;
	color: var(--slate);
	line-height: 1.6;
	margin: 0 0 10px
}

.sidebar-acn {
	font-size: .8rem;
	color: var(--muted);
	margin: 10px 0 0;
	padding-top: 10px;
	border-top: 1px solid var(--line)
}

.sidebar-cta {
	background: var(--ink-deep);
	border-top: 3px solid var(--accent);
	padding: 22px
}

.sidebar-cta p {
	font-size: .85rem;
	color: rgba(255, 255, 255, .7);
	margin-bottom: 14px;
	line-height: 1.55
}

.sidebar-cta a {
	display: inline-block;
	background: var(--accent);
	color: #fff;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: var(--radius);
	text-decoration: none;
	font-size: .875rem
}

.sidebar-cta a:hover {
	background: var(--accent-hover)
}

.contact-info {
	position: sticky;
	top: 80px
}

.info-box {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 24px;
	margin-bottom: 14px
}

.info-box h2 {
	font-family: 'Fraunces', serif;
	font-size: 1.1rem;
	color: var(--ink-deep);
	margin-bottom: 16px
}

.info-item {
	margin-bottom: 18px
}

.info-item:last-child {
	margin-bottom: 0
}

.info-item--spaced {
	margin-bottom: 12px
}

.info-item h3 {
	font-size: .72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted);
	margin-bottom: 5px
}

.info-item p,
.info-item a {
	font-size: .9rem;
	color: var(--slate);
	line-height: 1.55;
	margin: 0
}

.info-item a {
	color: var(--accent);
	text-decoration: none;
	font-weight: 500
}

.info-item a:hover {
	text-decoration: underline
}

.info-note {
	font-size: .8rem;
	color: var(--muted);
	line-height: 1.55;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid var(--line)
}

.info-links a {
	display: block;
	font-size: .875rem;
	color: var(--ink-deep);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	font-weight: 500
}

.info-links a:last-child {
	border-bottom: none
}

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

.contact-form-wrap {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 32px
}

.contact-form-wrap h2 {
	font-family: 'Fraunces', serif;
	font-size: 1.2rem;
	color: var(--ink-deep);
	margin-bottom: 6px
}

.form-lead {
	font-size: .9rem;
	color: var(--slate);
	margin-bottom: 22px;
	line-height: 1.6
}

.contact-form .field {
	margin-bottom: 14px
}

.contact-form .field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px
}

@media(max-width:480px) {
	.contact-form .field-row {
		grid-template-columns: 1fr
	}
}

.contact-form label {
	display: block;
	font-size: .75rem;
	font-weight: 600;
	color: var(--slate);
	text-transform: uppercase;
	letter-spacing: .04em;
	margin-bottom: 5px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line-dark);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: .9rem;
	color: var(--ink-deep);
	background: var(--paper)
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--ink)
}

.contact-form textarea {
	resize: vertical;
	min-height: 140px
}

.contact-form .checkbox-field {
	display: flex;
	gap: 10px;
	align-items: flex-start;
	margin: 16px 0 18px
}

.contact-form .checkbox-field input {
	width: auto;
	margin-top: 3px
}

.contact-form .checkbox-field label {
	text-transform: none;
	font-size: .8rem;
	font-weight: 400;
	color: var(--slate);
	letter-spacing: 0;
	line-height: 1.45
}

.contact-form .checkbox-field label a {
	color: var(--accent)
}

.form-submit {
	width: 100%;
	background: var(--accent);
	color: #fff;
	padding: 14px;
	border: none;
	border-radius: var(--radius);
	font-size: .95rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit
}

.form-submit:hover {
	background: var(--accent-hover)
}

.form-disclaimer {
	font-size: .75rem;
	color: var(--muted);
	margin-top: 14px;
	line-height: 1.5
}

.page-main {
	max-width: 760px;
	margin: 0 auto;
	padding: 48px 5% 56px
}

.legal-doc {
	background: var(--paper);
	border: 1px solid var(--line);
	padding: 36px 32px
}

.legal-doc h1 {
	font-family: 'Fraunces', serif;
	font-size: 1.75rem;
	color: var(--ink-deep);
	margin-bottom: 8px
}

.legal-doc .updated {
	font-size: .85rem;
	color: var(--muted);
	margin-bottom: 24px
}

.legal-doc .intro {
	font-size: 1rem;
	color: var(--slate);
	margin-bottom: 20px;
	line-height: 1.75
}

.legal-doc h2 {
	font-size: 1.05rem;
	color: var(--ink-deep);
	margin: 32px 0 12px;
	padding-top: 12px;
	border-top: 1px solid var(--line)
}

.legal-doc h2:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 0
}

.legal-doc h3 {
	font-size: .9rem;
	color: var(--ink-deep);
	margin: 18px 0 8px;
	font-weight: 600
}

.legal-doc p {
	color: var(--slate);
	margin-bottom: 12px;
	font-size: .95rem;
	line-height: 1.75
}

.legal-doc ul {
	margin: 0 0 14px 1.25rem
}

.legal-doc li {
	color: var(--slate);
	font-size: .95rem;
	line-height: 1.7;
	margin-bottom: 6px
}

.legal-doc a {
	color: var(--accent);
	text-decoration: underline;
	text-underline-offset: 2px
}

.legal-doc .callout {
	background: var(--canvas);
	border-left: 3px solid var(--ink-deep);
	padding: 14px 16px;
	margin: 16px 0;
	font-size: .9rem
}

.legal-doc .callout--accent {
	border-left-color: var(--accent);
	color: var(--slate);
	line-height: 1.65
}

.site-footer {
	background: var(--ink-deep);
	padding: 40px 5% 28px;
	color: rgba(255, 255, 255, .55)
}

.footer-inner {
	max-width: var(--max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 32px
}

@media(max-width:700px) {
	.footer-inner {
		grid-template-columns: 1fr;
		text-align: center
	}
}

.footer-brand .nav-logo {
	color: #fff
}

.footer-brand .nav-logo em {
	color: #e8a090
}

.footer-brand p {
	font-size: .8rem;
	color: rgba(255, 255, 255, .45);
	line-height: 1.6;
	max-width: 280px;
	margin-top: 8px
}

.footer-contact {
	font-size: .75rem;
	color: rgba(255, 255, 255, .4);
	line-height: 1.65;
	margin-top: 12px
}

.footer-contact a {
	color: rgba(255, 255, 255, .55);
	text-decoration: none
}

.footer-contact a:hover {
	color: #fff
}

@media(max-width:700px) {

	.footer-brand p,
	.footer-contact {
		margin-left: auto;
		margin-right: auto
	}
}

.footer-col h4 {
	font-size: .7rem;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: rgba(255, 255, 255, .35);
	margin-bottom: 10px
}

.footer-col a {
	display: block;
	font-size: .85rem;
	color: rgba(255, 255, 255, .55);
	text-decoration: none;
	margin-bottom: 7px
}

.footer-col a:hover {
	color: #fff
}

.footer-bottom {
	max-width: var(--max);
	margin: 24px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	text-align: center
}

.footer-bottom p {
	font-size: .72rem;
	color: rgba(255, 255, 255, .3)
}