/* =========================================================================
   ZACH KLEMPF — "NIGHT LOT"
   A dealership lot after dark: deep navy nights, sodium-vapor amber,
   headlight blue. Bricolage Grotesque headlines / Figtree body /
   IBM Plex Mono for the instrument-cluster details.

   Contents
   01. Tokens & base
   02. Utilities (container, mono, kicker, chips, a11y)
   03. Buttons
   04. Header & navigation
   05. Hero, ticker, odometer stats
   06. Sections, headings, watermark, waveform
   07. Portraits & splits
   08. Focus cards
   09. Cards & grids (podcast / news / post)
   10. Pills & players
   11. CTA band / inline CTA
   12. Page heroes & singles (prose, post-nav, pagination)
   13. Contact layout & form
   14. Timeline
   15. Social & footer
   16. Empty states & search form
   17. Motion (reveals, keyframes, reduced-motion)
   18. Responsive
   ========================================================================= */

/* ---------- 01. Tokens & base ------------------------------------------ */

:root {
	/* Night side */
	--night-950: #070c15;
	--night-900: #0b1322;
	--night-850: #0e1729;
	--night-800: #13203a;
	--night-line: rgba(148, 170, 215, 0.14);

	/* Sodium-vapor amber (the signature) */
	--amber: #f2a33c;
	--amber-bright: #ffbd5c;
	--amber-dim: rgba(242, 163, 60, 0.14);

	/* Headlight blue (links & secondary accents) */
	--headlight: #6ea8ff;
	--link-light: #1d5ed9;

	/* Day side */
	--paper: #f6f8fb;
	--tint: #edf1f7;
	--surface: #ffffff;
	--ink: #131a28;
	--ink-2: #4a566e;
	--ink-3: #7c8aa5;
	--line: #e3e8f1;

	/* Text on dark */
	--cloud: #e8edf8;
	--cloud-2: rgba(214, 224, 242, 0.72);
	--cloud-3: rgba(196, 208, 232, 0.52);

	/* Type */
	--font-display: "Bricolage Grotesque", "Figtree", system-ui, sans-serif;
	--font-body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

	/* Shape & motion */
	--radius: 18px;
	--radius-sm: 12px;
	--ease: cubic-bezier(0.22, 0.61, 0.2, 1);
	--header-h: 78px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--cloud);
	background: var(--night-950);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	line-height: 1.15;
	margin: 0 0 0.6em;
}

h1, h2, h3 {
	text-wrap: balance;
}

p {
	margin: 0 0 1em;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
}

::selection {
	background: var(--amber);
	color: var(--night-950);
}

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

[id] {
	scroll-margin-top: calc(var(--header-h) + 16px);
}

/* ---------- 02. Utilities ---------------------------------------------- */

.container {
	width: min(1160px, calc(100% - 48px));
	margin-inline: auto;
}

.container--narrow {
	width: min(780px, calc(100% - 48px));
}

.mono {
	font-family: var(--font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

/* Kicker — the amber-dash instrument label above headings */
.kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin: 0 0 1.1rem;
}

.kicker__dash {
	width: 26px;
	height: 2px;
	border-radius: 2px;
	background: var(--amber);
	flex: none;
}

.kicker--amber {
	color: var(--amber);
}

/* Pulsing "on air" indicator */
.onair-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--amber);
	flex: none;
	box-shadow: 0 0 0 0 rgba(242, 163, 60, 0.55);
	animation: zk-onair 2.2s var(--ease) infinite;
}

/* Chips (light context by default) */
.chip {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.7rem;
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: 0.66rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: var(--tint);
	border: 1px solid var(--line);
	color: var(--ink-2);
	white-space: nowrap;
}

.chip--outline {
	background: transparent;
}

.chip--amber {
	background: var(--amber-dim);
	border-color: rgba(242, 163, 60, 0.4);
	color: #a3620d;
}

/* Accessibility helpers */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: 1rem;
	top: -100px;
	z-index: 200;
	background: var(--amber);
	color: #241503;
	font-weight: 700;
	padding: 0.7rem 1.1rem;
	border-radius: 10px;
	transition: top 0.2s var(--ease);
}

.skip-link:focus {
	top: 1rem;
}

/* ---------- 03. Buttons ------------------------------------------------- */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	padding: 0.9rem 1.45rem;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	-webkit-tap-highlight-color: transparent;
	transition:
		transform 0.25s var(--ease),
		box-shadow 0.25s var(--ease),
		background-color 0.25s var(--ease),
		border-color 0.25s var(--ease),
		color 0.25s var(--ease);
}

.btn i {
	font-size: 0.85em;
	transition: transform 0.25s var(--ease);
}

.btn:hover {
	transform: translateY(-2px);
}

.btn:active {
	transform: translateY(0);
}

.btn:hover .fa-arrow-right {
	transform: translateX(3px);
}

.btn--amber {
	background: linear-gradient(180deg, var(--amber-bright), var(--amber));
	color: #241503;
	box-shadow: 0 10px 26px rgba(242, 163, 60, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--amber:hover {
	box-shadow: 0 14px 32px rgba(242, 163, 60, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--solid {
	background: var(--night-900);
	color: #fff;
	box-shadow: 0 8px 22px rgba(11, 19, 34, 0.22);
}

.btn--solid:hover {
	background: var(--night-800);
}

/* Ghost on dark backgrounds */
.btn--ghost {
	color: #fff;
	border-color: rgba(230, 238, 252, 0.28);
	background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
	border-color: rgba(230, 238, 252, 0.55);
	background: rgba(255, 255, 255, 0.09);
}

/* Ghost on light backgrounds */
.btn--ghost-dark {
	color: var(--night-900);
	border-color: rgba(19, 26, 40, 0.28);
	background: transparent;
}

.btn--ghost-dark:hover {
	border-color: var(--night-900);
	background: rgba(19, 26, 40, 0.05);
}

.btn--sm {
	padding: 0.62rem 1.1rem;
	font-size: 0.85rem;
}

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

/* ---------- 04. Header & navigation ------------------------------------ */

.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	border-bottom: 1px solid transparent;
	transition:
		background-color 0.3s var(--ease),
		border-color 0.3s var(--ease),
		box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
	background: rgba(7, 12, 21, 0.82);
	-webkit-backdrop-filter: blur(14px);
	backdrop-filter: blur(14px);
	border-color: var(--night-line);
	box-shadow: 0 10px 30px rgba(3, 6, 12, 0.35);
}

body.nav-open .site-header {
	background: var(--night-950);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	height: var(--header-h);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	position: relative;
	z-index: 102;
}

.brand__mark {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: linear-gradient(160deg, var(--amber-bright), var(--amber));
	color: #241503;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: 0.02em;
	box-shadow: 0 6px 16px rgba(242, 163, 60, 0.35);
}

.brand__name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.01em;
	color: #fff;
}

.custom-logo-link .custom-logo {
	max-height: 46px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.9rem;
}

.site-nav__list {
	list-style: none;
	display: flex;
	gap: 1.6rem;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	position: relative;
	display: inline-block;
	padding: 0.4rem 0;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.92rem;
	color: rgba(226, 233, 246, 0.75);
	transition: color 0.25s var(--ease);
}

.site-nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	border-radius: 2px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a,
.site-nav__list .current_page_item > a {
	color: #fff;
}

.site-nav__list a:hover::after,
.site-nav__list .current-menu-item > a::after,
.site-nav__list .current_page_item > a::after {
	transform: scaleX(1);
}

.site-nav__extra {
	display: flex;
	align-items: center;
	gap: 1.1rem;
}

.nav-toggle {
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid rgba(230, 238, 252, 0.28);
	background: transparent;
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
	position: relative;
	z-index: 102;
	transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-toggle:hover {
	border-color: var(--amber);
	color: var(--amber-bright);
}

.nav-toggle__close {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
	display: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
	display: block;
}

/* ---------- 05. Hero, ticker, stats ------------------------------------ */

.hero {
	position: relative;
	overflow: hidden;
	background: var(--night-950);
	color: var(--cloud);
	padding: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) 0 0;
}

/* Faint parking-bay lines fading up from the bottom of the lot */
.hero::before {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 240px;
	background-image: repeating-linear-gradient(
		90deg,
		rgba(230, 238, 252, 0.05) 0 2px,
		transparent 2px 150px
	);
	-webkit-mask-image: linear-gradient(180deg, transparent, #000 85%);
	mask-image: linear-gradient(180deg, transparent, #000 85%);
	pointer-events: none;
}

/* Sodium-vapor lamp glow (amber) with a cold headlight counter-glow */
.hero__glow {
	position: absolute;
	width: min(72vw, 920px);
	aspect-ratio: 1;
	top: -30%;
	right: -14%;
	border-radius: 50%;
	background: radial-gradient(
		circle at 50% 42%,
		rgba(242, 163, 60, 0.22),
		rgba(242, 163, 60, 0.05) 46%,
		transparent 68%
	);
	filter: blur(8px);
	pointer-events: none;
}

.hero__glow::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	transform: translate(-72%, 52%) scale(0.85);
	background: radial-gradient(circle, rgba(110, 168, 255, 0.13), transparent 62%);
}

.hero__glow--cta {
	top: -55%;
	right: auto;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.85;
}

.hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: clamp(2.5rem, 6vw, 4.5rem);
	align-items: center;
	padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
}

.hero__kicker {
	margin-bottom: 1.4rem;
}

.hero__title {
	font-size: clamp(2.5rem, 5.6vw, 4.05rem);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.025em;
	color: #fff;
	margin: 0 0 1.3rem;
}

.hero__sub {
	font-size: 1.08rem;
	line-height: 1.75;
	color: var(--cloud-2);
	max-width: 56ch;
	margin: 0 0 2rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-bottom: 2.2rem;
}

.hero__listen {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.hero__listen-label {
	font-family: var(--font-mono);
	font-size: 0.66rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cloud-3);
}

.hero__media {
	position: relative;
	justify-self: end;
	width: min(100%, 440px);
}

/* Press ticker */
.ticker {
	position: relative;
	display: flex;
	align-items: stretch;
	border-top: 1px solid var(--night-line);
	border-bottom: 1px solid var(--night-line);
	background: rgba(255, 255, 255, 0.015);
}

.ticker__flag {
	flex: none;
	display: flex;
	align-items: center;
	padding: 1rem 1.4rem;
	border-right: 1px solid var(--night-line);
	background: var(--night-950);
	color: var(--amber);
	font-size: 0.62rem;
	letter-spacing: 0.18em;
	position: relative;
	z-index: 2;
	white-space: nowrap;
}

.ticker__viewport {
	overflow: hidden;
	flex: 1;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.ticker__track {
	display: flex;
	width: max-content;
	animation: zk-ticker 38s linear infinite;
}

.ticker:hover .ticker__track {
	animation-play-state: paused;
}

.ticker__set {
	display: flex;
	align-items: center;
}

.ticker__item {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 1.05rem;
	color: rgba(214, 224, 242, 0.55);
	padding: 1rem 0;
	white-space: nowrap;
}

.ticker__dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--amber);
	opacity: 0.55;
	margin: 0 1.7rem;
	flex: none;
}

/* Odometer stats */
.stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--night-line);
	border: 1px solid var(--night-line);
	border-radius: var(--radius);
	overflow: hidden;
	margin: clamp(2.2rem, 5vw, 3.4rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.stats__item {
	background: var(--night-900);
	padding: 1.55rem 1.5rem 1.4rem;
	display: flex;
	flex-direction: column-reverse; /* number above its label */
	gap: 0.45rem;
	box-shadow: inset 0 3px 0 0 rgba(242, 163, 60, 0.85);
}

.stats__num {
	font-family: var(--font-mono);
	font-weight: 600;
	font-size: clamp(1.65rem, 3vw, 2.25rem);
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0;
	font-variant-numeric: tabular-nums;
}

.stats__label {
	font-size: 0.64rem;
	letter-spacing: 0.14em;
	color: var(--cloud-3);
}

/* ---------- 06. Sections, headings, watermark, waveform ----------------- */

.section {
	position: relative;
	padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section--light {
	background: var(--paper);
	color: var(--ink);
}

.section--tint {
	background: var(--tint);
}

.section--dark {
	background:
		radial-gradient(900px 480px at 12% -10%, rgba(242, 163, 60, 0.07), transparent 60%),
		var(--night-950);
	color: var(--cloud);
	overflow: hidden;
}

.section__head {
	max-width: 780px;
	margin-bottom: 2.6rem;
}

.section__head--row {
	max-width: none;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 2rem;
}

.section__head-side {
	flex: none;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-bottom: 0.35rem;
}

.section__title {
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	margin: 0;
}

.section--light .section__title {
	color: var(--ink);
}

.section--dark .section__title {
	color: #fff;
}

.section__more {
	margin: 2.6rem 0 0;
	text-align: center;
}

/* Giant stroked backdrop word ("ON AIR" / "MILEAGE") */
.watermark {
	position: absolute;
	top: 1.8rem;
	right: 0.5rem;
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(4.5rem, 15vw, 10.5rem);
	line-height: 1;
	letter-spacing: 0.06em;
	white-space: nowrap;
	color: transparent;
	-webkit-text-stroke: 1px rgba(230, 238, 252, 0.07);
	user-select: none;
	pointer-events: none;
}

/* Animated audio waveform */
.waveform {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	height: 26px;
	margin-top: 1.2rem;
}

.waveform span {
	width: 4px;
	border-radius: 3px;
	background: var(--amber);
	opacity: 0.85;
	transform-origin: bottom;
	animation: zk-wave 1.4s ease-in-out infinite;
}

.waveform span:nth-child(1)  { height: 40%; animation-delay: 0s; }
.waveform span:nth-child(2)  { height: 70%; animation-delay: 0.1s; }
.waveform span:nth-child(3)  { height: 35%; animation-delay: 0.2s; }
.waveform span:nth-child(4)  { height: 85%; animation-delay: 0.3s; }
.waveform span:nth-child(5)  { height: 55%; animation-delay: 0.4s; }
.waveform span:nth-child(6)  { height: 95%; animation-delay: 0.5s; }
.waveform span:nth-child(7)  { height: 45%; animation-delay: 0.6s; }
.waveform span:nth-child(8)  { height: 75%; animation-delay: 0.7s; }
.waveform span:nth-child(9)  { height: 30%; animation-delay: 0.8s; }
.waveform span:nth-child(10) { height: 65%; animation-delay: 0.9s; }
.waveform span:nth-child(11) { height: 50%; animation-delay: 1s; }
.waveform span:nth-child(12) { height: 80%; animation-delay: 1.1s; }

/* ---------- 07. Portraits & splits -------------------------------------- */

.split {
	display: grid;
	grid-template-columns: 0.85fr 1.15fr;
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

.split--about {
	align-items: start;
}

.split__body > p {
	color: var(--ink-2);
	font-size: 1.05rem;
	line-height: 1.75;
	margin: 0 0 1.1rem;
}

.split__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.7rem;
}

.portrait {
	position: relative;
	margin: 0;
}

.portrait img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 32px 64px rgba(4, 8, 16, 0.5);
}

.portrait--light img {
	box-shadow: 0 24px 52px rgba(19, 26, 40, 0.18);
}

/* Amber camera-frame corner ticks */
.portrait__corner {
	position: absolute;
	width: 44px;
	height: 44px;
	border: 3px solid var(--amber);
	z-index: 2;
	pointer-events: none;
}

.portrait__corner--tl {
	top: -10px;
	left: -10px;
	border-right: 0;
	border-bottom: 0;
	border-radius: 14px 0 0 0;
}

.portrait__corner--br {
	bottom: -10px;
	right: -10px;
	border-left: 0;
	border-top: 0;
	border-radius: 0 0 14px 0;
}

.portrait__placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.9rem;
	aspect-ratio: 4 / 5;
	border-radius: 20px;
	background: linear-gradient(180deg, var(--night-800), var(--night-900));
	border: 1px dashed rgba(230, 238, 252, 0.22);
	color: rgba(230, 238, 252, 0.45);
	text-align: center;
	padding: 1.5rem;
}

.portrait__placeholder i {
	font-size: 2.2rem;
}

.portrait__placeholder .mono {
	font-size: 0.64rem;
	letter-spacing: 0.14em;
}

.portrait--light .portrait__placeholder {
	background: linear-gradient(180deg, #fff, var(--tint));
	border-color: var(--line);
	color: var(--ink-3);
}

/* Floating instrument tags on the hero portrait */
.portrait__tag {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.65rem 0.95rem;
	border-radius: 12px;
	background: rgba(10, 17, 32, 0.86);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid var(--night-line);
	box-shadow: 0 14px 30px rgba(4, 8, 16, 0.4);
	color: var(--cloud);
	font-family: var(--font-mono);
	font-size: 0.6rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
	margin: 0;
}

.portrait__tag i {
	color: var(--amber);
	font-size: 0.8rem;
}

.portrait__tag--show {
	left: -1.4rem;
	bottom: 2.1rem;
	animation: zk-drift 7s ease-in-out infinite;
}

.portrait__tag--company {
	right: -1.2rem;
	top: 2.1rem;
	animation: zk-drift 8.5s ease-in-out infinite reverse;
}

/* ---------- 08. Focus cards --------------------------------------------- */

.focus-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 1.7rem 1.5rem;
	color: var(--ink);
	box-shadow: 0 8px 22px rgba(19, 26, 40, 0.05);
	transition:
		transform 0.35s var(--ease),
		box-shadow 0.35s var(--ease),
		border-color 0.35s var(--ease);
}

.focus-card:hover {
	transform: translateY(-6px);
	border-color: rgba(242, 163, 60, 0.55);
	box-shadow: 0 18px 40px rgba(19, 26, 40, 0.12);
}

.focus-card__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: var(--night-900);
	color: var(--amber-bright);
	font-size: 1.05rem;
	margin-bottom: 0.3rem;
	transition: background-color 0.35s var(--ease), color 0.35s var(--ease);
}

.focus-card:hover .focus-card__icon {
	background: var(--amber);
	color: #241503;
}

.focus-card h3 {
	font-size: 1.12rem;
	margin: 0;
	letter-spacing: -0.01em;
}

.focus-card p {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.6;
	color: var(--ink-2);
}

.focus-card__link {
	margin-top: auto;
	padding-top: 0.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.68rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--link-light);
}

.focus-card__link i {
	transition: transform 0.25s var(--ease);
	font-size: 0.75rem;
}

.focus-card:hover .focus-card__link i {
	transform: translateX(3px);
}

/* ---------- 09. Cards & grids ------------------------------------------- */

.grid {
	display: grid;
	gap: 1.6rem;
}

.grid--episodes {
	grid-template-columns: repeat(3, 1fr);
}

.grid--news {
	grid-template-columns: repeat(2, 1fr);
}

.grid--focus {
	grid-template-columns: repeat(4, 1fr);
}

.card {
	display: flex;
	flex-direction: column;
	border-radius: var(--radius);
	overflow: hidden;
	transition:
		transform 0.35s var(--ease),
		box-shadow 0.35s var(--ease),
		border-color 0.35s var(--ease);
}

.card:hover {
	transform: translateY(-6px);
}

/* Podcast cards keep the night-lot look on any background — the show
   travels with its own darkness. */
.card--podcast {
	background: linear-gradient(180deg, var(--night-850), var(--night-900));
	border: 1px solid var(--night-line);
	box-shadow: 0 14px 34px rgba(5, 9, 18, 0.32);
	color: var(--cloud);
}

.card--podcast:hover {
	border-color: rgba(242, 163, 60, 0.45);
	box-shadow: 0 22px 44px rgba(5, 9, 18, 0.45);
}

.card--news,
.card--post {
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: 0 10px 26px rgba(19, 26, 40, 0.06);
}

.card--news:hover,
.card--post:hover {
	border-color: rgba(242, 163, 60, 0.6);
	box-shadow: 0 18px 40px rgba(19, 26, 40, 0.12);
}

.card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--night-800);
}

.card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s var(--ease);
}

.card:hover .card__media img {
	transform: scale(1.05);
}

.media-fallback {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	color: rgba(230, 238, 252, 0.25);
	background: radial-gradient(120% 120% at 20% 0%, var(--night-800), var(--night-900));
}

.card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.85);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: rgba(7, 12, 21, 0.72);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(242, 163, 60, 0.5);
	color: var(--amber-bright);
	font-size: 1rem;
	opacity: 0;
	transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.card__play i {
	margin-left: 3px;
}

.card:hover .card__play {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.card__body {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	padding: 1.4rem 1.4rem 1.5rem;
	flex: 1;
}

.card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.95rem;
	margin: 0;
	font-size: 0.7rem;
	color: var(--ink-3);
}

.card--podcast .card__meta {
	color: var(--cloud-3);
}

.card__meta i {
	margin-right: 0.35rem;
	opacity: 0.85;
}

.card--podcast .chip--amber {
	background: rgba(242, 163, 60, 0.16);
	border-color: rgba(242, 163, 60, 0.4);
	color: var(--amber-bright);
}

.card__title {
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1.32;
	letter-spacing: -0.01em;
	margin: 0;
}

.card__title a {
	color: var(--ink);
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0 2px;
	transition: background-size 0.35s var(--ease);
}

.card--podcast .card__title a {
	color: var(--cloud);
}

.card__title a:hover {
	background-size: 100% 2px;
}

.card__guest {
	margin: 0;
	font-size: 0.9rem;
	color: var(--ink-2);
}

.card--podcast .card__guest {
	color: var(--cloud-2);
}

.card__guest i {
	margin-right: 0.4rem;
	color: var(--ink-3);
}

.card--podcast .card__guest i {
	color: var(--amber);
}

.card__excerpt {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.65;
	color: var(--ink-2);
}

.card--podcast .card__excerpt {
	color: var(--cloud-2);
}

.card__link {
	margin-top: auto;
	padding-top: 0.4rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--link-light);
}

.card--podcast .card__link {
	color: var(--amber-bright);
}

.card__link i {
	font-size: 0.75rem;
	transition: transform 0.25s var(--ease);
}

.card__link:hover i {
	transform: translateX(4px);
}

/* ---------- 10. Pills & players ----------------------------------------- */

.pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.6rem 1rem;
	border-radius: 999px;
	border: 1px solid rgba(230, 238, 252, 0.22);
	background: rgba(255, 255, 255, 0.03);
	color: var(--cloud);
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.85rem;
	transition:
		transform 0.25s var(--ease),
		border-color 0.25s var(--ease),
		background-color 0.25s var(--ease);
}

.pill i {
	color: var(--amber-bright);
}

.pill:hover {
	transform: translateY(-2px);
	border-color: var(--amber);
	background: rgba(242, 163, 60, 0.08);
}

.player iframe {
	display: block;
	width: 100%;
	border: 0;
	border-radius: 16px;
}

.player--video {
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 24px 50px rgba(19, 26, 40, 0.18);
}

.player--video iframe {
	height: 100%;
	border-radius: 0;
}

.player--audio iframe {
	height: 152px;
}

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

/* ---------- 11. CTA band / inline CTA ----------------------------------- */

.cta-band {
	overflow: hidden;
}

.cta-band__inner {
	position: relative;
	max-width: 740px;
	margin-inline: auto;
	text-align: center;
}

.cta-band__inner .kicker {
	justify-content: center;
}

.cta-band__title {
	font-size: clamp(1.9rem, 4vw, 2.8rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 1rem;
}

.cta-band__sub {
	font-size: 1.05rem;
	color: var(--cloud-2);
	margin: 0 0 2rem;
}

.cta-band__actions {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.9rem;
}

.cta-inline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.cta-inline .section__title {
	margin-bottom: 0.4rem;
}

.cta-inline p {
	margin: 0;
	color: var(--ink-2);
}

.cta-inline__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
}

/* ---------- 12. Page heroes & singles ----------------------------------- */

.page-hero {
	position: relative;
	overflow: hidden;
	background: var(--night-950);
	color: var(--cloud);
	padding: calc(var(--header-h) + clamp(2.8rem, 6vw, 4.5rem)) 0 clamp(2.8rem, 6vw, 4.2rem);
}

.page-hero .hero__glow {
	top: -58%;
	right: -18%;
	opacity: 0.85;
}

.page-hero .container {
	position: relative;
}

.page-hero__title {
	font-size: clamp(2.1rem, 4.6vw, 3.3rem);
	font-weight: 700;
	line-height: 1.06;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 1rem;
	max-width: 22ch;
}

.page-hero__sub {
	max-width: 64ch;
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--cloud-2);
	margin: 0;
}

.page-hero .pills {
	margin-top: 1.7rem;
}

.page-hero--404 {
	min-height: 72vh;
	display: flex;
	align-items: center;
	padding-bottom: clamp(4rem, 9vw, 7rem);
}

.page-hero--404 .hero__actions {
	margin: 2rem 0 0;
}

.episode-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem 1.4rem;
	margin: 0.5rem 0 0;
	font-size: 0.7rem;
	color: var(--cloud-3);
}

.episode-meta i {
	margin-right: 0.4rem;
	color: var(--amber);
}

.episode-player {
	margin: 0 0 2.6rem;
}

.episode-art {
	margin: 0 0 2.6rem;
}

.episode-art img {
	width: 100%;
	border-radius: var(--radius);
	box-shadow: 0 24px 50px rgba(19, 26, 40, 0.16);
}

/* Long-form content */
.prose {
	font-size: 1.06rem;
	line-height: 1.85;
	color: var(--ink-2);
}

.prose > * {
	margin: 0 0 1.2em;
}

.prose > :first-child {
	margin-top: 0;
}

.prose h2,
.prose h3,
.prose h4 {
	font-family: var(--font-display);
	color: var(--ink);
	letter-spacing: -0.015em;
	line-height: 1.25;
	margin: 2em 0 0.7em;
}

.prose h2 { font-size: 1.6rem; }
.prose h3 { font-size: 1.25rem; }
.prose h4 { font-size: 1.05rem; }

.prose a {
	color: var(--link-light);
	text-decoration: underline;
	text-decoration-color: rgba(29, 94, 217, 0.35);
	text-underline-offset: 3px;
	transition: text-decoration-color 0.2s var(--ease);
}

.prose a:hover {
	text-decoration-color: var(--link-light);
}

.prose strong {
	color: var(--ink);
}

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

.prose li {
	margin: 0.45em 0;
}

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

.prose blockquote {
	margin: 1.6em 0;
	padding: 0.4em 0 0.4em 1.3em;
	border-left: 3px solid var(--amber);
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.12rem;
	color: var(--ink);
}

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

.prose figcaption {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin-top: 0.6em;
}

.prose__label {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink-3);
	margin: 0 0 1.6em;
}

.prose__label i {
	color: var(--amber);
}

/* Plain prose inside dark page heroes (Contact intro) */
.prose--plain {
	color: var(--cloud-2);
}

.prose--plain p {
	max-width: 64ch;
	margin: 0 0 0.6em;
}

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

/* Prev / next episode strip */
.post-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 1.4rem;
	flex-wrap: wrap;
	margin-top: 3.2rem;
	padding-top: 1.8rem;
	border-top: 1px solid var(--line);
}

.post-nav a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-2);
	transition: color 0.2s var(--ease);
}

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

.post-nav__all {
	color: var(--ink-3);
}

/* WordPress pagination */
.pagination {
	margin-top: 3rem;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.55rem;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-width: 44px;
	height: 44px;
	padding: 0 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--surface);
	font-family: var(--font-mono);
	font-size: 0.76rem;
	letter-spacing: 0.06em;
	color: var(--ink-2);
	transition:
		border-color 0.25s var(--ease),
		color 0.25s var(--ease),
		background-color 0.25s var(--ease);
}

.pagination a.page-numbers:hover {
	border-color: var(--amber);
	color: var(--ink);
}

.pagination .page-numbers.current {
	background: var(--night-900);
	border-color: var(--night-900);
	color: #fff;
}

.pagination .page-numbers.dots {
	border: 0;
	background: none;
}

/* ---------- 13. Contact layout & form ----------------------------------- */

.contact-layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.contact-layout__form {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: clamp(1.6rem, 3.5vw, 2.4rem);
	box-shadow: 0 18px 44px rgba(19, 26, 40, 0.08);
}

.aside-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 1.4rem 1.5rem;
	box-shadow: 0 8px 22px rgba(19, 26, 40, 0.05);
}

.aside-card + .aside-card {
	margin-top: 1rem;
}

.aside-card__title {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 1rem;
	letter-spacing: -0.01em;
	color: var(--ink);
	margin: 0 0 0.55rem;
}

.aside-card__title i {
	color: var(--amber);
	font-size: 0.9rem;
}

.aside-card p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--ink-2);
}

.aside-card p + p {
	margin-top: 0.6rem;
}

.aside-card a {
	color: var(--link-light);
}

.aside-card .card__link {
	margin-top: 0.2rem;
}

/* Form */
.contact-form .form-field {
	margin: 0 0 1.15rem;
}

.contact-form label {
	display: block;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--ink);
	margin-bottom: 0.45rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--paper);
	color: var(--ink);
	font: inherit;
	font-size: 0.98rem;
	transition:
		border-color 0.2s var(--ease),
		box-shadow 0.2s var(--ease),
		background-color 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: var(--amber);
	box-shadow: 0 0 0 4px rgba(242, 163, 60, 0.16);
	background: #fff;
}

.contact-form textarea {
	resize: vertical;
	min-height: 150px;
}

.form-row--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

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

.select-wrap select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 2.6rem;
	cursor: pointer;
}

.select-wrap i {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 0.72rem;
	color: var(--ink-3);
}

/* Honeypot — invisible to humans, tasty to bots */
.form-field--hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.form-actions {
	margin: 1.4rem 0 0;
}

.form-status {
	display: none;
	margin-top: 1.1rem;
	border-radius: var(--radius-sm);
	font-size: 0.95rem;
	line-height: 1.55;
}

.form-status.is-success,
.form-status.is-error {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	padding: 0.95rem 1.1rem;
}

.form-status.is-success {
	background: #e9f7ef;
	border: 1px solid #bfe6cd;
	color: #166534;
}

.form-status.is-error {
	background: #fdeeee;
	border: 1px solid #f3c3c3;
	color: #b3261e;
}

.form-status i {
	margin-top: 0.18rem;
	flex: none;
}

/* ---------- 14. Timeline ------------------------------------------------- */

.timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	position: relative;
	max-width: 820px;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 7px;
	top: 10px;
	bottom: 10px;
	width: 2px;
	background: linear-gradient(180deg, var(--amber), rgba(242, 163, 60, 0.05));
}

.timeline__item {
	position: relative;
	padding: 0 0 2.4rem 2.7rem;
}

.timeline__item:last-child {
	padding-bottom: 0;
}

.timeline__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--night-950);
	border: 3px solid var(--amber);
	box-shadow: 0 0 0 5px rgba(242, 163, 60, 0.12);
}

.timeline__year {
	color: var(--amber);
	font-size: 0.68rem;
	letter-spacing: 0.18em;
}

.timeline__item h3 {
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: -0.01em;
	margin: 0.45rem 0 0.5rem;
}

.timeline__item p {
	margin: 0;
	max-width: 62ch;
	line-height: 1.7;
	color: var(--cloud-2);
}

/* ---------- 15. Social & footer ------------------------------------------ */

.social {
	list-style: none;
	display: flex;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
}

.social a {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid var(--line);
	background: var(--surface);
	color: var(--ink-2);
	font-size: 0.95rem;
	transition:
		transform 0.25s var(--ease),
		background-color 0.25s var(--ease),
		border-color 0.25s var(--ease),
		color 0.25s var(--ease);
}

.social a:hover {
	transform: translateY(-2px);
	background: var(--night-900);
	border-color: var(--night-900);
	color: var(--amber-bright);
}

/* Dark-context variants (header + footer) */
.social--nav a,
.social--footer a {
	background: transparent;
	border-color: rgba(230, 238, 252, 0.22);
	color: var(--cloud-2);
}

.social--nav a:hover,
.social--footer a:hover {
	background: var(--amber);
	border-color: var(--amber);
	color: #241503;
}

.social--nav {
	gap: 0.55rem;
}

.social--nav a {
	width: 38px;
	height: 38px;
	font-size: 0.85rem;
}

.site-footer {
	position: relative;
	overflow: hidden;
	background: var(--night-950);
	border-top: 1px solid var(--night-line);
	color: var(--cloud-2);
	padding: clamp(3.5rem, 7vw, 5.5rem) 0 0;
}

.site-footer::before {
	content: "";
	position: absolute;
	left: -10%;
	bottom: -55%;
	width: 640px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(242, 163, 60, 0.07), transparent 65%);
	pointer-events: none;
}

.site-footer__grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 2.5rem 3rem;
	padding-bottom: 3rem;
}

.site-footer__brand p {
	margin: 1.1rem 0 1.3rem;
	max-width: 34ch;
	font-size: 0.95rem;
	line-height: 1.7;
}

.site-footer__title {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 1.1rem;
	font-family: var(--font-mono);
	font-size: 0.66rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cloud-3);
}

.site-footer__title::before {
	content: "";
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: var(--amber);
}

.site-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.3rem;
}

.site-footer__links a,
.site-footer__plain {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.3rem 0;
	font-size: 0.93rem;
	color: rgba(214, 224, 242, 0.72);
	transition: color 0.2s var(--ease);
}

.site-footer__links i {
	width: 16px;
	text-align: center;
	font-size: 0.8rem;
	color: var(--cloud-3);
	transition: color 0.2s var(--ease);
}

.site-footer__links a:hover {
	color: var(--amber-bright);
}

.site-footer__links a:hover i {
	color: var(--amber-bright);
}

.site-footer__bottom {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	border-top: 1px solid var(--night-line);
	padding: 1.4rem 0;
}

.site-footer__bottom p {
	margin: 0;
	font-size: 0.8rem;
	color: var(--cloud-3);
}

.to-top {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.55rem 1.1rem;
	border-radius: 999px;
	border: 1px solid var(--night-line);
	background: none;
	color: var(--cloud-2);
	font-family: var(--font-mono);
	font-size: 0.66rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		transform 0.25s var(--ease),
		border-color 0.25s var(--ease),
		color 0.25s var(--ease);
}

.to-top:hover {
	transform: translateY(-2px);
	border-color: var(--amber);
	color: var(--amber-bright);
}

/* ---------- 16. Empty states & search form ------------------------------- */

.empty-note {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	margin: 0;
	padding: 1.4rem 1.5rem;
	border-radius: 14px;
	border: 1px dashed var(--line);
	background: var(--tint);
	color: var(--ink-2);
}

.empty-note i {
	color: var(--amber);
	flex: none;
}

.section--dark .empty-note {
	background: rgba(255, 255, 255, 0.03);
	border-color: var(--night-line);
	color: var(--cloud-2);
}

.search-form {
	display: flex;
	gap: 0.6rem;
	max-width: 480px;
	margin-top: 2rem;
}

.search-form label {
	flex: 1;
	display: block;
}

.search-form .search-field {
	width: 100%;
	padding: 0.85rem 1.1rem;
	border-radius: var(--radius-sm);
	border: 1px solid rgba(230, 238, 252, 0.25);
	background: rgba(255, 255, 255, 0.05);
	color: #fff;
	font: inherit;
}

.search-form .search-field::placeholder {
	color: var(--cloud-3);
}

.search-form .search-field:focus {
	outline: none;
	border-color: var(--amber);
	box-shadow: 0 0 0 4px rgba(242, 163, 60, 0.16);
}

.search-form .search-submit {
	padding: 0 1.3rem;
	border: 0;
	border-radius: var(--radius-sm);
	background: var(--amber);
	color: #241503;
	font-family: var(--font-display);
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.search-form .search-submit:hover {
	background: var(--amber-bright);
	transform: translateY(-1px);
}

/* Light-context search (index fallback) */
.section--light .search-form .search-field {
	background: var(--surface);
	border-color: var(--line);
	color: var(--ink);
}

/* ---------- 17. Motion ---------------------------------------------------- */

/* Scroll reveals — hidden state only applies when JS is running */
.zk-js [data-reveal] {
	opacity: 0;
	transform: translateY(26px);
	transition:
		opacity 0.7s var(--ease),
		transform 0.7s var(--ease);
}

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

@keyframes zk-onair {
	70% { box-shadow: 0 0 0 10px rgba(242, 163, 60, 0); }
	100% { box-shadow: 0 0 0 0 rgba(242, 163, 60, 0); }
}

@keyframes zk-ticker {
	to { transform: translateX(-50%); }
}

@keyframes zk-wave {
	0%, 100% { transform: scaleY(0.45); }
	50% { transform: scaleY(1); }
}

@keyframes zk-drift {
	50% { transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	html {
		scroll-behavior: auto !important;
	}

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

	.ticker__track,
	.waveform span,
	.portrait__tag,
	.onair-dot {
		animation: none !important;
	}
}

/* Minimal Gutenberg alignment support */
.alignwide,
.alignfull {
	max-width: 100%;
}

.wp-block-image img {
	border-radius: 14px;
}

/* ---------- 18. Responsive ------------------------------------------------ */

@media (max-width: 1080px) {
	.grid--focus {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	.hero__grid {
		grid-template-columns: 1fr;
	}

	.hero__media {
		justify-self: start;
		margin-top: 0.5rem;
		width: min(100%, 420px);
	}

	.portrait__tag--show {
		left: 1rem;
		bottom: 1rem;
	}

	.portrait__tag--company {
		right: 1rem;
		top: 1rem;
	}

	.split {
		grid-template-columns: 1fr;
	}

	.split__media {
		max-width: 460px;
	}

	.section__head--row {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.3rem;
	}

	.grid--episodes {
		grid-template-columns: repeat(2, 1fr);
	}

	.stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.watermark {
		top: 1rem;
		right: 0;
	}
}

@media (max-width: 920px) {
	.nav-toggle {
		display: grid;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: 101;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 1.6rem;
		padding: calc(var(--header-h) + 2.2rem) 8vw 3rem;
		background: linear-gradient(180deg, var(--night-950), var(--night-900));
		overflow-y: auto;
		transform: translateX(102%);
		visibility: hidden;
		transition:
			transform 0.45s var(--ease),
			visibility 0s linear 0.45s;
	}

	body.nav-open .site-nav {
		transform: none;
		visibility: visible;
		transition: transform 0.45s var(--ease);
	}

	body.nav-open {
		overflow: hidden;
	}

	.site-nav__list {
		flex-direction: column;
		gap: 0;
		width: 100%;
	}

	.site-nav__list a {
		display: block;
		width: 100%;
		padding: 0.95rem 0;
		font-size: 1.4rem;
		color: var(--cloud);
		border-bottom: 1px solid var(--night-line);
	}

	.site-nav__list a::after {
		display: none;
	}

	.site-nav__extra {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.3rem;
		margin-top: 0.5rem;
	}
}

@media (max-width: 760px) {
	.grid--news {
		grid-template-columns: 1fr;
	}

	.contact-layout {
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ticker__flag {
		padding: 0.85rem 1rem;
		font-size: 0.56rem;
	}

	.cta-inline {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 640px) {
	.container,
	.container--narrow {
		width: calc(100% - 36px);
	}

	.grid--episodes {
		grid-template-columns: 1fr;
	}

	.grid--focus {
		grid-template-columns: 1fr;
	}

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

	.post-nav {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.9rem;
	}
}

@media (max-width: 520px) {
	.stats {
		grid-template-columns: 1fr;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

	.hero__actions .btn,
	.cta-band__actions .btn,
	.page-hero--404 .hero__actions .btn {
		flex: 1 1 auto;
		justify-content: center;
	}

	.search-form {
		flex-direction: column;
	}

	.search-form .search-submit {
		padding: 0.85rem 1.3rem;
	}
}
