:root {
	--bg: #f5f1e8;
	--surface: #fffdf8;
	--surface-alt: #ece6da;
	--ink: #1f2a30;
	--muted: #5f6b72;
	--line: #d7d0c4;
	--brand: #1e5563;
	--brand-strong: #133b44;
	--risk-low: #56705c;
	--risk-medium: #8b6b3f;
	--risk-high: #8a4a3f;
	--shadow: 0 24px 60px rgba(20, 26, 30, 0.08);
	--radius: 18px;
	--radius-tight: 14px;
}

* {
	box-sizing: border-box;
}

[hidden] {
	display: none !important;
}

body {
	margin: 0;
	background: linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
	color: var(--ink);
	font-family: "Public Sans", system-ui, sans-serif;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

a,
button,
.choice-card,
.info-card,
.section-card,
.nav-links a {
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

h1, h2, h3 {
	margin: 0 0 0.75rem;
	font-family: "Newsreader", Georgia, serif;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 4.75rem);
}

h2 {
	font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
	font-size: 1.35rem;
}

.container {
	width: min(1120px, calc(100vw - 2rem));
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 10;
	backdrop-filter: blur(20px);
	background: rgba(251, 248, 241, 0.86);
	border-bottom: 1px solid rgba(215, 208, 196, 0.7);
}

.header-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.5rem 0;
	font-size: 0.82rem;
	color: var(--muted);
	border-bottom: 1px solid rgba(215, 208, 196, 0.55);
}

.header-meta-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.nav-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.25rem;
	padding: 1rem 0;
}

.brand {
	font-weight: 700;
	letter-spacing: -0.03em;
	font-size: 1.1rem;
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 0.22rem;
	width: 2.9rem;
	height: 2.9rem;
	padding: 0;
	border: 1px solid rgba(31, 42, 48, 0.12);
	border-radius: 999px;
	background: rgba(255, 253, 248, 0.9);
	cursor: pointer;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.nav-toggle span {
	display: block;
	width: 1rem;
	height: 2px;
	background: var(--ink);
	border-radius: 999px;
	transform-origin: center;
	transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.nav-toggle[aria-expanded="true"] {
	background: linear-gradient(180deg, #245f6f 0%, var(--brand-strong) 100%);
	border-color: rgba(19, 59, 68, 0.4);
	box-shadow: 0 14px 28px rgba(19, 59, 68, 0.16);
}

.nav-toggle[aria-expanded="true"] span {
	background: #fff;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-4px) rotate(-45deg);
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	color: var(--muted);
	font-size: 0.95rem;
}

.nav-links a {
	white-space: nowrap;
}

.nav-mobile-meta {
	display: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
	color: var(--brand-strong);
}

.hero,
.page-hero {
	padding: 5rem 0 3rem;
}

.hero-grid,
.content-grid,
.callout-grid,
.city-hub-grid,
.city-hub-signals {
	display: grid;
	gap: 1.5rem;
}

.hero-grid {
	grid-template-columns: 1.15fr 0.85fr;
	align-items: stretch;
}

.home-hero-grid {
	align-items: start;
}

.city-hub-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.city-hub-signals {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1rem 0 1.25rem;
}

.city-hub-links {
	margin-top: 1rem;
}

.hero-copy,
.hero-artifact,
.form-shell,
.artifact-card,
.section-card,
.answer-card,
.rail-card,
.info-card,
.lane-card,
.step-card,
.callout,
.wizard-shell {
	background: rgba(255, 253, 248, 0.86);
	border: 1px solid rgba(215, 208, 196, 0.95);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero-copy,
.hero-artifact,
.artifact-card,
.section-card,
.answer-card,
.rail-card,
.info-card,
.lane-card,
.step-card,
.callout,
.wizard-shell,
.form-shell {
	padding: 1.5rem;
}

.lede {
	max-width: 62ch;
	font-size: 1.08rem;
	color: var(--muted);
}

.eyebrow,
.card-kicker,
.mini-label {
	display: inline-block;
	margin-bottom: 0.75rem;
	color: var(--brand);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin: 1.5rem 0 0;
}

.decision-list {
	display: grid;
	gap: 0.8rem;
	margin: 1.25rem 0 0;
	padding: 0;
	list-style: none;
}

.decision-list li {
	padding: 0.95rem 1rem;
	background: rgba(30, 85, 99, 0.06);
	border: 1px solid rgba(30, 85, 99, 0.12);
	border-radius: var(--radius-tight);
	color: var(--muted);
}

.decision-list strong {
	display: block;
	margin-bottom: 0.2rem;
	color: var(--ink);
	font-weight: 700;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	border: 1px solid rgba(31, 42, 48, 0.12);
	border-radius: 16px;
	padding: 0.95rem 1.25rem;
	font-weight: 650;
	letter-spacing: -0.01em;
	cursor: pointer;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 10px 22px rgba(20, 26, 30, 0.1);
}

.button:disabled {
	cursor: not-allowed;
	opacity: 0.45;
	transform: none;
	box-shadow: none;
}

.button.is-disabled {
	opacity: 0.55;
	box-shadow: none;
}

.button-primary {
	background: linear-gradient(180deg, #256677 0%, var(--brand-strong) 100%);
	border-color: rgba(19, 59, 68, 0.36);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 24px rgba(19, 59, 68, 0.16);
	color: #fff;
}

.button-secondary {
	background: rgba(255, 253, 248, 0.92);
	border-color: rgba(30, 85, 99, 0.18);
	color: var(--brand-strong);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.button-ghost {
	background: rgba(255, 253, 248, 0.6);
	border-color: rgba(31, 42, 48, 0.15);
	color: var(--ink);
}

.button-block {
	width: 100%;
}

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
	color: var(--muted);
	font-size: 0.92rem;
}

.trust-strip > div {
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: rgba(30, 85, 99, 0.06);
	border: 1px solid rgba(30, 85, 99, 0.1);
}

.trust-strip-compact {
	margin-top: 1rem;
}

.artifact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.home-hero-grid .hero-artifact {
	align-self: start;
}

.artifact-mini {
	padding: 1rem;
	background: rgba(30, 85, 99, 0.05);
	border: 1px solid rgba(30, 85, 99, 0.12);
	border-radius: var(--radius-tight);
}

.section {
	padding: 2rem 0 3rem;
}

.section-tight {
	padding: 1.25rem 0 1rem;
}

.section-alt {
	background: rgba(236, 230, 218, 0.55);
	border-top: 1px solid rgba(215, 208, 196, 0.85);
	border-bottom: 1px solid rgba(215, 208, 196, 0.85);
}

.section-heading {
	margin-bottom: 1.5rem;
}

.card-grid {
	display: grid;
	gap: 1rem;
}

.card-grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-grid {
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	align-items: start;
}

.content-main,
.content-rail {
	display: grid;
	gap: 1rem;
	min-width: 0;
}

.link-list,
.clean-list,
.question-list {
	display: grid;
	gap: 0.75rem;
	padding-left: 1.25rem;
}

.compact-list {
	gap: 0.55rem;
}

.field-error-list {
	display: grid;
	gap: 0.45rem;
	margin: 0 0 1rem;
	padding-left: 1.25rem;
	color: var(--risk-high);
	font-size: 0.92rem;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 1.25rem;
	color: var(--muted);
	font-size: 0.92rem;
}

.breadcrumbs a::after {
	content: "/";
	margin-left: 0.6rem;
	color: rgba(95, 107, 114, 0.6);
}

.breadcrumbs a.current::after {
	display: none;
}

.hero-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
	gap: 1.5rem;
}

.hero-actions {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.meta-block {
	padding: 1rem;
	background: rgba(236, 230, 218, 0.5);
	border-radius: var(--radius-tight);
	font-size: 0.92rem;
	color: var(--muted);
}

.meta-block-accent {
	background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(236, 230, 218, 0.8) 100%);
}

.meta-block p {
	margin: 0.4rem 0 0;
}

.meta-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 0.9rem;
}

.compact-hero {
	max-width: 820px;
}

.result-hero-shell {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: 1.5rem;
}

.result-hero-shell > * {
	min-width: 0;
}

.result-brief {
	min-width: 0;
	padding: 1.4rem;
	background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(236, 230, 218, 0.9) 100%);
	border: 1px solid rgba(215, 208, 196, 0.95);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.summary-inline {
	margin: 1rem 0 0;
	padding: 0.95rem 1rem;
	border-radius: var(--radius-tight);
	background: rgba(255, 253, 248, 0.8);
	border: 1px solid rgba(215, 208, 196, 0.95);
	color: var(--muted);
	max-width: 100%;
	min-width: 0;
	white-space: pre-line;
	overflow-wrap: anywhere;
	word-break: break-word;
	overflow: hidden;
}

.result-rationale {
	margin-top: 1rem;
	color: var(--muted);
}

.result-brief .button-row {
	margin-top: 1rem;
}

.result-context-strip {
	margin-bottom: 1rem;
}

.result-tier {
	display: inline-flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: 0.9rem 1rem;
	margin-bottom: 1rem;
	border-radius: var(--radius-tight);
	background: rgba(86, 112, 92, 0.1);
	border: 1px solid rgba(86, 112, 92, 0.18);
}

.result-tier.medium {
	background: rgba(139, 107, 63, 0.12);
	border-color: rgba(139, 107, 63, 0.18);
}

.result-tier.high {
	background: rgba(138, 74, 63, 0.12);
	border-color: rgba(138, 74, 63, 0.18);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.step-card span {
	display: inline-flex;
	width: 2.25rem;
	height: 2.25rem;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: rgba(30, 85, 99, 0.1);
	color: var(--brand);
	font-weight: 700;
}

.callout-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-list {
	display: grid;
	gap: 0.8rem;
}

.faq-list details {
	padding: 1rem 1.1rem;
	background: rgba(255, 253, 248, 0.86);
	border: 1px solid rgba(215, 208, 196, 0.95);
	border-radius: var(--radius-tight);
}

.faq-list summary {
	cursor: pointer;
	font-weight: 600;
}

.wizard-shell {
	max-width: 820px;
	margin: 0 auto;
}

.wizard-progress {
	margin-bottom: 1.5rem;
}

.progress-bar {
	height: 10px;
	border-radius: 999px;
	background: rgba(31, 42, 48, 0.08);
	overflow: hidden;
}

.progress-bar span {
	display: block;
	height: 100%;
	width: 14.285%;
	background: linear-gradient(90deg, var(--brand), var(--brand-strong));
	border-radius: 999px;
	transition: width 0.2s ease;
}

.wizard-step {
	display: grid;
	gap: 1rem;
	scroll-margin-top: 5.5rem;
}

.wizard-step.step-needs-attention {
	padding: 1rem;
	border-radius: var(--radius-tight);
	background: rgba(139, 107, 63, 0.08);
	box-shadow: inset 0 0 0 1px rgba(139, 107, 63, 0.16);
}

.choice-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.choice-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	column-gap: 0.9rem;
	row-gap: 0.18rem;
	padding: 1.05rem 1.1rem;
	border-radius: var(--radius-tight);
	border: 1px solid rgba(31, 42, 48, 0.12);
	background: linear-gradient(180deg, rgba(255, 253, 248, 0.96) 0%, rgba(241, 236, 226, 0.88) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
	cursor: pointer;
}

.choice-card input {
	grid-row: 1 / span 2;
	margin: 0.16rem 0 0;
	accent-color: var(--brand);
}

.choice-card > span {
	color: var(--ink);
	font-weight: 600;
	font-size: 1.02rem;
	line-height: 1.35;
	letter-spacing: -0.01em;
}

.choice-card small {
	grid-column: 2;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1.45;
}

.choice-card:hover,
.choice-card:focus-within,
.info-card:hover,
.info-card:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(30, 85, 99, 0.25);
	box-shadow: 0 12px 24px rgba(20, 26, 30, 0.08);
}

.choice-card:has(input:checked) {
	background: linear-gradient(180deg, rgba(231, 241, 244, 0.92) 0%, rgba(244, 248, 248, 0.96) 100%);
	border-color: rgba(30, 85, 99, 0.34);
	box-shadow: inset 0 0 0 1px rgba(30, 85, 99, 0.08), 0 14px 28px rgba(20, 26, 30, 0.08);
}

.wizard-actions {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
}

.wizard-error {
	margin: 1rem 0 0;
	padding: 0.85rem 1rem;
	border-radius: var(--radius-tight);
	background: rgba(139, 107, 63, 0.12);
	color: var(--risk-medium);
	font-size: 0.94rem;
}

.form-prelude {
	margin-bottom: 1rem;
	padding: 1rem 1.05rem;
	border-radius: var(--radius-tight);
	background: rgba(236, 230, 218, 0.55);
	border: 1px solid rgba(215, 208, 196, 0.95);
}

.form-microcopy {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.context-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin: 1rem 0 0;
}

.context-pill {
	padding: 0.55rem 0.8rem;
	border-radius: 999px;
	background: rgba(30, 85, 99, 0.06);
	border: 1px solid rgba(30, 85, 99, 0.12);
	color: var(--brand-strong);
	font-size: 0.9rem;
}

.form-details {
	padding: 1rem 1.05rem;
	border: 1px solid rgba(215, 208, 196, 0.95);
	border-radius: var(--radius-tight);
	background: rgba(255, 253, 248, 0.72);
}

.form-details summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--brand-strong);
}

.city-hub-disclosure summary {
	list-style: none;
	cursor: pointer;
	display: grid;
	gap: 0.3rem;
	color: var(--brand-strong);
}

.city-hub-disclosure summary::-webkit-details-marker {
	display: none;
}

.city-hub-disclosure-title {
	font-size: 1.1rem;
	line-height: 1.35;
}

.city-hub-disclosure[open] summary {
	margin-bottom: 1rem;
}

.city-hub-disclosure[open] summary .card-kicker {
	color: var(--muted);
}

.form-details-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.95rem;
	margin-top: 1rem;
}

.field-label-full {
	grid-column: 1 / -1;
}

.field-label {
	display: grid;
	gap: 0.5rem;
	font-weight: 600;
}

.field-label.has-error {
	color: var(--risk-high);
}

.field-label input,
.field-label select,
.field-label textarea {
	width: 100%;
	border: 1px solid rgba(31, 42, 48, 0.15);
	border-radius: 14px;
	padding: 0.85rem 1rem;
	background: var(--surface);
	font: inherit;
	color: var(--ink);
}

.field-label.has-error input,
.field-label.has-error select,
.field-label.has-error textarea,
.consent-row.has-error {
	border-color: rgba(138, 74, 63, 0.45);
}

.field-error {
	margin: -0.4rem 0 0;
	font-size: 0.88rem;
	color: var(--risk-high);
}

.field-error:empty,
.field-error[hidden],
.form-error[hidden] {
	display: none;
}

.lead-form {
	display: grid;
	gap: 0.95rem;
}

.consent-row {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.92rem;
	color: var(--muted);
	padding: 0.1rem 0;
}

.consent-row.has-error {
	padding: 0.75rem 0.85rem;
	border: 1px solid rgba(138, 74, 63, 0.28);
	border-radius: 14px;
	background: rgba(138, 74, 63, 0.08);
}

.form-error,
.form-success {
	padding: 0.85rem 1rem;
	border-radius: var(--radius-tight);
	font-size: 0.94rem;
}

.form-error {
	background: rgba(138, 74, 63, 0.12);
	color: var(--risk-high);
}

.form-success {
	background: rgba(86, 112, 92, 0.12);
	color: var(--risk-low);
}

.summary-block {
	white-space: pre-wrap;
	padding: 1rem;
	border-radius: var(--radius-tight);
	background: rgba(236, 230, 218, 0.6);
	border: 1px solid rgba(215, 208, 196, 0.95);
	font-family: "Public Sans", system-ui, sans-serif;
	font-size: 0.95rem;
}

.section-note {
	margin-top: 1rem;
	padding: 0.95rem 1rem;
	background: rgba(30, 85, 99, 0.06);
	border: 1px solid rgba(30, 85, 99, 0.12);
	border-radius: var(--radius-tight);
	color: var(--muted);
}

.table-shell {
	position: relative;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	margin-top: 1rem;
	border: 1px solid rgba(215, 208, 196, 0.95);
	border-radius: var(--radius-tight);
}

.table-scroll-note {
	display: none;
	margin-top: 0.9rem;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	min-width: 520px;
	background: var(--surface);
}

.comparison-table th,
.comparison-table td {
	padding: 0.95rem 1rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(215, 208, 196, 0.8);
}

.comparison-table th {
	background: rgba(30, 85, 99, 0.08);
	color: var(--brand-strong);
	font-size: 0.92rem;
}

.comparison-table tbody tr:last-child td {
	border-bottom: 0;
}

.toc-list {
	padding-left: 1rem;
}

.toc-list a {
	color: var(--brand-strong);
}

.source-list {
	padding-left: 0;
	list-style: none;
}

.source-link {
	display: block;
	color: var(--brand-strong);
	font-weight: 600;
}

.source-meta {
	display: block;
	margin-top: 0.2rem;
	color: var(--muted);
	font-size: 0.88rem;
}

.section-card-accent {
	background:
		linear-gradient(180deg, rgba(30, 85, 99, 0.08), rgba(255, 253, 248, 0.94)),
		var(--surface);
	border-color: rgba(30, 85, 99, 0.14);
}

.inline-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.15rem;
}

.related-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.15rem;
}

.related-page-card {
	display: grid;
	gap: 0.45rem;
	padding: 1.15rem;
	border: 1px solid rgba(215, 208, 196, 0.95);
	border-radius: var(--radius-tight);
	background: rgba(255, 253, 248, 0.82);
	color: var(--text);
	text-decoration: none;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.related-page-card:hover,
.related-page-card:focus-visible {
	transform: translateY(-1px);
	border-color: rgba(30, 85, 99, 0.22);
	box-shadow: var(--shadow);
}

.related-page-card strong {
	font-size: 1rem;
}

.related-page-card-text {
	color: var(--muted);
	font-size: 0.94rem;
	line-height: 1.55;
}

.header-mobile-trust {
	display: none;
	gap: 0.75rem;
	padding: 0 0 0.9rem;
	color: var(--muted);
	font-size: 0.84rem;
}

.header-mobile-trust a {
	color: var(--brand-strong);
}

.site-footer {
	border-top: 1px solid rgba(215, 208, 196, 0.95);
	background: rgba(255, 253, 248, 0.7);
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1rem;
	padding: 2.5rem 0 3.5rem;
}

.footer-title {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.footer-copy {
	max-width: 32rem;
	color: var(--muted);
}

.footer-trust {
	display: grid;
	gap: 0.5rem;
	margin-top: 1rem;
	color: var(--muted);
	font-size: 0.92rem;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.8rem;
}

.footer-link-group {
	display: grid;
	gap: 0.4rem;
	align-content: start;
}

.footer-link-label {
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 0.15rem;
}

.footer-link-group a {
	display: block;
	padding: 0.52rem 0.65rem;
	border-radius: 12px;
	border: 1px solid rgba(215, 208, 196, 0.85);
	background: rgba(255, 253, 248, 0.7);
	font-size: 0.94rem;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
	border-color: rgba(30, 85, 99, 0.22);
	color: var(--brand-strong);
}

@media (max-width: 900px) {
	.hero-grid,
	.hero-shell,
	.result-hero-shell,
	.content-grid,
	.callout-grid,
	.footer-grid,
	.steps-grid,
	.card-grid-4,
	.card-grid-3,
	.card-grid-2,
	.choice-grid {
		grid-template-columns: 1fr;
	}

	.nav-shell {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 1rem;
		padding: 0.6rem 0;
	}

	.header-meta {
		display: none;
	}

	.header-mobile-trust {
		display: none;
	}

	.nav-toggle {
		display: inline-flex;
		width: 2.55rem;
		height: 2.55rem;
		gap: 0.2rem;
	}

	.nav-links {
		position: absolute;
		top: calc(100% + 0.3rem);
		left: 1rem;
		right: 1rem;
		display: none;
		grid-auto-flow: row;
		gap: 0.5rem;
		padding: 0.8rem;
		border: 1px solid rgba(215, 208, 196, 0.95);
		border-radius: 16px;
		background: rgba(255, 253, 248, 0.98);
		box-shadow: var(--shadow);
		z-index: 15;
		max-height: calc(100vh - 5rem);
		overflow-y: auto;
	}

	.nav-links[data-open="true"] {
		display: grid;
	}

	.nav-links a {
		display: block;
		padding: 0.68rem 0.82rem;
		border: 1px solid rgba(31, 42, 48, 0.12);
		border-radius: 14px;
		background: rgba(255, 253, 248, 0.88);
		font-weight: 600;
	}

	.nav-mobile-meta {
		display: flex;
		flex-wrap: wrap;
		gap: 0.55rem;
		margin-top: 0.15rem;
		padding-top: 0.45rem;
		border-top: 1px solid rgba(215, 208, 196, 0.8);
	}

	.nav-mobile-meta a {
		display: inline-flex;
		align-items: center;
		width: auto;
		padding: 0.34rem 0.62rem;
		border-radius: 999px;
		background: rgba(255, 253, 248, 0.78);
		border: 1px solid rgba(215, 208, 196, 0.92);
		font-size: 0.82rem;
		font-weight: 600;
	}

	.nav-mobile-meta span {
		width: 100%;
		font-size: 0.75rem;
		color: var(--muted);
	}

	.site-header {
		background: rgba(251, 248, 241, 0.94);
	}

	body.nav-open {
		overflow: hidden;
	}

	.brand {
		font-size: 1rem;
		letter-spacing: -0.025em;
	}

	.answer-card,
	.info-card,
	.section-card,
	.rail-card,
	.form-shell,
	.meta-block {
		min-width: 0;
	}

	.table-shell {
		max-width: 100%;
	}

	.table-scroll-note {
		display: block;
	}

	.related-card-grid {
		grid-template-columns: 1fr;
	}

	.hero,
	.page-hero {
		padding: 3.75rem 0 2rem;
	}

	.hero-copy,
	.hero-artifact,
	.artifact-card,
	.section-card,
	.answer-card,
	.rail-card,
	.info-card,
	.step-card,
	.callout,
	.wizard-shell,
	.form-shell {
		padding: 1.25rem;
	}

	.wizard-actions {
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.form-details-grid {
		grid-template-columns: 1fr;
	}

	.site-footer {
		background: rgba(255, 253, 248, 0.8);
	}

	.footer-grid {
		gap: 1.15rem;
		padding: 2rem 0 2.5rem;
	}

	.footer-trust {
		gap: 0.4rem;
		font-size: 0.88rem;
	}
}

@media (max-width: 480px) {
	.container {
		width: min(1120px, calc(100vw - 1.4rem));
	}

	.nav-shell {
		padding: 0.5rem 0;
	}

	.nav-toggle {
		width: 2.4rem;
		height: 2.4rem;
	}

	.nav-toggle span {
		width: 0.92rem;
	}

	.nav-links {
		left: 0.7rem;
		right: 0.7rem;
		padding: 0.72rem;
	}

	.nav-links a {
		padding: 0.64rem 0.78rem;
		font-size: 0.95rem;
	}

	.nav-mobile-meta span {
		font-size: 0.72rem;
	}

	.comparison-table {
		min-width: 460px;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 0.78rem 0.8rem;
		font-size: 0.92rem;
	}

	.footer-grid {
		padding: 1.7rem 0 2.2rem;
	}

	.footer-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.7rem;
	}

	.footer-link-group {
		gap: 0.35rem;
	}

	.footer-link-label {
		font-size: 0.72rem;
	}

	.footer-link-group a {
		padding: 0.48rem 0.58rem;
		font-size: 0.88rem;
		line-height: 1.35;
	}

	.page-hero {
		padding: 3.35rem 0 1.8rem;
	}

	.page-hero h1 {
		font-size: clamp(2.1rem, 10vw, 2.8rem);
		line-height: 1.02;
	}

	.breadcrumbs {
		gap: 0.45rem;
		margin-bottom: 1rem;
		font-size: 0.86rem;
	}

	.hero-shell,
	.result-hero-shell {
		gap: 1.15rem;
	}

	.choice-card {
		padding: 0.95rem;
		column-gap: 0.75rem;
	}
}
