/* ---------------------------------------------------------------------------
   The Honest Journey main stylesheet.
   Editorial. Quiet. Long-form first.
--------------------------------------------------------------------------- */

:root {
	--thj-paper:        #FBF8F3;
	--thj-paper-dim:    #F4EFE5;
	--thj-surface:      #FFFFFF;
	--thj-ink:          #1F1B16;
	--thj-ink-soft:     #3A332B;
	--thj-muted:        #6B6258;
	--thj-faint:        #A39A8E;
	--thj-rule:         #E7E0D5;
	--thj-rule-soft:    #EFEAE0;
	/* Accent: editorial navy. The financial-trust register.
	   Token names retained as --thj-clay for code stability, but the color is navy now. */
	--thj-clay:         #1A3556;
	--thj-clay-deep:    #0F2440;
	--thj-clay-tint:    #E0E6EF;
	--thj-success:      #2E7D5B;
	--thj-success-tint: #E2F0E9;
	--thj-neutral:      #867E73;
	--thj-neutral-tint: #ECE8E0;
	--thj-struggle:     #A05A2C;
	--thj-struggle-tint:#F6E6D7;

	/* Self-hosted faces declared below; system fonts as fallback so nothing breaks before fonts ship. */
	--thj-serif:    "Source Serif 4", "Source Serif Pro", "Charter", "Iowan Old Style", "Georgia", "Times New Roman", serif;
	--thj-sans:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	/* Wordmark font: Palatino is web-safe on every major OS, gives the brand publication gravitas. */
	--thj-wordmark: "Palatino Linotype", "Palatino", "Book Antiqua", "URW Palladio L", "Source Serif 4", Georgia, serif;

	--thj-fs-base: 19px;
	--thj-lh: 1.65;

	--thj-content-w: 640px;
	--thj-wide-w:    1180px;

	--thj-radius:    6px;
	--thj-radius-lg: 12px;

	--thj-shadow-sm: 0 1px 2px rgba(31,27,22,0.04);
	--thj-shadow:    0 4px 18px rgba(31,27,22,0.06);

	--thj-trans: 160ms ease;
}

@media (max-width: 720px) {
	:root { --thj-fs-base: 18px; }
}

/* ---------- Self-hosted fonts (drop woff2 files into /assets/fonts/) ----------
   If files are absent, the system fallback in --thj-serif/--thj-sans takes over.
   Source Serif 4: https://fonts.google.com/specimen/Source+Serif+4 (OFL)
   Inter:          https://rsms.me/inter (OFL)
-------------------------------------------------------------------------------- */
@font-face {
	font-family: "Source Serif 4";
	src: url("../fonts/SourceSerif4-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Source Serif 4";
	src: url("../fonts/SourceSerif4-Italic.woff2") format("woff2");
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}
@font-face {
	font-family: "Source Serif 4";
	src: url("../fonts/SourceSerif4-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background-color: var(--thj-paper);
	background-image: url("../svg/paper-grain.svg");
	background-repeat: repeat;
	background-size: 240px 240px;
	background-attachment: fixed;
	color: var(--thj-ink);
	font-family: var(--thj-serif);
	font-size: var(--thj-fs-base);
	line-height: var(--thj-lh);
	font-feature-settings: "kern", "liga", "onum";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a {
	color: var(--thj-clay);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
	transition: color var(--thj-trans);
}
a:hover, a:focus { color: var(--thj-clay-deep); text-decoration-thickness: 2px; }

:focus-visible {
	outline: 2px solid var(--thj-clay);
	outline-offset: 3px;
	border-radius: 3px;
}

::selection { background: var(--thj-clay-tint); color: var(--thj-ink); }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px,1px,1px,1px);
	width: 1px; height: 1px;
	overflow: hidden;
	white-space: nowrap;
}

.thj-skip {
	position: absolute;
	top: -100px; left: 0;
	background: var(--thj-ink);
	color: var(--thj-paper);
	padding: 12px 18px;
	font-family: var(--thj-sans);
	font-size: 14px;
	z-index: 1000;
	text-decoration: none;
}
.thj-skip:focus { top: 8px; left: 8px; }

/* ---------- Containers ---------- */
.thj-container {
	width: 100%;
	max-width: var(--thj-wide-w);
	margin: 0 auto;
	padding: 0 24px;
}
.thj-container--narrow { max-width: var(--thj-content-w); }

@media (max-width: 480px) {
	.thj-container { padding: 0 18px; }
}

/* ---------- Reading progress bar ---------- */
.thj-reading-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: transparent;
	z-index: 999;
	pointer-events: none;
}
.thj-reading-progress span {
	display: block;
	height: 100%;
	width: 0%;
	background: var(--thj-clay);
	transition: width 80ms linear;
}
body:not(.single) .thj-reading-progress { display: none; }

/* ---------- Site header ---------- */
.thj-site-header {
	background: var(--thj-paper);
	border-bottom: 1px solid var(--thj-rule);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(6px);
	background: color-mix(in srgb, var(--thj-paper) 92%, transparent);
}
.thj-site-header__inner {
	display: flex;
	align-items: center;
	gap: 24px;
	min-height: 64px;
	padding-top: 12px;
	padding-bottom: 12px;
}
.thj-brand { flex: 0 0 auto; margin-right: auto; }
/* Brand lockup: asterism mark, hairline vertical rule, lowercase wordmark, clay dot terminus. */
.thj-brand__name {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--thj-wordmark);
	font-size: 22px;
	font-weight: 700;
	color: var(--thj-ink);
	text-decoration: none;
	letter-spacing: -0.005em;
	line-height: 1;
}
.thj-brand__mark {
	display: inline-flex;
	width: 24px;
	height: 24px;
	color: var(--thj-clay);
	flex-shrink: 0;
}
.thj-brand__mark svg { width: 100%; height: 100%; display: block; }
.thj-brand__rule {
	display: inline-block;
	width: 1px;
	height: 22px;
	background: var(--thj-rule);
	flex-shrink: 0;
}
.thj-brand__text {
	display: inline-block;
	letter-spacing: -0.005em;
}
.thj-brand__name:hover { color: var(--thj-clay); }
.thj-brand__name:hover .thj-brand__mark { color: var(--thj-clay-deep); }
.thj-brand__name:hover .thj-brand__rule { background: color-mix(in srgb, var(--thj-clay) 30%, transparent); }
.custom-logo { max-height: 44px; width: auto; }

/* Tighten lockup on mobile so the brand still reads at small widths */
@media (max-width: 480px) {
	.thj-brand__name { font-size: 19px; gap: 10px; }
	.thj-brand__mark { width: 20px; height: 20px; }
	.thj-brand__rule { height: 18px; }
}

.thj-primary-nav {
	display: flex;
	align-items: center;
	gap: 22px;
	font-family: var(--thj-sans);
	font-size: 15px;
}
.thj-menu {
	display: flex;
	gap: 22px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.thj-menu a {
	color: var(--thj-ink);
	text-decoration: none;
	padding: 6px 0;
	border-bottom: 2px solid transparent;
}
.thj-menu a:hover,
.thj-menu .current-menu-item > a,
.thj-menu .current_page_item > a {
	color: var(--thj-clay);
	border-bottom-color: var(--thj-clay);
}

.thj-search-mini input {
	font-family: var(--thj-sans);
	font-size: 14px;
	padding: 7px 12px;
	border: 1px solid var(--thj-rule);
	border-radius: 999px;
	background: var(--thj-surface);
	color: var(--thj-ink);
	width: 200px;
	transition: border-color var(--thj-trans), width var(--thj-trans);
}
.thj-search-mini input:focus {
	outline: none;
	border-color: var(--thj-clay);
	width: 240px;
}

.thj-nav-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}
.thj-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--thj-ink);
	transition: transform var(--thj-trans), opacity var(--thj-trans);
}
.thj-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.thj-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.thj-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
	.thj-nav-toggle { display: flex; }
	.thj-primary-nav {
		position: absolute;
		top: 100%;
		left: 0; right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 16px 24px 24px;
		background: var(--thj-paper);
		border-bottom: 1px solid var(--thj-rule);
		transform: translateY(-10px);
		opacity: 0;
		pointer-events: none;
		transition: transform var(--thj-trans), opacity var(--thj-trans);
	}
	.thj-primary-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.thj-menu {
		flex-direction: column;
		gap: 0;
	}
	.thj-menu li {
		border-bottom: 1px solid var(--thj-rule-soft);
	}
	.thj-menu a {
		display: block;
		padding: 14px 0;
		font-size: 17px;
		border-bottom: 0;
	}
	.thj-search-mini { margin-top: 12px; }
	.thj-search-mini input { width: 100%; }
}

/* ---------- Main ---------- */
.thj-main {
	display: block;
	min-height: 50vh;
	padding-bottom: 80px;
}

/* ---------- Hero (homepage) ----------
   Sized so kicker, headline, sub, CTAs, and pledge all fit above a 900px-tall fold. */
.thj-hero {
	padding: 56px 0 56px;
	position: relative;
	overflow: hidden;
}
.thj-hero--split .thj-hero__grid {
	display: grid;
	grid-template-columns: 1.3fr 0.7fr;
	gap: 56px;
	align-items: start;
}
.thj-hero__lead { max-width: 720px; }
.thj-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--thj-clay);
	margin: 0 0 14px;
	font-weight: 600;
}
.thj-hero__kicker::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 1px;
	background: var(--thj-clay);
}
.thj-hero__headline {
	font-family: var(--thj-wordmark);
	font-size: clamp(36px, 5vw, 76px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin: 0 0 20px;
	font-weight: 700;
	color: var(--thj-ink);
}
.thj-hero__sub {
	font-family: var(--thj-serif);
	font-size: clamp(17px, 1.8vw, 21px);
	line-height: 1.45;
	color: var(--thj-ink-soft);
	max-width: 560px;
	margin: 0 0 24px;
}
.thj-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 18px;
}
.thj-hero__pledge {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--thj-sans);
	font-size: 12px;
	color: var(--thj-muted);
	margin: 0;
	letter-spacing: 0.02em;
}
.thj-pledge-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--thj-success);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--thj-success) 18%, transparent);
}

/* Manifesto pullquote card (right side of hero, no image) */
.thj-hero__manifesto {
	display: flex;
	justify-content: flex-end;
}
.thj-manifesto-card {
	position: relative;
	background: transparent;
	padding: 12px 0 0 36px;
	border-left: 1px solid var(--thj-rule);
	max-width: 420px;
	overflow: hidden;
}
.thj-manifesto-card__quote {
	position: absolute;
	top: -32px;
	left: 8px;
	font-family: var(--thj-wordmark);
	font-size: 180px;
	line-height: 1;
	color: var(--thj-clay-tint);
	font-weight: 700;
	z-index: 0;
	user-select: none;
	pointer-events: none;
}
.thj-manifesto-card__body,
.thj-manifesto-card__sig {
	position: relative;
	z-index: 1;
}
.thj-manifesto-card__body {
	margin: 0;
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-size: clamp(18px, 1.8vw, 22px);
	line-height: 1.4;
	color: var(--thj-ink);
	font-weight: 500;
}
.thj-manifesto-card__body p { margin: 0 0 0.5em; }
.thj-manifesto-card__body p:last-child { margin-bottom: 0; }
.thj-manifesto-card__sig {
	margin-top: 22px;
	display: flex;
	flex-direction: column;
	gap: 2px;
	font-family: var(--thj-sans);
}
.thj-manifesto-card__name {
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0;
	color: var(--thj-clay);
}
.thj-manifesto-card__role {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--thj-muted);
}

@media (max-width: 900px) {
	.thj-hero { padding: 40px 0 36px; }
	.thj-hero--split .thj-hero__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.thj-hero__manifesto { justify-content: flex-start; }
	.thj-manifesto-card { max-width: 100%; padding-left: 20px; padding-top: 8px; }
	.thj-manifesto-card__quote { font-size: 96px; top: -20px; left: 4px; }
	.thj-manifesto-card__body { font-size: 17px; }
	.thj-manifesto-card__sig { margin-top: 14px; }
	.thj-hero__cta { gap: 8px; }
	.thj-btn { font-size: 14px; padding: 11px 18px; }
}
@media (max-width: 480px) {
	.thj-hero { padding: 32px 0 28px; }
	.thj-hero__headline { font-size: 34px; line-height: 1.04; }
	.thj-hero__sub { font-size: 16px; }
	.thj-hero__cta { width: 100%; }
	.thj-hero__cta .thj-btn { flex: 1 1 calc(50% - 4px); justify-content: center; padding: 12px 12px; font-size: 14px; }
	.thj-hero__pledge { font-size: 11px; line-height: 1.4; }
}

/* ---------- Section divider (asterism flanked by rules) ---------- */
.thj-divider {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 24px 0;
	color: var(--thj-clay);
}
.thj-divider svg {
	width: 120px;
	height: 24px;
}

/* ---------- Three principles: massive outline numbers as backdrop ---------- */
.thj-principles {
	padding: 64px 0 80px;
	position: relative;
}
.thj-section__head--center {
	text-align: center;
	justify-content: center;
	margin-bottom: 40px;
}
.thj-section__head--center .thj-section__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
.thj-section__head--center .thj-section__eyebrow::before,
.thj-section__head--center .thj-section__eyebrow::after {
	content: "";
	display: inline-block;
	width: 28px;
	height: 1px;
	background: var(--thj-clay);
}
.thj-section__eyebrow {
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--thj-clay);
	margin: 0 0 8px;
	font-weight: 600;
}
.thj-principles__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
	list-style: none;
	padding: 0;
	margin: 0;
}
.thj-principles__list li {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-top: 56px;
	min-height: 180px;
}
.thj-principle__num {
	position: absolute;
	top: -28px;
	left: -12px;
	font-family: var(--thj-wordmark);
	font-size: 180px;
	font-weight: 700;
	line-height: 0.85;
	color: color-mix(in srgb, var(--thj-clay) 10%, transparent);
	-webkit-text-stroke: 2px var(--thj-clay);
	letter-spacing: -0.04em;
	user-select: none;
	pointer-events: none;
	z-index: 0;
}
.thj-principles__list li > * { position: relative; z-index: 1; }
.thj-principle__title {
	font-family: var(--thj-wordmark);
	font-size: clamp(24px, 2.8vw, 30px);
	letter-spacing: -0.015em;
	margin: 0;
	font-weight: 700;
	color: var(--thj-ink);
	line-height: 1.15;
}
.thj-principle__body {
	font-family: var(--thj-serif);
	font-size: 17px;
	line-height: 1.55;
	color: var(--thj-ink-soft);
	margin: 0;
}
@media (max-width: 880px) {
	.thj-principles { padding: 48px 0 56px; }
	.thj-principles__list { grid-template-columns: 1fr; gap: 64px; }
	.thj-principles__list li { padding-top: 44px; min-height: 0; }
	.thj-principle__num { font-size: 112px; top: -14px; left: -6px; }
}
@media (max-width: 480px) {
	.thj-principles__list { gap: 56px; }
	.thj-principle__num { font-size: 96px; }
	.thj-principle__title { font-size: 22px; }
}

/* ---------- A Note From Faz: full-bleed navy editorial band ----------
   The visual fulcrum of the homepage. Big italic Palatino quote from the
   founder story on a solid navy band. Cream on navy. Surfaces the About page
   into the homepage so the emotional weight lands before ISSUE 01. */
.thj-letter {
	padding: 96px 0;
	background: var(--thj-clay);
	color: var(--thj-paper);
	position: relative;
	text-align: left;
}
.thj-letter::before,
.thj-letter::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: color-mix(in srgb, var(--thj-paper) 14%, transparent);
}
.thj-letter::before { top: 0; }
.thj-letter::after { bottom: 0; }
.thj-letter__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: var(--thj-clay-tint);
	margin: 0 0 32px;
	font-weight: 600;
}
.thj-letter__eyebrow::before {
	content: "";
	display: inline-block;
	width: 32px;
	height: 1px;
	background: var(--thj-clay-tint);
}
.thj-letter__quote {
	margin: 0 0 36px;
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-size: clamp(22px, 2.6vw, 32px);
	line-height: 1.45;
	color: var(--thj-paper);
	font-weight: 500;
	letter-spacing: -0.005em;
}
.thj-letter__quote p { margin: 0 0 0.8em; }
.thj-letter__quote p:last-child { margin-bottom: 0; }
.thj-letter__quote strong {
	color: var(--thj-paper);
	font-weight: 600;
	font-style: normal;
	border-bottom: 2px solid color-mix(in srgb, var(--thj-clay-tint) 50%, transparent);
	padding-bottom: 1px;
}
.thj-letter__sig {
	display: flex;
	align-items: baseline;
	gap: 16px;
	margin-bottom: 28px;
	padding-top: 24px;
	border-top: 1px solid color-mix(in srgb, var(--thj-paper) 14%, transparent);
}
.thj-letter__faz {
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-size: clamp(28px, 3vw, 36px);
	color: var(--thj-clay-tint);
	font-weight: 600;
	line-height: 1;
}
.thj-letter__role {
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: color-mix(in srgb, var(--thj-paper) 60%, transparent);
	font-weight: 500;
}
.thj-letter__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--thj-sans);
	font-size: 14px;
	font-weight: 500;
	color: var(--thj-paper);
	text-decoration: none;
	letter-spacing: 0.02em;
	border-bottom: 1px solid color-mix(in srgb, var(--thj-paper) 35%, transparent);
	padding-bottom: 4px;
	transition: border-color var(--thj-trans), color var(--thj-trans);
}
.thj-letter__cta:hover {
	color: var(--thj-clay-tint);
	border-bottom-color: var(--thj-clay-tint);
}
.thj-letter__cta span { transition: transform var(--thj-trans); }
.thj-letter__cta:hover span { transform: translateX(4px); }
@media (max-width: 720px) {
	.thj-letter { padding: 64px 0; }
	.thj-letter__eyebrow { margin-bottom: 24px; letter-spacing: 0.18em; }
	.thj-letter__quote { font-size: 20px; line-height: 1.4; margin-bottom: 28px; }
	.thj-letter__sig { gap: 12px; padding-top: 20px; margin-bottom: 20px; }
	.thj-letter__faz { font-size: 26px; }
}

/* ---------- ISSUE 01 — Coming Soon (magazine-style empty state) ---------- */
.thj-issue {
	padding: 96px 0 112px;
	background: var(--thj-paper-dim);
	border-top: 1px solid var(--thj-rule);
	border-bottom: 1px solid var(--thj-rule);
	position: relative;
}
.thj-issue__head {
	max-width: 760px;
	margin-bottom: 64px;
}
.thj-issue__eyebrow {
	display: inline-flex;
	align-items: baseline;
	gap: 14px;
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--thj-clay);
	font-weight: 700;
	margin: 0 0 20px;
}
.thj-issue__sep { color: var(--thj-faint); font-weight: 400; }
.thj-issue__title {
	font-family: var(--thj-wordmark);
	font-size: clamp(36px, 5.5vw, 72px);
	line-height: 0.98;
	letter-spacing: -0.025em;
	margin: 0 0 24px;
	font-weight: 700;
	color: var(--thj-ink);
}
.thj-issue__lede {
	font-family: var(--thj-serif);
	font-size: clamp(18px, 2vw, 21px);
	line-height: 1.5;
	color: var(--thj-ink-soft);
	margin: 0;
	max-width: 640px;
}

.thj-issue__contents {
	max-width: 920px;
}
.thj-issue__contents-label {
	display: inline-block;
	font-family: var(--thj-sans);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--thj-clay);
	font-weight: 700;
	margin: 0 0 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--thj-clay);
}
.thj-issue__toc {
	list-style: none;
	padding: 0;
	margin: 0;
}
.thj-issue__toc li {
	display: grid;
	grid-template-columns: 64px 220px 1fr;
	gap: 32px;
	align-items: baseline;
	padding: 24px 0;
	border-bottom: 1px solid var(--thj-rule);
	transition: padding-left var(--thj-trans), background var(--thj-trans);
}
.thj-issue__toc li:last-child { border-bottom: 0; }
.thj-issue__toc-num {
	font-family: var(--thj-wordmark);
	font-size: 36px;
	font-weight: 700;
	color: var(--thj-clay);
	line-height: 1;
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
}
.thj-issue__toc-meta {
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--thj-muted);
	font-weight: 600;
}
.thj-issue__toc-title {
	font-family: var(--thj-wordmark);
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.35;
	color: var(--thj-ink);
	font-weight: 500;
	letter-spacing: -0.005em;
}
.thj-issue__contents-note {
	margin: 24px 0 0;
	font-family: var(--thj-serif);
	font-style: italic;
	font-size: 14px;
	color: var(--thj-muted);
}
@media (max-width: 720px) {
	.thj-issue { padding: 56px 0 64px; }
	.thj-issue__head { margin-bottom: 40px; }
	.thj-issue__toc li {
		grid-template-columns: 44px 1fr;
		gap: 14px;
		padding: 18px 0;
	}
	.thj-issue__toc-num { font-size: 28px; }
	.thj-issue__toc-meta {
		grid-column: 2;
		margin-bottom: 4px;
		font-size: 11px;
		letter-spacing: 0.14em;
	}
	.thj-issue__toc-title {
		grid-column: 2;
		font-size: 17px;
		line-height: 1.3;
	}
}
@media (max-width: 480px) {
	.thj-issue__contents-label { font-size: 10px; }
}

/* ---------- Newsletter section (full-bleed, two-column) ---------- */
.thj-newsletter {
	padding: 96px 0 104px;
	background: var(--thj-paper);
	position: relative;
}
.thj-newsletter__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 80px;
	align-items: center;
}
.thj-newsletter__title {
	font-family: var(--thj-wordmark);
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.02;
	letter-spacing: -0.025em;
	margin: 0 0 24px;
	font-weight: 700;
	color: var(--thj-ink);
}
.thj-newsletter__title em {
	font-style: italic;
	color: var(--thj-clay);
	font-weight: 600;
}
.thj-newsletter__lede {
	font-family: var(--thj-serif);
	font-size: clamp(17px, 1.8vw, 19px);
	line-height: 1.55;
	color: var(--thj-ink-soft);
	margin: 0;
	max-width: 480px;
}
.thj-newsletter__form {
	padding: 40px;
	background: var(--thj-paper-dim);
	border-left: 3px solid var(--thj-clay);
}
.thj-newsletter__small {
	margin: 16px 0 0;
	font-family: var(--thj-sans);
	font-size: 12px;
	color: var(--thj-muted);
	letter-spacing: 0.01em;
}
@media (max-width: 900px) {
	.thj-newsletter { padding: 56px 0; }
	.thj-newsletter__grid { grid-template-columns: 1fr; gap: 32px; }
	.thj-newsletter__form { padding: 24px; }
}
@media (max-width: 480px) {
	.thj-newsletter { padding: 44px 0; }
	.thj-newsletter__title { font-size: 32px; line-height: 1.05; }
	.thj-newsletter__lede { font-size: 16px; }
	.thj-newsletter__form { padding: 20px; border-left-width: 2px; }
	.thj-email-form { gap: 6px; }
	.thj-email-form input[type="email"] {
		flex: 1 1 100%;
		font-size: 16px; /* prevent iOS auto-zoom on input focus */
	}
	.thj-email-form .thj-btn { flex: 1 1 100%; justify-content: center; }
}

/* Section head variants */
.thj-section__head {
	margin-bottom: 36px;
}
.thj-section__head > div { display: flex; flex-direction: column; gap: 4px; }
.thj-section__lede {
	color: var(--thj-muted);
	margin: 0;
	max-width: 420px;
	text-align: right;
	font-size: 16px;
}
@media (max-width: 720px) {
	.thj-section__lede { text-align: left; max-width: 100%; }
}

/* ---------- Buttons ---------- */
.thj-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--thj-sans);
	font-size: 15px;
	font-weight: 500;
	padding: 12px 22px;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: background var(--thj-trans), border-color var(--thj-trans), color var(--thj-trans), transform var(--thj-trans);
}
.thj-btn--primary {
	background: var(--thj-clay);
	color: var(--thj-paper);
}
.thj-btn--primary:hover {
	background: var(--thj-clay-deep);
	color: var(--thj-paper);
	text-decoration: none;
}
.thj-btn--ghost {
	background: transparent;
	color: var(--thj-ink);
	border-color: var(--thj-ink);
}
.thj-btn--ghost:hover {
	background: var(--thj-ink);
	color: var(--thj-paper);
	text-decoration: none;
}
.thj-btn--large { padding: 16px 28px; font-size: 17px; }

/* ---------- Sections ---------- */
.thj-section { padding: 64px 0; border-bottom: 1px solid var(--thj-rule-soft); }
.thj-section:last-child { border-bottom: 0; }
.thj-section__head {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 32px;
}
.thj-section__head h2 {
	font-size: clamp(26px, 3vw, 34px);
	margin: 0;
	letter-spacing: -0.01em;
	font-weight: 600;
}
.thj-section__head p { color: var(--thj-muted); margin: 0; }
.thj-section__more {
	font-family: var(--thj-sans);
	font-size: 14px;
}

/* By country */
.thj-country-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 12px;
}
.thj-country-grid a {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 20px 22px;
	background: var(--thj-surface);
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius-lg);
	text-decoration: none;
	color: var(--thj-ink);
	transition: border-color var(--thj-trans), transform var(--thj-trans);
}
.thj-country-grid a:hover {
	border-color: var(--thj-clay);
	transform: translateY(-1px);
}
.thj-country-grid__name {
	font-size: 19px;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.thj-country-grid__count {
	font-family: var(--thj-sans);
	font-size: 13px;
	color: var(--thj-muted);
}

/* Stage row */
.thj-stage-row {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.thj-stage-row a {
	display: inline-block;
	padding: 10px 18px;
	background: var(--thj-clay-tint);
	color: var(--thj-clay-deep);
	border-radius: 999px;
	text-decoration: none;
	font-family: var(--thj-sans);
	font-size: 15px;
}
.thj-stage-row a:hover {
	background: var(--thj-clay);
	color: var(--thj-paper);
}

/* ---------- Article grid (cards) ---------- */
.thj-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 36px 28px;
}
.thj-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.thj-card__media {
	display: block;
	border-radius: var(--thj-radius-lg);
	overflow: hidden;
	aspect-ratio: 16/10;
	background: var(--thj-rule-soft);
}
.thj-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}
.thj-card:hover .thj-card__media img { transform: scale(1.02); }
.thj-card__country {
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--thj-muted);
	margin: 0;
}
.thj-card__title {
	font-size: 22px;
	line-height: 1.25;
	margin: 0;
	letter-spacing: -0.01em;
	font-weight: 600;
}
.thj-card__title a {
	color: var(--thj-ink);
	text-decoration: none;
}
.thj-card__title a:hover { color: var(--thj-clay); }
.thj-card__dek {
	color: var(--thj-ink-soft);
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
}
.thj-card__meta {
	font-family: var(--thj-sans);
	font-size: 13px;
	color: var(--thj-muted);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.thj-card__scenarios { display: inline-flex; gap: 4px; margin-left: 4px; }

/* ---------- Article list rows (Sivers-style archive) ---------- */
.thj-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--thj-rule);
}
.thj-row {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 32px;
	padding: 28px 0;
	border-bottom: 1px solid var(--thj-rule);
}
.thj-row__meta {
	font-family: var(--thj-sans);
	font-size: 13px;
	color: var(--thj-muted);
	line-height: 1.5;
	font-variant-numeric: tabular-nums;
}
.thj-row__date { display: block; font-weight: 500; color: var(--thj-ink-soft); }
.thj-row__time { color: var(--thj-faint); }
.thj-row__title {
	font-size: clamp(22px, 2.4vw, 26px);
	line-height: 1.25;
	margin: 0 0 6px;
	letter-spacing: -0.01em;
	font-weight: 600;
}
.thj-row__title a {
	color: var(--thj-ink);
	text-decoration: none;
	background-image: linear-gradient(transparent calc(100% - 1px), var(--thj-rule-soft) 1px);
	background-size: 0 100%;
	background-repeat: no-repeat;
	transition: background-size 240ms ease, color var(--thj-trans);
}
.thj-row__title a:hover {
	color: var(--thj-clay);
	background-size: 100% 100%;
	background-image: linear-gradient(transparent calc(100% - 1px), var(--thj-clay-tint) 1px);
}
.thj-row__dek {
	margin: 0 0 12px;
	color: var(--thj-ink-soft);
	font-size: 17px;
	line-height: 1.55;
	max-width: 60ch;
}
.thj-row__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	font-family: var(--thj-sans);
	font-size: 13px;
}
.thj-row__tag--country {
	color: var(--thj-muted);
	text-decoration: none;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
}
.thj-row__tag--country:hover { color: var(--thj-clay); }
@media (max-width: 600px) {
	.thj-row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 22px 0;
	}
	.thj-row__meta { display: flex; gap: 10px; align-items: baseline; }
	.thj-row__date { display: inline; }
}

/* ---------- Scenario badges ---------- */
.thj-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--thj-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	padding: 2px 8px;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid transparent;
	line-height: 1.4;
}
.thj-badge--success  { background: var(--thj-success-tint);  color: var(--thj-success); }
.thj-badge--neutral  { background: var(--thj-neutral-tint);  color: #58524A; }
.thj-badge--struggle { background: var(--thj-struggle-tint); color: var(--thj-struggle); }

.thj-card__scenarios .thj-badge {
	width: 22px;
	height: 22px;
	padding: 0;
	border-radius: 50%;
	font-size: 11px;
}

.thj-scenario-badges {
	list-style: none;
	padding: 0;
	margin: 16px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* ---------- Country chips on single ---------- */
.thj-country-chips {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--thj-muted);
}
.thj-country-chips a { color: var(--thj-muted); text-decoration: none; }
.thj-country-chips a:hover { color: var(--thj-clay); }
.thj-country-chips li + li::before { content: "·"; margin-right: 6px; color: var(--thj-faint); }

/* ---------- Breadcrumbs ---------- */
.thj-breadcrumbs {
	font-family: var(--thj-sans);
	font-size: 13px;
	color: var(--thj-muted);
	margin-bottom: 14px;
	letter-spacing: 0.02em;
}
.thj-breadcrumbs ol {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.thj-breadcrumbs li {
	display: inline-flex;
	align-items: center;
}
.thj-breadcrumbs li + li::before {
	content: "›";
	color: var(--thj-faint);
	margin-right: 6px;
	font-size: 14px;
}
.thj-breadcrumbs a {
	color: var(--thj-muted);
	text-decoration: none;
}
.thj-breadcrumbs a:hover { color: var(--thj-clay); }
.thj-breadcrumbs [aria-current="page"] { color: var(--thj-ink-soft); }

/* RankMath's own breadcrumb markup uses different elements: tighten it. */
.thj-breadcrumbs .rank-math-breadcrumb p { margin: 0; }
.thj-breadcrumbs .rank-math-breadcrumb a { color: var(--thj-muted); }
.thj-breadcrumbs .rank-math-breadcrumb .separator {
	color: var(--thj-faint);
	margin: 0 6px;
}

/* ---------- Archive header ---------- */
.thj-archive__header {
	padding: 56px 0 32px;
	text-align: left;
	border-bottom: 1px solid var(--thj-rule-soft);
	margin-bottom: 40px;
}
.thj-archive__kicker {
	font-family: var(--thj-sans);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--thj-muted);
	margin: 0 0 8px;
}
.thj-archive__title {
	font-size: clamp(30px, 4vw, 44px);
	margin: 0;
	letter-spacing: -0.01em;
	font-weight: 600;
}
.thj-archive__desc { color: var(--thj-muted); margin-top: 8px; max-width: 640px; }

/* ---------- Single article ---------- */
.thj-article__header {
	padding: 56px 0 24px;
	text-align: left;
}
.thj-article__title {
	font-size: clamp(32px, 5vw, 52px);
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 12px 0 16px;
	font-weight: 600;
}
.thj-article__dek {
	font-size: clamp(18px, 2.2vw, 22px);
	color: var(--thj-ink-soft);
	line-height: 1.5;
	margin: 0 0 18px;
	max-width: 620px;
	font-style: italic;
}
.thj-meta {
	font-family: var(--thj-sans);
	font-size: 14px;
	color: var(--thj-muted);
	font-variant-numeric: tabular-nums;
}
.thj-meta-sep { margin: 0 6px; color: var(--thj-faint); }
.thj-meta .thj-place { font-weight: 500; color: var(--thj-ink-soft); }

.thj-article__hero {
	margin: 24px 0 40px;
}
.thj-article__hero img {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	border-radius: var(--thj-radius-lg);
	max-height: 540px;
	object-fit: cover;
}

/* Long-form body */
.thj-article__body {
	font-size: var(--thj-fs-base);
	line-height: var(--thj-lh);
	color: var(--thj-ink);
}
.thj-article__body > * + * { margin-top: 1.1em; }
.thj-article__body p,
.thj-article__body ul,
.thj-article__body ol,
.thj-article__body blockquote,
.thj-article__body figure,
.thj-article__body pre,
.thj-article__body table { margin: 1.25em 0; }
.thj-article__body h2,
.thj-article__body h3,
.thj-article__body h4 {
	letter-spacing: -0.01em;
	line-height: 1.25;
	font-weight: 600;
}
.thj-article__body h2 {
	font-size: clamp(26px, 3vw, 32px);
	margin-top: 2em;
	margin-bottom: 0.6em;
	scroll-margin-top: 96px;
}
.thj-article__body h3 {
	font-size: clamp(21px, 2.4vw, 24px);
	margin-top: 1.6em;
	margin-bottom: 0.4em;
	scroll-margin-top: 96px;
}
.thj-article__body a {
	text-decoration: underline;
	text-decoration-color: color-mix(in srgb, var(--thj-clay) 50%, transparent);
}
.thj-article__body a:hover { text-decoration-color: var(--thj-clay); }
.thj-article__body strong { color: var(--thj-ink); font-weight: 600; }
.thj-article__body blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--thj-clay);
	color: var(--thj-ink-soft);
	font-size: 1.05em;
	font-style: italic;
}
.thj-article__body blockquote p:first-child { margin-top: 0; }
.thj-article__body blockquote p:last-child  { margin-bottom: 0; }
.thj-article__body ul,
.thj-article__body ol { padding-left: 1.4em; }
.thj-article__body li { margin: 0.4em 0; }
.thj-article__body img,
.thj-article__body figure { border-radius: var(--thj-radius); }
.thj-article__body figcaption {
	font-family: var(--thj-sans);
	font-size: 13px;
	color: var(--thj-muted);
	text-align: center;
	margin-top: 8px;
}
.thj-article__body hr {
	border: 0;
	border-top: 1px solid var(--thj-rule);
	margin: 2.4em 0;
}
.thj-article__body code,
.thj-article__body pre {
	font-family: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;
	font-size: 0.92em;
	background: var(--thj-rule-soft);
	padding: 0.15em 0.4em;
	border-radius: 4px;
}
.thj-article__body pre {
	padding: 16px 18px;
	overflow-x: auto;
	background: var(--thj-ink);
	color: var(--thj-paper);
}
.thj-article__body pre code { background: transparent; padding: 0; color: inherit; }

.thj-article__body table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--thj-sans);
	font-size: 15px;
}
.thj-article__body th,
.thj-article__body td {
	padding: 12px 14px;
	border-bottom: 1px solid var(--thj-rule);
	text-align: left;
}
.thj-article__body th { font-weight: 600; background: var(--thj-rule-soft); }

/* Block paragraph styles */
.is-style-thj-hook {
	font-size: clamp(20px, 2.4vw, 24px);
	line-height: 1.5;
	color: var(--thj-ink-soft);
}
.is-style-thj-hook::first-letter {
	font-size: 3.2em;
	float: left;
	line-height: 0.92;
	padding: 4px 10px 0 0;
	color: var(--thj-clay);
	font-weight: 600;
}
.is-style-thj-pullquote {
	font-size: clamp(22px, 2.6vw, 28px);
	line-height: 1.35;
	color: var(--thj-clay);
	font-style: italic;
	border-top: 1px solid var(--thj-rule);
	border-bottom: 1px solid var(--thj-rule);
	padding: 24px 0;
	margin: 32px 0;
}

/* Scenario callouts (inside articles).
   Left-border indent style. Quieter than filled boxes, matches an editorial voice. */
.thj-scenario,
.thj-framework {
	margin: 2em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--thj-neutral);
	background: transparent;
}
.thj-scenario h3,
.thj-framework h3 {
	margin: 4px 0 10px;
	font-size: 22px;
	letter-spacing: -0.01em;
	font-weight: 600;
}
.thj-scenario p,
.thj-framework p { margin: 0 0 0.8em; }
.thj-scenario p:last-child,
.thj-framework p:last-child { margin-bottom: 0; }
.thj-scenario__label,
.thj-framework__label,
.thj-yt-companion__label {
	display: block;
	font-family: var(--thj-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.thj-scenario--success                       { border-left-color: var(--thj-success); }
.thj-scenario--success .thj-scenario__label  { color: var(--thj-success); }
.thj-scenario--success h3                    { color: var(--thj-success); }

.thj-scenario--neutral                       { border-left-color: var(--thj-neutral); }
.thj-scenario--neutral .thj-scenario__label  { color: #58524A; }

.thj-scenario--struggle                      { border-left-color: var(--thj-struggle); }
.thj-scenario--struggle .thj-scenario__label { color: var(--thj-struggle); }
.thj-scenario--struggle h3                   { color: var(--thj-struggle); }

.thj-framework {
	border-left-color: var(--thj-clay);
}
.thj-framework .thj-framework__label { color: var(--thj-clay); }
.thj-framework h3                    { color: var(--thj-clay); }
.thj-framework ol { padding-left: 1.3em; margin: 8px 0 0; }
.thj-framework li { margin: 0.5em 0; }

.thj-honest-closing {
	margin: 2.4em 0 1em;
	border-top: 1px solid var(--thj-rule);
	border-bottom: 1px solid var(--thj-rule);
	padding: 28px 0;
	text-align: center;
	font-family: var(--thj-serif);
	font-size: 19px;
	font-style: italic;
	color: var(--thj-ink-soft);
}
.thj-honest-closing p { margin: 0; }

.thj-yt-companion {
	margin: 2em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--thj-clay);
}
.thj-yt-companion__label { color: var(--thj-clay); }

/* ---------- TOC ---------- */
.thj-toc {
	margin: 32px 0 40px;
	padding: 18px 22px;
	background: var(--thj-paper-dim);
	border-radius: var(--thj-radius-lg);
	border: 1px solid var(--thj-rule);
}
.thj-toc__toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	font-family: var(--thj-sans);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--thj-muted);
}
.thj-toc__chevron { transition: transform var(--thj-trans); }
.thj-toc__toggle[aria-expanded="true"] .thj-toc__chevron { transform: rotate(180deg); }
.thj-toc__list {
	list-style: none;
	padding: 0;
	margin: 14px 0 0;
	display: none;
	counter-reset: thj-toc;
}
.thj-toc__toggle[aria-expanded="true"] + .thj-toc__list { display: block; }
.thj-toc__item {
	font-family: var(--thj-sans);
	font-size: 15px;
	margin: 6px 0;
}
.thj-toc__item--h3 { padding-left: 18px; font-size: 14px; }
.thj-toc__item a { color: var(--thj-ink-soft); text-decoration: none; }
.thj-toc__item a:hover { color: var(--thj-clay); }

/* ---------- Article footer ---------- */
.thj-article__footer {
	margin-top: 56px;
	padding-top: 32px;
	border-top: 1px solid var(--thj-rule);
}
.thj-article__tags {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
}
.thj-eyebrow {
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--thj-muted);
}
.thj-taglist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 8px;
}
.thj-taglist a {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--thj-rule);
	border-radius: 999px;
	font-family: var(--thj-sans);
	font-size: 13px;
	color: var(--thj-ink-soft);
	text-decoration: none;
}
.thj-taglist a:hover { border-color: var(--thj-clay); color: var(--thj-clay); }

.thj-article__sig {
	margin: 40px 0 32px;
	padding: 28px 0 0;
	border-top: 1px solid var(--thj-rule);
	color: var(--thj-ink-soft);
}
.thj-article__sig-line {
	font-family: var(--thj-sans);
	font-size: 13px;
	margin: 0 0 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--thj-muted);
}
.thj-article__sig-name {
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-weight: 600;
	font-size: 17px;
	letter-spacing: 0;
	text-transform: none;
	color: var(--thj-clay);
}
.thj-article__sig-note { margin: 0; font-size: 17px; font-style: italic; }

.thj-article__signup {
	margin-top: 40px;
	padding: 32px 28px;
	background: var(--thj-paper-dim);
	border-radius: var(--thj-radius-lg);
	border: 1px solid var(--thj-rule);
}
.thj-article__signup h3 { margin: 0 0 8px; font-size: 22px; }
.thj-article__signup p { margin: 0 0 16px; color: var(--thj-muted); }

/* ---------- Related ---------- */
.thj-related {
	margin-top: 72px;
	padding: 56px 0;
	background: var(--thj-paper-dim);
	border-top: 1px solid var(--thj-rule);
	border-bottom: 1px solid var(--thj-rule);
}
.thj-related__title {
	font-size: clamp(24px, 2.8vw, 30px);
	margin: 0 0 28px;
	letter-spacing: -0.01em;
}

/* ---------- Support CTA ---------- */
.thj-support-cta {
	margin: 48px 0 0;
	padding: 32px 30px;
	background: var(--thj-clay-tint);
	border-radius: var(--thj-radius-lg);
	border: 1px solid color-mix(in srgb, var(--thj-clay) 25%, transparent);
}
.thj-support-cta__eyebrow {
	font-family: var(--thj-sans);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--thj-clay);
	margin: 0 0 8px;
}
.thj-support-cta h3 {
	margin: 0 0 12px;
	font-size: 26px;
	letter-spacing: -0.01em;
}
.thj-support-cta__buttons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 18px 0 14px;
}
.thj-support-cta__small {
	font-family: var(--thj-sans);
	font-size: 13px;
	color: var(--thj-muted);
	margin: 0;
}

/* ---------- Support page ---------- */
.thj-support-page__head { padding: 56px 0 16px; }
.thj-support-page__body { font-size: 19px; line-height: 1.65; color: var(--thj-ink-soft); }
.thj-support-page__body p { margin: 1em 0; }
.thj-support-options {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 40px 0;
}
@media (max-width: 600px) { .thj-support-options { grid-template-columns: 1fr; } }
.thj-support-options__card {
	background: var(--thj-surface);
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius-lg);
	padding: 28px;
	text-align: center;
}
.thj-support-options__card h2 { margin: 0 0 6px; font-size: 24px; }
.thj-support-options__card p { color: var(--thj-muted); margin: 0 0 18px; }
.thj-support-page__commitment {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--thj-rule);
}

/* ---------- Ask page ---------- */
.thj-ask-page__intro { font-size: 19px; line-height: 1.65; color: var(--thj-ink-soft); }
.thj-ask-page__quality {
	margin-top: 40px;
	padding: 24px 26px;
	background: var(--thj-paper-dim);
	border-radius: var(--thj-radius-lg);
	border: 1px solid var(--thj-rule);
}
.thj-ask-page__quality h3 { margin: 0 0 10px; font-size: 20px; }
.thj-ask-page__quality ul { margin: 0; padding-left: 1.2em; }

/* ---------- Calculators ---------- */
.thj-calc-page__head { padding: 56px 0 24px; }
.thj-calc-page__sub { color: var(--thj-muted); font-size: 19px; }
.thj-calc-page__list { display: flex; flex-direction: column; gap: 32px; }
.thj-calc-page__honest {
	margin-top: 48px;
	padding: 24px 26px;
	background: var(--thj-paper-dim);
	border-radius: var(--thj-radius-lg);
	border: 1px solid var(--thj-rule);
}

.thj-calc {
	background: transparent;
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius-lg);
	padding: 32px 32px 28px;
	font-family: var(--thj-sans);
}
.thj-calc__title {
	font-family: var(--thj-serif);
	font-size: clamp(24px, 2.6vw, 28px);
	letter-spacing: -0.01em;
	margin: 0 0 6px;
	font-weight: 600;
	color: var(--thj-ink);
}
.thj-calc__intro {
	font-family: var(--thj-serif);
	font-size: 17px;
	font-style: italic;
	color: var(--thj-muted);
	margin: 0 0 22px;
}
.thj-calc__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 14px;
}
.thj-calc__grid label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.01em;
	color: var(--thj-muted);
	text-transform: none;
}
.thj-calc__grid input,
.thj-calc__grid select {
	font-family: var(--thj-sans);
	font-size: 16px;
	padding: 10px 12px;
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius);
	background: var(--thj-surface);
	color: var(--thj-ink);
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	transition: border-color var(--thj-trans), box-shadow var(--thj-trans);
}
.thj-calc__grid input:focus,
.thj-calc__grid select:focus {
	outline: none;
	border-color: var(--thj-clay);
	box-shadow: 0 0 0 3px var(--thj-clay-tint);
}
/* Calculator output reads as a sentence, not a dashboard.
   Larger serif body, numbers in tabular figures. */
.thj-calc__output {
	margin: 24px 0 12px;
	padding: 24px 0 4px;
	border-top: 1px solid var(--thj-rule);
	font-family: var(--thj-serif);
	color: var(--thj-ink);
}
.thj-calc__sentence {
	font-size: 19px;
	line-height: 1.55;
	margin: 0 0 12px;
	color: var(--thj-ink);
}
.thj-calc__verdict {
	font-size: 16px;
	line-height: 1.55;
	color: var(--thj-ink-soft);
	margin: 0;
}
.thj-calc__verdict .thj-badge {
	margin-right: 6px;
	text-transform: capitalize;
}
.thj-calc__output strong { font-weight: 600; }
.thj-num {
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1, "lnum" 1;
	color: var(--thj-clay-deep);
	white-space: nowrap;
}
.thj-calc__note {
	font-size: 13px;
	font-family: var(--thj-sans);
	color: var(--thj-muted);
	margin: 12px 0 0;
}

/* ---------- Email signup form ---------- */
.thj-email-form {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: flex-start;
}
.thj-email-form input[type="email"] {
	flex: 1 1 240px;
	padding: 12px 16px;
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius);
	font-family: var(--thj-sans);
	font-size: 16px;
	background: var(--thj-surface);
	color: var(--thj-ink);
	min-width: 0;
}
.thj-email-form input[type="email"]:focus {
	outline: none;
	border-color: var(--thj-clay);
}
.thj-email-form__note {
	flex-basis: 100%;
	font-family: var(--thj-sans);
	font-size: 12px;
	color: var(--thj-muted);
	margin: 4px 0 0;
}

.thj-section--signup {
	background: var(--thj-paper-dim);
	border-top: 1px solid var(--thj-rule);
}
.thj-section--signup h2 { font-size: clamp(26px, 3vw, 32px); margin: 0 0 8px; }
.thj-section--signup p { color: var(--thj-muted); margin: 0 0 20px; }

/* ---------- End-mark band: transitions cream content into dark footer ----------
   An editorial section break. Asterism centered on a thin band of paper-dim,
   then a hard cut to the dark footer. No gradient haze. */
.thj-end-mark {
	padding: 56px 0;
	background: var(--thj-paper-dim);
	border-top: 1px solid var(--thj-rule);
	border-bottom: 1px solid var(--thj-rule);
	text-align: center;
}
.thj-end-mark__inner {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	color: var(--thj-clay);
}
.thj-end-mark__inner::before,
.thj-end-mark__inner::after {
	content: "";
	display: inline-block;
	width: 40px;
	height: 1px;
	background: var(--thj-rule);
}
.thj-end-mark__mark {
	display: inline-block;
	width: 28px;
	height: 28px;
	color: var(--thj-clay);
}
.thj-end-mark__mark svg { width: 100%; height: 100%; display: block; }

/* ---------- Footer ---------- */
.thj-site-footer {
	position: relative;
	background: var(--thj-ink);
	color: var(--thj-paper);
	padding: 56px 0 32px;
}
/* The signoff line at the top of the footer */
.thj-footer-signoff {
	padding: 0 0 36px;
	margin: 0 0 40px;
	border-bottom: 1px solid color-mix(in srgb, var(--thj-paper) 14%, transparent);
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
}
@media (max-width: 600px) {
	.thj-footer-signoff { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 28px; margin-bottom: 32px; }
	.thj-footer-signoff__line { font-size: 18px; }
	.thj-footer-signoff__faz { font-size: 28px; }
	.thj-end-mark { padding: 36px 0; }
}
.thj-footer-signoff__line {
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-size: clamp(22px, 2.4vw, 28px);
	color: color-mix(in srgb, var(--thj-paper) 75%, transparent);
	margin: 0;
	letter-spacing: -0.005em;
	line-height: 1.35;
	max-width: 720px;
}
.thj-footer-signoff__faz {
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-weight: 600;
	font-size: clamp(32px, 3.4vw, 44px);
	color: var(--thj-clay-tint);
	margin: 0;
	line-height: 1;
}
.thj-site-footer h4 {
	font-family: var(--thj-sans);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: color-mix(in srgb, var(--thj-paper) 60%, transparent);
	margin: 0 0 14px;
	font-weight: 600;
}
.thj-site-footer a { color: var(--thj-paper); text-decoration: none; }
.thj-site-footer a:hover { color: var(--thj-clay-tint); text-decoration: underline; }

.thj-footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 2fr;
	gap: 40px;
	padding-bottom: 48px;
	border-bottom: 1px solid color-mix(in srgb, var(--thj-paper) 14%, transparent);
}
@media (max-width: 860px) { .thj-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .thj-footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.thj-footer-col ul { list-style: none; padding: 0; margin: 0; }
.thj-footer-col li { margin: 8px 0; font-size: 15px; }
.thj-footer-col--brand .thj-footer-name {
	font-family: var(--thj-serif);
	font-size: 22px;
	font-weight: 600;
	margin: 0 0 6px;
	color: var(--thj-paper);
}
.thj-footer-tag {
	color: color-mix(in srgb, var(--thj-paper) 75%, transparent);
	margin: 0 0 14px;
	max-width: 340px;
}
.thj-footer-pledge {
	font-family: var(--thj-sans);
	font-size: 13px;
	color: color-mix(in srgb, var(--thj-paper) 55%, transparent);
	margin: 0;
	letter-spacing: 0.01em;
}
.thj-footer-col--signup p {
	color: color-mix(in srgb, var(--thj-paper) 75%, transparent);
	margin: 0 0 12px;
	font-size: 15px;
}
.thj-footer-col--signup .thj-email-form input {
	background: var(--thj-ink-soft);
	border-color: color-mix(in srgb, var(--thj-paper) 18%, transparent);
	color: var(--thj-paper);
}
.thj-footer-col--signup .thj-email-form input::placeholder {
	color: color-mix(in srgb, var(--thj-paper) 50%, transparent);
}
.thj-footer-col--signup .thj-email-form__note {
	color: color-mix(in srgb, var(--thj-paper) 50%, transparent);
}

.thj-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	font-family: var(--thj-sans);
	font-size: 13px;
	color: color-mix(in srgb, var(--thj-paper) 55%, transparent);
}
.thj-footer-bottom p { margin: 0; }
.thj-footer-legal-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 22px;
}

/* ---------- Search form ---------- */
.thj-search-form {
	display: flex;
	gap: 8px;
	max-width: 520px;
	margin: 24px 0;
}
.thj-search-form input[type="search"] {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius);
	font-family: var(--thj-sans);
	font-size: 16px;
	background: var(--thj-surface);
	color: var(--thj-ink);
}
.thj-search-form button {
	background: var(--thj-ink);
	color: var(--thj-paper);
	border: 0;
	padding: 0 22px;
	border-radius: var(--thj-radius);
	font-family: var(--thj-sans);
	cursor: pointer;
}

/* ---------- Empty / 404 ---------- */
.thj-empty {
	padding: 80px 0;
	text-align: center;
}
.thj-empty h1, .thj-empty h2 {
	font-size: clamp(28px, 3.4vw, 36px);
	margin: 0 0 12px;
}
.thj-empty p { color: var(--thj-muted); max-width: 480px; margin: 0 auto 18px; }

/* ---------- Pagination ---------- */
.navigation.pagination {
	margin: 48px 0;
	font-family: var(--thj-sans);
}
.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}
.navigation.pagination a,
.navigation.pagination .current {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius);
	text-decoration: none;
	color: var(--thj-ink);
	font-size: 14px;
}
.navigation.pagination .current {
	background: var(--thj-ink);
	color: var(--thj-paper);
	border-color: var(--thj-ink);
}
.navigation.pagination a:hover {
	border-color: var(--thj-clay);
	color: var(--thj-clay);
}

/* ---------- Comments (minimal) ---------- */
.comments-area {
	margin: 56px 0;
	padding-top: 32px;
	border-top: 1px solid var(--thj-rule);
}
.comments-title { font-size: 22px; margin: 0 0 18px; }
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-body { padding: 18px 0; border-bottom: 1px solid var(--thj-rule-soft); }
.comment-meta { font-family: var(--thj-sans); font-size: 13px; color: var(--thj-muted); margin-bottom: 6px; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--thj-rule);
	border-radius: var(--thj-radius);
	font-family: var(--thj-sans);
	font-size: 15px;
	background: var(--thj-surface);
	margin-top: 6px;
}
.comment-form .form-submit input {
	background: var(--thj-clay);
	color: var(--thj-paper);
	border: 0;
	padding: 11px 22px;
	border-radius: 999px;
	font-family: var(--thj-sans);
	font-weight: 500;
	cursor: pointer;
}

/* ---------- Reduced motion: respect user preference ---------- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	.thj-reading-progress span { transition: none !important; }
	.thj-card:hover .thj-card__media img { transform: none !important; }
}

/* ---------- Print ---------- */
@media print {
	.thj-site-header, .thj-site-footer, .thj-reading-progress,
	.thj-related, .thj-article__signup, .thj-support-cta,
	.thj-nav-toggle, .thj-toc__toggle { display: none !important; }
	body { background: #fff; color: #000; font-size: 12pt; }
	a { color: #000; text-decoration: underline; }
	.thj-container, .thj-container--narrow { max-width: 100%; padding: 0; }
}

/* ---------- Page header (generic) ---------- */
.thj-page__header {
	padding: 48px 0 24px;
}
.thj-page__title {
	font-size: clamp(34px, 4.5vw, 52px);
	letter-spacing: -0.02em;
	margin: 8px 0 0;
	font-weight: 600;
	line-height: 1.08;
}
.thj-page__body {
	font-size: var(--thj-fs-base);
	line-height: var(--thj-lh);
}
.thj-page__body > * + * { margin-top: 1em; }
.thj-page__body h2 {
	font-size: clamp(24px, 2.8vw, 30px);
	letter-spacing: -0.01em;
	margin-top: 1.6em;
	margin-bottom: 0.5em;
	font-weight: 600;
}
.thj-page__body h3 {
	font-size: 22px;
	margin-top: 1.4em;
	margin-bottom: 0.4em;
}
.thj-page__body p { margin: 1em 0; }
.thj-page__body ul, .thj-page__body ol { margin: 1em 0; padding-left: 1.4em; }
.thj-page__body li { margin: 0.4em 0; }
.thj-page__body blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--thj-clay);
	font-style: italic;
	color: var(--thj-ink-soft);
}

/* Letter-style page (About, Why I write this, Why no sponsors yet) */
.thj-page--letter .thj-page__title {
	font-style: italic;
	font-weight: 500;
}
.thj-page--letter .thj-page__body .is-style-thj-hook::first-letter {
	color: var(--thj-clay);
}
.thj-letter-signoff {
	margin: 56px 0 24px;
	padding-top: 24px;
	text-align: left;
}
.thj-letter-signoff__mark {
	display: flex;
	justify-content: flex-start;
	color: var(--thj-clay);
	margin-bottom: 24px;
	opacity: 0.7;
}
.thj-letter-signoff__mark svg { width: 96px; height: 20px; }
.thj-letter-signoff__sig {
	margin: 0 0 4px;
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-size: 32px;
	color: var(--thj-clay);
	font-weight: 600;
	letter-spacing: -0.005em;
}
.thj-letter-signoff__name { display: inline-block; }
.thj-letter-signoff__meta {
	margin: 0;
	font-family: var(--thj-sans);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--thj-muted);
}

/* ---------- Stat band (page-level, used in About) ----------
   Three large numbers in navy, side-by-side on desktop, stacked on mobile.
   Visual punctuation in long-form pages. */
.thj-statband {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin: 2.5em 0;
	padding: 40px 0;
	border-top: 1px solid var(--thj-rule);
	border-bottom: 1px solid var(--thj-rule);
}
.thj-stat { display: flex; flex-direction: column; gap: 12px; }
.thj-stat__num {
	font-family: var(--thj-wordmark);
	font-size: clamp(40px, 5.5vw, 64px);
	font-weight: 700;
	color: var(--thj-clay);
	line-height: 1;
	letter-spacing: -0.02em;
	display: block;
	font-variant-numeric: tabular-nums;
}
.thj-stat__label {
	font-family: var(--thj-serif);
	font-size: 15px;
	line-height: 1.45;
	color: var(--thj-ink-soft);
	margin: 0;
	max-width: 28ch;
}
@media (max-width: 720px) {
	.thj-statband {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 0;
		margin: 2em 0;
	}
	.thj-stat { gap: 6px; }
	.thj-stat__num { font-size: 44px; }
	.thj-stat__label { font-size: 14px; max-width: 100%; }
}

/* ---------- Pull quote (page-level, used in About) ----------
   Centered italic Palatino, navy, framed by rules. Editorial pause. */
.thj-pullquote {
	margin: 3em 0;
	padding: 36px 0;
	border-top: 1px solid var(--thj-rule);
	border-bottom: 1px solid var(--thj-rule);
	text-align: center;
	font-family: var(--thj-wordmark);
	font-style: italic;
	font-size: clamp(22px, 2.6vw, 30px);
	line-height: 1.35;
	color: var(--thj-clay);
	font-weight: 500;
	letter-spacing: -0.005em;
}
.thj-pullquote p { margin: 0; max-width: 28ch; margin-left: auto; margin-right: auto; }
@media (max-width: 720px) {
	.thj-pullquote { padding: 26px 0; margin: 2em 0; font-size: 20px; }
}

/* ---------- Numerics: tabular figures wherever rupees appear ---------- */
.thj-calc__sentence,
.thj-row__meta,
.thj-meta,
.thj-card__meta {
	font-variant-numeric: tabular-nums;
}

/* ---------- Header shadow on scroll ---------- */
.thj-site-header.is-scrolled { box-shadow: 0 1px 0 var(--thj-rule), 0 4px 16px rgba(31,27,22,0.04); }

/* ---------- Utility ---------- */
.thj-muted { color: var(--thj-muted); }
.alignwide  { max-width: 1000px; margin-left: auto; margin-right: auto; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.aligncenter{ margin-left: auto; margin-right: auto; }
.alignleft  { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }

/* WP block embed sizing */
.wp-block-embed iframe { width: 100%; aspect-ratio: 16/9; height: auto; border-radius: var(--thj-radius); }
