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

	:root {
		--warm-white: #FDFCFA;
		--cream: #F5F0E6;
		--cream-deep: #EDE6D5;
		--taupe: #C4B7A2;
		--taupe-deep: #A99A82;
		--charcoal: #1F2A2E;
		--charcoal-soft: #2b3438;
		--warm-dark: #3d3428;
		--amber: #C58940;
		--amber-deep: #a26e2e;
		--rust: #a04a3d;
		--rust-deep: #7d3a30;
		--muted: #7a736a;
		--divider: #e8e2d4;
		--divider-soft: #efe9d9;
	}

	/* HEADER */
	body.verdict-page header.top {
		position: sticky;
		top: 0;
		z-index: 100;
		background: rgba(253, 252, 250, 0.94);
		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.verdict-page .brand {
		display: inline-flex;
		align-items: center;
		text-decoration: none;
	}
	body.verdict-page .brand img {
		height: 44px;
		width: auto;
		display: block;
	}
	body.verdict-page .verdict-id-tag {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.7rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--rust);
		border: 1px solid var(--rust);
		padding: 0.4rem 0.85rem;
		border-radius: 3px;
	}
	body.verdict-page .top-right-group {
		display: flex;
		align-items: center;
		gap: 1rem;
	}
	body.verdict-page a.contact-btn {
		background: var(--rust-deep);
		color: var(--warm-white);
		padding: 0.5rem 1.15rem 0.5rem 0.95rem;
		border-radius: 999px;
		font-family: 'Source Serif 4', Georgia, serif;
		font-size: 0.88rem;
		font-weight: 500;
		text-decoration: none;
		display: inline-flex;
		align-items: center;
		gap: 0.45rem;
		box-shadow: 0 8px 22px -12px rgba(125, 58, 48, 0.5);
		transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
	}
	body.verdict-page a.contact-btn:hover {
		background: #8a4238;
		transform: translateY(-2px);
		box-shadow: 0 14px 30px -12px rgba(125, 58, 48, 0.65);
	}
	body.verdict-page a.contact-btn svg {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
	}
	/* MOBILE HAMBURGER + DRAWER */
	body.verdict-page .nav-toggle { display: none; background: transparent; border: none; padding: 0.35rem 0.5rem; margin-right: 0.15rem; cursor: pointer; color: var(--charcoal); border-radius: 4px; transition: background 0.2s ease; }
	body.verdict-page .nav-toggle:hover, body.verdict-page .nav-toggle:focus-visible { background: rgba(31, 42, 46, 0.06); outline: none; }
	body.verdict-page .nav-toggle svg { width: 22px; height: 22px; display: block; }
	body.verdict-page .nav-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 78%; max-width: 320px; background: var(--warm-white); box-shadow: -20px 0 60px -20px rgba(31, 42, 46, 0.35); transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); z-index: 200; padding: 5rem 2rem 2rem 2rem; display: flex; flex-direction: column; gap: 0.35rem; }
	body.verdict-page .nav-drawer.open { transform: translateX(0); }
	body.verdict-page .nav-drawer a { font-family: 'Source Serif 4', serif; font-size: 1.15rem; color: var(--charcoal); text-decoration: none; padding: 0.9rem 0; border-bottom: 1px solid var(--divider-soft); transition: color 0.2s ease, padding-left 0.25s ease; }
	body.verdict-page .nav-drawer a:hover, body.verdict-page .nav-drawer a:focus-visible { color: var(--amber-deep); padding-left: 0.35rem; outline: none; }
	body.verdict-page .nav-drawer .drawer-close { position: absolute; top: 1.1rem; right: 1.25rem; background: transparent; border: none; padding: 0.5rem; cursor: pointer; color: var(--charcoal); border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, transform 0.2s ease; }
	body.verdict-page .nav-drawer .drawer-close:hover { background: rgba(31, 42, 46, 0.08); transform: rotate(90deg); }
	body.verdict-page .nav-drawer .drawer-close svg { width: 22px; height: 22px; display: block; }
	body.verdict-page .nav-drawer .drawer-contact { margin-top: 1.4rem; background: var(--rust-deep); color: var(--warm-white); text-align: center; padding: 0.85rem 1rem; border-radius: 999px; font-family: 'Source Serif 4', serif; font-size: 1rem; font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
	body.verdict-page .nav-drawer .drawer-contact svg { width: 17px; height: 17px; }
	body.verdict-page .nav-backdrop { position: fixed; inset: 0; background: rgba(31, 42, 46, 0.5); opacity: 0; pointer-events: none; transition: opacity 0.35s ease; z-index: 150; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
	body.verdict-page .nav-backdrop.open { opacity: 1; pointer-events: auto; }
	body.verdict-page.drawer-open { overflow: hidden; }

	@media (max-width: 640px) {
		body.verdict-page .verdict-id-tag {
			display: none;
		}
		body.verdict-page a.contact-btn {
			font-size: 0.78rem;
			padding: 0.45rem 0.95rem;
		}
		body.verdict-page .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
	}

	/* BACK FAB (bottom-left, mirrors Contact button top-right) */
	body.verdict-page .back-fab {
		position: fixed;
		bottom: 1.75rem;
		left: 1.75rem;
		z-index: 9990;
		background: var(--charcoal);
		color: var(--warm-white);
		padding: 0.65rem 1.15rem 0.65rem 0.9rem;
		border-radius: 999px;
		text-decoration: none;
		font-family: 'Source Serif 4', Georgia, serif;
		font-size: 0.88rem;
		font-weight: 500;
		display: inline-flex;
		align-items: center;
		gap: 0.5rem;
		box-shadow: 0 10px 26px -12px rgba(31, 42, 46, 0.5),
			0 4px 10px -4px rgba(0, 0, 0, 0.15);
		opacity: 0;
		transform: translateY(12px);
		pointer-events: none;
		transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
			background 0.25s ease, box-shadow 0.3s ease;
	}
	body.verdict-page .back-fab.visible {
		opacity: 1;
		transform: translateY(0);
		pointer-events: auto;
	}
	body.verdict-page .back-fab:hover {
		background: #2b3438;
		transform: translateY(-3px);
		box-shadow: 0 16px 34px -12px rgba(31, 42, 46, 0.6);
	}
	body.verdict-page .back-fab svg {
		width: 16px;
		height: 16px;
		flex-shrink: 0;
	}
	@media (max-width: 480px) {
		body.verdict-page .back-fab {
			bottom: 1.1rem;
			left: 1.1rem;
			font-size: 0.82rem;
			padding: 0.55rem 1rem 0.55rem 0.8rem;
		}
	}

	/* VERDICT HERO */
	.verdict-hero {
		background: var(--taupe);
		padding: 6rem 2rem 5rem 2rem;
		position: relative;
		overflow: hidden;
	}
	.verdict-hero-inner {
		max-width: 980px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 360px 1fr;
		gap: 3rem;
		align-items: center;
	}
	.verdict-hero .seal-wrap {
		position: relative;
	}
	.verdict-hero .seal-img {
		width: 360px;
		height: auto;
		display: block;
		filter: drop-shadow(0 22px 44px rgba(160, 74, 61, 0.32));
		transform: rotate(-6deg);
	}
	.verdict-hero-text .eyebrow {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.72rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--rust);
		margin-bottom: 0.75rem;
	}
	.verdict-hero-text .verdict-headline {
		font-family: 'Source Serif 4', serif;
		font-weight: 600;
		font-size: 4rem;
		line-height: 0.95;
		letter-spacing: -0.03em;
		color: var(--rust-deep);
		margin-bottom: 1.5rem;
	}
	.verdict-hero-text .subject-line {
		font-family: 'Source Serif 4', serif;
		font-style: italic;
		font-size: 1.35rem;
		color: var(--charcoal);
		margin-bottom: 1.75rem;
	}
	.verdict-hero-text .doctrine-ref {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.68rem;
		letter-spacing: 0.12em;
		color: var(--warm-dark);
	}

	@media (max-width: 720px) {
		.verdict-hero-inner {
			grid-template-columns: 1fr;
			gap: 2rem;
			text-align: left;
		}
		.verdict-hero .seal-img {
			width: 240px;
		}
		.verdict-hero-text .verdict-headline {
			font-size: 2.6rem;
		}
	}

	/* METADATA STRIP */
	.metadata-strip {
		background: var(--cream);
		color: var(--charcoal);
		padding: 1.75rem 2rem;
		border-bottom: 1px solid var(--divider);
	}
	.metadata-inner {
		max-width: 900px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
		gap: 1.75rem;
	}
	.metadata-strip .meta-item {
		display: flex;
		flex-direction: column;
		gap: 0.35rem;
	}
	.metadata-strip .meta-label {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.6rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--muted);
	}
	.metadata-strip .meta-value {
		font-family: 'Source Serif 4', serif;
		font-size: 1rem;
		color: var(--charcoal);
	}
	.metadata-strip .meta-value.mono {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.85rem;
		color: var(--rust-deep);
	}

	/* SCOPE STRIP */
	.scope-strip {
		background: var(--warm-white);
		color: var(--charcoal);
		padding: 2.5rem 2rem 2.75rem 2rem;
		border-bottom: 1px solid var(--divider);
	}
	.scope-inner {
		max-width: 900px;
		margin: 0 auto;
	}
	.scope-eyebrow {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.65rem;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: var(--rust-deep);
		margin-bottom: 1.35rem;
	}
	.scope-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem 2rem;
		margin-bottom: 1.5rem;
	}
	.scope-grid .scope-item {
		display: flex;
		flex-direction: column;
		gap: 0.4rem;
	}
	.scope-grid .scope-item.full {
		grid-column: 1 / -1;
	}
	.scope-label {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.62rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--muted);
	}
	.scope-value {
		font-family: 'Source Serif 4', serif;
		font-size: 0.98rem;
		line-height: 1.4;
		color: var(--charcoal);
	}
	.scope-note {
		font-family: 'Source Serif 4', serif;
		font-style: italic;
		font-size: 0.9rem;
		line-height: 1.6;
		color: #4a5559;
		border-top: 1px solid var(--divider);
		padding-top: 1.25rem;
		margin-top: 0.5rem;
	}
	@media (max-width: 720px) {
		.scope-grid {
			grid-template-columns: 1fr;
			gap: 1.25rem;
		}
	}

	/* SECTION FRAMES */
	.section-wrap {
		padding: 5rem 2rem;
	}
	.section-wrap.cream {
		background: var(--cream);
	}
	.section-inner {
		max-width: 780px;
		margin: 0 auto;
	}
	.section-eyebrow {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.7rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--rust);
		margin-bottom: 1.25rem;
	}
	.section-title {
		font-family: 'Source Serif 4', serif;
		font-weight: 400;
		font-size: 2.25rem;
		line-height: 1.15;
		letter-spacing: -0.015em;
		color: var(--charcoal);
		margin-bottom: 1.5rem;
	}
	.section-body {
		font-family: 'Source Serif 4', serif;
		font-size: 1.05rem;
		line-height: 1.7;
		color: var(--charcoal);
		text-align: justify;
		-webkit-hyphens: auto;
		hyphens: auto;
	}
	.section-body p {
		margin-bottom: 1.2rem;
	}
	.section-body p:last-child { margin-bottom: 0; }
	@media (max-width: 480px) {
		.section-body { text-align: left; }
	}

	/* GATES TABLE */
	.gates-block {
		border: 1px solid var(--divider);
		border-radius: 6px;
		overflow: hidden;
		background: var(--warm-white);
	}
	.gate-row {
		display: grid;
		grid-template-columns: 3rem 1fr 1fr auto;
		gap: 1.5rem;
		align-items: center;
		padding: 1.4rem 1.75rem;
		border-bottom: 1px solid var(--divider-soft);
	}
	.gate-row:last-child { border-bottom: none; }
	.gate-num {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.72rem;
		letter-spacing: 0.14em;
		color: var(--rust);
	}
	.gate-name {
		font-family: 'Source Serif 4', serif;
		font-size: 1rem;
		font-weight: 500;
		color: var(--charcoal);
	}
	.gate-value {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.85rem;
		color: var(--rust-deep);
		text-align: right;
	}
	.gate-value.neutral {
		color: var(--muted);
	}
	.gate-badge {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.6rem;
		font-weight: 500;
		letter-spacing: 0.14em;
		padding: 0.35rem 0.75rem;
		background: rgba(160, 74, 61, 0.09);
		color: var(--rust);
		border: 1px solid rgba(160, 74, 61, 0.35);
		border-radius: 3px;
	}
	@media (max-width: 640px) {
		.gate-row {
			grid-template-columns: 2rem 1fr auto;
			gap: 0.85rem;
			padding: 1rem 1rem;
		}
		.gate-value {
			grid-column: 1 / -1;
			text-align: left;
			padding-left: 2.85rem;
			font-size: 0.75rem;
		}
	}

	/* PULL QUOTE */
	.pull-quote {
		font-family: 'Source Serif 4', serif;
		font-style: italic;
		font-size: 1.35rem;
		line-height: 1.5;
		color: var(--charcoal);
		max-width: 640px;
		margin: 3rem auto;
		padding: 2rem 2rem 2rem 2.5rem;
		border-left: 3px solid var(--rust);
		background: var(--cream);
	}

	/* AUDIT / SIGNATURE FOOTER */
	.audit-block {
		background: var(--warm-white);
		color: var(--charcoal);
		padding: 4rem 2rem 3rem 2rem;
		border-bottom: 1px solid var(--divider);
	}
	.audit-inner {
		max-width: 780px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
	.audit-block h3 {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.7rem;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		color: var(--rust-deep);
		margin-bottom: 0.9rem;
	}
	.audit-block p, .audit-block .audit-line {
		font-family: 'Source Serif 4', serif;
		font-size: 0.95rem;
		line-height: 1.55;
		color: var(--charcoal);
		margin-bottom: 0.5rem;
	}
	.audit-block .audit-value.mono {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.78rem;
		color: var(--rust-deep);
		word-break: break-all;
	}
	.audit-block a {
		color: var(--rust-deep);
		text-decoration: none;
		border-bottom: 1px solid rgba(125, 58, 48, 0.4);
	}
	.audit-block a:hover {
		border-bottom-color: var(--rust-deep);
	}
	@media (max-width: 640px) {
		.audit-inner {
			grid-template-columns: 1fr;
			gap: 2rem;
		}
	}

	/* SIGNATURE */
	.signature-block {
		background: var(--taupe-deep);
		padding: 3.75rem 2rem 3rem 2rem;
	}
	.signature-inner {
		max-width: 780px;
		margin: 0 auto;
		text-align: center;
	}
	.signature-block .sig-name {
		font-family: 'Source Serif 4', serif;
		font-style: italic;
		font-size: 1.35rem;
		color: var(--charcoal);
		margin-bottom: 0.65rem;
	}
	.signature-block .sig-attr {
		font-family: 'JetBrains Mono', monospace;
		font-size: 0.72rem;
		letter-spacing: 0.16em;
		text-transform: uppercase;
		color: rgba(31, 42, 46, 0.78);
	}
	.signature-block .sig-social {
		display: flex;
		justify-content: center;
		gap: 1.75rem;
		margin: 2rem 0 1.5rem 0;
	}
	.signature-block .sig-social a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 42px;
		height: 42px;
		border-radius: 50%;
		background: var(--warm-white);
		text-decoration: none;
		transition: background 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
			box-shadow 0.3s ease;
	}
	.signature-block .sig-social a.linkedin {
		background: #0A66C2;
		color: #ffffff;
	}
	.signature-block .sig-social a.x {
		background: #000000;
		color: #ffffff;
	}
	.signature-block .sig-social a:hover {
		transform: translateY(-3px) scale(1.06);
		box-shadow: 0 10px 22px -12px rgba(31, 42, 46, 0.35);
	}
	.signature-block .sig-social svg {
		width: 20px;
		height: 20px;
		display: block;
	}
	.signature-block .sig-social a.linkedin svg {
		width: 26px;
		height: 26px;
	}
	.signature-block .sig-license {
		font-family: 'Source Serif 4', serif;
		font-size: 0.85rem;
		color: rgba(31, 42, 46, 0.72);
		font-style: italic;
		max-width: 620px;
		margin: 0 auto;
		line-height: 1.55;
	}
	/* Back-home link : contextual navigation on sub-pages back to nyalai.com home */
	.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;
		}
	}

	/* Desktop horizontal navigation (hidden on mobile where hamburger takes over) */
	body.verdict-page .nav-links {
		display: flex;
		gap: 1.75rem;
		font-family: 'Source Serif 4', serif;
		font-size: 0.9rem;
		align-items: center;
	}
	body.verdict-page .nav-links a {
		color: var(--charcoal);
		text-decoration: none;
		position: relative;
		padding: 0.35rem 0;
		transition: color 0.25s ease;
	}
	body.verdict-page .nav-links a::after {
		content: '';
		position: absolute;
		left: 0; right: 0; bottom: 0;
		height: 1.5px;
		background: var(--amber);
		transform: scaleX(0);
		transform-origin: left center;
		transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	}
	body.verdict-page .nav-links a:hover {
		color: var(--amber-deep);
	}
	body.verdict-page .nav-links a:hover::after {
		transform: scaleX(1);
	}
	body.verdict-page .nav-links a.nav-current {
		color: var(--amber-deep);
	}
	body.verdict-page .nav-links a.nav-current::after {
		transform: scaleX(1);
	}
	@media (max-width: 900px) {
		body.verdict-page .nav-links { display: none; }
	}

	/* LANGUAGE SWITCHER + TRANSLATION NOTE */
	.verdict-hero .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;
		max-width: 980px;
		margin: -3rem auto 1.6rem auto;
	}
	.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 {
		background: var(--warm-white);
		padding: 2.5rem 2rem;
		border-top: 1px solid #efe9d9;
	}
	.translation-note p {
		max-width: 780px;
		margin: 0 auto;
		font-family: 'Source Serif 4', serif;
		font-size: 0.85rem;
		line-height: 1.6;
		color: #2a2a2a;
		opacity: 0.75;
		text-align: center;
	}
	.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;
	}
