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

:root {
	--bg:              #0F0F0F;
	--surface:         #161410;
	--border:          #2A2A2A;
	--text:            #F0EDE8;
	--muted:           #888880;
	--accent:          #C4A882;
	--accent-dim:      #9E8565;
	--accent-ink:      #6B5340;
	--light-bg:        #F0EAE0;
	--light-surface:   #E8E0D5;
	--light-border:    #D5CBBD;
	--light-text:      #1C1814;
	--light-muted:     #7A7268;
	--paper:           #FAF6F0;
}

body {
	background: #1a1a1a;
	font-family: 'DM Sans', system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
}

ul li {
	margin-left: 0;
}

.sidebar-menu-item a {
	color: var(--accent-ink);
	text-decoration: none;
}

.page-body blockquote, .post-body blockquote, .content blockquote {
	padding: 0 2rem;
	background: transparent;
}

.top-bar {
	background: transparent;
	border-bottom: 0;
	color: inherit;
}

.is-homepage .site-main {
	padding: 0;
}

.logo-default {
	max-height: 40px !important;
}

ol {
	font-size: 16px;
	color: #3a3028;
}

#custom-homepage-hero, #full-picture, #download, #project-timeline {
	padding: 0;
	margin: 0;
}

#project-timeline .container {
	padding: 100px 0;
}

.timeline-block__tagline, .timeline-block__title {
	max-width: inherit;
	text-align: left;
}

.timeline-block--vertical .timeline-block__items {
	max-width: inherit;
	margin-left: 3rem;
}

/* ── Shared nav ────────────────────────────────────── */
.site-header, body.scrolled .site-header {
	background: rgba(15,15,15,0.95);
	border-bottom: 1px solid var(--border);
	align-items: center;
	justify-content: space-between;
}

.header-content[data-header-type="inline"] .header-left {
    justify-content: space-between;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}
.nav-logo-mark {
	width: 30px; height: 30px;
	border-radius: 7px;
	background: var(--accent);
	display: flex; align-items: center; justify-content: center;
	font-family: 'DM Serif Display', serif;
	font-size: 15px;
	color: var(--bg);
}
.nav-logo-name {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 20px;
	color: var(--text);
}
/* Push the nav to the right when there is no header CTA.
   The default theme uses a 3-col grid (1fr auto 1fr) which centers the
   menu. Collapsing to 2 columns (1fr auto) pushes it to the right edge. */
.header-content.no-header-cta[data-header-type="inline"] {
	grid-template-columns: minmax(0, 1fr) auto;
}

/* Horizontal row of menu items */
.site-nav .menu-list {
	gap: 32px;
	list-style: none;
}

.menu-item {
	list-style: none;
}

.menu-item a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta a {
	padding: 8px 18px;
	border: 1px solid var(--border) !important;
	border-radius: 7px;
	color: var(--text) !important;
	font-size: 13px !important;
	font-weight: 500;
	transition: border-color 0.2s, color 0.2s !important;
}
.nav-cta:hover { border-color: var(--accent) !important; color: var(--accent) !important; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
	background: var(--bg);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 80px 48px 64px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse 70% 55% at 50% 35%, rgba(196,168,130,0.065) 0%, transparent 65%);
	pointer-events: none;
}
.hero-eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-dim);
	margin-bottom: 36px;
}
.hero-h1 {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: clamp(38px, 5.5vw, 72px);
	line-height: 1.08;
	color: var(--text);
	/* max-width: 840px; */
	margin-bottom: 28px;
	letter-spacing: -0.5px;
}
.hero-h1 em {
	font-style: normal;
	color: var(--accent);
}
.hero-sub {
	font-size: 17px !important;
	color: var(--muted) !important;
	max-width: 460px !important;
	line-height: 1.72 !important;
	margin-bottom: 24px !important;
}
.hero-formats {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 40px;
}
.hero-fmt {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10.5px;
	color: var(--accent);
	padding: 4px 10px;
	border: 1px solid #252220;
	border-radius: 4px;
	background: #121008;
}
.hero-dl-link {
	font-size: 13px;
	color: var(--muted);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 60px;
	transition: color 0.2s;
	border-bottom: 1px solid transparent;
	padding-bottom: 1px;
}
.hero-dl-link:hover { color: var(--text); border-color: var(--border); }
.hero-app {
	width: 100%;
	max-width: 950px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.hero-app::after {
	content: '';
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(15,15,15,0.45) 100%);
}
.app-mockup-inner {
	position: relative; z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}
.vinyl {
	width: 148px; height: 148px;
	border-radius: 50%;
	background: conic-gradient(
		from 0deg,
		#1a1612 0deg, #2e2820 30deg, #1a1612 60deg,
		#3a3028 90deg, #1a1612 130deg, #2a2218 170deg,
		#1a1612 200deg, #362e24 240deg, #1a1612 280deg,
		#2c2418 320deg, #1a1612 360deg
	);
	display: flex; align-items: center; justify-content: center;
	box-shadow:
		0 0 0 1.5px #2a2420,
		0 0 0 18px rgba(196,168,130,0.025),
		0 12px 48px rgba(0,0,0,0.5);
	margin-bottom: 20px;
}
.vinyl-center {
	width: 30px; height: 30px;
	border-radius: 50%;
	background: #0f0d0b;
	border: 1.5px solid #2a2420;
}
.app-track {
	font-family: 'DM Serif Display', serif;
	font-size: 17px;
	color: rgba(240,237,232,0.5);
	letter-spacing: 0.01em;
}
.app-artist {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: rgba(136,136,128,0.4);
	margin-top: 5px;
	letter-spacing: 0.05em;
}

/* ── WHY ───────────────────────────────────────────── */
#owning-music {
	background: var(--light-bg);
	padding-top: 104px;
    padding-bottom: 104px;
}

p.eyebrow {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10.5px !important;
	font-weight: normal;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-dim) !important;
	margin-bottom: 18px !important;
}
#owning-music h2, .timeline-block__title {
	font-family: 'DM Serif Display', Georgia, serif !important;
	font-size: clamp(30px, 3.5vw, 42px) !important;
	color: var(--light-text) !important;
	line-height: 1.15 !important;
	margin-bottom: 32px !important;
}
#owning-music .content p {
	font-size: 16.5px;
	color: var(--light-muted);
	line-height: 1.82;
	margin-bottom: 20px;
}
#owning-music strong { color: var(--light-text); font-weight: 500; }
#owning-music .last-column { padding-top: 46px; }
.spec-group { margin-bottom: 24px; }
#owning-music .last-column strong {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a89e94;
	display: block;
	margin-bottom: -10px;
}
#owning-music .last-column p {
	font-family: 'JetBrains Mono', monospace;
	font-size: 12.5px;
	color: var(--accent-ink);
	line-height: 1.8;
}
#owning-music .last-column hr {
	border: none;
	border-top: 1px solid var(--light-border);
	margin: 20px 0;
}

/* ── ECOSYSTEM ─────────────────────────────────────── */
#full-picture {
	background: var(--bg);
	padding-top: 104px;
    padding-bottom: 104px;
}
.ecosystem-header { margin-bottom: 60px; }
#full-picture h2 {
	font-family: 'DM Serif Display', Georgia, serif !important;
	font-size: clamp(32px, 3.8vw, 46px) !important;
	color: var(--text) !important;
	line-height: 1.12 !important;
	margin-bottom: 60px;
}
.eco-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

#full-picture .grid-layout {
	gap: 0;
}
#full-picture .grid-layout-col {
	padding: 36px 40px 36px 0;
	border-top: 1px solid var(--border);
}
#full-picture .grid-layout-col:not(:first-child) {
	padding-left: 40px;
	border-left: 1px solid var(--border);
}
#full-picture strong {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	font-weight: normal;
	color: var(--accent-dim);
	letter-spacing: 0.08em;
	margin-bottom: 18px;
	display: block;
}
#full-picture .grid-layout-col h3 {
	font-family: 'DM Serif Display', Georgia, serif !important;
	font-size: 24px !important;
	color: var(--text) !important;
	margin: 0 0 14px !important;
	line-height: 1.2 !important;
}
#full-picture .grid-layout-col p {
	font-size: 14px !important;
	color: var(--muted) !important;
	line-height: 1.78 !important;
}
.eco-body p {
	margin-bottom: 0;
}
#full-picture .grid-layout-col em {
	display: inline-block;
	margin-top: 0;
	font-family: 'JetBrains Mono', monospace;
	font-size: 10px;
	color: var(--accent-dim);
	border: 1px solid var(--border);
	padding: 3px 9px;
	border-radius: 3px;
	letter-spacing: 0.04em;
	font-style: normal;
}

/* ── JOURNAL PREVIEW ───────────────────────────────── */
.latest-posts-block.latest-posts-block--list {
	background: var(--paper);
	padding-top: 104px;
    padding-bottom: 104px;
}
.latest-posts-block.latest-posts-block--list .container { max-width: 760px; margin: 0 auto; }
.latest-posts-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 42px;
}
.latest-posts-heading {
	font-family: 'DM Serif Display', Georgia, serif !important;
	font-size: 38px !important;
	color: var(--light-text) !important;
}
.latest-posts-view-all-inline {
	font-size: 13px;
	color: var(--light-muted);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.2s;
}
.latest-posts-view-all-inline:hover { color: var(--accent-ink); }
.lp-list-item {
	padding: 26px 0;
	border-top: 1px solid var(--light-border);
	border-bottom: 0;
}
.lp-list-item:last-child { border-bottom: 1px solid var(--light-border); }
.lp-list-item__date {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10.5px;
	color: var(--light-muted);
	margin-bottom: 8px;
	display: block;
}
.lp-list-item__title {
	font-size: 20px !important;
	font-weight: 600 !important;
	margin-bottom: 8px !important;
	margin-top: 0 !important;
	line-height: 1.35 !important;
}
.lp-list-item__title a {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 22px;
	color: var(--light-text);
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
	line-height: 1.25;
	transition: color 0.2s;
	font-weight: normal;
}
.lp-list-item__title a:hover { color: var(--accent-ink); }
.lp-list-item__excerpt {
	font-size: 14px !important;
	color: var(--light-muted) !important;
	line-height: 1.68 !important;
	margin-bottom: 0 !important;
}

.homepage .lp-list-item__read-more {
	display: none;
}

/* ── DOWNLOAD / SUPPORT ────────────────────────────── */
.dl-support {
	background: var(--bg);
	padding: 104px 48px;
	border-top: 1px solid var(--border);
}
.dl-inner {
	max-width: 480px;
	margin: 0 auto;
	text-align: center;
}
.dl-h2 {
	font-family: 'DM Serif Display', Georgia, serif !important;
	font-size: clamp(34px, 4vw, 44px) !important;
	color: var(--text) !important;
	line-height: 1.2 !important;
	margin-bottom: 14px !important;
}
.dl-sub {
	font-size: 15px !important;
	color: var(--muted) !important;
	line-height: 1.72 !important;
	margin-bottom: 40px !important;
}
.dl-btn {
	display: inline-flex !important;
	align-items: center !important;
	gap: 9px;
	padding: 12px 26px;
	border: 1px solid var(--border);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
	margin-bottom: 14px;
}
.dl-btn:hover { border-color: var(--accent); color: var(--accent); }
.dl-meta {
	font-family: 'JetBrains Mono', monospace !important;
	font-size: 10.5px !important;
	color: #3a3a38 !important;
	margin-bottom: 52px !important;
	line-height: 1.8 !important;
}
.dl-rule {
	border: none;
	border-top: 1px solid var(--border);
	margin-bottom: 32px;
}
.dl-support-copy {
	font-size: 14px !important;
	color: var(--muted) !important;
	line-height: 1.7 !important;
	margin-bottom: 20px !important;
}
.donate-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	font-size: 15px;
}
.donate-row a {
	color: var(--accent-dim);
	text-decoration: none;
	padding: 0 13px;
	transition: color 0.2s;
}
.donate-row a:hover { color: var(--accent); }
.donate-row .dot { color: #2e2e2c; font-size: 14px; }
.donate-via {
	font-family: 'JetBrains Mono', monospace !important;
	font-size: 10px !important;
	color: #363632 !important;
	margin-top: 10px !important;
	letter-spacing: 0.06em !important;
}

/* ── FOOTER ────────────────────────────────────────── */
.site-footer {
	background: var(--bg);
	border-top: 1px solid var(--border);
	padding: 40px 48px;
}
.footer-row {
	max-width: 1040px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-brand-name {
	font-family: 'DM Serif Display', serif;
	font-size: 17px;
	color: var(--text);
}
.footer-license {
	font-size: 11.5px;
	color: #3a3a38;
	margin-top: 3px;
}
.footer-links {
	display: flex;
	gap: 26px;
}
.footer-links a {
	font-size: 13px;
	color: var(--muted);
	text-decoration: none;
	transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }
.footer-tagline {
	text-align: center;
	font-size: 11px;
	color: #2e2e2c;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid #171715;
	max-width: 1040px;
	margin-left: auto;
	margin-right: auto;
}

/* ── JOURNAL INDEX PAGE ────────────────────────────── */
.journal .site-main {
	background: var(--paper);
	padding-top: 80px;
    padding-bottom: 120px;
}
.journal .site-main .container { max-width: 680px; margin: 0 auto; }
.back-link {
	font-size: 13px;
	color: var(--light-muted);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 52px;
	transition: color 0.2s;
}
.back-link:hover { color: var(--accent-ink); }
.journal .archive-header {
	border-bottom: 0;
	padding-bottom: 0;
	margin-bottom: 0;
}
.journal .archive-intro {
	padding: 0;
	margin: 0;
	border-bottom: 0;
}
.journal .archive-intro .content-block {
	padding-top: 0;
	margin: 0;
}
.journal .archive-intro .content-block p {
	font-size: 15px;
	color: var(--light-muted);
	line-height: 1.65;
}
.journal .archive-header h1 {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: 48px;
	color: var(--light-text);
	margin-bottom: 10px;
	line-height: 1.1;
}
.journal-index-sub {
	font-size: 15px;
	color: var(--light-muted);
	margin-bottom: 60px;
	line-height: 1.65;
}
.journal .lp-list-item {
	padding: 28px 0;
	border-top: 1px solid var(--light-border);
}
.journal .lp-list-item:last-child { border-bottom: 1px solid var(--light-border); }
.journal .lp-list-item__date {
	font-family: 'JetBrains Mono', monospace;
	font-size: 10.5px;
	color: var(--light-muted);
	margin-bottom: 8px;
	display: block;
}
.journal .lp-list-item__title a {
	font-family: 'DM Serif Display', serif;
	font-size: 22px;
	color: var(--light-text);
	text-decoration: none;
	display: block;
	margin-bottom: 8px;
	line-height: 1.25;
	transition: color 0.2s;
}
.jindex-title:hover { color: var(--accent-ink); }
.journal .lp-list-item__excerpt {
	font-size: 14px;
	color: var(--light-muted);
	line-height: 1.68;
	margin-bottom: 10px;
}
.lp-list-item__read-more {
	font-size: 12px;
	color: var(--accent-ink);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

/* ── JOURNAL POST PAGE ─────────────────────────────── */
.site-main {
	background: var(--paper);
}
.post-page-inner { max-width: 640px; margin: 0 auto; }
.post-meta {
	font-family: 'JetBrains Mono', monospace;
	font-size: 11px;
	color: var(--light-muted);
	margin-bottom: 18px;
	display: block;
}
.post-title {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: clamp(30px, 4vw, 48px);
	color: var(--light-text);
	line-height: 1.13;
	margin-bottom: 44px;
	letter-spacing: -0.3px;
}
.site-main .post-body p, .site-main .post-body ul {
	font-size: 17px;
	color: #3a3028;
	line-height: 1.86;
	margin-bottom: 24px;
}
.site-main h2, .site-main h3 {
	font-family: 'DM Serif Display', serif;
	font-size: 24px;
	color: var(--light-text);
	margin: 40px 0 14px;
	line-height: 1.2;
}
.post-body code {
	font-family: 'JetBrains Mono', monospace;
	font-size: 13px;
	background: var(--light-surface);
	padding: 2px 7px;
	border-radius: 4px;
	color: var(--accent-ink);
}
.post-body pre {
	background: var(--light-surface);
	border: 1px solid var(--light-border);
	border-radius: 8px;
	padding: 20px 24px;
	margin: 24px 0;
	overflow-x: auto;
}
.post-body pre code {
	background: none;
	padding: 0;
	font-size: 13px;
	line-height: 1.72;
	color: #3a3028;
}
.post-nav-label {
	display: none;
}

.post-navigation {
	margin-top: 64px;
	padding-top: 28px;
	border-top: 1px solid var(--light-border);
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--light-muted);
	gap: 24px;	
}
.post-nav-item a {
	color: var(--accent-ink);
	text-decoration: none;
	line-height: 1.5;
	font-weight: normal;
}
.post-nav a:hover { text-decoration: underline; }

.page-header h1 {
	font-family: 'DM Serif Display', Georgia, serif;
	font-size: clamp(30px, 4vw, 48px);
	color: var(--light-text);
	line-height: 1.13;
	margin-bottom: 44px;
	letter-spacing: -0.3px;
}

.why-sidebar p.spec-label {
	font-family: 'JetBrains Mono', monospace;
	font-size: 9.5px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #a89e94;
	margin-bottom: 7px;
}

.why-sidebar p.spec-value {
	font-family: 'JetBrains Mono', monospace;
	font-size: 12.5px;
	color: var(--accent-ink);
	line-height: 1.8;
}