	body.faq-page {
		margin: 0 !important;
		padding: 0 !important;
		width: 100% !important;
		font-size: 16px !important;
		line-height: 1.6 !important;
		background: #F5F0E6 !important;
		font-family: 'Source Serif 4', Georgia, serif !important;
	}
	body.faq-page main {
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
	}
	body.faq-page * { box-sizing: border-box; }
	body.faq-page h1, body.faq-page h2, body.faq-page h3, body.faq-page h4 { margin: 0; }

	:root {
		--warm-white: #FDFCFA;
		--cream: #F5F0E6;
		--cream-deep: #EDE6D5;
		--taupe: #C4B7A2;
		--charcoal: #1F2A2E;
		--charcoal-soft: #2b3438;
		--amber: #C58940;
		--amber-deep: #a26e2e;
		--rust: #a04a3d;
		--rust-deep: #7d3a30;
		--pass-tone: #4a7a54;
		--pass-deep: #375a3f;
		--muted: #7a736a;
		--divider: #e8e2d4;
		--divider-soft: #efe9d9;
	}

	/* HEADER */
	body.faq-page header.top {
		position: sticky;
		top: 0;
		z-index: 100;
		background: rgba(253, 252, 250, 0.94);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		border-bottom: 1px solid var(--divider-soft);
		padding: 1.1rem 2rem;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	body.faq-page header.top .brand {
		display: block;
		text-decoration: none;
	}
	body.faq-page header.top .brand img {
		height: 44px;
		width: auto;
		display: block;
	}
	body.faq-page header.top .top-right-group {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
	body.faq-page header.top .page-tag {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.68rem;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--muted);
	}
	body.faq-page header.top .nav-toggle {
		background: none;
		border: none;
		color: var(--charcoal);
		cursor: pointer;
		padding: 0.4rem;
		border-radius: 4px;
		display: none;
	}
	body.faq-page header.top .contact-btn {
		background: var(--rust-deep);
		color: var(--warm-white);
		padding: 0.5rem 1.15rem 0.5rem 0.95rem;
		border-radius: 999px;
		text-decoration: none;
		font-family: 'Source Serif 4', Georgia, serif;
		font-size: 0.85rem;
		font-weight: 500;
		display: inline-flex;
		align-items: center;
		gap: 0.45rem;
		transition: background 0.25s ease, transform 0.25s ease;
	}
	body.faq-page header.top .contact-btn svg {
		width: 16px;
		height: 16px;
	}
	body.faq-page header.top .contact-btn:hover {
		background: #8a4238;
		transform: translateY(-2px);
	}

	/* Back-home link */
	.back-home {
		display: inline-flex;
		align-items: center;
		gap: 0.35rem;
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.68rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: #7a736a;
		text-decoration: none;
		padding: 0.35rem 0.7rem;
		border: 1px solid transparent;
		border-radius: 4px;
		margin-left: 1.1rem;
		transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
	}
	.back-home:hover {
		color: #a26e2e;
		border-color: #e8e2d4;
		background: rgba(197, 137, 64, 0.05);
	}
	.back-home-arrow {
		display: inline-block;
		transition: transform 0.25s ease;
	}
	.back-home:hover .back-home-arrow {
		transform: translateX(-3px);
	}
	@media (max-width: 640px) {
		.back-home {
			font-size: 0.6rem;
			padding: 0.3rem 0.5rem;
			margin-left: 0.5rem;
		}
		.back-home-text {
			display: none;
		}
		body.faq-page header.top .nav-toggle {
			display: inline-flex;
		}
	}

	/* MOBILE DRAWER */
	body.faq-page .nav-backdrop {
		position: fixed;
		inset: 0;
		background: rgba(31, 42, 46, 0.4);
		backdrop-filter: blur(6px);
		z-index: 200;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	body.faq-page .nav-backdrop.open {
		opacity: 1;
		visibility: visible;
	}
	body.faq-page .nav-drawer {
		position: fixed;
		top: 0;
		right: 0;
		width: 280px;
		max-width: 88vw;
		height: 100vh;
		background: var(--warm-white);
		border-left: 1px solid var(--divider);
		padding: 4rem 2rem 2rem 2rem;
		z-index: 201;
		transform: translateX(100%);
		transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
	}
	body.faq-page .nav-drawer.open {
		transform: translateX(0);
	}
	body.faq-page .nav-drawer a {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.85rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--charcoal);
		text-decoration: none;
	}
	body.faq-page .nav-drawer a:hover {
		color: var(--amber-deep);
	}
	body.faq-page .nav-drawer .drawer-close {
		position: absolute;
		top: 1rem;
		right: 1rem;
		background: none;
		border: none;
		cursor: pointer;
		color: var(--charcoal);
	}
	body.faq-page .drawer-current {
		color: var(--amber-deep) !important;
		border-left: 3px solid var(--amber-deep);
		padding-left: 0.75rem;
	}

	/* HERO */
	.faq-hero {
		background: #c4b7a2;
		border-bottom: 1px solid #e8e2d4;
		padding: 5rem 2rem 4.5rem;
		max-width: none;
		margin: 0;
	}
	.faq-hero-inner {
		max-width: 900px;
		margin: 0 auto;
	}
	.faq-eyebrow {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.75rem;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: var(--muted);
		margin-bottom: 1rem;
	}
	.faq-title {
		font-size: 2.6rem;
		font-weight: 600;
		color: var(--charcoal);
		letter-spacing: -0.01em;
		margin-bottom: 1.2rem;
		line-height: 1.15;
	}
	.faq-subtitle {
		font-size: 1.1rem;
		color: var(--charcoal-soft);
		line-height: 1.65;
		margin-bottom: 1rem;
	}

	/* Q&A LIST */
	.faq-list {
		max-width: 780px;
		margin: 3rem auto 4rem auto;
		padding: 0 2rem;
	}
	.faq-item {
		margin-bottom: 3rem;
		padding-bottom: 2.5rem;
		border-bottom: 1px solid var(--divider);
	}
	.faq-item:last-child {
		border-bottom: none;
	}
	.faq-question {
		font-size: 1.35rem;
		font-weight: 600;
		color: var(--charcoal);
		margin-bottom: 1rem;
		line-height: 1.35;
	}
	.faq-answer {
		font-size: 1.02rem;
		color: var(--charcoal-soft);
		line-height: 1.7;
	}
	.faq-answer p {
		margin: 0 0 0.85rem 0;
	}
	.faq-answer p:last-child {
		margin-bottom: 0;
	}
	.faq-answer a {
		color: var(--amber-deep);
		text-decoration: none;
		border-bottom: 1px solid transparent;
		transition: border-color 0.2s ease;
	}
	.faq-answer a:hover {
		border-bottom-color: var(--amber-deep);
	}
	.faq-answer strong {
		color: var(--charcoal);
		font-weight: 600;
	}
	.faq-answer em {
		font-style: italic;
	}
	.faq-number {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.72rem;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--muted);
		margin-bottom: 0.5rem;
	}

	@media (max-width: 640px) {
		.faq-title {
			font-size: 2rem;
		}
		.faq-question {
			font-size: 1.15rem;
		}
		.faq-list {
			padding: 0 1.25rem;
		}
	}

	/* LANGUAGE SWITCHER + TRANSLATION NOTE */
	.lang-switcher {
		display: flex;
		justify-content: flex-end;
		align-items: baseline;
		gap: 0.45rem;
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.78rem;
		letter-spacing: 0.08em;
		margin: 0 0 1.1rem 0;
	}
	.lang-toggle {
		color: #8b8579;
		text-decoration: none;
		padding: 0.1rem 0.15rem;
	}
	.lang-toggle:hover {
		color: #a26e2e;
		text-decoration: underline;
		text-underline-offset: 3px;
		text-decoration-thickness: 1px;
	}
	.lang-toggle[aria-current='page'] {
		color: #a26e2e;
		font-weight: 700;
		text-decoration: none;
	}
	.lang-sep { color: #c9c2b4; }
	.translation-note {
		margin-top: 2.5rem;
		padding-top: 1.25rem;
		border-top: 1px solid #efe9d9;
	}
	.translation-note p {
		font-size: 0.85rem;
		color: #2a2a2a;
		opacity: 0.75;
		line-height: 1.6;
		text-align: center;
		margin: 0;
	}
	.translation-note a {
		color: #a26e2e;
		text-decoration: none;
		border-bottom: 1px solid transparent;
		transition: border-color 0.2s ease;
	}
	.translation-note a:hover {
		border-bottom-color: #a26e2e;
	}


	/* Uniform nav style · match Constitution reference · 2026-08-04 late-evening */
	.nav-links,
	.nav-links a,
	.internal-links,
	.internal-links a {
		font-family: 'Source Serif 4', Georgia, serif !important;
		text-transform: none !important;
		letter-spacing: normal !important;
		font-size: 1rem !important;
	}
	.nav-links a,
	.internal-links a {
		font-weight: 500 !important;
		color: #1F2A2E !important;
	}
	.nav-links a.nav-current,
	.internal-links a.nav-current {
		color: #a26e2e !important;
	}
	/* Lang-switcher-top uniform · match Constitution reference */
	.lang-switcher-top,
	.lang-switcher-top a {
		font-family: 'JetBrains Mono', ui-monospace, monospace !important;
		font-size: 0.72rem !important;
		letter-spacing: 0.08em !important;
	}
