/* ===== Placidum — style.css ===== */
/* Single shared stylesheet for all pages */

/* ===== Base & Reset ===== */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap');

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*, *::before, *::after { box-sizing: inherit; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
img, svg, video, canvas, audio, iframe { display: block; max-width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:root { color-scheme: light dark; }

/* ===== CSS Custom Properties ===== */
:root {
  --background: 30 15% 8%;
  --foreground: 48 12% 88%;
  --card: 30 18% 10%;
  --card-foreground: 48 12% 88%;
  --popover: 30 18% 10%;
  --popover-foreground: 48 12% 88%;
  --primary: 48 12% 88%;
  --primary-foreground: 30 25% 8%;
  --secondary: 30 12% 18%;
  --secondary-foreground: 48 12% 88%;
  --muted: 30 12% 18%;
  --muted-foreground: 42 8% 55%;
  --accent: 160 25% 35%;
  --accent-foreground: 48 12% 88%;
  --border: 30 12% 22%;
  --input: 30 12% 22%;
  --ring: 160 25% 35%;
  --radius: 0.125rem;

  --parchment: 30 15% 8%;
  --ink: 48 12% 88%;
  --graphite: 42 8% 55%;
  --ultramarine: 219 46% 64%;
  --verdigris: 139 30% 50%;
  --iron-oxide: 18 62% 63%;
  --sepia: 42 8% 55%;
  --ochre: 35 55% 68%;

  --font-handwritten: 'Kalam', cursive;
  --text-manifesto: var(--iron-oxide);

  --veil-color: transparent;
  --veil-opacity: 0;

  --step: clamp(1rem, 2.2vw, 1.125rem);
  --space: clamp(12px, 2.2vw, 20px);
  --wrap: min(1100px, 92vw);
}

/* ===== Global parchment veil ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--veil-color);
  mix-blend-mode: multiply;
  opacity: var(--veil-opacity);
  pointer-events: none;
  z-index: 9999;
}

/* Peripheral vignette */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(120% 120% at 50% -10%,
    transparent 40%, rgba(255,255,255,.05) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 10000;
}

.no-tint {
  position: relative;
  isolation: isolate;
}

/* ===== Body ===== */
body {
  background-color: hsl(var(--parchment));
  color: hsl(var(--foreground));
  font-family: 'Crimson Text', 'Georgia', serif;
  line-height: 1.65;
  font-size: 16px;
  background-image:
    radial-gradient(circle at 1px 1px, hsl(var(--graphite) / 0.08) 1px, transparent 0);
  background-size: 24px 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', 'Crimson Text', 'Georgia', serif;
  font-weight: normal;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
}
h1 { font-size: 1.875rem; font-variant: small-caps; letter-spacing: 0.05em; }
h2 { font-size: 1.25rem; font-style: italic; }
h3 { font-size: 1.125rem; text-transform: lowercase; font-variant: small-caps; }

.font-garamond { font-family: 'EB Garamond', 'Crimson Text', 'Georgia', serif; }
.font-cormorant { font-family: 'Cormorant Garamond', 'EB Garamond', 'Georgia', serif; }
.font-mono { font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; }
.font-handwritten { font-family: var(--font-handwritten); }
.serif { font-family: 'Crimson Text', 'Georgia', serif; }

/* ===== Color utilities ===== */
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-ink { color: hsl(var(--ink)); }
.text-sepia { color: hsl(var(--sepia)); }
.text-ochre { color: hsl(var(--ochre)); }
.text-ultramarine { color: hsl(var(--ultramarine)); }
.text-iron-oxide { color: hsl(var(--iron-oxide)); }
.text-accent { color: hsl(var(--accent)); }
.text-verdigris { color: hsl(var(--verdigris)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-background { background-color: hsl(var(--background)); }
.bg-iron-oxide { background-color: hsl(var(--iron-oxide)); }

/* ===== Container & layout ===== */
.wrap { width: var(--wrap); margin-inline: auto; padding-inline: var(--space); }
.safe-area {
  padding-left: calc(var(--space) + env(safe-area-inset-left));
  padding-right: calc(var(--space) + env(safe-area-inset-right));
  padding-bottom: calc(var(--space) + env(safe-area-inset-bottom));
}
.min-screen { min-height: 100dvh; }
@supports (-webkit-touch-callout: none) { .min-screen { min-height: -webkit-fill-available; } }

/* ===== Grid ===== */
.grid { display: grid; gap: var(--space); grid-template-columns: 1fr; }
@media (min-width: 768px) { .grid.cols-2 { grid-template-columns: 1fr 1fr; } .grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }

/* ===== Table ===== */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { border-collapse: collapse; width: 100%; }

/* ===== Codex elements ===== */
.codex-title { color: hsl(var(--ochre)); }
.folio-number { font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 0.75rem; font-variant: small-caps; letter-spacing: 0.1em; color: hsl(var(--iron-oxide)); }
.marginalia { font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 0.75rem; color: hsl(var(--muted-foreground)); font-style: italic; position: relative; }
.marginalia::before { content: "⸻ "; opacity: 0.5; }
.notes-header .marginalia a { color: inherit; }

/* ===== Links ===== */
a { transition: all 0.3s ease; position: relative; text-decoration: none; color: hsl(var(--ultramarine)); }
a:hover { color: hsl(var(--iron-oxide)); }
.ink-underline { position: relative; }
.ink-underline::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: hsl(var(--iron-oxide)); transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.ink-underline:hover::after { width: 100%; }
.ink-underline-verdigris { position: relative; }
.ink-underline-verdigris::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: hsl(var(--verdigris)); transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.ink-underline-verdigris:hover::after { width: 100%; }

/* ===== Fragment blocks ===== */
.fragment { margin: 2rem 0; padding: 1.5rem; background: hsl(var(--card) / 0.6); border-left: 2px solid hsl(var(--verdigris) / 0.4); position: relative; }
.fragment::before { content: "⸻"; position: absolute; top: 0.5rem; left: -0.5rem; color: hsl(var(--verdigris) / 0.6); font-size: 0.75rem; }
.fragment-bandcamp { margin: 2rem 0; padding: 1.5rem; background: hsl(var(--card) / 0.6); border-left: 2px solid hsl(var(--verdigris) / 0.4); position: relative; }
.fragment-bandcamp::before { content: "⸻"; position: absolute; bottom: 0.5rem; left: -0.5rem; color: hsl(var(--verdigris) / 0.6); font-size: 0.75rem; }

/* ===== Annotation hover ===== */
.annotation-hover { position: relative; cursor: help; }
.annotation-hover::after { content: attr(data-annotation); position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: hsl(var(--popover)); border: 1px solid hsl(var(--border)); padding: 0.5rem; font-size: 0.75rem; font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 10; }
.annotation-hover:hover::after { opacity: 1; }

/* ===== DESKTOP header ===== */
@media (min-width: 1024px) {
  :root { --logo-size:52px; --motto-size:18px; --menu-size:18px; --gutter:56px; --menu-gap:40px; }
  .site-header { padding: 18px var(--gutter) 0; }
  .topline { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .main-menu { justify-self: start; display: flex; gap: var(--menu-gap); font-size: var(--menu-size); color: hsl(var(--muted-foreground)); white-space: nowrap; }
  .main-menu a.active { color: hsl(var(--iron-oxide)); font-style: italic; }
  .main-menu a.active.nav-shcaa { color: hsl(var(--verdigris)) !important; }
  .main-menu a.nav-shcaa:hover { color: hsl(var(--verdigris)) !important; }
  .header-year { justify-self: end; color: hsl(var(--iron-oxide)); letter-spacing: .12em; font-size: 12px; font-family: 'Crimson Text', 'Georgia', serif; text-transform: uppercase; }
  .logo-block { margin-top: 48px; text-align: left; }
  .logo-motto { margin-top: -6px; line-height: 1; font-size: var(--motto-size); color: hsl(var(--muted-foreground)); font-style: italic; letter-spacing: .18em; max-width: 60ch; display: block; width: 0; min-width: 100%; overflow: visible; white-space: nowrap; }
}

/* ===== MOBILE header ===== */
@media (max-width: 1023px) {
  :root { --logo-size:clamp(32px,7vw,46px); --motto-size:clamp(14px,3.2vw,18px); --menu-size:clamp(14px,2.8vw,16px); --gutter:20px; --menu-gap:18px; }
  .site-header { padding: 14px var(--gutter) 0; display: flex; flex-direction: column; align-items: flex-start; gap: 32px; }
  .topline { width: 100%; display: flex; justify-content: space-between; align-items: center; }
  .main-menu { display: flex; flex-wrap: wrap; gap: var(--menu-gap); font-size: var(--menu-size); }
  .header-year { font-size: 10px; color: hsl(var(--iron-oxide)) !important; }
  .logo-motto { font-size: var(--motto-size); margin-top: -5px; line-height: 1; }
}

.hamburger, .menu-toggle, .mobile-drawer { display: none !important; }

/* Nav link styles */
.main-menu a { font-family: 'EB Garamond', 'Crimson Text', 'Georgia', serif; text-transform: lowercase; letter-spacing: 0.05em; color: hsl(var(--muted-foreground)); transition: color 0.3s ease; }
.main-menu a:hover { color: hsl(var(--iron-oxide)); }
.main-menu a.active { color: hsl(var(--iron-oxide)); font-style: italic; }
.main-menu a.nav-shcaa { color: hsl(35, 80%, 50%); }
.main-menu a.nav-shcaa:hover, .main-menu a.nav-shcaa.active { color: hsl(var(--verdigris)); font-style: italic; }

/* Logo */
.logo-link { display: inline-flex; align-items: stretch; gap: 0; }
.logo-link:hover { color: inherit; }
.logo-img { height: 54px; width: auto; opacity: 0.7; filter: brightness(1.2); margin-right: -8px; }
@media (min-width: 768px) { .logo-img { height: 67px; } }
@media (min-width: 1024px) { .logo-img { height: 83px; } }
.logo-text-wrap { display: flex; flex-direction: column; justify-content: flex-end; gap: 0; padding-bottom: 4px; }
.logo-wordmark-img { height: var(--logo-size); width: auto; }

/* ===== Notes section ===== */
.notes-section { font-family: 'Crimson Text', 'Georgia', serif; }
.notes-header { text-align: left; }
.notes-header .folio-number { font-style: italic; color: hsl(var(--iron-oxide)); }

.note-entry { position: relative; padding-left: 28px; border: none; margin-bottom: 2.5rem; }
.note-entry::before { content: ""; position: absolute; left: 0; top: 0; width: 1.5px; height: 55%; background: hsl(var(--verdigris) / 0.7); opacity: 0.7; }
.note-entry::after { content: ""; position: absolute; left: -3px; top: 0.5rem; width: 14px; height: 1.5px; background: hsl(var(--verdigris) / 0.7); opacity: 0.7; }

@media (max-width: 768px) {
  .notes-section { padding-inline: 20px; text-align: left; }
  .note-entry { padding-left: 24px; }
  .note-entry::before { height: 50%; }
}

/* Notes entry grid */
.entry-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .entry-grid { grid-template-columns: 1fr 3fr; gap: 1.5rem; } }

/* ===== Gallery ===== */
.gallery-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.25rem 0; }
.gallery-thumb { flex-shrink: 0; width: 8rem; height: 8rem; overflow: hidden; }
.gallery-thumb.aspect-9-16 { height: 8rem; width: auto; aspect-ratio: 9/16; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(30%); opacity: 0.8; transition: all 0.5s ease; cursor: pointer; }
.gallery-thumb img:hover { opacity: 1; filter: grayscale(0%); }

.vertical-gallery { display: flex; flex-direction: column; gap: 1rem; margin: 1.5rem 0; max-width: 24rem; }
.vertical-gallery img { width: 100%; filter: grayscale(30%); opacity: 0.8; transition: all 0.5s ease; cursor: pointer; }
.vertical-gallery img:hover { opacity: 1; filter: grayscale(0%); }
.vertical-gallery .aspect-video { aspect-ratio: 16/9; object-fit: cover; }
.vertical-gallery .aspect-16-7 { aspect-ratio: 16/7; object-fit: cover; }
.vertical-gallery .aspect-16-6 { aspect-ratio: 16/6; object-fit: cover; }
.vertical-gallery .aspect-4-3 { aspect-ratio: 4/3; object-fit: cover; }
.vertical-gallery .aspect-square { aspect-ratio: 1/1; object-fit: cover; }
.vertical-gallery figcaption { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-style: italic; opacity: 0.7; white-space: pre-line; }

/* ===== Audio block ===== */
.audio-block { margin: 1.5rem 0; padding: 1rem; background: hsl(var(--muted)); border: 1px solid hsl(var(--border)); }
.audio-block .audio-controls { display: flex; align-items: center; justify-content: space-between; }
.audio-block .audio-play-btn, .audio-block .audio-download { font-size: 0.875rem; font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; color: hsl(var(--accent)); background: none; border: none; cursor: pointer; padding: 0; }
.audio-block .audio-play-btn:hover, .audio-block .audio-download:hover { text-decoration: underline; }
.audio-block .audio-progress { margin-top: 0.5rem; width: 100%; height: 4px; background: hsl(var(--border)); }
.audio-block .audio-progress-bar { height: 4px; background: hsl(var(--accent)); width: 0; transition: width 0.1s linear; }
.audio-block .audio-subtitle { margin-top: 0.5rem; font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 0.75rem; color: hsl(var(--muted-foreground)); font-style: italic; }

/* ===== Lightbox ===== */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 50; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.9); animation: fadeIn 0.2s ease; }
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; animation: scaleIn 0.2s ease; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; color: rgba(255,255,255,0.7); background: none; border: none; font-size: 1.75rem; cursor: pointer; transition: color 0.3s ease; line-height: 1; }
.lightbox-close:hover { color: white; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* ===== Year indicator ===== */
.year-indicator { position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%); z-index: 40; opacity: 0; transition: opacity 0.5s ease; pointer-events: none; }
.year-indicator.visible { opacity: 1; pointer-events: auto; }
.year-indicator-btn { font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 0.75rem; letter-spacing: 0.1em; color: hsl(var(--muted-foreground) / 0.6); background: none; border: none; cursor: pointer; writing-mode: vertical-rl; text-orientation: mixed; transition: color 0.3s ease; padding: 0; }
.year-indicator-btn:hover { color: hsl(var(--muted-foreground)); }
.year-dropdown { display: none; position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%); background: hsl(var(--background) / 0.95); backdrop-filter: blur(4px); border: 1px solid hsl(var(--border) / 0.5); padding: 0.5rem 0.25rem; min-width: 4rem; }
.year-dropdown.open { display: flex; flex-direction: column; gap: 0.25rem; }
.year-dropdown button { font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 0.75rem; letter-spacing: 0.08em; color: hsl(var(--muted-foreground) / 0.7); background: none; border: none; cursor: pointer; padding: 0.25rem 0.5rem; text-align: right; transition: color 0.2s ease; }
.year-dropdown button:hover { color: hsl(var(--foreground)); }
.year-dropdown button.current { color: hsl(var(--iron-oxide)); }

/* ===== Corpus ===== */
.corpus-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .corpus-gallery { grid-template-columns: repeat(3, 1fr); } }
.corpus-gallery article { cursor: pointer; }
.corpus-gallery .artwork-thumb { aspect-ratio: 1/1; background: hsl(var(--muted)); overflow: hidden; margin-bottom: 0.75rem; }
.corpus-gallery .artwork-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.corpus-gallery article:hover .artwork-thumb img { transform: scale(1.05); }

.catalog-artwork { aspect-ratio: 1/1; background: hsl(var(--muted)); overflow: hidden; max-width: 28rem; }
@media (max-width: 768px) { .catalog-artwork { max-width: none !important; width: 100% !important; } }
.catalog-artwork img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.catalog-artwork:hover img { transform: scale(1.05); }

.view-toggle { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; }
.view-toggle button { padding: 0.375rem; background: none; border: none; cursor: pointer; transition: opacity 0.3s ease; opacity: 0.35; }
.view-toggle button:hover { opacity: 0.6; }
.view-toggle button.active { opacity: 1; }

/* ===== Chronicles ===== */
.chronicle-entry { position: relative; padding: 2rem 0 2rem 2rem; border-left: 2px solid hsl(var(--ochre) / 0.4); }
.chronicle-layout { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .chronicle-layout { flex-direction: row; align-items: flex-start; } }
.chronicle-artwork { width: 100%; flex-shrink: 0; }
@media (min-width: 768px) { .chronicle-artwork { width: 12rem; } }
.chronicle-artwork .artwork-square { aspect-ratio: 1/1; background: hsl(var(--muted)); border: 1px solid hsl(var(--border)); margin-bottom: 1rem; overflow: hidden; }
.chronicle-artwork .artwork-square img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Journal media ===== */
.journal-media { max-width: 24rem; margin-left: 0; }
.media-square-medium { width: 12rem; height: 12rem; object-fit: cover; }
.media-default { width: 100%; max-width: 28rem; }

/* ===== Footer ===== */
footer { margin-top: 6rem; }
footer .footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0; }
@media (min-width: 768px) { footer .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
footer h3 { font-size: 1.25rem; }
.legal { margin-top: 4rem; padding-bottom: 1rem; font-family: 'Crimson Text', 'Georgia', serif; font-size: 10px; line-height: 1.6; color: hsl(var(--muted-foreground) / 0.4); }
.legal p { margin: 0; }

/* ===== 404 ===== */
.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; text-align: center; }

/* ===== Utility classes ===== */
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }
.space-y-16 > * + * { margin-top: 4rem; }
.space-y-20 > * + * { margin-top: 5rem; }
.space-y-24 > * + * { margin-top: 6rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pr-4 { padding-right: 1rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pl-4 { padding-left: 1rem; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.font-normal { font-weight: normal; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.whitespace-pre-line { white-space: pre-line; }
.break-all { word-break: break-all; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.w-full { width: 100%; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.block { display: block; }
.hidden { display: none; }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border-l-2 { border-left: 2px solid; }

/* Audio filter */
.audio-filter-btn { font-family: 'Circular', -apple-system, BlinkMacSystemFont, system-ui, sans-serif; font-size: 0.875rem; background: none; border: none; cursor: pointer; transition: opacity 0.3s ease; padding: 0; }
.audio-filter-btn.inactive { color: hsl(var(--muted-foreground)); opacity: 0.6; }
.audio-filter-btn.inactive:hover { opacity: 1; }
.audio-filter-btn.active { color: hsl(var(--accent)); opacity: 1; }
.note-entry.filtered-out { display: none; }

/* Bandcamp embed */
.bandcamp-embed iframe { width: 100%; max-width: 350px; border: 0; }
