/* ============================================
   Gary Simat - Operator's Notebook
   design.css - full design system
   ============================================ */

:root {
	--paper: #f7f3eb;
	--paper-warm: #ede7d8;
	--paper-deep: #e3dcc8;
	--ink: #14110d;
	--ink-soft: #2a2620;
	--ink-muted: #6a635a;
	--ink-faint: #989186;
	--rule: #ccc3ad;
	--rule-soft: #ddd5bf;
	--navy: #1d2b40;
	--burgundy: #7a2a35;
	--burgundy-deep: #5c1d27;
	--burgundy-bright: #b03848;
	--burgundy-soft: #c88791;
	--gold: #c19a3a;
	--gold-soft: #d4b566;
	--accent-bg: #ede4cf;
	--dark-bg: #131210;
}

/* ============ BASE OVERRIDES ============ */

html {
	scroll-behavior: smooth;
}

body,
.entry-content,
.site-content {
	background: var(--paper);
	color: var(--ink);
	font-family: 'Newsreader', Georgia, serif;
	font-size: 19px;
	line-height: 1.6;
	font-feature-settings: 'kern' 1, 'liga' 1, 'onum' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	overflow-x: hidden;
}

/* Page grain overlay */
body::before {
	content: '';
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 100;
	opacity: 0.4;
	mix-blend-mode: multiply;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.18 0' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ============ NAV ============ */

.site-header {
	border-bottom: 1px solid var(--rule);
	padding: 22px 0;
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(8px);
	background: rgba(247, 243, 235, 0.92) !important;
}

.inside-header {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-branding {
	padding: 0;
}

.site-logo,
.site-title a,
.main-title a {
	font-family: 'Fraunces', serif;
	font-size: 22px;
	font-weight: 600;
	font-variation-settings: 'opsz' 144;
	letter-spacing: -0.02em;
	color: var(--ink);
	text-decoration: none;
	display: flex;
	align-items: baseline;
}

.gs-brand .first {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
}

.gs-brand .last {
	font-weight: 700;
}

.gs-brand .dot {
	width: 5px;
	height: 5px;
	background: var(--burgundy);
	border-radius: 50%;
	display: inline-block;
	margin: 0 7px 4px 7px;
	align-self: center;
}

.main-navigation,
.main-navigation .menu,
.main-navigation .main-nav ul {
	background: transparent !important;
}

.main-navigation .main-nav ul {
	display: flex;
	gap: 40px;
	list-style: none;
	align-items: center;
	margin: 0;
	padding: 0;
}

.main-navigation .main-nav ul li {
	margin: 0;
	padding: 0;
}

.main-navigation .main-nav ul li a {
	font-family: 'Inter Tight', sans-serif !important;
	font-size: 13px !important;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--ink-soft) !important;
	text-decoration: none;
	position: relative;
	padding: 4px 0 !important;
	background: transparent !important;
	line-height: 1.2;
	height: auto;
	text-transform: none;
}

.main-navigation .main-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--burgundy);
	transition: width 0.3s ease;
}

.main-navigation .main-nav ul li.current-menu-item > a {
	color: var(--burgundy) !important;
}

.main-navigation .main-nav ul li.current-menu-item > a::after,
.main-navigation .main-nav ul li > a:hover::after {
	width: 100%;
}

.main-navigation .main-nav ul li > a:hover {
	color: var(--burgundy) !important;
}

/* CTA-styled menu item (give a menu item the class "nav-cta" via WP menu editor) */
.main-navigation .main-nav ul li.nav-cta > a {
	color: var(--paper) !important;
	background: var(--ink) !important;
	padding: 10px 18px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
}

.main-navigation .main-nav ul li.nav-cta > a::after {
	display: none !important;
}

.main-navigation .main-nav ul li.nav-cta > a:hover {
	background: var(--burgundy) !important;
}

/* ============ KEYFRAMES ============ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

/* ============ HOMEPAGE HERO ============ */

.gs-hero {
	position: relative;
	padding: 100px 0 140px;
	overflow: hidden;
	background: var(--paper);
}

.gs-hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle at center, rgba(122, 42, 53, 0.12) 0%, rgba(122, 42, 53, 0) 70%);
	pointer-events: none;
}

.gs-hero::after {
	content: '';
	position: absolute;
	bottom: -300px;
	left: -200px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle at center, rgba(193, 154, 58, 0.1) 0%, rgba(193, 154, 58, 0) 70%);
	pointer-events: none;
}

.gs-hero-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	position: relative;
	z-index: 2;
}

.gs-hero-tag {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 56px;
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding: 8px 16px;
	border: 1px solid var(--burgundy);
	background: rgba(122, 42, 53, 0.04);
	opacity: 0;
	animation: fadeInUp 0.8s ease 0.1s forwards;
}

.gs-hero-tag::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--burgundy);
	border-radius: 50%;
	animation: pulse 2.5s ease-in-out infinite;
}

.gs-hero h1 {
	font-family: 'Fraunces', serif;
	font-size: clamp(56px, 8.5vw, 128px);
	line-height: 0.95;
	font-weight: 500;
	letter-spacing: -0.035em;
	color: var(--ink);
	margin: 0 0 48px;
	font-variation-settings: 'opsz' 144, 'SOFT' 30;
	max-width: 1100px;
	opacity: 0;
	animation: fadeInUp 1s ease 0.25s forwards;
}

.gs-hero h1 .em {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
	font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

.gs-hero h1 .small {
	font-size: 0.6em;
	display: block;
	font-weight: 400;
	color: var(--ink-soft);
	margin-top: 12px;
	letter-spacing: -0.025em;
}

.gs-hero-meta-row {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 80px;
	align-items: end;
	margin-top: 80px;
	opacity: 0;
	animation: fadeInUp 1s ease 0.5s forwards;
}

.gs-hero-lede {
	font-family: 'Newsreader', serif;
	font-size: 22px;
	line-height: 1.55;
	color: var(--ink-soft);
	max-width: 560px;
	font-weight: 400;
	margin: 0;
}

.gs-hero-lede strong {
	color: var(--ink);
	font-weight: 500;
}

.gs-hero-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	padding-top: 24px;
	border-top: 1px solid var(--rule);
}

.gs-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 48px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--ink);
	display: block;
	margin-bottom: 8px;
	font-variation-settings: 'opsz' 144;
}

.gs-stat-num .em {
	font-style: italic;
	color: var(--burgundy);
	font-weight: 400;
}

.gs-stat-label {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-muted);
}

/* ============ MARQUEE STRIP ============ */

.gs-marquee {
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	background: var(--paper-warm);
	padding: 24px 0;
	overflow: hidden;
	position: relative;
}

.gs-marquee-inner {
	display: flex;
	gap: 80px;
	animation: scroll 50s linear infinite;
	white-space: nowrap;
	width: fit-content;
}

.gs-marquee-item {
	font-family: 'Fraunces', serif;
	font-size: 22px;
	font-weight: 500;
	font-style: italic;
	color: var(--ink-muted);
	display: flex;
	align-items: center;
	gap: 16px;
	font-variation-settings: 'opsz' 144;
}

.gs-marquee-item .sep {
	width: 6px;
	height: 6px;
	background: var(--burgundy);
	border-radius: 50%;
	display: inline-block;
}

.gs-marquee-item strong {
	color: var(--ink);
	font-weight: 600;
	font-style: normal;
	font-family: 'Inter Tight', sans-serif;
	font-size: 14px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* ============ SECTION INTRO ============ */

.gs-section-intro {
	max-width: 1280px;
	margin: 0 auto;
	padding: 120px 48px 48px;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 80px;
	align-items: end;
	border-bottom: 1px solid var(--rule);
}

.gs-section-num {
	font-family: 'Fraunces', serif;
	font-size: 110px;
	line-height: 1;
	font-weight: 400;
	font-style: italic;
	color: var(--burgundy);
	letter-spacing: -0.04em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.gs-section-title-block h2 {
	font-family: 'Fraunces', serif;
	font-size: 56px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--ink);
	margin: 0 0 20px;
	font-variation-settings: 'opsz' 144;
}

.gs-section-title-block h2 .em {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
}

.gs-section-title-block .deck {
	font-family: 'Newsreader', serif;
	font-size: 18px;
	line-height: 1.5;
	color: var(--ink-muted);
	max-width: 560px;
	margin: 0;
}

/* ============ FILTER BAR ============ */

.gs-filter-bar {
	max-width: 1280px;
	margin: 0 auto;
	padding: 36px 48px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid var(--rule);
	background: var(--paper-warm);
}

.gs-filter-label {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-right: 24px;
}

.gs-filter-bar a {
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--ink-soft);
	text-decoration: none;
	padding: 8px 18px;
	border: 1px solid transparent;
	border-radius: 24px;
	transition: all 0.2s ease;
}

.gs-filter-bar a:hover {
	border-color: var(--rule);
}

.gs-filter-bar a.active {
	background: var(--ink);
	color: var(--paper);
	border-color: var(--ink);
}

/* ============ POST LISTING ============ */

.gs-posts {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-post-item {
	display: grid;
	grid-template-columns: 100px 1fr 220px;
	gap: 48px;
	padding: 48px 24px;
	border-bottom: 1px solid var(--rule);
	align-items: start;
	transition: all 0.3s ease;
	position: relative;
	margin: 0 -24px;
}

.gs-post-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: var(--burgundy);
	transition: width 0.3s ease;
}

.gs-post-item:hover {
	background: var(--paper-warm);
	padding-left: 32px;
}

.gs-post-item:hover::before {
	width: 3px;
}

.gs-post-num {
	font-family: 'Fraunces', serif;
	font-size: 64px;
	line-height: 1;
	font-weight: 400;
	font-style: italic;
	color: var(--burgundy);
	letter-spacing: -0.04em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
	padding-top: 4px;
	opacity: 0.85;
	transition: opacity 0.3s ease;
}

.gs-post-item:hover .gs-post-num {
	opacity: 1;
}

.gs-post-content {
	max-width: 680px;
}

.gs-post-date {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.gs-post-date .sep {
	width: 24px;
	height: 1px;
	background: var(--ink-faint);
	display: inline-block;
}

.gs-post-date .read {
	font-style: italic;
	font-weight: 400;
	font-family: 'Newsreader', serif;
	font-size: 13px;
	text-transform: none;
	letter-spacing: 0;
	color: var(--ink-faint);
}

.gs-post-title {
	font-family: 'Fraunces', serif;
	font-size: 34px;
	line-height: 1.15;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
	font-variation-settings: 'opsz' 144;
}

.gs-post-title a {
	color: var(--ink);
	text-decoration: none;
	background-image: linear-gradient(transparent calc(100% - 2px), var(--burgundy) 2px);
	background-repeat: no-repeat;
	background-size: 0% 100%;
	transition: background-size 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gs-post-title a:hover {
	background-size: 100% 100%;
}

.gs-post-excerpt {
	font-size: 18px;
	line-height: 1.55;
	color: var(--ink-soft);
	font-weight: 400;
}

.gs-post-track {
	padding-top: 12px;
	text-align: right;
}

.gs-track-tag {
	font-family: 'Inter Tight', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-muted);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid var(--rule);
	background: var(--paper);
	border-radius: 0;
	text-decoration: none;
}

.gs-track-tag::before {
	content: '';
	width: 6px;
	height: 6px;
	background: currentColor;
	border-radius: 50%;
}

.gs-track-tag.domain { color: var(--burgundy); border-color: rgba(122, 42, 53, 0.3); }
.gs-track-tag.leadership { color: var(--navy); border-color: rgba(29, 43, 64, 0.3); }
.gs-track-tag.operator { color: #6a4218; border-color: rgba(106, 66, 24, 0.3); }
.gs-track-tag.founders { color: #3d5a32; border-color: rgba(61, 90, 50, 0.3); }
.gs-track-tag.reactive { color: var(--navy); border-color: rgba(29, 43, 64, 0.3); }

/* ============ MANIFESTO BLOCK ============ */

.gs-manifesto {
	position: relative;
	margin: 140px 0 0;
	padding: 140px 0 160px;
	background: var(--dark-bg);
	color: var(--paper);
	overflow: hidden;
}

.gs-manifesto::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(122, 42, 53, 0.4) 0%, rgba(122, 42, 53, 0) 70%);
	pointer-events: none;
}

.gs-manifesto::after {
	content: '';
	position: absolute;
	bottom: -100px;
	left: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(193, 154, 58, 0.18) 0%, rgba(193, 154, 58, 0) 70%);
	pointer-events: none;
}

.gs-manifesto-inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 48px;
	position: relative;
	z-index: 2;
}

.gs-manifesto-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.gs-manifesto-eyebrow::after {
	content: '';
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
}

.gs-manifesto-mark {
	font-family: 'Fraunces', serif;
	font-size: 220px;
	line-height: 0.6;
	color: var(--burgundy-bright);
	font-style: italic;
	margin-bottom: -50px;
	font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
	opacity: 0.8;
}

.gs-manifesto p {
	font-family: 'Fraunces', serif;
	font-size: clamp(36px, 5.5vw, 76px);
	line-height: 1.12;
	font-weight: 400;
	letter-spacing: -0.03em;
	color: var(--paper);
	margin: 0 0 64px;
	font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.gs-manifesto p .em {
	font-style: italic;
	color: var(--burgundy-soft);
	font-weight: 400;
	font-variation-settings: 'opsz' 144, 'SOFT' 80;
}

.gs-manifesto cite {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-soft);
	font-style: normal;
	display: flex;
	align-items: center;
	gap: 16px;
}

.gs-manifesto cite::before {
	content: '';
	width: 40px;
	height: 1px;
	background: var(--gold-soft);
}

/* ============ ABOUT STRIP ============ */

.gs-about-strip {
	background: var(--paper-warm);
	padding: 140px 0;
	position: relative;
	overflow: hidden;
}

.gs-about-strip::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 60px;
	background: var(--burgundy);
}

.gs-about-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 100px;
	align-items: start;
}

.gs-about-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 40px;
}

.gs-about-content h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(36px, 5vw, 56px);
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.025em;
	margin: 0 0 40px;
	color: var(--ink);
	font-variation-settings: 'opsz' 144;
}

.gs-about-content h2 .em {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
}

.gs-about-content p {
	font-size: 19px;
	line-height: 1.6;
	color: var(--ink-soft);
	margin-bottom: 22px;
	max-width: 640px;
}

.gs-about-cv-block {
	position: relative;
}

.gs-about-cv-block::before {
	content: '';
	position: absolute;
	left: -40px;
	top: 0;
	bottom: 0;
	width: 1px;
	background: var(--rule);
}

.gs-cv-item {
	margin-bottom: 40px;
	position: relative;
}

.gs-cv-item::before {
	content: '';
	position: absolute;
	left: -45px;
	top: 8px;
	width: 9px;
	height: 9px;
	background: var(--paper-warm);
	border: 2px solid var(--burgundy);
	border-radius: 50%;
}

.gs-cv-period {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 10px;
}

.gs-cv-role {
	font-family: 'Fraunces', serif;
	font-size: 24px;
	font-weight: 500;
	color: var(--ink);
	margin-bottom: 6px;
	letter-spacing: -0.015em;
	font-variation-settings: 'opsz' 72;
}

.gs-cv-detail {
	font-family: 'Newsreader', serif;
	font-size: 16px;
	font-style: italic;
	color: var(--ink-muted);
	line-height: 1.4;
}

/* ============ SUBSCRIBE BIG ============ */

.gs-subscribe-big {
	background: var(--ink);
	color: var(--paper);
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.gs-subscribe-big::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(122, 42, 53, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(193, 154, 58, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.gs-subscribe-big-inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 48px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.gs-subscribe-big-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: 32px;
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding: 10px 20px;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.gs-subscribe-big-eyebrow .dot {
	width: 6px;
	height: 6px;
	background: var(--gold);
	border-radius: 50%;
	animation: pulse 2.5s ease-in-out infinite;
}

.gs-subscribe-big h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(40px, 5.5vw, 68px);
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--paper);
	margin: 0 0 28px;
	font-variation-settings: 'opsz' 144;
}

.gs-subscribe-big h2 .em {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy-soft);
}

.gs-subscribe-big-deck {
	font-family: 'Newsreader', serif;
	font-size: 20px;
	line-height: 1.55;
	color: #b8b3aa;
	margin: 0 auto 48px;
	max-width: 580px;
}

.gs-subscribe-form {
	display: flex;
	gap: 12px;
	max-width: 520px;
	margin: 0 auto;
}

.gs-subscribe-form input {
	flex: 1;
	font-family: 'Inter Tight', sans-serif;
	font-size: 15px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.05);
	color: var(--paper);
	outline: none;
	transition: all 0.2s ease;
}

.gs-subscribe-form input::placeholder {
	color: #6a635a;
}

.gs-subscribe-form input:focus {
	border-color: var(--burgundy-bright);
	background: rgba(255, 255, 255, 0.08);
}

.gs-subscribe-form button {
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 18px 32px;
	background: var(--burgundy);
	color: var(--paper);
	border: 1px solid var(--burgundy);
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.gs-subscribe-form button:hover {
	background: var(--burgundy-bright);
	border-color: var(--burgundy-bright);
}

.gs-subscribe-fineprint {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	color: var(--ink-faint);
	margin-top: 24px;
	letter-spacing: 0.02em;
}

/* ============ SINGLE POST ============ */

.single .gs-post-header {
	position: relative;
	padding: 80px 0 60px;
	overflow: hidden;
}

.single .gs-post-header::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 700px;
	height: 700px;
	background: radial-gradient(circle, rgba(122, 42, 53, 0.1) 0%, rgba(122, 42, 53, 0) 70%);
	pointer-events: none;
}

.gs-post-header-inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 48px;
	position: relative;
	z-index: 2;
}

.gs-post-breadcrumb {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.gs-post-breadcrumb a {
	color: var(--ink-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.gs-post-breadcrumb a:hover { color: var(--burgundy); }
.gs-post-breadcrumb .sep { color: var(--ink-faint); }
.gs-post-breadcrumb .current { color: var(--burgundy); }

.gs-post-essay-num {
	font-family: 'Fraunces', serif;
	font-size: 96px;
	line-height: 0.9;
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
	letter-spacing: -0.04em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
	margin-bottom: 24px;
	display: flex;
	align-items: baseline;
	gap: 16px;
}

.gs-post-essay-num .label {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-muted);
	font-style: normal;
}

.single .gs-post-header h1 {
	font-family: 'Fraunces', serif;
	font-size: clamp(40px, 5.5vw, 72px);
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin: 0 0 36px;
	font-variation-settings: 'opsz' 144, 'SOFT' 30;
}

.gs-post-dek {
	font-family: 'Newsreader', serif;
	font-size: 24px;
	line-height: 1.45;
	font-style: italic;
	font-weight: 400;
	color: var(--ink-soft);
	margin: 0 0 48px;
	max-width: 720px;
}

.gs-post-byline {
	display: flex;
	align-items: center;
	gap: 24px;
	padding-top: 32px;
	border-top: 1px solid var(--rule);
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	color: var(--ink-muted);
	letter-spacing: 0.04em;
}

.gs-byline-author {
	color: var(--ink);
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.gs-byline-sep {
	width: 4px;
	height: 4px;
	background: var(--burgundy);
	border-radius: 50%;
}

.gs-byline-tag {
	margin-left: auto;
	font-family: 'Inter Tight', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--burgundy);
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border: 1px solid rgba(122, 42, 53, 0.3);
	text-decoration: none;
}

.gs-byline-tag::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--burgundy);
	border-radius: 50%;
}

/* Article body */
.single .entry-content,
.gs-article {
	max-width: 720px;
	margin: 0 auto;
	padding: 40px 48px 80px;
}

.gs-article p,
.single .entry-content > p {
	font-size: 21px;
	line-height: 1.65;
	color: var(--ink);
	margin-bottom: 28px;
}

.gs-article > p:first-of-type,
.single .entry-content > p:first-of-type {
	font-size: 26px;
	line-height: 1.45;
	color: var(--ink);
	margin-bottom: 40px;
	font-weight: 400;
}

.gs-article > p:first-of-type::first-letter,
.single .entry-content > p:first-of-type::first-letter {
	font-family: 'Fraunces', serif;
	font-size: 96px;
	line-height: 0.85;
	font-weight: 500;
	font-style: italic;
	color: var(--burgundy);
	float: left;
	padding: 8px 18px 0 0;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.gs-article h2,
.single .entry-content h2 {
	font-family: 'Fraunces', serif;
	font-size: 40px;
	line-height: 1.15;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 64px 0 24px;
	font-variation-settings: 'opsz' 144;
}

.gs-article h3,
.single .entry-content h3 {
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin: 48px 0 18px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rule);
}

.gs-article a,
.single .entry-content a {
	color: var(--ink);
	text-decoration: none;
	background-image: linear-gradient(transparent calc(100% - 2px), var(--burgundy) 2px);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding-bottom: 1px;
	transition: background-color 0.4s;
}

.gs-article a:hover,
.single .entry-content a:hover {
	background-color: rgba(122, 42, 53, 0.1);
}

.gs-article em,
.single .entry-content em { font-style: italic; }
.gs-article strong,
.single .entry-content strong { font-weight: 600; color: var(--ink); }

.gs-article blockquote,
.single .entry-content blockquote {
	background: var(--paper-warm);
	border-left: 4px solid var(--burgundy);
	padding: 40px 44px;
	margin: 56px 0;
	font-family: 'Fraunces', serif;
	font-size: 26px;
	line-height: 1.35;
	font-style: italic;
	font-weight: 400;
	color: var(--ink);
	font-variation-settings: 'opsz' 144, 'SOFT' 50;
}

.gs-article blockquote p,
.single .entry-content blockquote p {
	font-size: 26px;
	margin: 0;
	font-style: italic;
}

.gs-end-mark {
	text-align: center;
	margin: 56px 0 24px;
	font-family: 'Fraunces', serif;
	font-size: 32px;
	font-style: italic;
	color: var(--burgundy);
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

/* ============ POST FOOTER ============ */

.gs-post-footer {
	max-width: 720px;
	margin: 0 auto;
	padding: 40px 48px 60px;
}

.gs-share-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	padding: 24px 0;
	border-top: 1px solid var(--rule);
	border-bottom: 1px solid var(--rule);
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-muted);
}

.gs-share-row .share-links {
	display: flex;
	gap: 28px;
}

.gs-share-row .share-links a {
	color: var(--ink-soft);
	text-decoration: none;
	transition: color 0.2s;
	position: relative;
	padding-bottom: 4px;
}

.gs-share-row .share-links a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--burgundy);
	transition: width 0.3s;
}

.gs-share-row .share-links a:hover { color: var(--burgundy); }
.gs-share-row .share-links a:hover::after { width: 100%; }

.gs-author-card {
	background: var(--dark-bg);
	color: var(--paper);
	padding: 56px;
	margin-bottom: 56px;
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 36px;
	align-items: start;
	position: relative;
	overflow: hidden;
}

.gs-author-card::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(122, 42, 53, 0.3) 0%, rgba(122, 42, 53, 0) 70%);
	pointer-events: none;
}

.gs-author-avatar {
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Fraunces', serif;
	font-size: 38px;
	font-weight: 500;
	color: var(--paper);
	font-style: italic;
	letter-spacing: -0.02em;
	font-variation-settings: 'opsz' 144;
	position: relative;
	z-index: 2;
}

.gs-author-content {
	position: relative;
	z-index: 2;
}

.gs-author-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin-bottom: 14px;
}

.gs-author-content h4 {
	font-family: 'Fraunces', serif;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--paper);
	margin: 0 0 16px;
	font-variation-settings: 'opsz' 144;
}

.gs-author-content p {
	font-size: 17px;
	line-height: 1.6;
	color: #b8b3aa;
	margin-bottom: 22px;
	max-width: 540px;
}

.gs-author-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-soft);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 1px solid var(--gold-soft);
	transition: all 0.2s;
}

.gs-author-cta:hover {
	color: var(--paper);
	border-bottom-color: var(--paper);
	gap: 14px;
}

.gs-subscribe-strip {
	background: var(--paper-warm);
	border: 1px solid var(--rule);
	padding: 48px;
	margin-bottom: 60px;
	position: relative;
}

.gs-subscribe-strip::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--burgundy);
}

.gs-subscribe-strip-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 16px;
}

.gs-subscribe-strip h4 {
	font-family: 'Fraunces', serif;
	font-size: 32px;
	line-height: 1.1;
	font-weight: 500;
	color: var(--ink);
	margin: 0 0 16px;
	letter-spacing: -0.02em;
	font-variation-settings: 'opsz' 144;
}

.gs-subscribe-strip h4 .em {
	font-style: italic;
	color: var(--burgundy);
	font-weight: 400;
}

.gs-subscribe-strip p {
	font-size: 17px;
	color: var(--ink-soft);
	margin-bottom: 28px;
	max-width: 520px;
}

.gs-subscribe-form-inline {
	display: flex;
	gap: 10px;
	max-width: 460px;
}

.gs-subscribe-form-inline input {
	flex: 1;
	font-family: 'Inter Tight', sans-serif;
	font-size: 15px;
	padding: 16px 18px;
	border: 1px solid var(--rule);
	background: var(--paper);
	color: var(--ink);
	outline: none;
	transition: border-color 0.2s;
}

.gs-subscribe-form-inline input:focus {
	border-color: var(--burgundy);
}

.gs-subscribe-form-inline button {
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 16px 28px;
	background: var(--ink);
	color: var(--paper);
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.gs-subscribe-form-inline button:hover {
	background: var(--burgundy);
}

.gs-related-header {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin: 0 0 40px;
	text-align: center;
	display: flex;
	align-items: center;
	gap: 20px;
}

.gs-related-header::before,
.gs-related-header::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--rule);
}

.gs-related-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
}

.gs-related-item {
	padding: 32px;
	border: 1px solid var(--rule);
	background: var(--paper);
	transition: all 0.3s ease;
	position: relative;
}

.gs-related-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: var(--burgundy);
	transition: width 0.3s ease;
}

.gs-related-item:hover {
	background: var(--paper-warm);
	transform: translateY(-2px);
}

.gs-related-item:hover::before {
	width: 100%;
}

.gs-related-item .gs-track-tag {
	margin-bottom: 16px;
}

.gs-related-item h5 {
	font-family: 'Fraunces', serif;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 500;
	margin: 0 0 14px;
	letter-spacing: -0.015em;
	font-variation-settings: 'opsz' 144;
}

.gs-related-item h5 a {
	color: var(--ink);
	text-decoration: none;
	transition: color 0.2s;
}

.gs-related-item:hover h5 a {
	color: var(--burgundy);
}

.gs-related-item .related-date {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: var(--ink-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* ============ FOOTER ============ */

.site-footer,
.gs-footer {
	background: var(--dark-bg);
	color: var(--paper);
	padding: 80px 0 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-footer-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-footer-top {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 64px;
	margin-bottom: 64px;
}

.gs-footer-brand-block {
	max-width: 360px;
}

.gs-footer-brand {
	font-family: 'Fraunces', serif;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
	display: flex;
	align-items: baseline;
}

.gs-footer-brand .first { font-style: italic; font-weight: 400; color: var(--burgundy-soft); }
.gs-footer-brand .last { font-weight: 600; }
.gs-footer-brand .dot {
	width: 6px;
	height: 6px;
	background: var(--burgundy-soft);
	border-radius: 50%;
	display: inline-block;
	margin: 0 10px 5px 10px;
	align-self: center;
}

.gs-footer-tag {
	font-family: 'Newsreader', serif;
	font-style: italic;
	font-size: 16px;
	line-height: 1.5;
	color: #888279;
}

.gs-footer-col h4 {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-soft);
	margin: 0 0 20px;
}

.gs-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gs-footer-col li {
	margin-bottom: 12px;
}

.gs-footer-col a {
	font-family: 'Newsreader', serif;
	font-size: 16px;
	color: #b8b3aa;
	text-decoration: none;
	transition: color 0.2s;
}

.gs-footer-col a:hover { color: var(--paper); }

.gs-footer-bottom {
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	color: #6a635a;
	letter-spacing: 0.02em;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
	.inside-header { padding: 0 24px; }
	.main-navigation .main-nav ul { gap: 20px; }
	.gs-hero { padding: 60px 0 80px; }
	.gs-hero-inner { padding: 0 24px; }
	.gs-hero-meta-row { grid-template-columns: 1fr; gap: 48px; margin-top: 56px; }
	.gs-section-intro { grid-template-columns: 1fr; gap: 24px; padding: 80px 24px 32px; }
	.gs-section-num { font-size: 72px; }
	.gs-filter-bar { padding: 24px; gap: 6px; }
	.gs-filter-bar a { padding: 6px 14px; font-size: 12px; }
	.gs-posts { padding: 0 24px; }
	.gs-post-item { grid-template-columns: 60px 1fr; gap: 20px; padding: 32px 16px; margin: 0 -16px; }
	.gs-post-num { font-size: 36px; }
	.gs-post-title { font-size: 24px; }
	.gs-post-track { grid-column: 2; text-align: left; padding-top: 12px; }
	.gs-manifesto { padding: 80px 0 100px; margin-top: 80px; }
	.gs-manifesto-inner { padding: 0 24px; }
	.gs-manifesto-mark { font-size: 140px; margin-bottom: -30px; }
	.gs-about-strip { padding: 80px 0; }
	.gs-about-inner { grid-template-columns: 1fr; gap: 60px; padding: 0 24px; }
	.gs-about-cv-block { padding-left: 40px; }
	.gs-about-cv-block::before { left: 0; }
	.gs-cv-item::before { left: -45px; }
	.gs-subscribe-big { padding: 80px 0; }
	.gs-subscribe-big-inner { padding: 0 24px; }
	.gs-subscribe-form { flex-direction: column; }
	.gs-footer-inner { padding: 0 24px; }
	.gs-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; }
	.gs-footer-brand-block { grid-column: 1 / -1; }
	.gs-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 760px) {
	.single .gs-post-header { padding: 48px 0 40px; }
	.gs-post-header-inner { padding: 0 24px; }
	.gs-post-essay-num { font-size: 64px; flex-direction: column; gap: 8px; align-items: flex-start; }
	.gs-post-dek { font-size: 20px; }
	.single .entry-content,
	.gs-article { padding: 24px 24px 60px; }
	.gs-article p,
	.single .entry-content p { font-size: 19px; }
	.gs-article > p:first-of-type,
	.single .entry-content > p:first-of-type { font-size: 21px; }
	.gs-article > p:first-of-type::first-letter,
	.single .entry-content > p:first-of-type::first-letter { font-size: 72px; }
	.gs-article h2,
	.single .entry-content h2 { font-size: 28px; }
	.gs-article blockquote,
	.single .entry-content blockquote { padding: 32px 24px; }
	.gs-post-footer { padding: 32px 24px 60px; }
	.gs-author-card { padding: 36px 24px; grid-template-columns: 1fr; gap: 20px; }
	.gs-author-content h4 { font-size: 24px; }
	.gs-subscribe-strip { padding: 32px 24px; }
	.gs-subscribe-strip h4 { font-size: 24px; }
	.gs-subscribe-form-inline { flex-direction: column; }
	.gs-related-grid { grid-template-columns: 1fr; gap: 20px; }
	.gs-share-row { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* Emergency layout fix */
body { overflow-x: hidden !important; }
.gs-marquee { max-width: 100vw; overflow: hidden; }
.gs-marquee-inner { max-width: none; }
.gs-hero, .gs-section-intro, .gs-filter-bar, .gs-posts, .gs-manifesto, .gs-about-strip, .gs-subscribe-big, .site-footer { 
  width: 100%; 
  max-width: 100vw;
  clear: both;
  display: block;
}

/* === EMERGENCY OVERFLOW FIX === */
html, body {
	overflow-x: hidden !important;
	max-width: 100vw !important;
	width: 100% !important;
}

.gs-marquee {
	width: 100% !important;
	max-width: 100vw !important;
	box-sizing: border-box !important;
}

.gs-marquee-inner {
	width: max-content !important;
}

.gs-hero,
.gs-section-intro,
.gs-filter-bar,
.gs-posts,
.gs-manifesto,
.gs-about-strip,
.gs-subscribe-big,
.site-footer,
.gs-footer {
	width: 100% !important;
	max-width: 100vw !important;
	box-sizing: border-box !important;
	clear: both !important;
	float: none !important;
}

* {
	box-sizing: border-box;
}

/* ============ CRITICAL LAYOUT OVERRIDE ============ */
/* Force GeneratePress's content wrapper to behave as a single column block. */
/* The parent theme tries column/flex layouts that break our full-width sections. */

.site-content,
#content,
#primary,
#main {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	column-count: auto !important;
	flex: none !important;
	grid-template-columns: none !important;
}

.site-content .content-area,
.site-content #primary,
.inside-content,
.grid-container,
.site-main {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	column-count: auto !important;
}

/* Kill any GP grid system that's affecting our sections */
.gs-hero,
.gs-marquee,
.gs-section-intro,
.gs-filter-bar,
.gs-posts,
.gs-manifesto,
.gs-about-strip,
.gs-subscribe-big {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	clear: both !important;
	column-count: 1 !important;
	column-span: all !important;
}

/* Re-enforce internal grid where our design needs it */
.gs-hero-meta-row { display: grid !important; grid-template-columns: 1.4fr 1fr !important; }
.gs-section-intro { display: grid !important; grid-template-columns: 1fr 2fr !important; }
.gs-about-inner { display: grid !important; grid-template-columns: 1.4fr 1fr !important; }
.gs-footer-top { display: grid !important; grid-template-columns: 1.5fr 1fr 1fr 1fr !important; }
.gs-marquee-inner { display: flex !important; }
.gs-hero-stats { display: grid !important; grid-template-columns: 1fr 1fr !important; }

@media (max-width: 960px) {
	.gs-hero-meta-row,
	.gs-section-intro,
	.gs-about-inner { grid-template-columns: 1fr !important; }
}

/* Remove marquee entirely */
.gs-marquee { display: none !important; }
/* ============================================
   Bio page specific styles
   Loaded only on the bio page (template: page-bio.php)
   ============================================ */

/* Bio hero - narrower than homepage hero */
.gs-bio-hero {
	padding: 80px 0 100px;
}

.gs-bio-hero h1 {
	font-size: clamp(44px, 6.5vw, 88px) !important;
	max-width: 950px;
}

/* Shared eyebrow */
.gs-bio-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 32px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.gs-bio-eyebrow::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--rule);
	max-width: 120px;
}

.gs-bio-eyebrow-light {
	color: var(--gold-soft);
}

.gs-bio-eyebrow-light::after {
	background: rgba(255, 255, 255, 0.15);
}

/* Shared section title */
.gs-bio-section-title {
	font-family: 'Fraunces', serif !important;
	font-size: clamp(36px, 5vw, 56px) !important;
	line-height: 1.05 !important;
	font-weight: 500 !important;
	letter-spacing: -0.025em !important;
	margin: 0 0 24px !important;
	color: var(--ink);
	font-variation-settings: 'opsz' 144;
}

.gs-bio-section-title .em {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
}

.gs-bio-section-title-light {
	color: var(--paper) !important;
}

.gs-bio-section-title-light .em {
	color: var(--burgundy-soft);
}

.gs-bio-deck {
	font-family: 'Newsreader', serif;
	font-size: 19px;
	line-height: 1.55;
	color: var(--ink-muted);
	max-width: 720px;
	margin: 0 0 60px;
}

.gs-bio-deck-light {
	color: #b8b3aa;
}

/* ============ THE OPERATOR ARC ============ */
.gs-bio-arc {
	padding: 120px 0;
	background: var(--paper);
	position: relative;
}

.gs-bio-arc::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--rule);
}

.gs-bio-arc-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-bio-arc-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 100px;
	align-items: start;
}

.gs-bio-arc-left h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin: 0;
	font-variation-settings: 'opsz' 144;
}

.gs-bio-arc-left h2 .em {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
}

.gs-bio-arc-right p {
	font-size: 19px;
	line-height: 1.65;
	color: var(--ink-soft);
	margin: 0 0 24px;
}

.gs-bio-arc-right p:last-child {
	margin-bottom: 0;
}

.gs-bio-arc-right strong {
	color: var(--ink);
	font-weight: 600;
}

/* ============ FOUR TRACKS ============ */
.gs-bio-tracks {
	padding: 120px 0;
	background: var(--paper-warm);
	position: relative;
}

.gs-bio-tracks-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-tracks-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.gs-track-card {
	background: var(--paper);
	border: 1px solid var(--rule);
	padding: 40px 36px;
	position: relative;
	transition: all 0.3s ease;
}

.gs-track-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: var(--burgundy);
	transition: height 0.3s ease;
}

.gs-track-card:hover {
	transform: translateY(-4px);
}

.gs-track-card:hover::before {
	height: 100%;
}

.gs-track-num {
	font-family: 'Fraunces', serif;
	font-size: 56px;
	line-height: 1;
	font-weight: 400;
	font-style: italic;
	color: var(--burgundy);
	letter-spacing: -0.04em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
	margin-bottom: 16px;
	opacity: 0.7;
}

.gs-track-card h3 {
	font-family: 'Fraunces', serif;
	font-size: 26px;
	line-height: 1.15;
	font-weight: 500;
	letter-spacing: -0.015em;
	color: var(--ink);
	margin: 0 0 16px;
	font-variation-settings: 'opsz' 144;
}

.gs-track-card p {
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink-soft);
	margin: 0;
}

/* ============ AUDIENCE (DARK) ============ */
.gs-bio-audience {
	padding: 120px 0;
	background: var(--dark-bg);
	color: var(--paper);
	position: relative;
	overflow: hidden;
}

.gs-bio-audience::before {
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(122, 42, 53, 0.3) 0%, rgba(122, 42, 53, 0) 70%);
	pointer-events: none;
}

.gs-bio-audience::after {
	content: '';
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(193, 154, 58, 0.15) 0%, rgba(193, 154, 58, 0) 70%);
	pointer-events: none;
}

.gs-bio-audience-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
	position: relative;
	z-index: 2;
}

.gs-audience-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	margin-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gs-audience-item {
	display: grid;
	grid-template-columns: 100px 1fr 2fr;
	gap: 48px;
	padding: 48px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	align-items: start;
	transition: padding 0.3s ease;
}

.gs-audience-item:hover {
	padding-left: 16px;
}

.gs-audience-num {
	font-family: 'Fraunces', serif;
	font-size: 56px;
	line-height: 1;
	font-weight: 400;
	font-style: italic;
	color: var(--burgundy-soft);
	letter-spacing: -0.04em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.gs-audience-item h3 {
	font-family: 'Fraunces', serif;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.015em;
	color: var(--paper);
	margin: 0;
	font-variation-settings: 'opsz' 144;
}

.gs-audience-item p {
	font-size: 17px;
	line-height: 1.6;
	color: #b8b3aa;
	margin: 0;
}

/* ============ TIMELINE - reuses .gs-about-strip from main CSS ============ */
.gs-bio-timeline {
	padding: 120px 0 !important;
}

.gs-bio-timeline::before {
	display: none;
}

/* ============ CURRENT WORK ============ */
.gs-bio-current {
	padding: 120px 0;
	background: var(--paper);
}

.gs-bio-current-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-bio-current-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 100px;
	align-items: start;
	margin-top: 40px;
}

.gs-bio-current-grid h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.1;
	font-weight: 500;
	letter-spacing: -0.025em;
	color: var(--ink);
	margin: 0;
	font-variation-settings: 'opsz' 144;
}

.gs-bio-current-grid h2 .em {
	font-style: italic;
	font-weight: 400;
	color: var(--burgundy);
}

.gs-bio-current-grid p {
	font-size: 19px;
	line-height: 1.65;
	color: var(--ink-soft);
	margin: 0 0 24px;
}

.gs-bio-current-grid p:last-child {
	margin-bottom: 0;
}

.gs-bio-current-grid strong {
	color: var(--ink);
	font-weight: 600;
}

/* ============ CONTACT ============ */
.gs-bio-contact {
	padding: 120px 0;
	background: var(--paper-warm);
	border-top: 1px solid var(--rule);
}

.gs-bio-contact-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 40px;
}

.gs-contact-item {
	background: var(--paper);
	border: 1px solid var(--rule);
	padding: 40px 32px;
	transition: all 0.3s ease;
}

.gs-contact-item:hover {
	transform: translateY(-4px);
	background: var(--accent-bg);
}

.gs-contact-label {
	font-family: 'Inter Tight', sans-serif;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 18px;
}

.gs-contact-item h3 {
	font-family: 'Fraunces', serif;
	font-size: 32px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 18px;
	font-variation-settings: 'opsz' 144;
}

.gs-contact-item p {
	font-size: 16px;
	line-height: 1.55;
	color: var(--ink-soft);
	margin: 0 0 24px;
}

.gs-contact-cta {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--burgundy);
	text-decoration: none;
	border-bottom: 1px solid var(--burgundy);
	padding-bottom: 4px;
	transition: all 0.2s;
	display: inline-block;
}

.gs-contact-cta:hover {
	color: var(--burgundy-deep);
	border-bottom-color: var(--burgundy-deep);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
	.gs-bio-arc,
	.gs-bio-tracks,
	.gs-bio-audience,
	.gs-bio-timeline,
	.gs-bio-current,
	.gs-bio-contact {
		padding: 80px 0;
	}

	.gs-bio-arc-inner,
	.gs-bio-tracks-inner,
	.gs-bio-audience-inner,
	.gs-bio-current-inner,
	.gs-bio-contact-inner {
		padding: 0 24px;
	}

	.gs-bio-arc-grid,
	.gs-bio-current-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.gs-tracks-grid,
	.gs-contact-grid {
		grid-template-columns: 1fr;
	}

	.gs-audience-item {
		grid-template-columns: 60px 1fr;
		gap: 20px;
		padding: 32px 0;
	}

	.gs-audience-num {
		font-size: 36px;
	}

	.gs-audience-item h3 {
		grid-column: 2;
	}

	.gs-audience-item p {
		grid-column: 1 / -1;
		margin-top: 12px;
	}

	.gs-bio-deck {
		margin-bottom: 40px;
	}
}


/* ============ Expanded hero stats (5 metrics) ============ */

.gs-hero-stats-expanded {
	display: grid !important;
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 24px !important;
	padding-top: 32px;
	border-top: 1px solid var(--rule);
	margin-top: 8px;
}

.gs-hero-stats-expanded .gs-stat-num {
	font-size: 56px;
	line-height: 1;
}

.gs-hero-stats-expanded .gs-stat-label {
	font-size: 11px;
	line-height: 1.35;
	display: block;
	margin-top: 6px;
}

/* Bio page: track record block sits below the lede, full width */
.gs-track-record {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid var(--rule);
}

.gs-track-record-item .gs-stat-num {
	font-family: 'Fraunces', serif;
	font-size: 72px;
	line-height: 1;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--ink);
	display: block;
	margin-bottom: 12px;
	font-variation-settings: 'opsz' 144;
}

.gs-track-record-item .gs-stat-num .em {
	font-style: italic;
	color: var(--burgundy);
	font-weight: 400;
	font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

.gs-track-record-item .gs-stat-label {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-muted);
	line-height: 1.4;
	display: block;
}

/* Override the bio hero meta row to single column since stats live in their own block */
.gs-hero-meta-row-bio {
	grid-template-columns: 1fr !important;
}

@media (max-width: 960px) {
	.gs-hero-stats-expanded {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 24px !important;
	}
	.gs-hero-stats-expanded > div:nth-child(5) {
		grid-column: 1 / -1;
	}
	.gs-hero-stats-expanded .gs-stat-num {
		font-size: 44px;
	}
	.gs-track-record {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
		margin-top: 40px;
	}
	.gs-track-record-item:nth-child(5) {
		grid-column: 1 / -1;
	}
	.gs-track-record-item .gs-stat-num {
		font-size: 52px;
	}
}

/* === Fix: homepage hero stats - break out to full width below lede === */

/* Force the homepage meta row to single column so stats can go full width */
.gs-hero .gs-hero-meta-row {
	grid-template-columns: 1fr !important;
	gap: 0 !important;
}

/* Lede paragraph keeps its constrained width */
.gs-hero .gs-hero-meta-row .gs-hero-lede {
	max-width: 720px;
	margin-bottom: 64px;
}

/* Stats grid: full width, 5 equal columns, generous breathing room */
.gs-hero-stats-expanded {
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 40px !important;
	padding-top: 48px !important;
	margin-top: 0 !important;
	border-top: 1px solid var(--rule);
	width: 100%;
}

/* Bigger, more confident stat numbers */
.gs-hero-stats-expanded .gs-stat-num {
	font-size: 72px !important;
	font-family: 'Fraunces', serif !important;
	font-weight: 500;
	letter-spacing: -0.03em;
	line-height: 1;
	color: var(--ink);
	display: block;
	margin-bottom: 16px;
	font-variation-settings: 'opsz' 144;
}

.gs-hero-stats-expanded .gs-stat-num .em {
	font-style: italic;
	color: var(--burgundy);
	font-weight: 400;
	font-variation-settings: 'opsz' 144, 'SOFT' 80, 'WONK' 1;
}

.gs-hero-stats-expanded .gs-stat-label {
	font-size: 12px !important;
	font-family: 'Inter Tight', sans-serif;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink-muted);
	line-height: 1.4;
	display: block;
}

@media (max-width: 960px) {
	.gs-hero-stats-expanded {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 28px !important;
	}
	.gs-hero-stats-expanded > div:nth-child(5) {
		grid-column: 1 / -1;
	}
	.gs-hero-stats-expanded .gs-stat-num {
		font-size: 52px !important;
	}
}
/* ============================================
   Gary Simat - Operator's Notebook
   Refinement layer: motion, photography, polish
   Appended to design.css
   ============================================ */

/* ============ MOTION SYSTEM ============ */
/* All reveal classes start hidden, fade up when .gs-in-view is added by JS. */

.gs-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.gs-reveal.gs-in-view {
	opacity: 1;
	transform: translateY(0);
}

/* For users with reduced motion preference, JS adds this class to <html>;
   any opacity:0 reveals are inlined by JS to opacity:1 to prevent invisible content. */
.gs-no-motion .gs-reveal,
.gs-no-motion .gs-reveal-stagger > * {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

/* Improve perceived smoothness - apply to body once on load. */
html {
	scroll-padding-top: 90px;
}

/* ============ NAV SCROLL STATE ============ */

.site-header {
	transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.gs-nav-scrolled {
	padding: 14px 0 !important;
	box-shadow: 0 2px 24px rgba(20, 17, 13, 0.06);
}

/* ============ PHOTOGRAPHY - HEADSHOT SLOT ============ */

.gs-author-photo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	position: relative;
	z-index: 2;
}

/* When photo is present, keep the same dark card frame around it via a wrapper */

/* ============ HOVER REFINEMENT ============ */
/* Slightly more sophisticated hover transitions on key surfaces. */

.gs-post-item {
	transition:
		background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-track-card,
.gs-contact-item,
.gs-related-item {
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-track-card:hover,
.gs-contact-item:hover,
.gs-related-item:hover {
	box-shadow: 0 12px 40px rgba(20, 17, 13, 0.08);
}

/* ============ BIO HERO - OPTIONAL BACKGROUND IMAGE ============ */

.gs-bio-hero-with-image {
	position: relative;
	overflow: hidden;
}

.gs-bio-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.18;
	z-index: 0;
	filter: grayscale(0.4);
	mix-blend-mode: multiply;
}

.gs-bio-hero-with-image .gs-hero-inner {
	position: relative;
	z-index: 2;
}

/* ============ FOCUS STATES - accessibility refinement ============ */

a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 2px solid var(--burgundy);
	outline-offset: 3px;
}



/* ============ BIO HERO PORTRAIT LAYOUT ============ */

.gs-bio-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 80px;
	align-items: center;
}

.gs-bio-hero-with-portrait .gs-bio-hero-grid {
	grid-template-columns: 1.6fr 1fr;
}

.gs-bio-hero-content {
	max-width: 720px;
}

.gs-bio-hero-portrait {
	position: relative;
}

.gs-bio-hero-portrait-frame {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--paper-warm);
	border: 1px solid var(--rule);
	box-shadow: 0 24px 60px rgba(20, 17, 13, 0.12);
}

.gs-bio-hero-portrait-frame::before {
	content: '';
	position: absolute;
	top: -8px;
	left: -8px;
	width: 60px;
	height: 60px;
	border-top: 3px solid var(--burgundy);
	border-left: 3px solid var(--burgundy);
	z-index: 2;
}

.gs-bio-hero-portrait-frame::after {
	content: '';
	position: absolute;
	bottom: -8px;
	right: -8px;
	width: 60px;
	height: 60px;
	border-bottom: 3px solid var(--burgundy);
	border-right: 3px solid var(--burgundy);
	z-index: 2;
}

.gs-bio-hero-portrait-frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: grayscale(0.15);
}

.gs-bio-hero-portrait-caption {
	margin-top: 20px;
	padding-left: 16px;
	border-left: 2px solid var(--burgundy);
}

.gs-bio-hero-portrait-caption .caption-label {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	font-weight: 500;
	color: var(--ink);
	display: block;
	letter-spacing: -0.015em;
	font-variation-settings: 'opsz' 144;
	margin-bottom: 4px;
}

.gs-bio-hero-portrait-caption .caption-detail {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-muted);
	display: block;
}

@media (max-width: 960px) {
	.gs-bio-hero-with-portrait .gs-bio-hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.gs-bio-hero-portrait-frame {
		max-width: 280px;
		margin: 0 auto;
	}
	.gs-bio-hero-portrait-caption {
		text-align: center;
		border-left: none;
		border-top: 2px solid var(--burgundy);
		padding-left: 0;
		padding-top: 16px;
		margin-top: 16px;
	}
}

/* === Nav menu color fix - override default link blue === */
.main-navigation a,
.main-navigation .menu a,
.main-navigation li a,
#site-navigation a,
#site-navigation li a,
header .menu a,
header nav a {
	color: var(--ink-soft) !important;
	text-decoration: none !important;
	font-family: 'Inter Tight', sans-serif !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em !important;
	text-transform: none !important;
}

.main-navigation a:hover,
.main-navigation li a:hover,
#site-navigation a:hover,
header nav a:hover {
	color: var(--burgundy) !important;
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--burgundy) !important;
}

/* CTA-styled item (Subscribe with nav-cta class) */
.main-navigation li.nav-cta > a,
#site-navigation li.nav-cta > a {
	color: var(--paper) !important;
	background: var(--ink) !important;
	padding: 10px 18px !important;
	font-weight: 600 !important;
	text-transform: uppercase !important;
}

.main-navigation li.nav-cta > a:hover {
	background: var(--burgundy) !important;
}

/* Layout for the menu list itself */
.main-navigation .menu,
.main-navigation ul,
#site-navigation ul {
	display: flex !important;
	gap: 32px !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
	align-items: center !important;
}

.main-navigation li,
#site-navigation li {
	margin: 0 !important;
	padding: 0 !important;
}

/* ============================================================================
   OPTION C - Editorial Bolder palette
   Applied $(date)
   Pure white background, deep teal accent, no warm cream, no grain
   ============================================================================ */

:root {
	/* === Palette overrides - Option C === */
	--paper: #FFFFFF;
	--paper-warm: #F5F2EB;
	--paper-deep: #EDE8DA;
	--ink: #0A0A0A;
	--ink-soft: #2A2A2A;
	--ink-muted: #6A6A6A;
	--ink-faint: #9A9A9A;
	--rule: #D8D2C5;
	--rule-soft: #E5E1D5;

	/* Accent system - deep teal replaces burgundy */
	--burgundy: #0F4F4A;
	--burgundy-deep: #093834;
	--burgundy-bright: #1A6B65;
	--burgundy-soft: #7AB5B0;

	/* Secondary accents */
	--navy: #1A2B3D;
	--gold: #C8A04A;
	--gold-soft: #D4B566;

	/* Dark mode + utility */
	--dark-bg: #0A1F1D;
	--accent-bg: #E8F0EF;
}

/* === STRIP THE FUZZY/CLOUDY BACK === */
/* Kill the grain texture overlay */
body::before {
	display: none !important;
	content: none !important;
}

/* Kill atmospheric radial gradients in hero */
.gs-hero::before,
.gs-hero::after {
	display: none !important;
	background: none !important;
}

/* Kill atmospheric gradients in manifesto */
.gs-manifesto::before,
.gs-manifesto::after {
	display: none !important;
	background: none !important;
}

/* Kill atmospheric gradients in subscribe block */
.gs-subscribe-big::before {
	display: none !important;
	background: none !important;
}

/* Kill atmospheric gradients in single-post header */
.single .gs-post-header::before {
	display: none !important;
	background: none !important;
}

/* Kill bio page gradients */
.gs-bio-audience::before,
.gs-bio-audience::after {
	display: none !important;
	background: none !important;
}

/* Kill author card gradient */
.gs-author-card::before {
	display: none !important;
	background: none !important;
}

/* === REFINE the dark sections - flat solid color, no atmospheric haze === */
.gs-manifesto,
.gs-subscribe-big,
.gs-bio-audience,
.gs-author-card,
.site-footer,
.gs-footer {
	background: var(--dark-bg) !important;
}

/* === HARDEN the hero - pure white, single subtle bottom rule === */
.gs-hero,
.gs-bio-hero {
	background: var(--paper) !important;
	border-bottom: 1px solid var(--rule);
}

.gs-bio-arc,
.gs-bio-current {
	background: var(--paper) !important;
}

.gs-bio-tracks,
.gs-bio-contact,
.gs-about-strip {
	background: var(--paper-warm) !important;
}

/* === Track tag colors recalibrate for teal palette === */
.gs-track-tag.domain { color: var(--burgundy); border-color: rgba(15, 79, 74, 0.3); }
.gs-track-tag.leadership { color: var(--navy); border-color: rgba(26, 43, 61, 0.3); }
.gs-track-tag.operator { color: #6a4218; border-color: rgba(106, 66, 24, 0.3); }
.gs-track-tag.founders { color: #3d5a32; border-color: rgba(61, 90, 50, 0.3); }
.gs-track-tag.reactive { color: var(--navy); border-color: rgba(26, 43, 61, 0.3); }

/* === Cleaner section transitions === */
.gs-section-intro {
	background: var(--paper);
}

.gs-filter-bar {
	background: var(--paper-warm);
}

.gs-posts {
	background: var(--paper);
}

/* === Tighten the brand mark dot to match new palette === */
.gs-brand .first {
	color: var(--burgundy);
}

.gs-brand .dot {
	background: var(--burgundy);
}

/* === Subscribe block - flat dark, accent stays teal === */
.gs-subscribe-form button {
	background: var(--burgundy) !important;
	border-color: var(--burgundy) !important;
}

.gs-subscribe-form button:hover {
	background: var(--burgundy-bright) !important;
	border-color: var(--burgundy-bright) !important;
}

.gs-subscribe-form input:focus {
	border-color: var(--burgundy-bright) !important;
}

/* === Manifesto burgundy italic shifts to teal === */
.gs-manifesto p .em {
	color: var(--burgundy-soft) !important;
}

.gs-manifesto-mark {
	color: var(--burgundy-bright) !important;
}

/* === Bio portrait corner accents shift to teal === */
.gs-bio-hero-portrait-frame::before,
.gs-bio-hero-portrait-frame::after {
	border-color: var(--burgundy) !important;
}

.gs-bio-hero-portrait-caption {
	border-left-color: var(--burgundy) !important;
}

/* === Hero tag (badge) keeps tinted background but in teal === */
.gs-hero-tag {
	background: rgba(15, 79, 74, 0.06) !important;
}


/* ============================================
   "What this is" orientation block
   Sits between marquee and Recent Writing
   ============================================ */

.gs-what-this-is {
	background: var(--paper);
	border-bottom: 1px solid var(--rule);
	padding: 80px 0;
}

.gs-what-this-is-inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-what-this-is-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.gs-what-this-is-eyebrow::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--rule);
	max-width: 100px;
}

.gs-what-this-is-prose {
	font-family: 'Fraunces', serif;
	font-size: clamp(22px, 2.6vw, 30px);
	line-height: 1.4;
	font-weight: 400;
	letter-spacing: -0.015em;
	color: var(--ink);
	margin: 0;
	font-variation-settings: 'opsz' 144;
}

.gs-what-this-is-prose em {
	font-style: italic;
	color: var(--burgundy);
	font-weight: 400;
}

@media (max-width: 760px) {
	.gs-what-this-is { padding: 56px 0; }
	.gs-what-this-is-inner { padding: 0 24px; }
}


/* ============================================
   SPEAKING PAGE
   ============================================ */

.gs-speaking-hero h1 {
	max-width: 1100px;
}

/* TOPICS */
.gs-speaking-topics {
	background: var(--paper);
	padding: 100px 0 120px;
	border-bottom: 1px solid var(--rule);
}

.gs-speaking-topics-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-topic-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px 80px;
	margin-top: 64px;
}

.gs-topic-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 32px;
	align-items: start;
}

.gs-topic-num {
	font-family: 'Fraunces', serif;
	font-size: 52px;
	line-height: 1;
	font-weight: 400;
	font-style: italic;
	color: var(--burgundy);
	letter-spacing: -0.03em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.gs-topic-item h3 {
	font-family: 'Fraunces', serif;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 14px;
	font-variation-settings: 'opsz' 144;
}

.gs-topic-item p {
	font-family: 'Newsreader', serif;
	font-size: 17px;
	line-height: 1.55;
	color: var(--ink-soft);
	margin: 0;
}

@media (max-width: 900px) {
	.gs-topic-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.gs-topic-item {
		grid-template-columns: 60px 1fr;
		gap: 24px;
	}
	.gs-topic-num {
		font-size: 42px;
	}
}

/* PAST ENGAGEMENTS - dark section */
.gs-speaking-past {
	background: var(--dark-bg);
	padding: 100px 0 120px;
	color: var(--paper);
}

.gs-speaking-past-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-engagements {
	margin-top: 64px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gs-engagement-item {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 48px;
	padding: 36px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	align-items: center;
}

.gs-engagement-year {
	font-family: 'Fraunces', serif;
	font-size: 44px;
	line-height: 1;
	font-weight: 400;
	font-style: italic;
	color: var(--burgundy-soft);
	letter-spacing: -0.03em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
}

.gs-engagement-title {
	font-family: 'Fraunces', serif;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--paper);
	margin: 0 0 8px;
	font-variation-settings: 'opsz' 144;
}

.gs-engagement-role {
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--burgundy-soft);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

@media (max-width: 760px) {
	.gs-engagement-item {
		grid-template-columns: 80px 1fr;
		gap: 24px;
		padding: 28px 0;
	}
	.gs-engagement-year {
		font-size: 32px;
	}
	.gs-engagement-title {
		font-size: 22px;
	}
}

/* INQUIRY */
.gs-speaking-inquiry {
	background: var(--paper);
	padding: 120px 0 140px;
}

.gs-speaking-inquiry-inner {
	max-width: 880px;
	margin: 0 auto;
	padding: 0 48px;
}

.gs-inquiry-eyebrow {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--burgundy);
	margin-bottom: 28px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.gs-inquiry-eyebrow::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--rule);
	max-width: 100px;
}

.gs-speaking-inquiry h2 {
	font-family: 'Fraunces', serif;
	font-size: clamp(36px, 4.5vw, 56px);
	line-height: 1.05;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: var(--ink);
	margin: 0 0 32px;
	font-variation-settings: 'opsz' 144;
}

.gs-inquiry-prose {
	font-family: 'Newsreader', serif;
	font-size: 20px;
	line-height: 1.55;
	color: var(--ink-soft);
	margin: 0 0 40px;
}

.gs-inquiry-prose a {
	color: var(--burgundy);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.gs-inquiry-prose a:hover {
	color: var(--burgundy-deep);
}

.gs-inquiry-cta {
	display: inline-block;
	background: var(--ink);
	color: var(--paper);
	padding: 18px 32px;
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease;
}

.gs-inquiry-cta:hover {
	background: var(--burgundy);
	color: var(--paper);
}

@media (max-width: 760px) {
	.gs-speaking-inquiry { padding: 80px 0 100px; }
	.gs-speaking-inquiry-inner { padding: 0 24px; }
}

/* ============================================
   SPEAKING - Dual-list past engagements
   Two columns: Conferences & Panels | Podcasts
   ============================================ */

.gs-engagements-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	margin-top: 64px;
}

.gs-engagements-col-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.18);
	padding-bottom: 16px;
	margin-bottom: 8px;
}

.gs-engagements-col-label {
	font-family: 'Inter Tight', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--burgundy-soft);
}

.gs-engagements-list .gs-engagement-item {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding: 32px 0;
	display: grid;
	grid-template-columns: 90px 1fr;
	gap: 32px;
	align-items: center;
}

.gs-engagements-list .gs-engagement-item:last-child {
	border-bottom: none;
}

/* Placeholder treatment - editorial, not empty */
.gs-engagement-placeholder {
	grid-template-columns: 1fr !important;
	padding: 40px 0 !important;
}

.gs-engagement-placeholder-prose {
	font-family: 'Newsreader', serif;
	font-style: italic;
	font-size: 17px;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
	max-width: 420px;
}

@media (max-width: 900px) {
	.gs-engagements-grid {
		grid-template-columns: 1fr;
		gap: 56px;
	}
	.gs-engagements-list .gs-engagement-item {
		grid-template-columns: 70px 1fr;
		gap: 20px;
		padding: 24px 0;
	}
}

/* Override the older single-list .gs-engagements selector
   so legacy CSS doesn't conflict with the new grid */
.gs-engagements {
	margin-top: 0 !important;
	border-top: none !important;
}

/* ============================================
   FIX: speaking topic grid stacked layout
   Overrides the broken 80px | 1fr inner grid
   ============================================ */

.gs-topic-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr) !important;
	gap: 80px !important;
	margin-top: 64px !important;
}

/* Reset topic-item to a clean block - no inner grid */
.gs-topic-item {
	display: block !important;
	grid-template-columns: none !important;
	gap: 0 !important;
}

/* Number now sits inline above the title, not as a side column */
.gs-topic-num {
	display: block;
	font-family: 'Fraunces', serif;
	font-size: 42px;
	line-height: 1;
	font-weight: 400;
	font-style: italic;
	color: var(--burgundy);
	letter-spacing: -0.03em;
	font-variation-settings: 'opsz' 144, 'SOFT' 100;
	margin-bottom: 16px;
}

/* Title now full-width below the number */
.gs-topic-item h3 {
	font-family: 'Fraunces', serif;
	font-size: 26px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: var(--ink);
	margin: 0 0 14px 0;
	font-variation-settings: 'opsz' 144;
	max-width: none;
}

/* Description now full-width below title - this is the key fix */
.gs-topic-item p {
	font-family: 'Newsreader', serif;
	font-size: 17px;
	line-height: 1.55;
	color: var(--ink-soft);
	margin: 0;
	max-width: none;
	display: block;
	width: 100%;
}

@media (max-width: 900px) {
	.gs-topic-grid {
		grid-template-columns: 1fr !important;
		gap: 48px !important;
	}
	.gs-topic-num {
		font-size: 36px;
	}
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.gs-contact-hero h1 {
	max-width: 1100px;
}

.gs-contact-form-section {
	background: var(--paper);
	padding: 80px 0 140px;
}

.gs-contact-form-inner {
	max-width: 640px;
	margin: 0 auto;
	padding: 0 48px;
}

/* Status messages */
.gs-contact-msg {
	padding: 24px 28px;
	margin-bottom: 40px;
	border-left: 3px solid;
	font-family: 'Newsreader', serif;
}

.gs-contact-msg strong {
	display: block;
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.gs-contact-msg p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
}

.gs-contact-msg-success {
	border-left-color: var(--burgundy);
	background: rgba(15, 79, 74, 0.05);
}

.gs-contact-msg-success strong {
	color: var(--burgundy);
}

.gs-contact-msg-error {
	border-left-color: #b85050;
	background: rgba(184, 80, 80, 0.05);
}

.gs-contact-msg-error strong {
	color: #b85050;
}

/* Form layout */
.gs-contact-form {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.gs-form-field {
	display: flex;
	flex-direction: column;
}

.gs-form-field label {
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-muted);
	margin-bottom: 10px;
}

.gs-form-field input,
.gs-form-field select,
.gs-form-field textarea {
	font-family: 'Newsreader', serif;
	font-size: 17px;
	line-height: 1.5;
	color: var(--ink);
	background: var(--paper);
	border: 1px solid var(--rule);
	padding: 14px 16px;
	border-radius: 0;
	width: 100%;
	transition: border-color 0.2s ease;
}

.gs-form-field input:focus,
.gs-form-field select:focus,
.gs-form-field textarea:focus {
	outline: none;
	border-color: var(--burgundy);
}

.gs-form-field textarea {
	resize: vertical;
	min-height: 160px;
	font-family: 'Newsreader', serif;
}

.gs-form-field select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%230F4F4A' d='M7 10l5 5 5-5z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 40px;
}

/* Honeypot - hidden from real users via accessible-hide */
.gs-form-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Captcha - slightly de-emphasized */
.gs-form-captcha label {
	font-size: 11px;
	color: var(--ink-faint);
}

.gs-form-captcha input {
	max-width: 120px;
	font-size: 16px;
}

/* Submit button */
.gs-form-submit {
	display: inline-block;
	background: var(--ink);
	color: var(--paper);
	padding: 18px 32px;
	font-family: 'Inter Tight', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	align-self: flex-start;
	margin-top: 12px;
}

.gs-form-submit:hover {
	background: var(--burgundy);
}

.gs-form-submit:active {
	transform: translateY(1px);
}

@media (max-width: 760px) {
	.gs-contact-form-section { padding: 56px 0 100px; }
	.gs-contact-form-inner { padding: 0 24px; }
}

/* ============================================
   NAV CTA - disabled state for Subscribe
   Visible, not clickable
   ============================================ */

.gs-nav-cta-disabled {
	display: inline-block;
	background: var(--ink);
	color: var(--paper);
	padding: 10px 18px;
	font-family: 'Inter Tight', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	opacity: 0.4;
	cursor: default;
	user-select: none;
	pointer-events: none;
}

/* Catch WP-menu-rendered Subscribe items too */
.gs-nav .nav-cta a[href*="subscribe"],
.gs-nav li.cta a[href*="subscribe"],
li.menu-item a[href*="subscribe"]:not([href^="mailto"]) {
	opacity: 0.4;
	cursor: default;
	pointer-events: none;
}

/* ============================================
   HEADER BAND FIX - applied at end of stylesheet
   Cascade-safe override. Higher selector specificity
   to win against anything earlier in the file.
   ============================================ */

html body .site-header,
html body #masthead,
html body .gs-header,
html body header.site-header,
html body header#masthead {
	background: var(--paper) !important;
	background-color: var(--paper) !important;
	border-bottom: 1px solid var(--rule) !important;
}

html body .site-header .inside-header,
html body #masthead .inside-header,
html body .gs-header .inside-header {
	background: transparent !important;
	background-color: transparent !important;
}

/* ============================================
   FINAL CASCADE OVERRIDES - section backgrounds
   Higher specificity (html body prefix) + appended
   last in file. These should win against any prior
   declarations.
   ============================================ */

/* Bio page sections - all white, no cream */
html body .gs-bio-tracks,
html body .gs-bio-current,
html body .gs-bio-arc,
html body .gs-bio-contact {
	background: var(--paper) !important;
	background-color: var(--paper) !important;
}

/* The about-strip / timeline - was paper-warm cream */
html body .gs-bio-timeline,
html body section.gs-about-strip,
html body .gs-about-strip.gs-bio-timeline {
	background: var(--paper) !important;
	background-color: var(--paper) !important;
}

/* Homepage about-strip stays white too (in case it drifted) */
html body section.gs-about-strip:not(.gs-bio-audience):not(.gs-manifesto) {
	background: var(--paper) !important;
	background-color: var(--paper) !important;
}

/* What this is block - keep on white */
html body .gs-what-this-is {
	background: var(--paper) !important;
	background-color: var(--paper) !important;
}

/* Numbers - full saturation deep teal, no opacity reduction */
html body .gs-topic-num,
html body .gs-track-num,
html body .gs-audience-num,
html body .gs-post-num,
html body .gs-section-num {
	color: var(--burgundy) !important;
	opacity: 1 !important;
}

/* Subtle horizontal rule between sections to maintain structural separation
   now that adjacent sections are the same color */
html body .gs-bio-tracks {
	border-top: 1px solid var(--rule);
}

html body .gs-bio-current {
	border-top: 1px solid var(--rule);
}

html body .gs-bio-timeline {
	border-top: 1px solid var(--rule);
}

/* ============================================
   WHAT THIS IS - simplified typography
   Smaller, less precious than original
   ============================================ */

html body .gs-what-this-is {
	padding: 64px 0 !important;
}

html body .gs-what-this-is-prose {
	font-family: 'Newsreader', serif !important;
	font-size: clamp(18px, 1.6vw, 21px) !important;
	line-height: 1.55 !important;
	font-weight: 400 !important;
	letter-spacing: -0.005em !important;
	color: var(--ink) !important;
	font-variation-settings: 'opsz' 16 !important;
	max-width: 760px !important;
}

@media (max-width: 760px) {
	html body .gs-what-this-is {
		padding: 48px 0 !important;
	}
	html body .gs-what-this-is-prose {
		font-size: 17px !important;
	}
}

/* ============================================
   SPEAKING - Panel photos + lightbox
   ============================================ */

.gs-engagement-photo {
\tmargin: 18px 0 0 0;
\tdisplay: block;
\tmax-width: 320px;
}

.gs-photo-trigger {
\tdisplay: block;
\twidth: 100%;
\tpadding: 0;
\tborder: none;
\tbackground: transparent;
\tcursor: pointer;
\tposition: relative;
\toverflow: hidden;
\ttransition: opacity 0.2s ease;
}

.gs-photo-trigger:hover {
\topacity: 0.85;
}

.gs-photo-trigger:focus-visible {
\toutline: 2px solid var(--burgundy-soft);
\toutline-offset: 4px;
}

.gs-photo-trigger img {
\tdisplay: block;
\twidth: 100%;
\theight: auto;
\tborder: 1px solid rgba(255, 255, 255, 0.18);
\ttransition: transform 0.3s ease;
}

.gs-photo-trigger:hover img {
\ttransform: scale(1.02);
}

.gs-engagement-photo figcaption {
\tfont-family: 'Newsreader', serif;
\tfont-size: 13px;
\tline-height: 1.5;
\tcolor: rgba(255, 255, 255, 0.7);
\tmargin-top: 10px;
\tfont-style: italic;
}

.gs-photo-credit {
\tdisplay: block;
\tfont-family: 'Inter Tight', sans-serif;
\tfont-size: 10px;
\tfont-style: normal;
\tletter-spacing: 0.08em;
\ttext-transform: uppercase;
\tcolor: rgba(255, 255, 255, 0.45);
\tmargin-top: 4px;
}

/* === LIGHTBOX === */

.gs-photo-lightbox {
\tborder: none;
\tpadding: 0;
\tbackground: transparent;
\tmax-width: min(90vw, 1200px);
\tmax-height: 90vh;
\twidth: auto;
\theight: auto;
\tposition: fixed;
\ttop: 50%;
\tleft: 50%;
\ttransform: translate(-50%, -50%);
}

.gs-photo-lightbox::backdrop {
\tbackground: rgba(0, 0, 0, 0.92);
\tbackdrop-filter: blur(4px);
}

.gs-photo-lightbox-img {
\tdisplay: block;
\tmax-width: 100%;
\tmax-height: calc(90vh - 80px);
\twidth: auto;
\theight: auto;
\tobject-fit: contain;
\tmargin: 0 auto;
}

.gs-photo-lightbox-caption {
\tcolor: rgba(255, 255, 255, 0.9);
\tfont-family: 'Newsreader', serif;
\tfont-size: 14px;
\tline-height: 1.5;
\ttext-align: center;
\tpadding: 16px 24px 8px;
\tmax-width: 800px;
\tmargin: 0 auto;
}

.gs-photo-lightbox-caption-credit {
\tdisplay: block;
\tfont-family: 'Inter Tight', sans-serif;
\tfont-size: 10px;
\tletter-spacing: 0.1em;
\ttext-transform: uppercase;
\tcolor: rgba(255, 255, 255, 0.5);
\tmargin-top: 6px;
}

.gs-photo-lightbox-close {
\tposition: absolute;
\ttop: -40px;
\tright: 0;
\tbackground: transparent;
\tborder: none;
\tcolor: rgba(255, 255, 255, 0.8);
\tfont-size: 32px;
\tcursor: pointer;
\tpadding: 0;
\tline-height: 1;
\twidth: 32px;
\theight: 32px;
\tdisplay: flex;
\talign-items: center;
\tjustify-content: center;
}

.gs-photo-lightbox-close:hover {
\tcolor: white;
}

@media (max-width: 760px) {
\t.gs-engagement-photo {
\t\tmax-width: 100%;
\t}
\t.gs-photo-lightbox {
\t\tmax-width: 95vw;
\t}
\t.gs-photo-lightbox-close {
\t\ttop: -36px;
\t\tfont-size: 28px;
\t}
}

/* When item has an image, give the body more breathing room */
.gs-engagement-item-with-image .gs-engagement-body {
\tpadding-bottom: 8px;
}

/* ============================================
   BIO - Honors & Recognition section
   ============================================ */

html body .gs-bio-honors {
    background: var(--paper) !important;
    background-color: var(--paper) !important;
    padding: 80px 0 !important;
    border-top: 1px solid var(--rule);
}

.gs-bio-honors-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 32px;
}

.gs-honors-list {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px 48px;
}

.gs-honor-item {
    border-left: 2px solid var(--burgundy);
    padding: 4px 0 4px 18px;
}

.gs-honor-name {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.gs-honor-detail {
    font-family: 'Newsreader', serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-muted, #5a5a5a);
    margin-top: 4px;
    font-style: italic;
}

@media (max-width: 760px) {
    html body .gs-bio-honors {
        padding: 56px 0 !important;
    }
    .gs-bio-honors-inner {
        padding: 0 24px;
    }
    .gs-honors-list {
        gap: 24px 32px;
        margin-top: 32px;
    }
    .gs-honor-name {
        font-size: 17px;
    }
}

/* ============================================
   SPEAKING - Co-panelists line
   ============================================ */

.gs-engagement-copanelists {
    font-family: 'Newsreader', serif;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 6px;
    font-style: italic;
}

@media (max-width: 760px) {
    .gs-engagement-copanelists {
        font-size: 12px;
    }
}

/* ============================================
   BIO - Operator arc top alignment
   Force left and right columns flush at top
   ============================================ */

html body .gs-bio-arc .gs-bio-arc-grid,
html body .gs-bio-arc-grid {
    align-items: flex-start !important;
}

html body .gs-bio-arc .gs-bio-arc-display,
html body .gs-bio-arc-display,
html body .gs-bio-arc h1,
html body .gs-bio-arc h2 {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

html body .gs-bio-arc .gs-bio-arc-body,
html body .gs-bio-arc-body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

html body .gs-bio-arc .gs-bio-arc-body p:first-child,
html body .gs-bio-arc-body p:first-child {
    margin-top: 0 !important;
}

/* Optical alignment: serif display headings have larger ascender height than
   serif body text. To make them visually flush at top, body needs ~8px nudge */
html body .gs-bio-arc .gs-bio-arc-body,
html body .gs-bio-arc-body {
    padding-top: 12px !important;
}

@media (max-width: 760px) {
    html body .gs-bio-arc-body {
        padding-top: 16px !important;
    }
}

/* ============================================
   HERO HEADING SIZE REDUCTION
   Cascade-safe override appended last.
   Reduces homepage + bio hero <h1> by ~25%.
   ============================================ */

/* Homepage hero (front-page.php) - main h1 inside .gs-hero */
html body .gs-hero h1,
html body section.gs-hero > .gs-hero-inner h1 {
    font-size: clamp(40px, 6.5vw, 88px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.025em !important;
}

/* Bio page hero - h1 inside the hero section.
   Bio hero typically has narrower column due to portrait beside it,
   so its max size should be smaller than homepage. */
html body .gs-bio-hero h1,
html body section.gs-bio-hero h1,
html body .page-template-page-bio .gs-hero h1 {
    font-size: clamp(36px, 5.5vw, 72px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.02em !important;
}

/* Speaking page hero - same treatment to keep consistency */
html body .gs-speaking-hero h1,
html body section.gs-speaking-hero h1,
html body .page-template-page-speaking .gs-hero h1 {
    font-size: clamp(40px, 6vw, 80px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.025em !important;
}

/* Contact page hero - same */
html body .gs-contact-hero h1,
html body section.gs-contact-hero h1,
html body .page-template-page-contact .gs-hero h1 {
    font-size: clamp(40px, 6vw, 80px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.025em !important;
}

/* Mobile-specific tightening - hero shouldn't dominate small screens */
@media (max-width: 760px) {
    html body .gs-hero h1,
    html body .gs-bio-hero h1,
    html body .gs-speaking-hero h1,
    html body .gs-contact-hero h1 {
        font-size: clamp(32px, 9vw, 44px) !important;
        line-height: 1.08 !important;
    }
}

@media (max-width: 480px) {
    html body .gs-hero h1,
    html body .gs-bio-hero h1,
    html body .gs-speaking-hero h1,
    html body .gs-contact-hero h1 {
        font-size: 30px !important;
        line-height: 1.1 !important;
    }
}

/* ============================================
   BIO PAGE - FULL WHITE BACKGROUND
   Force every section to paper (white) background.
   Removes the cream seam between hero and content sections.
   Cascade-safe - appended last, html body prefix for specificity.
   ============================================ */

/* Page-level - when bio template is active, body is white */
html body.page-template-page-bio,
html body.page-id-2,
html body.page-id-3 {
    background: var(--paper) !important;
    background-color: var(--paper) !important;
}

/* Every bio section explicitly white - beats any earlier cream rule */
html body .gs-bio-hero,
html body section.gs-bio-hero,
html body .gs-bio-arc,
html body section.gs-bio-arc,
html body .gs-bio-tracks,
html body section.gs-bio-tracks,
html body .gs-bio-audience,
html body section.gs-bio-audience,
html body .gs-about-strip.gs-bio-audience,
html body .gs-bio-honors,
html body section.gs-bio-honors,
html body .gs-bio-current,
html body section.gs-bio-current,
html body .gs-bio-timeline,
html body section.gs-bio-timeline,
html body .gs-about-strip.gs-bio-timeline,
html body .gs-bio-contact,
html body section.gs-bio-contact {
    background: var(--paper) !important;
    background-color: var(--paper) !important;
}

/* Also force any generic about-strip on the bio template to white */
html body.page-template-page-bio section.gs-about-strip,
html body.page-template-page-bio .gs-about-strip {
    background: var(--paper) !important;
    background-color: var(--paper) !important;
}

/* Replace any cream-toned divider with a thin gray rule
   to maintain section separation visually */
html body.page-template-page-bio section[class*="gs-bio-"]:not(:first-child) {
    border-top: 1px solid var(--rule, #e5e5e5);
}

/* ============================================
   HERO STAT ROW - clean modern dashboard style
   Equal columns, consistent number rendering
   Cascade-safe (html body prefix + !important)
   ============================================ */

/* Container - force 5 equal columns */
html body .gs-hero-stats,
html body .gs-stat-row,
html body .gs-hero .gs-stat-row,
html body section.gs-hero .gs-hero-stats {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 24px 16px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 48px auto 0 !important;
    padding: 0 !important;
}

/* Each stat cell */
html body .gs-stat,
html body .gs-hero-stats > div,
html body .gs-stat-row > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* The number - clean modern bold sans-serif, deep teal */
html body .gs-stat-num,
html body .gs-stat-number,
html body .gs-hero-stats .gs-stat-num,
html body .gs-hero-stats > div > *:first-child {
    font-family: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: clamp(40px, 4.5vw, 64px) !important;
    line-height: 1 !important;
    color: var(--burgundy, #0F4F4A) !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    font-variation-settings: normal !important;
    text-shadow: none !important;
    font-feature-settings: 'tnum' 1 !important; /* tabular numbers for alignment */
}

/* Override any italic or script styling that might be there */
html body .gs-stat-num em,
html body .gs-stat-num i,
html body .gs-hero-stats em,
html body .gs-hero-stats i {
    font-style: normal !important;
    font-family: inherit !important;
}

/* The label - small uppercase tracking, gray, fixed min-height for vertical alignment */
html body .gs-stat-label,
html body .gs-hero-stats .gs-stat-label,
html body .gs-hero-stats > div > *:not(:first-child) {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--ink-muted, #6e6e6e) !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 32px !important; /* accommodates 2-line labels */
    display: block !important;
}

/* Mobile responsive - stack to 2 columns on small screens */
@media (max-width: 760px) {
    html body .gs-hero-stats,
    html body .gs-stat-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 24px !important;
        margin-top: 32px !important;
    }
    html body .gs-stat-num,
    html body .gs-stat-number {
        font-size: 36px !important;
    }
    html body .gs-stat-label {
        font-size: 10px !important;
        min-height: 28px !important;
    }
}

@media (max-width: 380px) {
    html body .gs-hero-stats,
    html body .gs-stat-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    html body .gs-stat-num {
        font-size: 30px !important;
    }
}

/* ============================================
   BIO STAT ROW (.gs-track-record-*) - dashboard styling
   Targets the actual classes used by page-bio.php.
   Equal columns, consistent number rendering, dashboard register.
   ============================================ */

/* Container - force 5 equal columns */
html body .gs-track-record,
html body .gs-bio-track-record,
html body div[class*="gs-track-record"]:not(.gs-track-record-item) {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 24px 16px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 32px auto 0 !important;
    padding: 0 !important;
}

/* Each cell */
html body .gs-track-record-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* The stat number container - clean modern dashboard look */
html body .gs-track-record-item .gs-stat-num {
    display: block !important;
    font-family: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: clamp(40px, 4.5vw, 64px) !important;
    line-height: 1 !important;
    color: var(--burgundy, #0F4F4A) !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    font-feature-settings: 'tnum' 1 !important; /* tabular numbers */
}

/* CRITICAL: kill all italic/serif styling on the nested .em span inside stat
   numbers. The .em class normally applies italic teal display style, but in
   stat numbers we want flat sans-serif teal - same as parent. */
html body .gs-track-record-item .gs-stat-num .em,
html body .gs-track-record-item .gs-stat-num span.em,
html body .gs-track-record-item .gs-stat-num em {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    color: var(--burgundy, #0F4F4A) !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    font-variation-settings: normal !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: var(--burgundy, #0F4F4A) !important;
}

/* The label */
html body .gs-track-record-item .gs-stat-label {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--ink-muted, #6e6e6e) !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 32px !important;
    display: block !important;
}

/* Mobile responsive */
@media (max-width: 760px) {
    html body .gs-track-record,
    html body div[class*="gs-track-record"]:not(.gs-track-record-item) {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 24px !important;
    }
    html body .gs-track-record-item .gs-stat-num {
        font-size: 36px !important;
    }
    html body .gs-track-record-item .gs-stat-label {
        font-size: 10px !important;
        min-height: 28px !important;
    }
}

@media (max-width: 380px) {
    html body .gs-track-record-item .gs-stat-num {
        font-size: 30px !important;
    }
}

/* ============================================================
   FINAL STAT ROW STYLING - definitive cascade override
   Date: appended after stat-row patch sessions
   
   Targets both layouts simultaneously:
   - Homepage: .gs-hero-stats-expanded > div .gs-stat-num
   - Bio:      .gs-track-record-item .gs-stat-num
   
   Selectors use 3+ class chains for high specificity so they
   beat the multiple competing rules earlier in this file.
   ============================================================ */

/* ============ HOMEPAGE STAT ROW ============ */

html body section.gs-hero .gs-hero-stats-expanded {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 24px 16px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 48px auto 0 !important;
    padding: 0 !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div > span.gs-stat-num,
html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num {
    display: block !important;
    font-family: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 56px !important;
    line-height: 1 !important;
    color: #0F4F4A !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    font-feature-settings: 'tnum' 1 !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num span,
html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num span.em,
html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num em,
html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num i {
    font-family: inherit !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: #0F4F4A !important;
    -webkit-text-fill-color: #0F4F4A !important;
    background: none !important;
    text-shadow: none !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-label {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #6e6e6e !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 32px !important;
    display: block !important;
}

/* ============ BIO STAT ROW ============ */

html body .gs-track-record {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 24px 16px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 32px auto 0 !important;
    padding: 0 !important;
}

html body .gs-track-record .gs-track-record-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

html body .gs-track-record .gs-track-record-item .gs-stat-num,
html body .gs-track-record .gs-track-record-item > span.gs-stat-num {
    display: block !important;
    font-family: 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: 56px !important;
    line-height: 1 !important;
    color: #0F4F4A !important;
    letter-spacing: -0.03em !important;
    margin: 0 0 16px 0 !important;
    padding: 0 !important;
    font-feature-settings: 'tnum' 1 !important;
}

html body .gs-track-record .gs-track-record-item .gs-stat-num span,
html body .gs-track-record .gs-track-record-item .gs-stat-num span.em,
html body .gs-track-record .gs-track-record-item .gs-stat-num em,
html body .gs-track-record .gs-track-record-item .gs-stat-num i {
    font-family: inherit !important;
    font-style: normal !important;
    font-weight: 700 !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: #0F4F4A !important;
    -webkit-text-fill-color: #0F4F4A !important;
    background: none !important;
    text-shadow: none !important;
}

html body .gs-track-record .gs-track-record-item .gs-stat-label {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #6e6e6e !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 32px !important;
    display: block !important;
}

/* ============ MOBILE RESPONSIVE ============ */

@media (max-width: 760px) {
    html body section.gs-hero .gs-hero-stats-expanded,
    html body .gs-track-record {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px 24px !important;
    }
    html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num,
    html body .gs-track-record .gs-track-record-item .gs-stat-num {
        font-size: 40px !important;
    }
    html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-label,
    html body .gs-track-record .gs-track-record-item .gs-stat-label {
        font-size: 10px !important;
    }
}

@media (max-width: 380px) {
    html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num,
    html body .gs-track-record .gs-track-record-item .gs-stat-num {
        font-size: 32px !important;
    }
}

/* ============================================================
   FINAL STAT ROW (FINAL REVERT) - Italic script editorial style
   Cascades over all earlier dashboard-style patches.
   Maximum specificity to win against all prior rules.
   ============================================================ */

/* Container - equal columns, more breathing room from divider above */
html body .gs-track-record,
html body section .gs-track-record {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 24px 16px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 56px auto 0 !important;
    padding: 48px 0 0 0 !important;  /* extra breathing room above */
}

/* Each cell */
html body .gs-track-record .gs-track-record-item,
html body section .gs-track-record .gs-track-record-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* The stat number container - italic Fraunces editorial script */
html body .gs-track-record .gs-track-record-item .gs-stat-num,
html body section .gs-track-record .gs-track-record-item .gs-stat-num,
html body .gs-track-record .gs-track-record-item > span.gs-stat-num {
    display: block !important;
    font-family: 'Fraunces', 'Newsreader', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: 72px !important;
    line-height: 1 !important;
    color: #0F4F4A !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    font-feature-settings: 'tnum' 0, 'ss01' 1 !important;
    font-variation-settings: 'opsz' 96 !important;
}

/* CRITICAL: The .em span inside .gs-stat-num must inherit, not override
   with Inter Tight or anything else. */
html body .gs-track-record .gs-track-record-item .gs-stat-num span,
html body .gs-track-record .gs-track-record-item .gs-stat-num span.em,
html body .gs-track-record .gs-track-record-item .gs-stat-num em,
html body .gs-track-record .gs-track-record-item .gs-stat-num i,
html body section .gs-track-record .gs-track-record-item .gs-stat-num span,
html body section .gs-track-record .gs-track-record-item .gs-stat-num span.em {
    font-family: inherit !important;
    font-style: inherit !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: inherit !important;
    -webkit-text-fill-color: #0F4F4A !important;
    background: none !important;
    text-shadow: none !important;
}

/* The label - small uppercase muted */
html body .gs-track-record .gs-track-record-item .gs-stat-label,
html body section .gs-track-record .gs-track-record-item .gs-stat-label {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #6e6e6e !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 32px !important;
    display: block !important;
}

/* Homepage stat row gets the same treatment */
html body section.gs-hero .gs-hero-stats-expanded {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 24px 16px !important;
    align-items: start !important;
    width: 100% !important;
    max-width: 1100px !important;
    margin: 56px auto 0 !important;
    padding: 48px 0 0 0 !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num {
    display: block !important;
    font-family: 'Fraunces', 'Newsreader', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: 72px !important;
    line-height: 1 !important;
    color: #0F4F4A !important;
    letter-spacing: -0.02em !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    font-variation-settings: 'opsz' 96 !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num span,
html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num span.em,
html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num em {
    font-family: inherit !important;
    font-style: inherit !important;
    font-weight: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    -webkit-text-fill-color: #0F4F4A !important;
}

html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-label {
    font-family: 'Inter Tight', 'Inter', system-ui, sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #6e6e6e !important;
    margin: 0 !important;
    min-height: 32px !important;
    display: block !important;
}

/* Mobile responsive - stack to 2 columns */
@media (max-width: 760px) {
    html body .gs-track-record,
    html body section .gs-track-record,
    html body section.gs-hero .gs-hero-stats-expanded {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 36px 24px !important;
        padding: 32px 0 0 0 !important;
        margin-top: 36px !important;
    }
    html body .gs-track-record .gs-track-record-item .gs-stat-num,
    html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num {
        font-size: 56px !important;
        margin-bottom: 16px !important;
    }
}

@media (max-width: 380px) {
    html body .gs-track-record .gs-track-record-item .gs-stat-num,
    html body section.gs-hero .gs-hero-stats-expanded > div .gs-stat-num {
        font-size: 44px !important;
    }
}

/* ============================================================
   AUDIENCES SECTION - Restore readable text color
   The "Who reads this" body text was rendering very light gray.
   Restore to standard ink color.
   ============================================================ */

html body .gs-bio-audience p,
html body .gs-bio-audience .gs-audience-text,
html body .gs-bio-audience .gs-audience-item p,
html body .gs-bio-audience .gs-audience-body,
html body section.gs-bio-audience p,
html body section.gs-bio-audience .gs-audience-text,
html body .gs-about-strip.gs-bio-audience p {
    color: #1a1a1a !important;
    opacity: 1 !important;
}

/* The 01/02/03 numbers stay teal italic - confirm not overridden */
html body .gs-bio-audience .gs-audience-num,
html body .gs-bio-audience .gs-audience-number,
html body section.gs-bio-audience .gs-audience-num {
    color: #0F4F4A !important;
    opacity: 1 !important;
}

/* Audience eyebrow / intro text - slightly muted but readable */
html body .gs-bio-audience .gs-audience-intro,
html body section.gs-bio-audience .gs-audience-intro {
    color: #404040 !important;
    opacity: 1 !important;
}

/* ============================================================
   AUDIENCES SECTION - Minimal correct version
   Goals (per Gary):
   - Stack 5 items vertically (NOT 2-column grid)
   - Add hairline dividers between items
   - Tighten vertical spacing modestly
   - Leave eyebrow color alone (gold/yellow is intentional)
   - Preserve existing internal item layout (number left, text right)
   ============================================================ */

/* Force the audience LIST container to be a single vertical column.
   The earlier broken CSS made it 2-column via grid; we explicitly
   set 1 column here, overriding parent grid declarations. */
html body .gs-bio-audience .gs-bio-audience-list,
html body section.gs-bio-audience .gs-bio-audience-list,
html body .gs-bio-audience-list {
    display: block !important;
    grid-template-columns: none !important;
    width: 100% !important;
    margin-top: 32px !important;
}

/* Each audience item: hairline top border, modest vertical padding.
   Do NOT override internal layout (number / text columns within the item). */
html body .gs-bio-audience .gs-audience-item,
html body section.gs-bio-audience .gs-audience-item,
html body .gs-bio-audience-list > .gs-audience-item,
html body .gs-bio-audience-list > div {
    border-top: 1px solid #e5e5e5 !important;
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    margin: 0 !important;
}

/* First item: keep the top border (visual top edge of the list) */
html body .gs-bio-audience .gs-audience-item:first-child,
html body .gs-bio-audience-list > .gs-audience-item:first-child,
html body .gs-bio-audience-list > div:first-child {
    border-top: 1px solid #e5e5e5 !important;
    padding-top: 32px !important;
}

/* Last item: also a bottom border to close out the list visually */
html body .gs-bio-audience .gs-audience-item:last-child,
html body .gs-bio-audience-list > .gs-audience-item:last-child,
html body .gs-bio-audience-list > div:last-child {
    border-bottom: 1px solid #e5e5e5 !important;
    padding-bottom: 32px !important;
}

/* ============================================================
   HOMEPAGE UNIFIED COLUMN SYSTEM (v3 - clean replacement)
   
   Goal: Four lower sections (WHAT THIS IS, Recent articles,
   filter bar, posts) all share the same column width and the
   same left edge for their inner content.
   
   Reference column: 1280px max-width with 48px gutters,
   centered with auto margins. This matches the site's
   existing convention used in .gs-section-intro,
   .gs-filter-bar, and .gs-posts.
   ============================================================ */

/* ----- SECTION 1: WHAT THIS IS - expand to match the rest ----- */

html body .gs-what-this-is-inner {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 48px !important;
    box-sizing: border-box !important;
}

/* The inner prose still uses a narrow reading column (720px)
   left-aligned within the wider wrapper */
html body .gs-what-this-is-eyebrow,
html body .gs-what-this-is-prose {
    max-width: 720px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ----- SECTION 2: Recent articles - kill the 2-column grid ----- */
/* Original design: .gs-section-intro is a 2-col grid (1fr 2fr)
   which pushes the heading into the LEFT third. We collapse to
   single column so the heading + subhead align with WHAT THIS IS. */

html body .gs-section-intro {
    grid-template-columns: 1fr !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 80px 48px 40px !important;
    gap: 16px !important;
    align-items: start !important;
    box-sizing: border-box !important;
}

html body .gs-section-intro .gs-section-title-block {
    max-width: 720px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
}

html body .gs-section-intro .gs-section-title-block h2 {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

html body .gs-section-intro .gs-section-title-block .deck {
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
    max-width: 640px !important;
}

/* ----- SECTION 3: Filter bar - cream band full-width, content aligned ----- */
/* The .gs-filter-bar already has max-width 1280px. We need to make sure
   its INNER content (label + buttons) starts at the same left edge as
   the sections above. Since the bar is itself the container, the padding
   matches what's above already. */

html body .gs-filter-bar {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 28px 48px !important;
    box-sizing: border-box !important;
    /* Cream background is set elsewhere in the file - inherited */
}

/* ----- SECTION 4: Posts list / empty state ----- */

html body .gs-posts {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 48px !important;
    box-sizing: border-box !important;
}

/* The "first article publishes June 2, 2026" empty-state container -
   left-align so it sits in the same column as headings above */
html body .gs-posts > div[style*="text-align: center"] {
    text-align: left !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

html body .gs-posts > div[style*="text-align: center"] p {
    text-align: left !important;
}

/* ----- Mobile responsive ----- */
@media (max-width: 760px) {
    html body .gs-what-this-is-inner,
    html body .gs-section-intro,
    html body .gs-filter-bar,
    html body .gs-posts {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    html body .gs-section-intro {
        padding-top: 56px !important;
        padding-bottom: 32px !important;
    }
}

/* === BIO AUDIENCE h3 FIX (May 27 2026) ===
   The .gs-audience-item h3 rule at line 2211 sets color: var(--paper)
   (light) because the section was originally designed with dark background.
   When the section was switched to light at line 4171 (background: var(--paper)),
   the h3 labels became invisible (light-on-light).
   This rule restores readable dark labels on the light background. */
html body .gs-bio-audience .gs-audience-item h3,
html body section.gs-bio-audience .gs-audience-item h3,
html body .gs-about-strip.gs-bio-audience .gs-audience-item h3 {
    color: #1a1a1a !important;
    opacity: 1 !important;
}
