/* Match Mystic — single stylesheet, no build step. */

:root {
	--paper: #ffffff;
	--paper-2: #fdf9f7;
	--paper-3: #f9efeb;
	--ink: #221a16;
	--muted: #6b5d57;

	/* Terracotta carries the brand. Unlike saffron it clears 4.7:1 on white, so
	   the same tone works as fill and as text and the palette stays honest.
	   Saffron reads as the Indian flag on a page full of Jyotish, so it is kept
	   to decorative accents rather than being the dominant field. */
	--brand: #c1502e;
	--brand-ink: #b04527;
	--brand-deep: #8f3a20;
	--brand-soft: #fbeee9;

	--accent: #ff7722;

	/* Second voice, used only to tell the Chaldean column from the other. */
	--indigo: #3b3070;

	--line: #eedfd8;
	--line-soft: #f5eae5;
	--rose: #b4304a;
	--rose-soft: #fdeef1;
	--radius: 14px;
	--serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
	--sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

/* Paint the canvas itself, so scrolling past the body box never flashes. */
html {
	-webkit-text-size-adjust: 100%;
	background-color: var(--paper);
	color-scheme: light;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
	background:
		radial-gradient(1200px 560px at 15% -12%, rgba(193, 80, 46, 0.10), transparent 62%),
		radial-gradient(900px 420px at 92% -6%, rgba(255, 119, 34, 0.07), transparent 64%),
		var(--paper);
}

/* ---------- chrome ---------- */

.site-header {
	max-width: 1080px;
	margin: 0 auto;
	padding: 28px 24px 8px;
}

.wordmark {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--ink);
	letter-spacing: 0.01em;
}

.wordmark-mark {
	font-size: 1.35rem;
	line-height: 1;
	color: var(--accent);
}

.wordmark-text {
	font-family: var(--serif);
	font-size: 1.3rem;
}

.wordmark-text b { font-weight: 600; }

.site-main {
	max-width: 1080px;
	margin: 0 auto;
	padding: 8px 24px 72px;
}

.site-footer {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 24px 56px;
	color: var(--muted);
	font-size: 0.85rem;
}

.site-footer p { margin: 0 0 6px; }
.footer-meta { color: #8a7d6c; }

/* ---------- hero ---------- */

.hero { padding: 40px 0 34px; }

.hero h1 {
	font-family: var(--serif);
	font-size: clamp(2.4rem, 6vw, 3.6rem);
	font-weight: 500;
	line-height: 1.05;
	margin: 0 0 14px;
	letter-spacing: -0.01em;
	color: var(--brand-deep);
}

.lede {
	margin: 0;
	max-width: 54ch;
	color: var(--muted);
	font-size: 1.05rem;
}

/* ---------- blocks ---------- */

.block {
	position: relative;
	margin: 0 0 52px;
	padding: 28px;
	border: 1px solid var(--line);
	border-top: 3px solid var(--brand);
	border-radius: var(--radius);
	background: var(--paper);
	box-shadow: 0 1px 2px rgba(90, 60, 20, 0.05), 0 10px 26px rgba(90, 60, 20, 0.05);
}

.block-head h2 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.6rem;
	margin: 0 0 6px;
}

.block-head p {
	margin: 0 0 22px;
	color: var(--muted);
	max-width: 62ch;
}

/* ---------- forms ---------- */

.calc-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 26px;
}

.calc-form input {
	flex: 1 1 260px;
	min-width: 0;
	padding: 13px 16px;
	font-size: 1.05rem;
	font-family: inherit;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.calc-form input::placeholder { color: #9c8f7f; }

.calc-form input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(193, 80, 46, 0.24);
}

.calc-form button {
	padding: 13px 24px;
	font-size: 0.95rem;
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: var(--brand);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.15s, transform 0.05s;
}

.calc-form button:hover { background: #a94327; }
.calc-form button:active { transform: translateY(1px); }

.calc-form button:focus-visible {
	outline: 2px solid var(--brand-deep);
	outline-offset: 2px;
}

/* ---------- name results ---------- */

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

.system {
	padding: 20px;
	border: 1px solid var(--line-soft);
	border-radius: 12px;
	background: var(--paper-2);
	border-top: 2px solid var(--brand);
}

.system--chaldean {
	border-top-color: var(--indigo);
	background: var(--paper);
}

.system-head h3 {
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.2rem;
	margin: 0 0 4px;
}

.system-head p {
	margin: 0 0 18px;
	font-size: 0.83rem;
	line-height: 1.5;
	color: var(--muted);
}

.word { margin-bottom: 16px; }

.letters {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

.letter {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 30px;
	padding: 4px 3px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--paper);
}

.letter b {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--muted);
	text-transform: uppercase;
}

.letter i {
	font-style: normal;
	font-family: var(--mono);
	font-size: 0.95rem;
	color: var(--ink);
}

.word-total {
	margin: 7px 0 0;
	font-family: var(--mono);
	font-size: 0.85rem;
	color: var(--muted);
}

.total {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--line);
}

.total-label {
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.total-value {
	font-family: var(--serif);
	font-size: 2.6rem;
	line-height: 1;
	color: var(--brand-ink);
}

.system--chaldean .total-value { color: var(--indigo); }

.total-steps {
	font-family: var(--mono);
	font-size: 0.85rem;
	color: var(--muted);
}

.total-note {
	flex-basis: 100%;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--muted);
}

.badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	border: 1px solid rgba(180, 48, 74, 0.28);
	background: var(--rose-soft);
	color: var(--rose);
	font-size: 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	vertical-align: middle;
}

/* ---------- date results ---------- */

.facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 14px;
	margin: 0;
}

.fact {
	padding: 16px 18px;
	border: 1px solid var(--line-soft);
	border-left: 3px solid var(--brand);
	border-radius: 12px;
	background: var(--paper-2);
}

.fact dt {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px;
}

.fact dd {
	margin: 0;
	font-size: 1.05rem;
}

.fact-number {
	display: block;
	font-family: var(--serif);
	font-size: 2.4rem;
	line-height: 1.1;
	color: var(--brand-ink);
}

.fact-note {
	display: block;
	margin-top: 6px;
	font-family: var(--mono);
	font-size: 0.78rem;
	line-height: 1.55;
	color: var(--muted);
}

.fact--number .badge { margin-top: 4px; }

/* ---------- reference tables ---------- */

.reference {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.reference summary {
	cursor: pointer;
	color: var(--brand-ink);
	font-size: 0.9rem;
}

.reference summary:hover { color: var(--brand-deep); }

.tables {
	display: grid;
	gap: 20px;
	margin-top: 18px;
}

.ref-table { overflow-x: auto; }

.ref-table h4 {
	margin: 0 0 8px;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1rem;
}

.ref-table table {
	border-collapse: collapse;
	font-family: var(--mono);
	font-size: 0.85rem;
	min-width: 100%;
}

.ref-table th,
.ref-table td {
	border: 1px solid var(--line);
	padding: 6px 10px;
	text-align: center;
	white-space: nowrap;
}

.ref-table th {
	color: var(--brand-deep);
	background: var(--brand-soft);
}

.ref-note {
	margin: 16px 0 0;
	font-size: 0.85rem;
	line-height: 1.6;
	color: var(--muted);
}

/* ---------- messages ---------- */

.hint,
.alert {
	margin: 0;
	padding: 14px 16px;
	border-radius: 10px;
	font-size: 0.92rem;
}

.hint {
	color: var(--muted);
	background: var(--paper-3);
	border: 1px dashed var(--line);
}

.hint--tight {
	margin-top: 14px;
	border: 0;
	padding: 0;
	background: none;
	font-size: 0.82rem;
}

.alert {
	color: var(--rose);
	background: var(--rose-soft);
	border: 1px solid rgba(180, 48, 74, 0.28);
	margin-bottom: 16px;
}

.alert-soft {
	color: var(--brand-deep);
	background: var(--brand-soft);
	border-color: rgba(193, 80, 46, 0.5);
}

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

/* ---------- narrow screens ---------- */

@media (max-width: 720px) {
	.systems { grid-template-columns: 1fr; }
	.block { padding: 22px 18px; }
	.site-main { padding-left: 18px; padding-right: 18px; }
	.site-header { padding-left: 18px; padding-right: 18px; }
	.site-footer { padding-left: 18px; padding-right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; }
}

/* ---------- header nav ---------- */

.site-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 18px;
	font-size: 0.9rem;
}

.site-nav a,
.linkish {
	color: var(--brand-ink);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.linkish:hover {
	color: var(--brand-deep);
	border-bottom-color: currentColor;
}

.site-nav form { margin: 0; }

.linkish {
	padding: 0;
	font: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

/* ---------- narrow pages (sign-in, profile) ---------- */

.hero--narrow,
.block--narrow {
	max-width: 620px;
}

.hero--narrow { padding-bottom: 24px; }

/* ---------- stacked forms ---------- */

.calc-form--stack,
.stack-form {
	display: block;
}

.calc-form--stack label,
.stack-form label {
	display: block;
	margin-bottom: 6px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.calc-form--stack input {
	display: block;
	width: 100%;
	margin-bottom: 14px;
}

.field { margin-bottom: 22px; }

.field input[type="text"],
.field input[type="date"],
.field input[type="time"],
.field input[type="email"] {
	display: block;
	width: 100%;
	padding: 13px 16px;
	font-size: 1.05rem;
	font-family: inherit;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.field input:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(193, 80, 46, 0.24);
}

.field--check label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400;
}

.field--check input { margin-top: 4px; accent-color: var(--brand); }

.field-note {
	margin: 6px 0 0;
	font-size: 0.82rem;
	line-height: 1.5;
	color: var(--muted);
}

.req {
	margin-left: 6px;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--brand-ink);
}

.stack-form button,
.calc-form--stack button {
	padding: 13px 24px;
	font-size: 0.95rem;
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #ffffff;
	background: var(--brand);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.15s, transform 0.05s;
}

.stack-form button:hover,
.calc-form--stack button:hover { background: #a94327; }

.input--code {
	font-family: var(--mono);
	font-size: 1.6rem !important;
	letter-spacing: 0.4em;
	text-align: center;
}

/* ---------- messages ---------- */

.alert-ok {
	color: #1f5c33;
	background: #eaf6ee;
	border-color: #b8dcc4;
}

.alert p { margin: 0 0 4px; }
.alert p:last-child { margin-bottom: 0; }

/* ---------- destructive ---------- */

.block--danger { border-top-color: var(--rose); }

.button--danger {
	padding: 12px 22px;
	font: inherit;
	font-weight: 600;
	color: #ffffff;
	background: var(--rose);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
}

.button--danger:hover { background: #98283e; }

/* ---------- directory listing ---------- */

.listing-state {
	margin: 0 0 14px;
	font-size: 0.95rem;
	color: var(--muted);
}

.listing-state--in { color: var(--ink); }

.button--quiet {
	padding: 12px 22px;
	font: inherit;
	font-weight: 600;
	color: var(--brand-deep);
	background: var(--brand-soft);
	border: 1px solid rgba(193, 80, 46, 0.45);
	border-radius: 10px;
	cursor: pointer;
	transition: background-color 0.15s;
}

.button--quiet:hover { background: #f6e0d8; }

.field-note--save { margin-top: 12px; max-width: 52ch; }

/* ---------- compare ---------- */

.select {
	display: block;
	width: 100%;
	padding: 13px 16px;
	font-size: 1.05rem;
	font-family: inherit;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
}

.opt {
	margin-left: 6px;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--muted);
}

.scores { margin-bottom: 22px; }

.score {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.score--base {
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--line);
}

.score-label {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--muted);
}

.score-value {
	font-family: var(--serif);
	font-size: 3.2rem;
	line-height: 1;
	color: var(--brand-ink);
}

.score-value i {
	font-style: normal;
	font-size: 1.2rem;
	color: var(--muted);
}

.score-note {
	font-size: 0.82rem;
	color: var(--muted);
}

.score-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.score--direction .score-value {
	font-size: 2rem;
	color: var(--ink);
}

.reading {
	margin: 0 0 20px;
	padding: 16px 18px;
	font-size: 1.02rem;
	line-height: 1.6;
	background: var(--brand-soft);
	border-left: 3px solid var(--brand);
	border-radius: 10px;
}

.confidence {
	margin: 0;
	padding: 12px 16px;
	font-size: 0.85rem;
	line-height: 1.55;
	color: var(--muted);
	background: var(--paper-3);
	border-radius: 10px;
}

.confidence strong { color: var(--ink); text-transform: capitalize; }

.breakdown {
	display: grid;
	gap: 14px;
}

.factor {
	padding: 16px 18px;
	border: 1px solid var(--line-soft);
	border-radius: 12px;
	background: var(--paper-2);
}

.factor header {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 6px;
}

.factor h3 {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.1rem;
}

.factor-pair {
	font-family: var(--mono);
	font-size: 0.85rem;
	color: var(--muted);
}

.factor-score {
	margin-left: auto;
	font-family: var(--mono);
	font-size: 1rem;
	color: var(--brand-ink);
}

.factor-label {
	margin: 0 0 4px;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--brand-deep);
}

.factor-text {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--muted);
}

.weights { margin: 0; }

.weight-row {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px solid var(--line-soft);
}

.weight-row dt {
	min-width: 140px;
	font-size: 0.85rem;
	font-weight: 600;
}

.weight-row dd { margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }

.weight-chip {
	padding: 2px 9px;
	border-radius: 999px;
	background: var(--brand-soft);
	color: var(--brand-deep);
	font-size: 0.74rem;
}

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

.cta-line { margin: 22px 0 0; }

.cta {
	display: inline-block;
	padding: 12px 22px;
	font-weight: 600;
	font-size: 0.95rem;
	color: #ffffff;
	background: var(--brand);
	border-radius: 10px;
	text-decoration: none;
}

.cta:hover { background: #a94327; }

/* ---------- member directory ---------- */

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
}

.filter-field { flex: 1 1 200px; min-width: 0; }

.filter-bar input[type="search"] {
	width: 100%;
	padding: 12px 15px;
	font-size: 1rem;
	font-family: inherit;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
}

.filter-bar input:focus,
.filter-bar select:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(193, 80, 46, 0.24);
}

.filter-bar button {
	padding: 12px 22px;
	font: inherit;
	font-weight: 600;
	color: #ffffff;
	background: var(--brand);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
}

.filter-bar button:hover { background: #a94327; }

.filter-clear {
	color: var(--muted);
	font-size: 0.88rem;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.filter-clear:hover { color: var(--ink); border-bottom-color: currentColor; }

.member-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.member {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px;
	border: 1px solid var(--line-soft);
	border-top: 2px solid var(--brand);
	border-radius: 12px;
	background: var(--paper-2);
}

.member-name {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.2rem;
	overflow-wrap: anywhere;
}

.member-numbers {
	display: flex;
	gap: 20px;
	margin: 0;
	flex-wrap: wrap;
}

.member-numbers dt {
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.member-numbers dd {
	margin: 2px 0 0;
	font-family: var(--serif);
	font-size: 1.7rem;
	line-height: 1;
	color: var(--brand-ink);
}

.member form { margin-top: auto; }
.member .button--quiet { width: 100%; }

.pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 26px;
	font-size: 0.9rem;
}

.pager-link {
	color: var(--brand-ink);
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.pager-link:hover { border-bottom-color: currentColor; }
.pager-link.is-disabled { color: var(--muted); opacity: 0.55; }
.pager-count { color: var(--muted); }


/* ---------- language menu ---------- */

.lang-menu {
	position: relative;
	font-size: 0.85rem;
}

.lang-menu summary {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 6px 10px;
	list-style: none;
	cursor: pointer;
	color: var(--ink);
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--paper);
}

.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary:hover { border-color: var(--brand); }

.lang-menu summary:focus-visible {
	outline: 2px solid var(--brand);
	outline-offset: 2px;
}

.chev {
	width: 10px;
	height: 6px;
	color: var(--muted);
	transition: transform 0.15s;
}

.lang-menu[open] .chev { transform: rotate(180deg); }

.flag {
	display: block;
	width: 20px;
	height: 10px;
	border-radius: 2px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	object-fit: cover;
	flex: none;
}

/* Keeps names aligned when a language has no flag. */
.flag--none {
	border-color: transparent;
	background: none;
}

.lang-list {
	position: absolute;
	top: calc(100% + 6px);
	inset-inline-end: 0;
	z-index: 20;
	min-width: 190px;
	max-height: 60vh;
	overflow-y: auto;
	margin: 0;
	padding: 6px;
	list-style: none;
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(60, 30, 10, 0.12);
}

.lang-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 8px 10px;
	border-radius: 7px;
	color: var(--ink);
	text-decoration: none;
	white-space: nowrap;
}

.lang-item:hover { background: var(--brand-soft); }

.lang-item.is-current {
	font-weight: 600;
	background: var(--paper-3);
}

@media (max-width: 560px) {
	.lang-list { inset-inline-end: auto; inset-inline-start: 0; }
}

/* ---------- avatars ---------- */

.avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	border-radius: 50%;
	background: var(--brand-soft);
	color: var(--brand-deep);
	font-family: var(--serif);
	object-fit: cover;
	overflow: hidden;
}

.avatar--md { width: 52px; height: 52px; font-size: 1.05rem; }
.avatar--lg { width: 92px; height: 92px; font-size: 1.9rem; }
.avatar--initials { letter-spacing: 0.02em; }

/* ---------- photo field ---------- */

.field-legend {
	display: block;
	margin-bottom: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.photo-row {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex-wrap: wrap;
}

.photo-controls { flex: 1 1 240px; min-width: 0; }
.photo-controls input[type="file"] { font: inherit; font-size: 0.9rem; max-width: 100%; }

.checkline {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	font-weight: 400;
	font-size: 0.9rem;
}

.checkline input { accent-color: var(--brand); }

.stack-form textarea {
	display: block;
	width: 100%;
	padding: 13px 16px;
	font: inherit;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--line);
	border-radius: 10px;
	resize: vertical;
}

.stack-form textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(193, 80, 46, 0.24);
}

/* ---------- member card and page ---------- */

.member-link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-decoration: none;
	color: inherit;
}

.member-link .member-name {
	font-family: var(--serif);
	font-size: 1.2rem;
	overflow-wrap: anywhere;
}

.member-link:hover .member-name { color: var(--brand-ink); }

.member-tagline {
	font-size: 0.86rem;
	line-height: 1.5;
	color: var(--muted);
}

.member-head {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.member-title {
	margin: 0;
	font-family: var(--serif);
	font-weight: 500;
	font-size: 1.9rem;
	overflow-wrap: anywhere;
}

.member-head-text .member-tagline { margin-top: 4px; font-size: 1rem; }

.member-bio {
	margin-bottom: 22px;
	font-size: 1rem;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

.member-numbers--lg { margin-bottom: 22px; }
.member-numbers--lg dd { font-size: 2.1rem; }

.breadcrumb {
	margin: 8px 0 18px;
	font-size: 0.88rem;
}

.breadcrumb a {
	color: var(--brand-ink);
	text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }
