/* =========================================================================
   ZACH KLEMPF — "WINDOW STICKER"
   Paper-and-ink editorial theme. Light + dark modes driven by the
   html[data-zk-scheme] attribute. Vanilla CSS, no build step.
   ========================================================================= */

/* ---------- Tokens: light (default) ----------------------------------
   The main palette is aliased to the theme.json presets, so applying a
   theme color to any block and flipping to dark mode both work. Dark mode
   overrides the preset variables themselves (below), so everything —
   including core block color classes — inverts together.
   --------------------------------------------------------------------- */
:root {
	--bg: var(--wp--preset--color--paper, #FBFAF6);
	--bg-alt: var(--wp--preset--color--paper-alt, #F4F2E9);
	--bg-card: var(--wp--preset--color--card, #ffffff);
	--text: var(--wp--preset--color--ink, #15171B);
	--text-2: var(--wp--preset--color--steel, #5E626B);
	--text-3: var(--wp--preset--color--ink-soft, #3A3D44);
	--line: var(--wp--preset--color--line, #E5E2D8);
	--line-strong: var(--wp--preset--color--ink, #15171B);
	--band: var(--wp--preset--color--band, #15171B);
	--band-text: var(--wp--preset--color--band-text, #FBFAF6);
	--accent: var(--wp--preset--color--accent, #FFD335);

	--band-text-2: #B9BCC4;
	--accent-ink: #15171B;
	--hover-fill: #F1EFE6;
	--input-border: #CFCCC0;
	--kit-dash: #C8C5B8;
	--status-ok-bg: #EAF6EC;
	--status-ok-text: #1E5A2C;
	--status-err-bg: #FBEBEA;
	--status-err-text: #8A2A22;

	--max: 1120px;
	--narrow: 760px;
	--radius: 12px;
	--font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
	--font-serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
	--font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

	color-scheme: light;
}

/* ---------- Tokens: dark --------------------------------------------- */
html[data-zk-scheme="dark"] {
	/* Flip the theme.json presets so blocks and elements invert too. */
	--wp--preset--color--paper: #111318;
	--wp--preset--color--paper-alt: #171A20;
	--wp--preset--color--card: #1B1E25;
	--wp--preset--color--ink: #F2F1EC;
	--wp--preset--color--steel: #A2A7B0;
	--wp--preset--color--ink-soft: #C6C9CF;
	--wp--preset--color--line: #2B2F37;
	--wp--preset--color--band: #0B0D10;
	--wp--preset--color--band-text: #F2F1EC;

	/* Borders read best a touch lighter than the ink text in dark. */
	--line-strong: #E8E6DE;

	--band-text-2: #8E939C;
	--hover-fill: #1E2128;
	--input-border: #2F333B;
	--kit-dash: #3A3F49;
	--status-ok-bg: #14301C;
	--status-ok-text: #9FE0AE;
	--status-err-bg: #351916;
	--status-err-text: #F3ADA5;

	color-scheme: dark;
}

/* ---------- Reset ----------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-serif);
	font-size: 18px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition: background-color .3s ease, color .3s ease;
}

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

a {
	color: inherit;
}

button {
	font: inherit;
	color: inherit;
}

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

::selection {
	background: var(--accent);
	color: var(--accent-ink);
}

[id] {
	scroll-margin-top: 88px;
}

/* ---------- Layout ---------------------------------------------------- */
.wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 24px;
}

.wrap--narrow {
	max-width: var(--narrow);
}

/* ---------- Typography helpers --------------------------------------- */
.mono {
	font-family: var(--font-mono);
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--text-2);
}

.display {
	font-family: var(--font-display);
	font-variation-settings: 'wdth' 112;
	font-weight: 800;
	letter-spacing: -.015em;
	line-height: 1.04;
}

.lede {
	font-size: 21px;
	color: var(--text-2);
	max-width: 36em;
	margin-top: 18px;
}

/* The window-sticker highlight. Light: sits behind the baseline as a
   marker swipe. Dark: becomes a solid chip for legibility. */
.hl {
	background: linear-gradient(transparent 58%, var(--accent) 58%, var(--accent) 94%, transparent 94%);
	color: inherit;
}

html[data-zk-scheme="dark"] .hl {
	background: var(--accent);
	color: var(--accent-ink);
	padding: 0 .12em;
	border-radius: 2px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* ---------- Buttons --------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid var(--line-strong);
	background: transparent;
	color: var(--text);
	padding: 13px 22px;
	border-radius: 8px;
	transition: transform .12s ease, background-color .15s ease, filter .15s ease, border-color .15s ease;
}

.btn:active {
	transform: scale(.98);
}

.btn-solid {
	background: var(--text);
	color: var(--bg);
	border-color: var(--text);
}

html[data-zk-scheme="dark"] .btn-solid {
	background: var(--text);
	color: var(--band);
}

.btn-ghost {
	background: transparent;
	color: var(--text);
}

.btn-ghost:hover {
	background: var(--hover-fill);
}

.btn-sticker {
	background: var(--accent);
	color: var(--accent-ink);
	border-color: var(--line-strong);
}

.btn-sticker:hover {
	filter: brightness(1.05);
}

.btn-sm {
	padding: 9px 16px;
	font-size: 13px;
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.btn-row--center {
	justify-content: center;
}

.btn.is-loading {
	opacity: .65;
	pointer-events: none;
}

/* ---------- Header ---------------------------------------------------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: color-mix(in srgb, var(--bg) 92%, transparent);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow .2s ease, background-color .3s ease;
}

.site-header.is-scrolled {
	box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 66px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 17px;
	font-variation-settings: 'wdth' 118;
	letter-spacing: .01em;
	color: var(--text);
}

.brand img {
	max-height: 40px;
	width: auto;
}

.plate {
	background: var(--text);
	color: var(--bg);
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	padding: 3px 7px;
	border-radius: 3px;
	letter-spacing: .1em;
}

html[data-zk-scheme="dark"] .plate {
	background: var(--accent);
	color: var(--accent-ink);
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.nav-list {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
}

.nav-list a {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 13px;
	letter-spacing: .03em;
	text-decoration: none;
	color: var(--text-2);
	padding: 8px 12px;
	border-radius: 6px;
	transition: color .15s ease, background-color .15s ease;
}

.nav-list a:hover {
	color: var(--text);
	background: var(--hover-fill);
}

.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
	color: var(--text);
	font-weight: 500;
}

.nav-cta {
	margin-left: 6px;
}

.header-tools {
	display: flex;
	align-items: center;
	gap: 6px;
}

.scheme-toggle,
.menu-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	color: var(--text-2);
	font-size: 18px;
	cursor: pointer;
	border-radius: 8px;
	transition: color .15s ease, background-color .15s ease;
}

.scheme-toggle:hover,
.menu-toggle:hover {
	color: var(--text);
	background: var(--hover-fill);
}

/* Sun/moon: show the icon for the mode you'd switch TO. */
.scheme-toggle__sun {
	display: none;
}

html[data-zk-scheme="dark"] .scheme-toggle__moon {
	display: none;
}

html[data-zk-scheme="dark"] .scheme-toggle__sun {
	display: inline;
}

.menu-toggle {
	display: none;
}

.menu-toggle__close {
	display: none;
}

body.nav-open .menu-toggle__open {
	display: none;
}

body.nav-open .menu-toggle__close {
	display: inline;
}

/* ---------- Hero ------------------------------------------------------ */
.hero {
	padding-top: 88px;
	padding-bottom: 64px;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
	gap: 56px;
	align-items: center;
}

.hero-title {
	font-size: clamp(38px, 5.2vw, 62px);
	margin: 18px 0 0;
}

.hero .lede {
	font-size: 21px;
	margin-top: 22px;
}

.headshot {
	position: relative;
	background: var(--bg-alt);
	border: 1px solid var(--line);
	border-radius: 14px;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.headshot img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.headshot__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	color: var(--text-2);
	text-align: center;
	padding: 24px;
}

.headshot__placeholder i {
	font-size: 26px;
}

.sold {
	position: absolute;
	top: 18px;
	right: -12px;
	background: var(--accent);
	color: var(--accent-ink);
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: .18em;
	padding: 6px 14px;
	border: 2px solid var(--line-strong);
	border-radius: 4px;
	transform: rotate(4deg);
}

/* ---------- Logo bar -------------------------------------------------- */
.logobar {
	padding: 26px 0;
}

.logobar__inner {
	display: flex;
	align-items: center;
	gap: 36px;
	flex-wrap: wrap;
}

.outlet {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	font-variation-settings: 'wdth' 105;
	color: var(--text-3);
}

/* ---------- Window-sticker spec panel -------------------------------- */
.sticker-panel {
	max-width: 880px;
	margin: 0 auto;
	background: var(--bg-card);
	border: 2px solid var(--line-strong);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 8px 8px 0 var(--accent);
}

.sticker-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--band);
	color: var(--band-text);
	padding: 14px 22px;
}

.sticker-head__t {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 15px;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sticker-head__vin {
	font-size: 11px;
	letter-spacing: .1em;
	color: var(--band-text-2);
}

.sticker-rows {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.sticker-row {
	padding: 24px 22px;
	border-top: 1px solid var(--line);
	border-right: 1px solid var(--line);
}

.sticker-row:last-child {
	border-right: none;
}

.sticker-row__num {
	font-size: 36px;
	font-variation-settings: 'wdth' 110;
	line-height: 1;
}

.sticker-row__lab {
	font-size: 11.5px;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--text-2);
	margin-top: 8px;
}

/* ---------- Bands / section heads ------------------------------------ */
.band {
	padding: 80px 0;
}

.band--alt {
	background: var(--bg-alt);
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.band--hairline {
	border-bottom: 1px solid var(--line);
}

.band--center {
	text-align: center;
}

.sec-head {
	max-width: 640px;
	margin-bottom: 48px;
}

.sec-head h1,
.sec-head h2 {
	font-size: clamp(28px, 3.4vw, 40px);
	margin-top: 14px;
}

.sec-head .lede {
	margin-top: 18px;
	font-size: 19px;
}

.sec-head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.sec-head--center {
	max-width: 620px;
	margin-left: auto;
	margin-right: auto;
}

/* ---------- Pillars --------------------------------------------------- */
.pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.pillar {
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.pillar:hover {
	transform: translate(-2px, -2px);
	border-color: var(--line-strong);
	box-shadow: 6px 6px 0 var(--accent);
}

.pillar__tag {
	display: block;
	font-size: 11px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--text-2);
	margin-bottom: 14px;
}

.pillar h3 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 19px;
	margin-bottom: 12px;
}

.pillar p {
	font-size: 16.5px;
	color: var(--text-3);
}

/* ---------- CTA band -------------------------------------------------- */
.cta-band {
	background: var(--band);
	color: var(--band-text);
	padding: 72px 0;
}

.cta-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.cta-band h2 {
	font-size: clamp(26px, 3.4vw, 38px);
	max-width: 20ch;
}

.cta-band .btn-sticker {
	border-color: var(--accent);
}

.cta-band__side {
	text-align: right;
}

.cta-band__note {
	color: var(--band-text-2);
	font-size: 14px;
	margin-bottom: 14px;
}

/* ---------- Speaking: talks ------------------------------------------ */
.talks {
	display: grid;
	gap: 20px;
}

.talk {
	display: grid;
	grid-template-columns: 64px minmax(0, 1fr);
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.talk:hover {
	transform: translate(-2px, -2px);
	border-color: var(--line-strong);
	box-shadow: 6px 6px 0 var(--accent);
}

.talk__no {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 26px;
	background: var(--bg-alt);
	border-right: 1px solid var(--line);
	font-size: 18px;
	color: var(--text-2);
}

.talk__body {
	padding: 26px 28px;
}

.talk__body h2 {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 21px;
	margin-bottom: 6px;
}

.talk__aud {
	font-size: 12px;
	letter-spacing: .04em;
	color: var(--text-2);
	margin-bottom: 12px;
}

.talk__body p {
	font-size: 16.5px;
	color: var(--text-3);
}

/* ---------- Formats chips -------------------------------------------- */
.formats-block {
	margin-top: 40px;
}

.chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.chip {
	font-size: 12.5px;
	border: 1px solid var(--line);
	background: var(--bg-card);
	border-radius: 999px;
	padding: 7px 14px;
	color: var(--text-3);
}

/* ---------- Booking / contact split ---------------------------------- */
.book-grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
	gap: 56px;
}

.book-title {
	font-size: clamp(26px, 3vw, 36px);
	margin-top: 14px;
	margin-bottom: 16px;
}

.book-grid p {
	color: var(--text-3);
	margin-bottom: 12px;
}

.contact-line {
	margin-top: 18px;
	font-size: 14px;
}

.contact-line a {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.contact-line a:hover {
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

/* ---------- Forms ----------------------------------------------------- */
.zk-form .form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.form-field {
	margin-bottom: 14px;
}

.form-field label {
	display: block;
	font-family: var(--font-mono);
	font-size: 11.5px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--text-2);
	margin-bottom: 6px;
}

.zk-form input,
.zk-form select,
.zk-form textarea {
	width: 100%;
	font-family: var(--font-serif);
	font-size: 16px;
	color: var(--text);
	background: var(--bg-card);
	border: 1px solid var(--input-border);
	border-radius: 8px;
	padding: 11px 13px;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.zk-form input:focus,
.zk-form select:focus,
.zk-form textarea:focus {
	outline: none;
	border-color: var(--line-strong);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 55%, transparent);
}

.zk-form textarea {
	min-height: 120px;
	resize: vertical;
}

.select-wrap {
	position: relative;
	display: block;
}

.select-wrap select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 38px;
}

.select-wrap i {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 12px;
	color: var(--text-2);
}

/* Honeypot — visually gone, still in the DOM for bots. */
.form-field--hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-actions {
	margin-top: 6px;
	margin-bottom: 0;
}

.form-status {
	margin-top: 16px;
	font-size: 15px;
	display: none;
}

.form-status.is-visible {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 8px;
}

.form-status.is-success {
	background: var(--status-ok-bg);
	color: var(--status-ok-text);
}

.form-status.is-error {
	background: var(--status-err-bg);
	color: var(--status-err-text);
}

.form-status i {
	margin-top: 3px;
}

/* ---------- Press cards ---------------------------------------------- */
.press-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.press-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 26px;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.press-card:hover {
	transform: translate(-2px, -2px);
	border-color: var(--line-strong);
	box-shadow: 6px 6px 0 var(--accent);
}

.press-card--feature {
	border: 2px solid var(--line-strong);
	box-shadow: 6px 6px 0 var(--accent);
}

.press-card--feature:hover {
	transform: translate(-2px, -2px);
	box-shadow: 8px 8px 0 var(--accent);
}

.press-card__outlet {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 14px;
	letter-spacing: .06em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.press-card__logo {
	max-height: 28px;
	width: auto;
	margin-bottom: 12px;
}

.press-card__logo-wrap {
	display: block;
	margin: -26px -26px 18px;
	border-bottom: 1px solid var(--line);
}

.press-card__logo-wrap img {
	width: 100%;
	height: auto;
	border-radius: var(--radius) var(--radius) 0 0;
}

.press-card h3 {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 19px;
	line-height: 1.35;
	margin-bottom: 10px;
}

.press-card h3 a {
	text-decoration: none;
}

.press-card h3 a:hover {
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

.press-card__meta {
	font-size: 12px;
	color: var(--text-2);
	margin-bottom: 10px;
}

.press-card p {
	font-size: 15.5px;
	color: var(--text-2);
}

.press-card__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	margin-top: 14px;
	text-decoration: none;
	color: var(--text);
}

.press-card__link:hover {
	color: var(--text);
}

.press-card__link:hover i {
	transform: translateX(2px);
}

.press-card__link i {
	transition: transform .15s ease;
}

/* ---------- Press kit ------------------------------------------------- */
.kit-block {
	margin-top: 64px;
}

.kit-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.kit-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	border: 1px dashed var(--kit-dash);
	border-radius: 10px;
	padding: 16px 18px;
	font-size: 13px;
	background: var(--bg-card);
	text-decoration: none;
	transition: border-color .15s ease;
}

.kit-item:hover {
	border-color: var(--line-strong);
}

/* ---------- Episodes -------------------------------------------------- */
.epis {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}

.epi {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.epi:hover {
	transform: translate(-2px, -2px);
	border-color: var(--line-strong);
	box-shadow: 6px 6px 0 var(--accent);
}

.epi__media {
	display: block;
	margin: -24px -24px 16px;
}

.epi__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--radius) var(--radius) 0 0;
}

.epi__n {
	font-size: 11.5px;
	letter-spacing: .1em;
	color: var(--text-2);
}

.epi h3 {
	font-family: var(--font-serif);
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
	margin: 10px 0 8px;
}

.epi h3 a {
	text-decoration: none;
}

.epi h3 a:hover {
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

.epi__guest {
	font-size: 14px;
	color: var(--text-2);
	margin-bottom: 8px;
}

.epi p {
	font-size: 15px;
	color: var(--text-2);
}

.epi__link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 13px;
	margin-top: auto;
	padding-top: 14px;
	text-decoration: none;
}

.epi__link:hover i {
	transform: translateX(2px);
}

.epi__link i {
	transition: transform .15s ease;
}

.grid-more {
	margin-top: 36px;
}

.guest-line {
	margin-top: 36px;
	color: var(--text-2);
}

.guest-line a {
	color: var(--text);
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
	white-space: nowrap;
}

/* ---------- Timeline -------------------------------------------------- */
.timeline {
	list-style: none;
	max-width: 680px;
	margin-left: 8px;
	padding-left: 32px;
	border-left: 2px solid var(--line-strong);
	display: grid;
	gap: 36px;
}

.tl-item {
	position: relative;
}

.tl-item::before {
	content: '';
	position: absolute;
	left: -41px;
	top: 6px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--accent);
	border: 2px solid var(--line-strong);
}

.tl-item__yr {
	font-size: 15px;
	letter-spacing: .08em;
}

.tl-item p {
	font-size: 16.5px;
	color: var(--text-3);
	margin-top: 6px;
}

/* ---------- Prose ----------------------------------------------------- */
.prose {
	font-size: 18px;
	line-height: 1.75;
	color: var(--text);
}

.prose > * + * {
	margin-top: 1.1em;
}

.prose h2,
.prose h3 {
	font-family: var(--font-display);
	font-weight: 800;
	font-variation-settings: 'wdth' 112;
	line-height: 1.15;
	margin-top: 1.6em;
}

.prose h2 {
	font-size: 27px;
}

.prose h3 {
	font-size: 22px;
}

.prose a {
	color: inherit;
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

.prose ul,
.prose ol {
	padding-left: 1.4em;
}

.prose li::marker {
	color: var(--accent);
}

.prose blockquote {
	border-left: 3px solid var(--accent);
	padding-left: 20px;
	color: var(--text-2);
	font-style: italic;
}

.prose img {
	border-radius: 10px;
}

.prose code {
	font-family: var(--font-mono);
	font-size: .9em;
	background: var(--bg-alt);
	padding: 2px 6px;
	border-radius: 4px;
}

.prose--intro {
	max-width: 680px;
	margin-bottom: 48px;
}

.prose-hero {
	margin-bottom: 36px;
}

.prose-hero img {
	width: 100%;
	border-radius: var(--radius);
}

/* ---------- Contact list --------------------------------------------- */
.contact-list {
	list-style: none;
	display: grid;
	gap: 10px;
	margin-top: 24px;
	font-size: 14px;
}

.contact-list a {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
}

.contact-list a:hover {
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

.contact-list__tag {
	font-size: 11px;
	background: var(--bg-alt);
	padding: 2px 8px;
	border-radius: 4px;
	margin-left: 4px;
	color: var(--text-2);
}

.contact-social {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 20px;
	font-size: 13px;
}

.contact-social a {
	text-decoration: none;
	color: var(--text-2);
}

.contact-social a:hover {
	color: var(--text);
}

/* ---------- Media players -------------------------------------------- */
.player {
	margin: 0 auto;
}

.player--video {
	position: relative;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--line);
}

.player--video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.player--audio iframe {
	width: 100%;
	height: 152px;
	border: 0;
	border-radius: var(--radius);
}

.player--file audio {
	width: 100%;
}

.episode-listen {
	margin-bottom: 28px;
}

.episode-player {
	margin-bottom: 32px;
}

.back-link {
	font-size: 13px;
	margin-bottom: 20px;
}

.back-link a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text-2);
}

.back-link a:hover {
	color: var(--text);
}

/* ---------- Post nav / pagination ------------------------------------ */
.post-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 48px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	font-size: 12px;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.post-nav a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: var(--text-2);
}

.post-nav a:hover {
	color: var(--text);
}

.pagination {
	margin-top: 48px;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0;
}

.pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	font-family: var(--font-mono);
	font-size: 13px;
	text-decoration: none;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--text-2);
	transition: border-color .15s ease, color .15s ease;
}

.pagination a.page-numbers:hover {
	border-color: var(--line-strong);
	color: var(--text);
}

.pagination .page-numbers.current {
	background: var(--band);
	color: var(--band-text);
	border-color: var(--band);
}

/* ---------- Empty note / search -------------------------------------- */
.empty-note {
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px dashed var(--kit-dash);
	background: var(--bg-alt);
	border-radius: 10px;
	padding: 20px;
	color: var(--text-2);
	font-size: 15px;
}

.empty-note i {
	color: var(--text-3);
}

.search-wrap {
	margin-top: 28px;
}

.search-form {
	display: flex;
	gap: 10px;
	max-width: 460px;
}

.search-form .search-field {
	flex: 1;
	font-family: var(--font-serif);
	font-size: 16px;
	color: var(--text);
	background: var(--bg-card);
	border: 1px solid var(--input-border);
	border-radius: 8px;
	padding: 11px 13px;
}

.search-form .search-submit {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	color: var(--bg);
	background: var(--text);
	border: 2px solid var(--text);
	border-radius: 8px;
	padding: 0 18px;
}

/* ---------- Footer ---------------------------------------------------- */
.site-footer {
	border-top: 1px solid var(--line);
	padding: 48px 0;
}

.site-footer__inner {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.brand--footer {
	margin-bottom: 8px;
}

.site-footer__tagline {
	font-size: 12px;
	color: var(--text-2);
	margin-top: 8px;
}

.site-footer__copy {
	font-size: 12px;
	color: var(--text-2);
	margin-top: 4px;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	font-size: 13px;
}

.site-footer__links a {
	text-decoration: none;
	color: var(--text-2);
}

.site-footer__links a:hover {
	color: var(--text);
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

/* ---------- Accessibility helpers ------------------------------------ */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	background: var(--text);
	color: var(--bg);
	padding: 10px 16px;
	border-radius: 0 0 8px 0;
	font-family: var(--font-mono);
	font-size: 13px;
}

.skip-link:focus {
	left: 0;
}

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

/* ---------- Reveal animations ---------------------------------------- */
.zk-js [data-reveal] {
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .6s ease, transform .6s ease;
}

.zk-js [data-reveal].is-visible {
	opacity: 1;
	transform: none;
}

/* ---------- Responsive ------------------------------------------------ */
@media (max-width: 980px) {
	.hero-grid {
		gap: 40px;
	}

	.book-grid {
		gap: 40px;
	}
}

@media (max-width: 860px) {
	.menu-toggle {
		display: inline-flex;
	}

	.nav-links {
		position: absolute;
		top: 66px;
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		margin-left: 0;
		padding: 14px 24px 20px;
		background: var(--bg);
		border-bottom: 1px solid var(--line);
		box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
		display: none;
		animation: zk-panel .25s ease;
	}

	body.nav-open .nav-links {
		display: flex;
	}

	.nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}

	.nav-list a {
		padding: 12px;
	}

	.nav-cta {
		margin-left: 0;
		margin-top: 6px;
		justify-content: center;
	}

	.hero,
	.band {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.hero-grid,
	.book-grid {
		grid-template-columns: 1fr;
	}

	.headshot {
		max-width: 380px;
	}

	.sticker-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.cta-band__side {
		text-align: left;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 17px;
	}

	.zk-form .form-row {
		grid-template-columns: 1fr;
	}

	.sec-head--row {
		flex-direction: column;
		align-items: flex-start;
	}

	.talk {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.talk__no {
		font-size: 15px;
	}

	.site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.post-nav {
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.btn-row .btn {
		width: 100%;
		justify-content: center;
	}
}

@keyframes zk-panel {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------- Reduced motion ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
	}

	.zk-js [data-reveal] {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* =========================================================================
   FULL SITE EDITING ADDITIONS
   Bridges core block markup (buttons, navigation, template parts) to the
   Window Sticker look. Base button = ghost (from theme.json); variants and
   hover live here.
   ========================================================================= */

/* ---------- Buttons (core block) ------------------------------------- */
.wp-block-button__link {
	line-height: 1;
	transition: transform .12s ease, background-color .15s ease, filter .15s ease, border-color .15s ease;
}

.wp-block-button__link:active {
	transform: scale(.98);
}

.wp-block-button__link:hover {
	background: var(--hover-fill);
}

.is-style-zk-solid > .wp-block-button__link {
	background: var(--text);
	color: var(--bg);
	border-color: var(--text);
}

.is-style-zk-solid > .wp-block-button__link:hover {
	background: var(--text);
	filter: brightness(1.1);
}

.is-style-zk-sticker > .wp-block-button__link {
	background: var(--accent);
	color: var(--accent-ink);
	border-color: var(--line-strong);
}

.is-style-zk-sticker > .wp-block-button__link:hover {
	background: var(--accent);
	filter: brightness(1.05);
}

.wp-block-button.btn-sm > .wp-block-button__link {
	padding: 9px 16px;
	font-size: 13px;
}

.wp-block-buttons.btn-row {
	gap: 14px;
	margin-top: 30px;
}

.wp-block-buttons.chips {
	gap: 10px;
}

/* Press-kit slots: keep them as a tidy wrapping row of ghost buttons. */
.wp-block-buttons.kit-list {
	gap: 12px;
	margin-top: 28px;
}

/* ---------- Header (block markup) ------------------------------------ */
.site-header .wp-block-navigation {
	--wp--style--block-gap: 2px;
	font-family: var(--font-mono);
}

.site-header .wp-block-navigation .wp-block-navigation-item__content,
.site-header .wp-block-navigation .wp-block-navigation-item a {
	font-size: 13px;
	letter-spacing: .03em;
	color: var(--text-2);
	text-decoration: none;
	padding: 8px 12px;
	border-radius: 6px;
}

.site-header .wp-block-navigation .wp-block-navigation-item a:hover {
	color: var(--text);
	background: var(--hover-fill);
}

.site-header .wp-block-navigation .current-menu-item a {
	color: var(--text);
}

.header-tools {
	gap: 6px;
}

.header-tools .wp-block-buttons {
	margin: 0;
}

/* Mobile overlay from the Navigation block, on-brand. */
.wp-block-navigation__responsive-container.is-menu-open {
	background: var(--bg);
	color: var(--text);
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item a {
	color: var(--text);
	font-size: 18px;
}

/* ---------- Footer (block markup) ------------------------------------ */
.site-footer .wp-block-navigation.site-footer__links {
	--wp--style--block-gap: 22px;
	font-family: var(--font-mono);
	font-size: 13px;
}

.site-footer__links .wp-block-navigation-item a {
	color: var(--text-2);
	text-decoration: none;
}

.site-footer__links .wp-block-navigation-item a:hover {
	color: var(--text);
	text-decoration: underline;
	text-decoration-color: var(--accent);
	text-underline-offset: 3px;
}

/* ---------- Layout safety for full-bleed bands ----------------------- */
main.wp-block-group {
	overflow-x: clip;
}

.band > .wrap {
	width: 100%;
}

/* Post title reuses the section-heading scale on single/page. */
.wp-block-post-title.display {
	font-size: clamp(28px, 3.4vw, 40px);
	margin-top: 14px;
}

/* Featured image spacing when present. */
.wp-block-post-featured-image.prose-hero {
	margin-bottom: 36px;
}

.wp-block-post-featured-image.prose-hero img {
	border-radius: var(--radius);
}
