/* Finecolour shared components — governed by .claude/design.md. */

.fc-data-provenance {
	--fc-canvas: #fffdf8;
	--fc-ink: #1d2939;
	--fc-muted: #5b6676;
	--fc-accent: #9b3f6d;
	--fc-rule: #e6ded1;
	box-sizing: border-box;
	color: var(--fc-ink);
	font-family: CeraPro-Regular, Arial, sans-serif;
	font-size: 16px;
	margin-block: clamp(40px, 6vw, 80px);
	padding-block: 16px;
	position: relative;
}

/* .fc-data-correction */
.fc-data-correction {
	--fc-correction-ink: #1d2939;
	--fc-correction-muted: #5b6676;
	--fc-correction-rule: #d9d3ca;
	--fc-correction-success: #176b3a;
	--fc-correction-error: #8f1d1d;
	color: var(--fc-correction-ink);
	font-family: CeraPro-Regular, Arial, sans-serif;
	font-size: 16px;
	margin-block: clamp(40px, 7vw, 96px);
	max-width: 900px;
	position: relative;
}

/* .fc-data-correction * */
.fc-data-correction *,
.fc-data-correction *::before,
.fc-data-correction *::after {
	box-sizing: border-box;
}

/* .fc-data-correction h2 */
.fc-data-correction h2 {
	color: var(--fc-correction-ink);
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.15;
	margin: 0 0 12px;
	text-wrap: balance;
}

/* .fc-data-correction p */
.fc-data-correction p {
	line-height: 1.65;
	max-width: 68ch;
	text-wrap: pretty;
}

/* .fc-data-correction__context */
.fc-data-correction__context {
	border-block: 1px solid var(--fc-correction-rule);
	margin-block: 24px;
}

/* .fc-data-correction__context div */
.fc-data-correction__context div {
	display: grid;
	gap: 8px;
	grid-template-columns: minmax(112px, 0.3fr) minmax(0, 1fr);
	padding-block: 12px;
}

/* .fc-data-correction__context div + div */
.fc-data-correction__context div + div {
	border-top: 1px solid var(--fc-correction-rule);
}

/* .fc-data-correction__context dt */
.fc-data-correction__context dt {
	font-weight: 700;
}

/* .fc-data-correction__context dd */
.fc-data-correction__context dd {
	font-variant-numeric: tabular-nums;
	margin: 0;
	overflow-wrap: anywhere;
}

/* .fc-data-correction__form */
.fc-data-correction__form {
	display: grid;
	gap: 12px;
}

/* .fc-data-correction__form label */
.fc-data-correction__form label {
	font-weight: 700;
}

/* .fc-data-correction__form textarea */
.fc-data-correction__form textarea {
	border: 1px solid var(--fc-correction-muted);
	border-radius: 0;
	box-sizing: border-box;
	font: inherit;
	line-height: 1.5;
	min-height: 144px;
	padding: 12px;
	resize: vertical;
	width: 100%;
}

/* .fc-data-correction__form textarea:focus-visible */
.fc-data-correction__form textarea:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

/* .fc-data-correction__form button */
.fc-data-correction__form button {
	align-items: center;
	background: var(--fc-correction-ink);
	border: 1px solid var(--fc-correction-ink);
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-weight: 700;
	justify-content: center;
	justify-self: start;
	min-height: 44px;
	padding: 10px 16px;
	transition: background-color 150ms ease-out, color 150ms ease-out, transform 150ms ease-out;
}

/* .fc-data-correction__form button:hover */
.fc-data-correction__form button:hover {
	background: #fff;
	color: var(--fc-correction-ink);
}

/* .fc-data-correction__form button:active */
.fc-data-correction__form button:active {
	transform: scale(0.96);
}

/* .fc-data-correction__form button:focus-visible */
.fc-data-correction__form button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

/* .fc-data-correction__privacy */
.fc-data-correction__privacy {
	color: var(--fc-correction-muted);
	font-size: 0.9375em;
	margin: 0;
}

/* .fc-data-correction__notice */
.fc-data-correction__notice {
	font-weight: 700;
}

/* .fc-data-correction__notice--success */
.fc-data-correction__notice--success {
	color: var(--fc-correction-success);
}

/* .fc-data-correction__notice--error */
.fc-data-correction__notice--error {
	color: var(--fc-correction-error);
}

/* .fc-data-correction__website */
.fc-data-correction__website {
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	clip-path: inset(50%);
}

@media (max-width: 640px) {
	/* .fc-data-correction__context div */
	.fc-data-correction__context div {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	/* .fc-data-correction__form button */
	.fc-data-correction__form button {
		transition: none;
	}
}

@media print {
	/* .fc-data-correction__form */
	.fc-data-correction__form {
		display: none;
	}
}

.fc-data-provenance::before {
	background: var(--fc-rule);
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.fc-data-provenance *,
.fc-data-provenance *::before,
.fc-data-provenance *::after {
	box-sizing: border-box;
}

.fc-data-provenance__toggle {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	list-style: none;
	min-height: 56px;
}

.fc-data-provenance__toggle::-webkit-details-marker {
	display: none;
}

.fc-data-provenance__toggle::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	flex: 0 0 10px;
	height: 10px;
	margin-inline: 8px;
	transform: rotate(45deg);
}

.fc-data-provenance__disclosure[open] > .fc-data-provenance__toggle::after {
	transform: rotate(225deg);
}

.fc-data-provenance__toggle:focus-visible {
	outline: 2px solid var(--fc-accent);
	outline-offset: 4px;
}

.fc-data-provenance__body {
	padding-top: 24px;
}

.fc-data-provenance__heading,
.fc-data-provenance__definition h3,
.fc-data-provenance__inventory h3 {
	color: var(--fc-ink);
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0;
}

.fc-data-provenance__heading {
	font-size: clamp(28px, 3vw, 36px);
	line-height: 1.15;
	margin: 0;
	text-wrap: balance;
}

.fc-data-provenance__summary {
	color: var(--fc-muted);
	font-size: 1em;
	line-height: 1.65;
	margin: 0;
	max-width: 68ch;
	text-wrap: pretty;
}

.fc-data-provenance__body > .fc-data-provenance__summary {
	margin-bottom: 24px;
}

.fc-data-provenance__facts {
	display: grid;
	gap: 0;
	margin: 0;
	max-width: 900px;
}

.fc-data-provenance__fact {
	align-items: center;
	border-top: 1px solid var(--fc-rule);
	display: grid;
	gap: 8px;
	padding-block: 6px;
}

.fc-data-provenance__fact dt {
	color: var(--fc-muted);
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-size: 0.875em;
	font-weight: 700;
	line-height: 1.45;
	margin: 0;
}

.fc-data-provenance__fact dd {
	align-items: center;
	color: var(--fc-ink);
	display: flex;
	font-size: 1em;
	line-height: 1.55;
	margin: 0;
	min-height: 44px;
	min-width: 0;
	overflow-wrap: anywhere;
}

.fc-data-provenance a {
	color: var(--fc-accent);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color 150ms ease-out, text-decoration-color 150ms ease-out;
}

.fc-data-provenance a:hover {
	color: var(--fc-ink);
	text-decoration-color: var(--fc-ink);
}

.fc-data-provenance a:focus-visible {
	border-radius: 2px;
	outline: 2px solid var(--fc-accent);
	outline-offset: 3px;
}

.fc-data-provenance__source-link {
	align-items: center;
	display: inline-flex;
	min-height: 44px;
}

.fc-data-provenance__definitions {
	display: grid;
	gap: clamp(24px, 3vw, 40px);
	margin-top: clamp(32px, 4vw, 48px);
}

.fc-data-provenance__definition h3,
.fc-data-provenance__inventory h3 {
	font-size: 1em;
	line-height: 1.4;
	margin: 0 0 8px;
}

.fc-data-provenance__definition p {
	color: var(--fc-muted);
	font-size: 1em;
	line-height: 1.65;
	margin: 0;
	max-width: 68ch;
	text-wrap: pretty;
}

.fc-data-provenance__inventory {
	margin-top: clamp(32px, 4vw, 48px);
}

.fc-data-provenance__inventory ul {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fc-data-provenance__inventory li {
	align-items: baseline;
	border-top: 1px solid var(--fc-rule);
	display: flex;
	font-size: 1em;
	justify-content: space-between;
	line-height: 1.5;
	min-width: 0;
	padding-block: 12px;
}

.fc-data-provenance__inventory strong {
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-variant-numeric: tabular-nums;
	font-weight: 700;
}

.fc-data-provenance__actions {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin-top: clamp(32px, 4vw, 48px);
}

.fc-data-provenance__action {
	align-items: center;
	display: inline-flex;
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-size: 1em;
	font-weight: 700;
	line-height: 1.4;
	min-height: 44px;
}

@media (min-width: 640px) {
	.fc-data-provenance__fact {
		gap: clamp(24px, 4vw, 64px);
		grid-template-columns: minmax(128px, 0.35fr) minmax(0, 1fr);
	}

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

	.fc-data-provenance__inventory ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: clamp(32px, 5vw, 80px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fc-data-provenance a {
		transition-duration: 0.01ms;
	}
}

@media print {
	.fc-data-provenance__disclosure::details-content {
		content-visibility: visible;
		display: block;
	}

	.fc-data-provenance__toggle::after {
		display: none;
	}

	.fc-data-provenance {
		break-inside: avoid;
		margin-block: 32px;
		padding-block: 24px;
	}

	.fc-data-provenance__action--correction {
		display: none;
	}
}

/* Shared catalog relationships and set contents. */
/* .fc-catalog */
.fc-catalog {
	--fc-ink: #1d2939;
	--fc-muted: #5b6676;
	--fc-accent: #9b3f6d;
	--fc-rule: #e6ded1;
	--fc-catalog-gap: 16px;
	--fc-catalog-target: 44px;
	--fc-catalog-measure: 900px;
	box-sizing: border-box;
	color: var(--fc-ink);
	font-family: CeraPro-Regular, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	margin-block: clamp(32px, 5vw, 64px);
}

/* .fc-catalog__heading */
.fc-catalog__heading {
	color: var(--fc-ink);
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-size: clamp(24px, 2.5vw, 32px);
	line-height: 1.2;
	margin: 0 0 var(--fc-catalog-gap);
	max-width: 32ch;
	text-wrap: balance;
}

/* .fc-catalog__intro, .fc-catalog__disclosure */
.fc-catalog__intro,
.fc-catalog__disclosure {
	font-size: inherit;
	line-height: inherit;
	max-width: 68ch;
	text-wrap: pretty;
}

/* .fc-catalog__list */
.fc-catalog__list {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: var(--fc-catalog-measure);
}

/* .fc-catalog__item */
.fc-catalog__item {
	border-top: 1px solid var(--fc-rule);
	padding-block: calc(var(--fc-catalog-gap) * 1.5);
	overflow-wrap: anywhere;
}

/* .fc-catalog__title */
.fc-catalog__title {
	color: var(--fc-ink);
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-size: 22px;
	line-height: 1.3;
	margin: 0 0 calc(var(--fc-catalog-gap) / 2);
	max-width: 46ch;
	text-wrap: balance;
}

/* .fc-catalog__meta */
.fc-catalog__meta {
	max-width: 68ch;
	color: var(--fc-muted);
	font-size: inherit;
	line-height: inherit;
	margin: 0 0 calc(var(--fc-catalog-gap) / 2);
	font-variant-numeric: tabular-nums;
	text-wrap: pretty;
}

/* .fc-catalog__link */
.fc-catalog__link {
	align-items: center;
	box-sizing: border-box;
	color: var(--fc-accent);
	display: inline-flex;
	font-size: inherit;
	line-height: 1.5;
	min-height: var(--fc-catalog-target);
	max-width: 100%;
	text-decoration: underline;
	text-underline-offset: 3px;
	overflow-wrap: anywhere;
}

/* .fc-catalog__contents summary */
.fc-catalog__contents summary {
	align-content: center;
	box-sizing: border-box;
	cursor: pointer;
	min-height: var(--fc-catalog-target);
	padding-block: calc(var(--fc-catalog-gap) / 2);
}

/* .fc-catalog__link:focus-visible, .fc-catalog__contents summary:focus-visible */
.fc-catalog__link:focus-visible,
.fc-catalog__contents summary:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

/* .fc-catalog__members */
.fc-catalog__members {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: calc(var(--fc-catalog-gap) / 2) var(--fc-catalog-gap);
	margin: var(--fc-catalog-gap) 0;
	padding: 0;
}

@media (max-width: 640px) {
	/* .fc-catalog__members */
	.fc-catalog__members { grid-template-columns: minmax(0, 1fr); }
}

@media (min-width: 1600px) {
	/* .fc-catalog */
	.fc-catalog { --fc-catalog-gap: 20px; }
}

@media (min-width: 1800px) {
	/* .fc-catalog__heading */
	.fc-catalog__heading { font-size: 36px; }
}

@media print {
	/* .fc-catalog__link--buy */
	.fc-catalog__link--buy { display: none; }
	/* .fc-catalog__item */
	.fc-catalog__item { break-inside: avoid; }
}

/* Catalog cards: actionable marker records, requested by Max.
 * Geometry/spacing: design.md 4px scale + design-standards research/08.
 * Whole-card target and visible action: research/19 interaction affordances. */
/* .fc-catalog__cards */
.fc-catalog__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 16px 0 0;
	padding: 0;
	max-width: var(--fc-catalog-measure);
}
/* .fc-catalog__card-item */
.fc-catalog__card-item {
	display: flex;
	flex-direction: column;
	flex: 1 1 156px;
	min-width: 0;
	max-width: 180px;
	break-inside: avoid;
}
/* .fc-catalog__card */
.fc-catalog__card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	flex: 1;
	background: var(--fc-canvas, #fffdf8);
	border: 1px solid var(--fc-rule);
	border-radius: 4px;
	color: var(--fc-ink);
	text-decoration: none;
	transition: border-color 150ms ease-out;
}
/* .fc-catalog__card:hover, .fc-catalog__card:focus-visible */
.fc-catalog__card:hover,
.fc-catalog__card:focus-visible {
	border-color: var(--fc-accent);
	color: var(--fc-ink);
	text-decoration: none;
}
.fc-catalog__card:focus-visible {
	outline: 2px solid var(--fc-accent);
	outline-offset: 4px;
}
.fc-catalog__card:active { border-color: var(--fc-ink); }
/* .fc-catalog__visual */
.fc-catalog__visual {
	display: grid;
	place-items: center;
	min-height: 64px;
	padding: 12px 16px;
	box-sizing: border-box;
}
/* .fc-catalog__visual .fc-marker */
.fc-catalog__visual .fc-marker {
	display: block;
	width: 100%;
	max-width: 144px;
	height: auto;
	filter: none;
}
/* .fc-catalog__card-body */
.fc-catalog__card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 0 12px 12px;
	overflow-wrap: anywhere;
}
/* .fc-catalog__range */
.fc-catalog__range {
	font-family: CeraPro-Bold, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 4px;
	color: var(--fc-accent);
	text-decoration: none;
}
/* .fc-catalog__name, .fc-catalog__code */
.fc-catalog__name,
.fc-catalog__code { font-size: 16px; line-height: 1.5; }
.fc-catalog__code { color: var(--fc-muted); font-variant-numeric: tabular-nums; }
/* .fc-catalog__card-item > .fc-catalog__meta */
.fc-catalog__card-item > .fc-catalog__meta { margin-top: 12px; }
@media (prefers-reduced-motion: reduce) {
	.fc-catalog__card { transition: none; }
}

/* Marker/color directories share existing product typography and spacing. */
/* .fc-directory */
.fc-directory {
	--fc-directory-ink: #1d2939;
	--fc-directory-muted: #5b6676;
	--fc-directory-accent: #9b3f6d;
	--fc-directory-rule: #e6ded1;
	--fc-directory-space: 16px;
	color: var(--fc-directory-ink);
	font-family: CeraPro-Regular, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	padding-block: clamp(32px, 5vw, 64px);
}
/* .fc-directory * */
.fc-directory *, .fc-directory *::before, .fc-directory *::after { box-sizing: border-box; }
/* .fc-directory--inline */
.fc-directory--inline { padding-block: 24px; }
/* .fc-directory__title */
.fc-directory__title { font-family: CeraPro-Bold, Arial, sans-serif; font-size: clamp(32px, 3.2vw, 40px); line-height: 1.15; margin: 0 0 var(--fc-directory-space); text-wrap: balance; }
/* .fc-directory__heading */
.fc-directory__heading { font-family: CeraPro-Bold, Arial, sans-serif; font-size: 24px; line-height: 1.2; margin: 0 0 var(--fc-directory-space); }
/* .fc-directory__intro */
.fc-directory__intro { max-width: 68ch; margin-block: 16px 24px; }
/* .fc-directory a */
.fc-directory a { color: var(--fc-directory-accent); text-decoration: none; }
/* .fc-directory a:focus-visible */
.fc-directory a:focus-visible, .fc-directory input:focus-visible, .fc-directory select:focus-visible, .fc-directory button:focus-visible,
.fc-directory-nav a:focus-visible, .fc-range-archive__link:focus-visible { outline: 2px solid #9b3f6d; outline-offset: 4px; }
/* .fc-directory-nav */
.fc-directory-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; margin-bottom: 24px; font: 16px/1.5 CeraPro-Regular, Arial, sans-serif; }
/* .fc-directory-nav a */
.fc-directory-nav a { display: inline-flex; align-items: center; min-height: 44px; color: #9b3f6d; text-decoration: none; text-underline-offset: 4px; }
/* .fc-directory-nav a[aria-current] */
.fc-directory-nav a[aria-current="page"] { color: #1d2939; font-family: CeraPro-Bold, Arial, sans-serif; text-decoration: underline; }
/* .fc-directory__types */
.fc-directory__types { display: flex; flex-wrap: wrap; gap: 12px; margin-block: 24px 32px; }
/* .fc-directory__type */
.fc-directory__type { display: flex; flex-direction: column; justify-content: center; gap: 4px; flex: 0 1 180px; padding: 12px 16px; border: 1px solid var(--fc-directory-rule); border-radius: 4px; }
/* .fc-directory__type span */
.fc-directory__type span { color: var(--fc-directory-muted); }
/* .fc-directory__filters */
.fc-directory__filters { display: flex; flex-wrap: wrap; align-items: end; gap: var(--fc-directory-space); margin-block: 24px; }
/* .fc-directory__field */
.fc-directory__field { display: flex; flex-direction: column; gap: 8px; flex: 1 1 240px; min-width: 0; }
/* .fc-directory__field label */
.fc-directory__field label { font-weight: 400; margin: 0; }
/* .fc-directory__field input */
.fc-directory__field input, .fc-directory__field select { width: 100%; min-height: 48px; border: 1px solid var(--fc-directory-muted); border-radius: 4px; padding: 8px 12px; background: #fff; color: var(--fc-directory-ink); font: inherit; }
/* .fc-directory__submit */
.fc-directory__submit { min-height: 48px; border: 1px solid var(--fc-directory-accent); border-radius: 4px; padding: 8px 20px; background: var(--fc-directory-accent); color: #fff; font: inherit; cursor: pointer; }
/* .fc-directory__filters > a */
.fc-directory__filters > a { display: inline-flex; align-items: center; min-height: 48px; }
/* .fc-directory__results */
.fc-directory__results { margin-block: 24px; font-variant-numeric: tabular-nums; }
/* .fc-directory__colors */
.fc-directory__colors { display: flex; flex-wrap: wrap; gap: 16px; list-style: none; padding: 0; margin-block: 32px; }
/* .fc-directory__color */
.fc-directory__color { display: flex; flex-direction: column; gap: 4px; width: 180px; padding: 12px; border: 1px solid var(--fc-directory-rule); border-radius: 4px; overflow-wrap: anywhere; }
/* .fc-directory__swatch */
.fc-directory__swatch { display: block; width: 100%; height: 48px; border: 1px solid var(--fc-directory-rule); margin-bottom: 8px; }
/* .fc-directory__swatch--large */
.fc-directory__swatch--large { width: 160px; height: 160px; flex: 0 0 160px; }
/* .fc-directory__color-hero */
.fc-directory__color-hero { display: flex; flex-wrap: wrap; align-items: center; gap: 32px; margin-block: 32px; }
/* .fc-directory__color-hero > div */
.fc-directory__color-hero > div { flex: 1 1 240px; min-width: 0; }
/* .fc-directory__source */
.fc-directory__source { margin-top: 48px; border-top: 1px solid var(--fc-directory-rule); padding-top: 16px; }
/* .fc-directory__source summary */
.fc-directory__source summary { cursor: pointer; min-height: 44px; font-family: CeraPro-Bold, Arial, sans-serif; }
@media (max-width: 640px) {
	/* .fc-directory__type */
	.fc-directory__type { flex-basis: calc(50% - 6px); }
	/* .fc-directory__color */
	.fc-directory__color { width: 156px; }
}
@media (min-width: 1600px) {
	/* .fc-directory__filters */
	.fc-directory__filters { gap: 24px; }
}
@media (min-width: 1800px) {
	/* .fc-directory__types */
	.fc-directory__types { gap: 16px; }
}
@media print {
	/* .fc-directory__source::details-content */
	.fc-directory__source::details-content { content-visibility: visible; display: block; }
	/* .fc-directory__filters */
	.fc-directory__filters { display: none; }
	/* .fc-directory__source > :not(summary) */
	.fc-directory__source > :not(summary) { display: block !important; }
}
/* .fc-directory .fc-range-archive__header */
.fc-directory .fc-range-archive__header { text-align: left; }
/* .fc-range-archive__hex */
.fc-range-archive__hex { font-size: 16px; color: #5b6676; }
/* .fc-directory .fc-range-archive__link */
.fc-directory .fc-range-archive__link { box-shadow: none; transition: border-color 150ms ease; }
/* .fc-directory .fc-range-archive__link:hover */
.fc-directory .fc-range-archive__link:hover { transform: none; box-shadow: none; }
/* .fc-directory__source summary:focus-visible */
.fc-directory__source summary:focus-visible { outline: 2px solid var(--fc-directory-accent); outline-offset: 4px; }
/* .fc-directory__source p */
.fc-directory__source p { max-width: 68ch; }

/* .fc-directory .fc-breadcrumbs a */
.fc-directory .fc-breadcrumbs a { display: inline-flex; align-items: center; min-height: 40px; }
/* .fc-directory__pagination a */
.fc-directory__pagination a, .fc-directory .fc-range-archive__pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; min-height: 40px; padding-inline: 8px; }
@media print {
	/* .fc-directory-nav */
	.fc-directory-nav, .fc-directory__types, .fc-directory .fc-breadcrumbs, .fc-directory__pagination, .fc-directory .fc-range-archive__pagination { display: none !important; }
}

/* Marker overview and compact Color reference.
 * design-standards research/06: group identity + action; research/08: 8px rhythm;
 * research/12: bounded prose and tighter display leading. Values follow design.md.
 */
/* .fc-marker-detail */
.fc-marker-detail {
	--fc-detail-gap: clamp(24px, 4vw, 56px);
	--fc-detail-space: 16px;
	--fc-detail-stage: 200px;
	--fc-detail-surface: #fffdf8;
	--fc-detail-target: 44px;
	--fc-detail-small: 16px;
	--fc-detail-subheading: 20px;
	--fc-detail-corner: 4px;
	--fc-detail-swatch: 48px;
	--fc-detail-chip: 20px;
	--fc-detail-link-width: 420px;
}
/* .fc-marker-detail .fc-breadcrumbs */
.fc-marker-detail .fc-breadcrumbs { margin-block: 0 calc(var(--fc-detail-space) * 2); }
/* .fc-marker-detail .fc-breadcrumbs a */
.fc-marker-detail .fc-breadcrumbs a { min-width: var(--fc-detail-target); min-height: var(--fc-detail-target); }
/* .fc-marker-detail__hero */
.fc-marker-detail__hero { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); grid-template-areas: "heading preview" "info preview"; grid-template-rows: auto 1fr; column-gap: var(--fc-detail-gap); row-gap: var(--fc-detail-space); align-items: start; }
/* .fc-marker-detail__heading */
.fc-marker-detail__heading { grid-area: heading; min-width: 0; padding-top: 0; }
/* .fc-marker-detail__heading .fc-directory__title */
.fc-marker-detail__heading .fc-directory__title { margin: 0; }
/* .fc-marker-detail__preview */
.fc-marker-detail__preview { grid-area: preview; min-width: 0; margin: 0; align-self: center; }
/* .fc-marker-detail__canvas */
.fc-marker-detail__canvas { display: flex; align-items: center; justify-content: center; min-height: var(--fc-detail-stage); padding: calc(var(--fc-detail-space) * 2); background: transparent; border: 0; border-radius: 0; }
/* .fc-marker-detail__canvas .fc-marker */
.fc-marker-detail__canvas .fc-marker { width: 100%; max-width: 100%; height: auto; filter: none; }
/* .fc-marker-detail__caption */
.fc-marker-detail__caption { display: flex; flex-wrap: wrap; justify-content: center; gap: calc(var(--fc-detail-space) / 2) var(--fc-detail-space); padding-top: calc(var(--fc-detail-space) / 2); font-size: var(--fc-detail-small); color: var(--fc-directory-muted); }
/* .fc-marker-detail__hex */
.fc-marker-detail__hex { display: inline-flex; align-items: center; gap: calc(var(--fc-detail-space) / 2); font-variant-numeric: tabular-nums; }
/* .fc-marker-detail__chip */
.fc-marker-detail__chip { width: var(--fc-detail-chip); height: var(--fc-detail-chip); border: 1px solid var(--fc-directory-rule); }
/* .fc-marker-detail__info */
.fc-marker-detail__info { grid-area: info; min-width: 0; }
/* .fc-marker-detail__description */
.fc-marker-detail__description { max-width: 60ch; margin-bottom: var(--fc-detail-space); }
/* .fc-marker-detail__browse */
.fc-marker-detail__browse { display: inline-flex; align-items: center; gap: calc(var(--fc-detail-space) / 2); min-height: var(--fc-detail-target); margin-top: 0; }
/* .fc-color-reference */
.fc-color-reference { margin-block: var(--fc-detail-space); }
/* .fc-color-reference__heading */
.fc-color-reference__heading { font: 700 var(--fc-detail-subheading)/1.3 CeraPro-Bold, Arial, sans-serif; color: var(--fc-directory-ink); margin: 0 0 calc(var(--fc-detail-space) / 2); }
/* .fc-color-reference__link */
.fc-color-reference__link { display: flex; align-items: center; gap: calc(var(--fc-detail-space) * .75); width: 100%; max-width: var(--fc-detail-link-width); min-height: var(--fc-detail-target); padding: calc(var(--fc-detail-space) * .75); border: 1px solid var(--fc-directory-rule); border-radius: var(--fc-detail-corner); }
/* .fc-color-reference__swatch */
.fc-color-reference__swatch { width: var(--fc-detail-swatch); height: var(--fc-detail-swatch); flex: 0 0 var(--fc-detail-swatch); border: 1px solid var(--fc-directory-rule); }
/* .fc-color-reference__label */
.fc-color-reference__label { display: flex; flex-direction: column; min-width: 0; overflow-wrap: anywhere; }
/* .fc-color-reference__label > span */
.fc-color-reference__label > span { color: var(--fc-directory-muted); font-variant-numeric: tabular-nums; }
/* .fc-color-reference__action */
.fc-color-reference__action { margin-left: auto; flex-shrink: 0; white-space: nowrap; }
/* .fc-marker-detail__sets */
.fc-marker-detail__sets { margin-top: var(--fc-detail-gap); padding-top: calc(var(--fc-detail-space) * 2); border-top: 1px solid var(--fc-directory-rule); }
/* .fc-marker-detail__sets .fc-catalog */
.fc-marker-detail__sets .fc-catalog { margin-top: 0; }
/* .fc-marker-detail__availability */
.fc-marker-detail__availability { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--fc-detail-gap); }
/* .fc-marker-detail__availability p */
.fc-marker-detail__availability p { max-width: 60ch; margin: 0; }
/* .fc-marker-detail .fc-data-provenance */
.fc-marker-detail .fc-data-provenance { margin-top: calc(var(--fc-detail-space) * 2); padding-block: var(--fc-detail-space); }
/* .fc-marker-detail .fc-data-provenance__heading */
.fc-marker-detail .fc-data-provenance__heading { font-size: var(--fc-detail-subheading); line-height: 1.3; }
@media (max-width: 1024px) {
	/* .fc-marker-detail__hero */
	.fc-marker-detail__hero { grid-template-columns: minmax(0, 1fr); grid-template-areas: "heading" "preview" "info"; }
	/* .fc-marker-detail__heading */
	.fc-marker-detail__heading { padding-top: 0; }
	/* .fc-marker-detail__canvas */
	.fc-marker-detail__canvas { padding-inline: 10%; }
	/* .fc-marker-detail__availability */
	.fc-marker-detail__availability { grid-template-columns: minmax(0, 1fr); gap: var(--fc-detail-space); }
}
@media (max-width: 640px) {
	/* .fc-marker-detail */
	.fc-marker-detail { --fc-detail-stage: 200px; }
}
@media (min-width: 1600px) {
	/* .fc-marker-detail */
	.fc-marker-detail { --fc-detail-stage: 224px; --fc-detail-link-width: 448px; }
}
@media (min-width: 1800px) {
	/* .fc-marker-detail */
	.fc-marker-detail { --fc-detail-stage: 240px; --fc-detail-gap: 64px; }
}
@media print {
	/* .fc-marker-detail__browse */
	.fc-marker-detail__browse, .fc-color-reference__action { display: none !important; }
	/* .fc-marker-detail__hero */
	.fc-marker-detail__hero { break-inside: avoid; }
	/* .fc-marker-detail__canvas */
	.fc-marker-detail__canvas { min-height: 160px; }
	/* .fc-marker-detail__canvas [fill="currentColor"] */
	.fc-marker-detail__canvas [fill="currentColor"] { fill: var(--fc-reference-hex) !important; }
	/* .fc-marker-detail__chip */
	.fc-marker-detail__chip, .fc-color-reference__swatch { background-color: var(--fc-reference-hex) !important; }
	/* .fc-marker-detail__preview */
	.fc-marker-detail__preview, .fc-color-reference__swatch { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* Catalog cards communicate one destination through their whole surface. */
/* .fc-directory a:hover */
.fc-directory a:hover, .fc-directory-nav a:hover { text-decoration: none; }
/* .fc-directory-nav a[aria-current="page"]:hover */
.fc-directory-nav a[aria-current="page"]:hover { text-decoration: underline; }
/* .fc-directory__intro a */
.fc-directory__intro a, .fc-marker-detail__description a, .fc-directory__source a,
.fc-directory .fc-data-provenance a, .fc-directory .fc-catalog__meta a { text-decoration: underline; text-underline-offset: 3px; }
/* .fc-directory__color:hover */
.fc-directory__color:hover, .fc-directory__type:hover, .fc-color-reference__link:hover { border-color: var(--fc-directory-accent); }

/* Shared set catalog: compact edition cards, grouped by evidenced membership. */
/* .fc-directory */
.fc-directory { --fc-set-card-width: 200px; --fc-set-gap: 16px; --fc-set-space: 24px; --fc-set-count: 32px; --fc-set-radius: 4px; }
/* .fc-set-grid */
.fc-set-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--fc-set-card-width)), 1fr)); gap: var(--fc-set-gap); margin-block: var(--fc-set-space); }
/* .fc-set-card */
.fc-set-card { display: flex; flex-direction: column; gap: calc(var(--fc-set-gap) / 2); padding: var(--fc-set-gap); border: 1px solid var(--fc-directory-rule); border-radius: var(--fc-set-radius); min-width: 0; overflow-wrap: anywhere; }
/* .fc-set-card:hover */
.fc-set-card:hover { border-color: var(--fc-directory-accent); }
/* .fc-set-card__model */
.fc-set-card__model, .fc-set-card__packaging { color: var(--fc-directory-muted); }
/* .fc-set-card__size */
.fc-set-card__size { color: var(--fc-directory-ink); }
/* .fc-set-card__size strong */
.fc-set-card__size strong { font-size: var(--fc-set-count); line-height: 1.15; font-variant-numeric: tabular-nums; }
/* .fc-set-card__title */
.fc-set-card__title { font: 700 18px/1.3 CeraPro-Bold, Arial, sans-serif; color: var(--fc-directory-ink); margin: 0; }
/* .fc-set-card__status */
.fc-set-card__status { color: var(--fc-directory-muted); font-size: 14px; line-height: 1.4; }
/* .fc-set-card__status--included */
.fc-set-card__status--included { color: var(--fc-directory-ink); font-weight: 700; }
/* .fc-set-card__action */
.fc-set-card__action { padding-top: calc(var(--fc-set-gap) / 2); margin-top: auto; }
/* .fc-set-section */
.fc-set-section { margin-top: calc(var(--fc-set-space) * 2); padding-top: var(--fc-set-space); border-top: 1px solid var(--fc-directory-rule); }
/* .fc-set-section__heading */
.fc-set-section__heading { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: var(--fc-set-gap); }
/* .fc-set-section__heading a */
.fc-set-section__heading a { display: inline-flex; align-items: center; min-height: 44px; }
/* .fc-set-section p */
.fc-set-section p, .fc-set-section__group p { max-width: 68ch; }
/* .fc-set-section__group */
.fc-set-section__group { margin-top: var(--fc-set-space); padding-top: var(--fc-set-gap); border-top: 1px solid var(--fc-directory-rule); }
/* .fc-set-section__group summary */
.fc-set-section__group summary { cursor: pointer; min-height: 44px; font-weight: 700; }
/* .fc-set-section__group summary:focus-visible */
.fc-set-section__group summary:focus-visible { outline: 2px solid var(--fc-directory-accent); outline-offset: 4px; }
/* .fc-set-facts */
.fc-set-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--fc-set-space); padding-block: var(--fc-set-space); }
/* .fc-set-facts dt */
.fc-set-facts dt { font-weight: 400; color: var(--fc-directory-muted); }
/* .fc-set-facts dd */
.fc-set-facts dd { margin: calc(var(--fc-set-gap) / 2) 0 0; overflow-wrap: anywhere; }
@media (min-width: 1600px) { .fc-directory { --fc-set-card-width: 224px; --fc-set-gap: 20px; } }
@media (min-width: 1800px) { .fc-directory { --fc-set-space: 32px; } }
@media print {
	.fc-set-buy, .fc-set-card__action { display: none !important; }
	.fc-set-card { break-inside: avoid; }
	.fc-set-section__group::details-content { content-visibility: visible; display: block; }
}

/* Compact set references remain two across on ordinary phones. */
@media (max-width: 640px) { .fc-directory { --fc-set-card-width: 148px; --fc-set-gap: 12px; } }

/* .fc-directory__action */
.fc-directory__action { display: inline-flex; align-items: center; min-height: 44px; }

/* Marker reference layout: compact identity, illustration and useful next entries. */
/* #content.fc-marker-detail */
#content.fc-marker-detail { margin-top: 0; padding-top: 24px; }
/* .fc-marker-detail__context */
.fc-marker-detail__context { display: block; font: 400 var(--fc-detail-subheading)/1.4 CeraPro-Regular, Arial, sans-serif; margin-bottom: calc(var(--fc-detail-space) / 2); color: var(--fc-directory-muted); }
/* .fc-marker-detail__name */
.fc-marker-detail__name { display: block; text-wrap: balance; }
/* .fc-marker-detail .fc-color-reference */
.fc-marker-detail .fc-color-reference { margin-block: 0; }
/* .fc-marker-detail .fc-color-reference__heading */
.fc-marker-detail .fc-color-reference__heading { font: 400 var(--fc-detail-small)/1.4 CeraPro-Regular, Arial, sans-serif; color: var(--fc-directory-muted); }
/* .fc-marker-detail .fc-color-reference__link */
.fc-marker-detail .fc-color-reference__link { max-width: var(--fc-detail-link-width); padding: 0 0 var(--fc-detail-space); border: 0; border-bottom: 1px solid var(--fc-directory-rule); border-radius: 0; }
/* .fc-marker-detail__actions */
.fc-marker-detail__actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--fc-detail-space); margin-top: var(--fc-detail-space); }
/* .fc-marker-detail__button */
.fc-marker-detail a.fc-marker-detail__button { display: inline-flex; align-items: center; justify-content: center; min-height: var(--fc-detail-target); padding: calc(var(--fc-detail-space) / 2) var(--fc-detail-space); border-radius: var(--fc-detail-corner); background: var(--fc-directory-accent); color: #fff; gap: var(--fc-detail-space); }
/* .fc-marker-detail__set-note */
.fc-marker-detail__set-note { margin: calc(var(--fc-detail-space) * 2) 0 0; color: var(--fc-directory-muted); font-size: var(--fc-detail-small); }
/* .fc-marker-detail .fc-catalog */
.fc-marker-detail .fc-catalog { max-width: none; margin-top: calc(var(--fc-detail-space) * 2); }
/* .fc-marker-detail .fc-catalog__cards */
.fc-marker-detail .fc-catalog__cards { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--fc-detail-space); max-width: none; }
/* .fc-marker-detail .fc-catalog__card-item */
.fc-marker-detail .fc-catalog__card-item { width: auto; min-width: 0; }
/* .fc-marker-detail .fc-catalog__card */
.fc-marker-detail .fc-catalog__card { width: 100%; min-width: 0; }
@media (max-width: 1024px) {
 .fc-marker-detail .fc-catalog__cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
 .fc-marker-detail__hero { grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); grid-template-areas: "heading heading" "info preview"; }
 .fc-marker-detail__canvas { padding: var(--fc-detail-space); }
}
@media (max-width: 640px) {
 #content.fc-marker-detail { padding-top: 16px; }
 .fc-marker-detail__hero { grid-template-columns: minmax(0, 1fr); grid-template-areas: "heading" "preview" "info"; }
 .fc-marker-detail { --fc-detail-stage: 112px; }
 .fc-marker-detail .fc-catalog__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 .fc-marker-detail__canvas { padding: var(--fc-detail-space); }
}
@media print { .fc-marker-detail__actions { display: none !important; } }
@media print {
 /* Onward marker cards are browsing controls; print the current reference and its data. */
 .fc-marker-detail > .container > .fc-catalog { display: none !important; }
}

/* Compact marker browsing uses the shared directory and marker grid. */
/* .fc-directory--markers */
.fc-directory--markers {
	--fc-browse-gap: 16px;
	--fc-browse-space: 24px;
	--fc-browse-card-width: 168px;
	--fc-browse-stage: 64px;
	--fc-browse-corner: 4px;
	--fc-browse-small: 14px;
	--fc-browse-name: 17px;
	--fc-browse-surface: #fffdf8;
}
/* #content.fc-directory--markers */
#content.fc-directory--markers { margin-top: 0; padding-block: var(--fc-browse-space) calc(var(--fc-browse-space) * 2); }
/* .fc-directory--markers .fc-directory-nav */
.fc-directory--markers .fc-directory-nav { margin-bottom: var(--fc-browse-space); }
/* .fc-directory--markers .fc-range-archive__header */
.fc-directory--markers .fc-range-archive__header { margin-bottom: var(--fc-browse-space); }
/* .fc-directory--markers .fc-directory__intro */
.fc-directory--markers .fc-directory__intro { margin: var(--fc-browse-gap) 0 0; }
/* .fc-directory--markers .fc-directory__types */
.fc-directory--markers .fc-directory__types { gap: 0 var(--fc-browse-space); margin: 0; border-bottom: 1px solid var(--fc-directory-rule); }
/* .fc-directory--markers .fc-directory__type */
.fc-directory--markers .fc-directory__type { flex: 0 0 auto; flex-direction: row; align-items: center; min-height: 44px; gap: calc(var(--fc-browse-gap) / 2); padding: calc(var(--fc-browse-gap) / 2) 0; border: 0; border-radius: 0; color: var(--fc-directory-muted); }
/* .fc-directory--markers .fc-directory__type[aria-current] */
.fc-directory--markers .fc-directory__type[aria-current="page"] { color: var(--fc-directory-ink); box-shadow: inset 0 -2px var(--fc-directory-ink); font-weight: 700; }
/* .fc-directory--markers .fc-directory__type span */
.fc-directory--markers .fc-directory__type span { font-size: var(--fc-browse-small); font-variant-numeric: tabular-nums; }
/* .fc-directory--markers .fc-directory__filters */
.fc-directory--markers .fc-directory__filters { margin-block: var(--fc-browse-space) var(--fc-browse-gap); }
/* .fc-directory--markers .fc-directory__results */
.fc-directory--markers .fc-directory__results { margin-block: var(--fc-browse-gap); color: var(--fc-directory-muted); font-size: var(--fc-browse-small); }
/* .fc-directory--markers .fc-range-archive__grid */
.fc-directory--markers .fc-range-archive__grid { grid-template-columns: repeat(auto-fill, minmax(var(--fc-browse-card-width), 1fr)); gap: var(--fc-browse-gap); }
/* .fc-directory--markers .fc-range-archive__link */
.fc-directory--markers .fc-range-archive__link { align-items: stretch; gap: var(--fc-browse-gap); padding: var(--fc-browse-gap); border-color: var(--fc-directory-rule); border-radius: var(--fc-browse-corner); background: var(--fc-browse-surface); }
/* .fc-directory--markers .fc-range-archive__link:hover */
.fc-directory--markers .fc-range-archive__link:hover { border-color: var(--fc-directory-accent); }
/* .fc-directory--markers .fc-range-archive__marker */
.fc-directory--markers .fc-range-archive__marker { height: var(--fc-browse-stage); align-items: center; }
/* .fc-directory--markers .fc-marker */
.fc-directory--markers .fc-marker { width: 100%; height: auto; max-height: var(--fc-browse-stage); filter: none; }
/* .fc-directory--markers .fc-range-archive__meta */
.fc-directory--markers .fc-range-archive__meta { align-items: flex-start; text-align: left; gap: calc(var(--fc-browse-gap) / 4); }
/* .fc-directory--markers .fc-range-archive__name */
.fc-directory--markers .fc-range-archive__name { font-size: var(--fc-browse-name); color: var(--fc-directory-ink); }
/* .fc-directory--markers .fc-range-archive__name:first-child */
.fc-directory--markers .fc-range-archive__name:first-child { font-size: var(--fc-browse-small); color: var(--fc-directory-muted); }
/* .fc-directory--markers .fc-range-archive__hex */
.fc-directory--markers .fc-range-archive__hex { font-size: var(--fc-browse-small); color: var(--fc-directory-muted); }
/* .fc-marker--blender */
.fc-marker--blender { color: var(--fc-directory-muted); fill: none; stroke: currentColor; stroke-width: 2; }
/* .fc-marker--blender text */
.fc-marker--blender text { fill: currentColor; stroke: none; font-size: 16px; }
@media (max-width: 640px) {
	/* .fc-directory--markers */
	.fc-directory--markers { --fc-browse-card-width: 144px; --fc-browse-gap: 12px; --fc-browse-space: 20px; --fc-browse-name: 16px; }
	/* .fc-directory--markers .fc-directory__filters */
	.fc-directory--markers .fc-directory__filters { gap: var(--fc-browse-gap); }
	/* .fc-directory--markers .fc-directory__field */
	.fc-directory--markers .fc-directory__field { flex-basis: 100%; }
}
@media (min-width: 1600px) {
	/* .fc-directory--markers */
	.fc-directory--markers { --fc-browse-card-width: 184px; --fc-browse-gap: 20px; }
}
@media (min-width: 1800px) {
	/* .fc-directory--markers */
	.fc-directory--markers { --fc-browse-stage: 72px; --fc-browse-space: 28px; }
}
