/**
 * GC Theme — Brand Assets Page
 *
 * Styles for template-brand-assets.php (slug: /brand-assets/).
 * Reuses .gc-about__* layout/hero/section/callout classes from
 * templates/template-about.css and the .gc-toc-widget component.
 * This file only adds the brand-specific blocks: logo cards, colour
 * swatches, type cards, do/dont, clear space, voice, press, next.
 *
 * Full [data-theme="dark"] coverage. Squarer cards (8px). No !important.
 *
 * @package GC_Theme
 */

:root {
	--gc-brand-radius: 8px;
}

/* Offset so section tops clear the sticky header when jumped to
 * from the TOC (about-page.js handles the smooth scroll + sticky). */
.gc-brand .gc-about__section {
	scroll-margin-top: 100px;
}

/* ============================================================
 * Info callout (about CSS only defines gold + teal, so the
 * --info colours live here). Follows the teal-callout pattern:
 * neutral body text, blue accent only on the title + icon. The
 * icon sits in a rounded badge box so it reads as deliberate.
 * ============================================================ */
.gc-about__callout--info {
	background: rgba(59, 130, 246, 0.06);
	border: 0.5px solid rgba(59, 130, 246, 0.22);
	color: #334155;
}

.gc-about__callout--info .gc-about__callout-title {
	color: #2563EB;
}

.gc-brand__callout {
	align-items: center;
	gap: 14px;
}

.gc-brand__callout-icon {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(59, 130, 246, 0.12);
	color: #2563EB;
}

/* Dark mode: info callout — blue title + icon, neutral body. */
[data-theme="dark"] .gc-about__callout--info {
	background: rgba(59, 130, 246, 0.06);
	border-color: rgba(59, 130, 246, 0.20);
	color: rgba(255, 255, 255, 0.78);
}

[data-theme="dark"] .gc-about__callout--info .gc-about__callout-title {
	color: #93C5FD;
}

[data-theme="dark"] .gc-brand__callout-icon {
	background: rgba(59, 130, 246, 0.16);
	color: #93C5FD;
}

/* ============================================================
 * 01 · Logo cards
 * ============================================================ */
.gc-brand__logo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 16px;
}

.gc-brand__logo-card {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	overflow: hidden;
	background: var(--gc-bg);
}

.gc-brand__logo-preview {
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 26px;
	background: var(--gc-bg);
}

.gc-brand__logo-preview svg {
	max-height: 60px;
	width: auto;
}

.gc-brand__logo-preview.is-fav svg {
	max-height: 78px;
	border-radius: 14px;
	overflow: hidden;
}

.gc-brand__logo-preview img {
	max-height: 60px;
	width: auto;
}

.gc-brand__logo-card--dark .gc-brand__logo-preview {
	background: var(--gc-navy-mid, #1A2F5E);
}

.gc-brand__logo-card--brand .gc-brand__logo-preview {
	background: linear-gradient(120deg, var(--gc-navy-mid, #1A2F5E), var(--gc-primary-dark, #00A894));
}

.gc-brand__logo-meta {
	padding: 13px 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-top: 0.5px solid var(--gc-border-soft);
}

.gc-brand__logo-label {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 13px;
	font-weight: 700;
	color: var(--gc-navy);
}

.gc-brand__logo-sub {
	font-size: 11.5px;
	color: var(--gc-muted, #9ca3af);
	margin-top: 1px;
}

.gc-brand__logo-dl {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.gc-brand__logo-dl a {
	font-family: var(--gc-font-mono, monospace);
	font-size: 10.5px;
	font-weight: 700;
	color: var(--gc-muted, #6b7280);
	background: var(--gc-bg-soft, #F8FAFC);
	border: 0.5px solid var(--gc-border);
	padding: 4px 9px;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.15s;
}

.gc-brand__logo-dl a:hover {
	color: var(--gc-primary-dark, #00A894);
	border-color: var(--gc-primary-dark, #00A894);
}

.gc-brand__logo-dl a[aria-disabled="true"] {
	opacity: 0.45;
	cursor: not-allowed;
}

.gc-brand__logo-dl a[aria-disabled="true"]:hover {
	color: var(--gc-muted, #6b7280);
	border-color: var(--gc-border);
}

/* ============================================================
 * 02 · Colour swatches
 * ============================================================ */
.gc-brand__color-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-bottom: 14px;
}

.gc-brand__swatch {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	overflow: hidden;
	background: var(--gc-bg);
}

.gc-brand__swatch-block {
	height: 92px;
	display: flex;
	align-items: flex-end;
	padding: 10px;
}

.gc-brand__swatch-role {
	font-family: var(--gc-font-mono, monospace);
	font-size: 9.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.8);
	background: rgba(0, 0, 0, 0.25);
	padding: 2px 7px;
	border-radius: 4px;
}

.gc-brand__swatch.is-light .gc-brand__swatch-role {
	color: #475569;
	background: rgba(0, 0, 0, 0.05);
}

.gc-brand__swatch-meta {
	padding: 12px 14px;
}

.gc-brand__swatch-name {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 13px;
	font-weight: 700;
	color: var(--gc-navy);
	margin-bottom: 8px;
}

.gc-brand__swatch-meta dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2px 10px;
	font-size: 11px;
	margin-bottom: 9px;
}

.gc-brand__swatch-meta dt {
	color: var(--gc-muted, #9ca3af);
	font-family: var(--gc-font-mono, monospace);
	text-transform: uppercase;
	font-size: 9.5px;
	font-weight: 700;
}

.gc-brand__swatch-meta dd {
	color: var(--gc-text, #1E293B);
	font-family: var(--gc-font-mono, monospace);
	font-size: 11px;
	margin: 0;
}

/* Copy buttons (shared: swatch + desc) */
.gc-brand__copy-btn {
	display: block;
	width: 100%;
	padding: 6px 0;
	background: var(--gc-bg-soft, #F8FAFC);
	border: 0.5px solid var(--gc-border);
	border-radius: 6px;
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gc-muted, #6b7280);
	cursor: pointer;
	transition: 0.12s;
}

.gc-brand__copy-btn:hover {
	background: var(--gc-primary-dark, #00A894);
	color: #fff;
	border-color: var(--gc-primary-dark, #00A894);
}

.gc-brand__copy-btn.is-done {
	background: var(--gc-primary-dark, #00A894);
	color: #fff;
	border-color: var(--gc-primary-dark, #00A894);
}

/* ============================================================
 * 03 · Type cards
 * ============================================================ */
.gc-brand__type-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gc-brand__type-card {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	padding: 24px 26px;
	background: var(--gc-bg);
}

.gc-brand__type-role {
	font-family: var(--gc-font-mono, monospace);
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--gc-primary-dark, #00A894);
	margin-bottom: 12px;
}

.gc-brand__type-face {
	font-size: 60px;
	font-weight: 800;
	line-height: 1;
	color: var(--gc-navy);
	margin-bottom: 14px;
}

.gc-brand__type-card--sora .gc-brand__type-face {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
}

.gc-brand__type-card--inter .gc-brand__type-face {
	font-family: var(--gc-font-body, 'Inter', sans-serif);
}

.gc-brand__type-name-row {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 8px;
}

.gc-brand__type-name-row h3 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 17px;
	font-weight: 700;
	color: var(--gc-navy);
	margin: 0;
}

.gc-brand__type-src {
	font-size: 11px;
	color: var(--gc-muted, #9ca3af);
	font-family: var(--gc-font-mono, monospace);
}

.gc-brand__type-desc {
	font-size: 13px;
	color: var(--gc-muted, #6b7280);
	line-height: 1.6;
	margin-bottom: 14px;
}

.gc-brand__type-weights {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 16px;
}

.gc-brand__type-weights span {
	font-size: 10.5px;
	font-family: var(--gc-font-mono, monospace);
	color: var(--gc-muted, #6b7280);
	background: var(--gc-bg-soft, #F8FAFC);
	border: 0.5px solid var(--gc-border-soft);
	padding: 3px 8px;
	border-radius: 5px;
}

.gc-brand__type-scale {
	border-top: 0.5px solid var(--gc-border-soft);
	padding-top: 14px;
}

.gc-brand__type-row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	padding: 5px 0;
}

.gc-brand__type-demo {
	color: var(--gc-navy);
}

.gc-brand__type-card--sora .gc-brand__type-demo {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
}

.gc-brand__type-card--inter .gc-brand__type-demo {
	font-family: var(--gc-font-body, 'Inter', sans-serif);
}

.gc-brand__type-size {
	font-family: var(--gc-font-mono, monospace);
	font-size: 10px;
	color: var(--gc-muted, #9ca3af);
	flex-shrink: 0;
}

/* ============================================================
 * 04 · Usage do / don't
 * ============================================================ */
.gc-brand__usage-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.gc-brand__usage-col {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	background: var(--gc-bg);
	overflow: hidden;
}

.gc-brand__usage-col h3 {
	padding: 15px 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 14px;
	font-weight: 700;
	margin: 0;
}

.gc-brand__usage-col--do h3 {
	color: #0E9F6E;
	background: #E7F8F1;
}

.gc-brand__usage-col--dont h3 {
	color: #E86B6B;
	background: #FBEEEE;
}

.gc-brand__usage-badge {
	width: 24px;
	height: 24px;
	border-radius: 7px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 13px;
	color: #fff;
}

.gc-brand__usage-col--do .gc-brand__usage-badge {
	background: #0E9F6E;
}

.gc-brand__usage-col--dont .gc-brand__usage-badge {
	background: #E86B6B;
}

.gc-brand__usage-col ul {
	list-style: none;
	padding: 10px 22px 18px;
	margin: 0;
}

.gc-brand__usage-col li {
	font-size: 13px;
	color: var(--gc-text, #1E293B);
	padding: 8px 0 8px 22px;
	position: relative;
	line-height: 1.55;
	border-bottom: 0.5px solid var(--gc-border-soft);
}

.gc-brand__usage-col li:last-child {
	border-bottom: none;
}

.gc-brand__usage-col li::before {
	position: absolute;
	left: 0;
	top: 8px;
	font-weight: 700;
	font-size: 12px;
}

.gc-brand__usage-col--do li::before {
	content: '\2713';
	color: #0E9F6E;
}

.gc-brand__usage-col--dont li::before {
	content: '\2715';
	color: #E86B6B;
}

/* ============================================================
 * 05 · Clear space
 * ============================================================ */
.gc-brand__clearspace {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: stretch;
}

.gc-brand__clearspace-box {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	background: var(--gc-bg-soft, #F8FAFC);
	padding: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 210px;
}

.gc-brand__clearspace-box::before {
	content: '';
	position: absolute;
	inset: 24px;
	border: 1.5px dashed rgba(0, 198, 174, 0.45);
	border-radius: 6px;
}

.gc-brand__clearspace-box svg {
	max-height: 46px;
	width: auto;
	position: relative;
	z-index: 1;
}

.gc-brand__clearspace-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.gc-brand__clearspace-info h3 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--gc-navy);
	margin-bottom: 10px;
}

.gc-brand__clearspace-info p {
	font-size: 13.5px;
	color: var(--gc-muted, #6b7280);
	line-height: 1.6;
	margin-bottom: 12px;
}

.gc-brand__clearspace-info strong {
	color: var(--gc-navy);
}

.gc-brand__min-row {
	display: flex;
	gap: 18px;
	align-items: center;
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	padding: 18px 20px;
	background: var(--gc-bg-soft, #F8FAFC);
	margin-top: 4px;
}

.gc-brand__mini-svg {
	flex-shrink: 0;
	width: 120px;
	border-right: 0.5px solid var(--gc-border);
	padding-right: 18px;
	display: flex;
	align-items: center;
}

.gc-brand__mini-svg svg {
	max-height: 22px;
	width: auto;
}

.gc-brand__min-meta {
	flex: 1;
	min-width: 0;
}

.gc-brand__min-meta b {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 13px;
	color: var(--gc-navy);
	display: block;
	margin-bottom: 4px;
}

.gc-brand__min-meta span {
	font-size: 12.5px;
	color: var(--gc-muted, #6b7280);
	line-height: 1.6;
}

.gc-brand__min-meta strong {
	color: var(--gc-primary-dark, #00A894);
}

/* ============================================================
 * 06 · Voice
 * ============================================================ */
.gc-brand__voice-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-bottom: 20px;
}

.gc-brand__pillar {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	padding: 22px 24px;
	background: var(--gc-bg);
}

.gc-brand__pillar-num {
	font-family: var(--gc-font-mono, monospace);
	font-size: 11px;
	font-weight: 700;
	color: var(--gc-primary-dark, #00A894);
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	display: block;
}

.gc-brand__pillar h3 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--gc-navy);
	margin-bottom: 8px;
}

.gc-brand__pillar p {
	font-size: 13px;
	color: var(--gc-muted, #6b7280);
	line-height: 1.6;
}

.gc-brand__descs {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.gc-brand__desc-card {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	padding: 18px 20px;
	background: var(--gc-bg);
	position: relative;
}

.gc-brand__desc-tag {
	font-family: var(--gc-font-mono, monospace);
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gc-muted, #9ca3af);
	margin-bottom: 10px;
}

.gc-brand__desc-count {
	color: var(--gc-primary-dark, #00A894);
	margin-left: 4px;
}

.gc-brand__desc-card p {
	font-size: 13px;
	color: var(--gc-text, #1E293B);
	line-height: 1.65;
	margin: 0;
}

.gc-brand__desc-card .gc-brand__copy-btn {
	position: absolute;
	top: 14px;
	right: 14px;
	width: auto;
	padding: 4px 10px;
	font-size: 9.5px;
}

.gc-brand__position-note {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	background: var(--gc-primary-soft, #E6FAF7);
	padding: 18px 20px;
	margin-bottom: 20px;
}

.gc-brand__pn-tag {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gc-primary-dark, #00A894);
	display: block;
	margin-bottom: 8px;
}

.gc-brand__position-note p {
	font-size: 13.5px;
	color: var(--gc-text, #1E293B);
	line-height: 1.6;
	margin: 0;
}

.gc-brand__position-note b {
	color: var(--gc-navy);
	font-weight: 700;
}

.gc-brand__writing-rules {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	padding: 20px 22px;
	background: var(--gc-bg);
}

.gc-brand__writing-rules h3 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 15px;
	font-weight: 700;
	color: var(--gc-navy);
	margin-bottom: 14px;
}

.gc-brand__rules-grid {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.gc-brand__rule-row {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding-bottom: 12px;
	border-bottom: 0.5px solid var(--gc-border-soft);
}

.gc-brand__rule-row:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.gc-brand__rule-h {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 13px;
	font-weight: 700;
	color: var(--gc-navy);
	display: flex;
	align-items: center;
	gap: 8px;
}

.gc-brand__rule-mark--neg {
	color: #E86B6B;
	font-weight: 800;
}

.gc-brand__rule-mark--pos {
	color: #0E9F6E;
	font-weight: 800;
}

.gc-brand__ex {
	font-size: 12.5px;
	font-family: var(--gc-font-mono, monospace);
	padding: 5px 10px;
	border-radius: 5px;
	line-height: 1.5;
}

.gc-brand__ex--bad {
	background: #FBEEEE;
	color: #9b2c2c;
	text-decoration: line-through;
	text-decoration-color: rgba(155, 44, 44, 0.4);
}

.gc-brand__ex--good {
	background: #E7F8F1;
	color: #1e6b4f;
}

/* ============================================================
 * 07 · Press card
 * ============================================================ */
.gc-brand__press-card {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	background: var(--gc-bg);
	padding: 28px 30px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 30px;
}

.gc-brand__press-card p {
	font-size: 13.5px;
	color: var(--gc-muted, #6b7280);
	line-height: 1.65;
	margin-bottom: 12px;
}

.gc-brand__contact {
	border-left: 0.5px solid var(--gc-border);
	padding-left: 30px;
}

.gc-brand__contact h4 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--gc-muted, #9ca3af);
	margin-bottom: 12px;
}

.gc-brand__contact dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 14px;
	font-size: 13px;
}

.gc-brand__contact dt {
	color: var(--gc-muted, #9ca3af);
	font-size: 11px;
	font-family: var(--gc-font-mono, monospace);
	text-transform: uppercase;
	font-weight: 700;
	padding-top: 2px;
}

.gc-brand__contact dd {
	color: var(--gc-navy);
	font-weight: 500;
	margin: 0;
}

.gc-brand__contact dd a {
	color: var(--gc-primary-dark, #00A894);
}

/* ============================================================
 * 08 · Read further
 * ============================================================ */
.gc-brand__next-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.gc-brand__next-card {
	border: 0.5px solid var(--gc-border);
	border-radius: var(--gc-brand-radius);
	padding: 22px 24px;
	background: var(--gc-bg);
	transition: 0.15s;
}

.gc-brand__next-card:hover {
	border-color: var(--gc-primary-dark, #00A894);
}

.gc-brand__next-card h4 {
	font-family: var(--gc-font-display, 'Sora', sans-serif);
	font-size: 16px;
	font-weight: 700;
	color: var(--gc-navy);
	margin-bottom: 8px;
}

.gc-brand__next-card p {
	font-size: 13px;
	color: var(--gc-muted, #6b7280);
	line-height: 1.55;
	margin-bottom: 14px;
}

.gc-brand__next-open {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--gc-primary-dark, #00A894);
}

/* ============================================================
 * Dark mode
 * ============================================================ */
[data-theme="dark"] .gc-brand__logo-card,
[data-theme="dark"] .gc-brand__swatch,
[data-theme="dark"] .gc-brand__type-card,
[data-theme="dark"] .gc-brand__usage-col,
[data-theme="dark"] .gc-brand__pillar,
[data-theme="dark"] .gc-brand__desc-card,
[data-theme="dark"] .gc-brand__writing-rules,
[data-theme="dark"] .gc-brand__press-card,
[data-theme="dark"] .gc-brand__next-card {
	background: var(--gc-bg-soft);
	border-color: rgba(255, 255, 255, 0.06);
}

/* In dark mode every preview gets a dark surface (consistent with the
 * theme). The "on light" wordmark is navy, so its letters are flipped to
 * white below so they stay visible. The favicon keeps its navy plate
 * (the white GC monogram already contrasts on the dark card). */
[data-theme="dark"] .gc-brand__logo-card--light .gc-brand__logo-preview {
	background: #0e0f15;
}

[data-theme="dark"] .gc-brand__logo-card--dark .gc-brand__logo-preview {
	background: #000;
}

[data-theme="dark"] .gc-brand__logo-card--brand .gc-brand__logo-preview {
	background: linear-gradient(120deg, var(--gc-navy-mid, #1A2F5E), var(--gc-primary-dark, #00A894));
}

/* Flip the navy WORDMARK letters to white on the light-variant card in
 * dark mode (favicon plate stays navy, so exclude .is-fav). The teal dot
 * (#00c6ae) is left untouched. */
[data-theme="dark"] .gc-brand__logo-card--light .gc-brand__logo-preview:not(.is-fav) [fill="#0d1b3e"] {
	fill: #ffffff;
}

[data-theme="dark"] .gc-brand__logo-label,
[data-theme="dark"] .gc-brand__swatch-name,
[data-theme="dark"] .gc-brand__type-face,
[data-theme="dark"] .gc-brand__type-name-row h3,
[data-theme="dark"] .gc-brand__type-demo,
[data-theme="dark"] .gc-brand__pillar h3,
[data-theme="dark"] .gc-brand__clearspace-info h3,
[data-theme="dark"] .gc-brand__writing-rules h3,
[data-theme="dark"] .gc-brand__rule-h,
[data-theme="dark"] .gc-brand__next-card h4,
[data-theme="dark"] .gc-brand__min-meta b,
[data-theme="dark"] .gc-brand__contact dd,
[data-theme="dark"] .gc-brand__position-note b,
[data-theme="dark"] .gc-brand__clearspace-info strong,
[data-theme="dark"] .gc-brand__swatch-meta dd {
	color: #ffffff;
}

[data-theme="dark"] .gc-brand__logo-sub,
[data-theme="dark"] .gc-brand__type-desc,
[data-theme="dark"] .gc-brand__pillar p,
[data-theme="dark"] .gc-brand__desc-card p,
[data-theme="dark"] .gc-brand__clearspace-info p,
[data-theme="dark"] .gc-brand__press-card p,
[data-theme="dark"] .gc-brand__next-card p,
[data-theme="dark"] .gc-brand__usage-col li,
[data-theme="dark"] .gc-brand__min-meta span,
[data-theme="dark"] .gc-brand__position-note p {
	color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] .gc-brand__type-weights span,
[data-theme="dark"] .gc-brand__min-row {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.06);
}

/* Clear-space SVGs are the NAVY wordmark on a dark surface, so flip the
 * navy letter fills to white in dark mode. The teal dot (#00c6ae) is
 * left untouched. Targets the fill attribute the wordmark SVG uses. */
[data-theme="dark"] .gc-brand__clearspace-box svg [fill="#0d1b3e"],
[data-theme="dark"] .gc-brand__mini-svg svg [fill="#0d1b3e"] {
	fill: #ffffff;
}

[data-theme="dark"] .gc-brand__copy-btn {
	background: rgba(255, 255, 255, 0.04);
	border-color: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.65);
}

[data-theme="dark"] .gc-brand__copy-btn:hover,
[data-theme="dark"] .gc-brand__copy-btn.is-done {
	background: var(--gc-primary-dark, #00A894);
	color: #fff;
	border-color: var(--gc-primary-dark, #00A894);
}

[data-theme="dark"] .gc-brand__position-note {
	background: rgba(0, 198, 174, 0.06);
	border-color: rgba(0, 198, 174, 0.2);
}

[data-theme="dark"] .gc-brand__usage-col--do h3 {
	background: rgba(16, 185, 129, 0.1);
	color: #6EE7B7;
}

[data-theme="dark"] .gc-brand__usage-col--dont h3 {
	background: rgba(232, 107, 107, 0.1);
	color: #F5A3A3;
}

[data-theme="dark"] .gc-brand__usage-col--do li::before {
	color: #6EE7B7;
}

[data-theme="dark"] .gc-brand__usage-col--dont li::before {
	color: #F5A3A3;
}

[data-theme="dark"] .gc-brand__ex--bad {
	background: rgba(232, 107, 107, 0.1);
	color: #F5A3A3;
}

[data-theme="dark"] .gc-brand__ex--good {
	background: rgba(16, 185, 129, 0.1);
	color: #6EE7B7;
}

[data-theme="dark"] .gc-brand__contact {
	border-left-color: rgba(255, 255, 255, 0.08);
}

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 980px) {
	.gc-brand__logo-grid,
	.gc-brand__color-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.gc-brand__type-grid,
	.gc-brand__usage-grid,
	.gc-brand__voice-grid,
	.gc-brand__clearspace,
	.gc-brand__press-card,
	.gc-brand__next-grid {
		grid-template-columns: 1fr;
	}

	.gc-brand__contact {
		border-left: none;
		padding-left: 0;
		border-top: 0.5px solid var(--gc-border);
		padding-top: 20px;
	}
}

/* ============================================================
 * Layout note
 *
 * The page reuses the About layout: .gc-about__layout (grid),
 * .gc-about__main, and .gc-single-sidebar / .gc-single-sidebar-inner.
 * Sticky TOC + smooth scroll are driven by about-page.js (the same
 * JS the About page uses), so there is no layout/sticky CSS here.
 * ============================================================ */

@media (max-width: 600px) {
	.gc-brand__logo-grid,
	.gc-brand__color-grid,
	.gc-brand__next-grid {
		grid-template-columns: 1fr;
	}
}