:root {
  --bg: #0a0e1a;
  --bg-elev: #11172a;
  --bg-card: #161d33;
  --bg-card-hover: #1e2742;
  --bg-vintage: #0e1422;
  --border: #25304d;
  --border-soft: #1a2238;
  --text: #f4ecd8;
  --text-dim: #b9b39a;
  --text-faint: #7d7864;
  --gold: #d4a747;
  --gold-bright: #f5cd5b;
  --gold-deep: #8b6f24;
  --cream: #f4ecd8;
  --rose: #c45c5c;
  --teal: #4a9b9b;
  --gradient-marquee: linear-gradient(90deg, #d4a747 0%, #f5cd5b 50%, #d4a747 100%);
  --gradient-spotlight: radial-gradient(circle at 50% 0%, rgba(245,205,91,0.18) 0%, rgba(245,205,91,0) 70%);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.55);
  --shadow-card: 0 4px 18px rgba(0,0,0,0.35);
  --max: 1240px;
  --r: 6px;
  --r-sm: 3px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  background: var(--bg);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(212,167,71,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(74,155,155,0.04) 0%, transparent 60%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-bright); text-decoration: none; transition: color .15s; }
a:hover { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }

/* Display headings — Cinzel marquee feel */
h1, h2, h3, h4, .display {
  font-family: 'Cinzel', 'Trajan Pro', Georgia, serif;
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--cream);
}
h1 { font-size: 2.7rem; margin: 0 0 .6rem; font-weight: 700; }
h2 { font-size: 1.85rem; margin: 0 0 .9rem; font-weight: 600; }
h3 { font-size: 1.2rem; margin: 0 0 .4rem; font-weight: 600; }
h4 { font-size: .95rem; margin: 0 0 .5rem; font-weight: 600; }
p { margin: 0 0 1.1em; color: var(--text); font-size: 1.05rem; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
strong { color: var(--cream); font-weight: 700; }
em { color: var(--text-dim); }
hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 2.5rem 0; }

/* ============== FILMSTRIP DECORATIVE BAND ============== */
.filmstrip-band {
  background: #050810;
  height: 28px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}
.filmstrip-cell {
  flex: 0 0 auto;
  width: 36px; height: 16px;
  background: #1a1f30;
  border-radius: 1px;
  box-shadow: inset 0 0 0 2px #050810, inset 0 0 0 3px #2a2f44;
}
.footer-strip { border-bottom: 0; border-top: 1px solid var(--border-soft); margin-top: 0; }

/* ============== MARQUEE BULB BAR ============== */
.marquee-bar {
  background: linear-gradient(180deg, #161d33 0%, #0d1224 100%);
  border-bottom: 1px solid var(--gold-deep);
  padding: 6px 0;
  position: relative;
}
.marquee-bar::before, .marquee-bar::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 24px;
  background: linear-gradient(90deg, var(--gold-deep) 0%, transparent 100%);
}
.marquee-bar::after { right: 0; transform: scaleX(-1); }
.marquee-bulbs {
  display: flex; justify-content: space-around; max-width: var(--max); margin: 0 auto;
}
.bulb {
  width: 7px; height: 7px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  box-shadow: 0 0 6px rgba(245,205,91,0.6), 0 0 12px rgba(245,205,91,0.25);
  animation: flicker 4s infinite;
}
.bulb:nth-child(2n) { animation-delay: 0.7s; }
.bulb:nth-child(3n) { animation-delay: 1.3s; }
.bulb:nth-child(5n) { animation-delay: 2.1s; }
@keyframes flicker {
  0%, 88%, 100% { opacity: 1; }
  90%, 96% { opacity: 0.55; }
}

/* ============== HEADER ============== */
.site-header {
  background: linear-gradient(180deg, #0d1224 0%, #0a0e1a 100%);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.header-inner {
  display: flex; align-items: center; gap: 1.75rem;
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.brand {
  display: inline-flex; align-items: baseline; gap: .5rem;
  font-weight: 700; font-size: 1.45rem;
  color: var(--cream);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  font-size: .85em;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(245,205,91,0.6);
}
.brand-name { color: var(--cream); }
.brand-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .65rem;
  letter-spacing: .04em;
  text-transform: none;
  color: var(--text-faint);
  font-weight: 500;
  margin-left: .25rem;
}
.primary-nav { display: flex; gap: 1.5rem; flex: 1; flex-wrap: wrap; }
.primary-nav a {
  color: var(--text-dim);
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  position: relative;
  padding: .25rem 0;
}
.primary-nav a:hover {
  color: var(--gold-bright); text-decoration: none;
}
.primary-nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold);
}
.search-form { display: flex; align-items: stretch; gap: 0; }
.search-form input {
  background: rgba(10,14,26,0.7);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  padding: .55rem .9rem;
  color: var(--cream);
  width: 240px; font-size: .9rem;
  font-family: 'Cormorant Garamond', serif;
  outline: none;
}
.search-form input::placeholder { color: var(--text-faint); font-style: italic; }
.search-form input:focus { border-color: var(--gold); background: rgba(10,14,26,0.95); }
.search-form button {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: #1a1408;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 0 1rem;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 700;
}
.search-form button:hover { background: var(--gold-bright); }

.category-strip {
  display: flex; gap: 1.5rem; padding-bottom: .85rem;
  overflow-x: auto; font-size: .78rem;
  border-top: 1px solid var(--border-soft);
  padding-top: .65rem;
}
.category-strip a {
  color: var(--text-faint); white-space: nowrap;
  font-family: 'Cinzel', serif; letter-spacing: .1em; text-transform: uppercase;
}
.category-strip a:hover { color: var(--gold); text-decoration: none; }

/* ============== MAIN ============== */
.site-main { padding: 2.5rem 1.5rem 4rem; min-height: 60vh; }

/* ============== HERO ============== */
.hero {
  position: relative; overflow: hidden;
  border: 1px solid var(--gold-deep);
  border-radius: var(--r);
  margin-bottom: 3rem;
  background: linear-gradient(135deg, #11172a 0%, #1a1f3a 50%, #0e1422 100%);
  background-image: var(--gradient-spotlight);
  box-shadow: var(--shadow-deep), inset 0 0 0 1px rgba(245,205,91,0.1);
}
.hero::before {
  content: ''; position: absolute; top: -2px; left: -2px; right: -2px; height: 4px;
  background: var(--gradient-marquee);
  opacity: 0.6;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; }
@media (max-width: 800px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-copy { padding: 3rem 2.5rem; position: relative; }
.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase; letter-spacing: .26em;
  font-family: 'Cinzel', serif;
  font-size: .68rem; color: var(--gold);
  font-weight: 600; margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(212,167,71,0.3);
}
.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 1.25rem;
  line-height: 1.1;
}
.hero h1 .accent {
  color: var(--gold-bright);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  text-shadow: 0 0 18px rgba(245,205,91,0.35);
}
.hero-copy p {
  color: var(--text-dim); font-size: 1.15rem;
  max-width: 36rem; line-height: 1.55;
}
.hero-cta { display: flex; gap: .85rem; margin-top: 1.85rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.5rem; border-radius: var(--r-sm);
  font-family: 'Cinzel', serif;
  font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--gold);
  color: #1a1408;
  box-shadow: 0 4px 14px rgba(212,167,71,0.35);
}
.btn-primary:hover { background: var(--gold-bright); box-shadow: 0 6px 20px rgba(245,205,91,0.5); }
.btn-ghost { background: transparent; color: var(--cream); border-color: var(--gold-deep); }
.btn-ghost:hover { background: rgba(212,167,71,0.08); border-color: var(--gold); color: var(--gold-bright); }
.btn-mini { padding: .45rem .9rem; font-size: .7rem; }

.hero-image { background: #1a1408; min-height: 380px; position: relative; }
.hero-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,23,42,0.6) 0%, transparent 25%, transparent 75%, rgba(14,20,34,0.4) 100%);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============== SECTIONS ============== */
.section { margin: 3rem 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap;
  position: relative; padding-bottom: .85rem;
  border-bottom: 1px solid var(--border);
}
.section-head::after {
  content: ''; position: absolute; left: 0; bottom: -1px; width: 80px; height: 2px;
  background: var(--gold);
}
.section-head h2 { margin: 0; }
.section-head a.more {
  font-size: .78rem; color: var(--gold);
  font-family: 'Cinzel', serif; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 500;
}
.section-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .68rem; letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .35rem;
  font-weight: 600;
}

/* ============== TONE GRID ============== */
.tone-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem;
}
.tone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem;
  transition: background .2s, transform .2s, border-color .2s, box-shadow .2s;
  display: flex; flex-direction: column; gap: .7rem;
  position: relative;
  box-shadow: var(--shadow-card);
}
.tone-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}
.tone-card .thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, #2a1f08 0%, #1a1408 50%, #0d0a04 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 2.4rem;
  color: var(--gold-bright);
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(245,205,91,0.3);
  border: 1px solid var(--gold-deep);
  position: relative;
  overflow: hidden;
}
.tone-card .thumb::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 6px, rgba(0,0,0,0.15) 6px, rgba(0,0,0,0.15) 7px);
  pointer-events: none;
}
.tone-card .thumb::after {
  content: ''; position: absolute; top: 6px; right: 6px; bottom: 6px; left: 6px;
  border: 1px solid rgba(245,205,91,0.2);
  border-radius: 1px;
  pointer-events: none;
}
.tone-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  margin: 0; color: var(--cream);
  line-height: 1.25;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.tone-card .meta {
  font-size: .72rem; color: var(--text-faint);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Cinzel', serif; letter-spacing: .1em; text-transform: uppercase;
}
.tone-card .cat-tag { color: var(--gold); font-weight: 500; }
.tone-card a.title-link { color: inherit; }
.tone-card a.title-link:hover { color: var(--gold-bright); text-decoration: none; }

/* ============== CATEGORIES PAGE ============== */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem; }
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: background .2s, border-color .2s, transform .2s;
  display: block;
  color: var(--text);
  box-shadow: var(--shadow-card);
}
.cat-card:hover {
  background: var(--bg-card-hover); text-decoration: none;
  border-left-color: var(--gold-bright);
  transform: translateY(-2px);
}
.cat-card h3 {
  color: var(--cream); font-size: 1.4rem; margin-bottom: .6rem;
  font-family: 'Cinzel', serif; letter-spacing: .04em;
}
.cat-card p { color: var(--text-dim); font-size: 1rem; margin-bottom: .85rem; }
.cat-card .count {
  font-size: .72rem; color: var(--gold);
  font-family: 'Cinzel', serif; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600;
}

/* ============== RINGTONE / THEME DETAIL ============== */
.detail-layout { display: grid; grid-template-columns: 2.4fr 1fr; gap: 2.25rem; }
@media (max-width: 900px) { .detail-layout { grid-template-columns: 1fr; } }
.detail-main { min-width: 0; }
.detail-hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 2.5rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
}
.detail-hero .breadcrumb {
  font-size: .75rem; color: var(--text-faint); margin-bottom: 1rem;
  font-family: 'Cinzel', serif; letter-spacing: .12em; text-transform: uppercase;
}
.detail-hero .breadcrumb a { color: var(--gold); }
.detail-hero h1 { font-size: 2.4rem; margin-bottom: .6rem; }
.detail-hero .meta { color: var(--text-dim); font-size: .95rem; margin-bottom: 1.5rem; }
.detail-hero .meta strong {
  color: var(--gold);
  font-family: 'Cinzel', serif; letter-spacing: .08em; text-transform: uppercase;
  font-size: .75rem; margin-right: .35rem;
}
.detail-hero .meta-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: .85rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0; margin: 1.5rem 0;
}
.meta-grid .item { display: flex; flex-direction: column; gap: .1rem; }
.meta-grid .item-label {
  font-family: 'Cinzel', serif;
  font-size: .65rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.meta-grid .item-value { color: var(--cream); font-size: 1rem; }
.meta-grid .item-value a { color: var(--cream); border-bottom: 1px dotted var(--gold-deep); }

.player {
  background: #050810;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .75rem; margin: 1.25rem 0;
  position: relative;
}
.player::before {
  content: ''; position: absolute; top: -5px; left: 1rem; right: 1rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .5;
}
.player iframe { width: 100%; height: 50px; border: 0; display: block; }
.player-note { font-size: .8rem; color: var(--text-faint); font-style: italic; margin-top: .5rem; padding: 0 .5rem; }

.detail-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }

.detail-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}
.detail-body h2 {
  font-size: 1.55rem; margin-top: 1.85rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--border-soft);
}
.detail-body h2:first-child { margin-top: 0; }
.detail-body h3 { font-size: 1.15rem; margin-top: 1.5rem; }
.detail-body p { font-size: 1.08rem; line-height: 1.7; color: var(--text); }
.detail-body ul, .detail-body ol { padding-left: 1.5rem; }
.detail-body li { margin-bottom: .5rem; line-height: 1.55; }

/* PBN inline link slot styling */
.pbn-inline {
  display: block;
  border-left: 2px solid var(--gold-deep);
  padding: .25rem 0 .25rem 1rem;
  margin: 1.25rem 0;
  color: var(--text-dim);
  font-style: italic;
  font-size: .98rem;
}
.pbn-inline a {
  color: var(--gold-bright);
  border-bottom: 1px dotted var(--gold-deep);
}

/* Install instruction box */
.install-box {
  background: linear-gradient(135deg, rgba(212,167,71,0.06) 0%, rgba(212,167,71,0.02) 100%);
  border: 1px solid var(--gold-deep);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0;
}
.install-box h3 {
  margin-top: 0; color: var(--gold-bright);
  font-family: 'Cinzel', serif; font-size: 1.05rem;
  letter-spacing: .06em; text-transform: uppercase;
}
.install-box ol { padding-left: 1.4rem; }
.install-box ol li { margin-bottom: .65rem; line-height: 1.55; }
.install-box .platform-tag {
  display: inline-block;
  background: var(--gold);
  color: #1a1408;
  font-family: 'Cinzel', serif;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 2px;
  margin-bottom: .85rem;
  font-weight: 700;
}

/* ============== SIDEBAR ============== */
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.4rem;
  box-shadow: var(--shadow-card);
}
.sidebar-card h3 {
  font-family: 'Cinzel', serif;
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.sidebar-card ul { list-style: none; padding: 0; margin: 0; }
.sidebar-card li {
  padding: .55rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .98rem;
}
.sidebar-card li:last-child { border-bottom: none; }
.sidebar-card li a { color: var(--text-dim); }
.sidebar-card li a:hover { color: var(--gold-bright); text-decoration: none; }

/* Sidebar PBN editorial card */
.sidebar-editorial {
  background: linear-gradient(135deg, rgba(212,167,71,0.05) 0%, transparent 100%);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.sidebar-editorial h3 {
  font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .35rem;
}
.sidebar-editorial .editorial-sub {
  font-size: .85rem; color: var(--text-faint);
  font-style: italic; margin-bottom: 1rem;
}
.sidebar-editorial ul { list-style: none; padding: 0; margin: 0; }
.sidebar-editorial li {
  padding: .85rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: .92rem;
}
.sidebar-editorial li:last-child { border-bottom: none; }
.sidebar-editorial li a {
  color: var(--cream);
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; font-size: 1rem;
  margin-bottom: .15rem;
}
.sidebar-editorial li a:hover { color: var(--gold-bright); }
.sidebar-editorial li .editorial-desc {
  display: block; color: var(--text-faint);
  font-size: .82rem; line-height: 1.4; font-style: italic;
}

.ad-slot {
  border: 1px dashed var(--border);
  border-radius: var(--r-sm);
  padding: 2rem 1rem; text-align: center;
  color: var(--text-faint); font-size: .8rem;
  font-family: 'Cinzel', serif; letter-spacing: .14em;
}

/* ============== PAGINATION ============== */
.pagination { display: flex; gap: .4rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  padding: .55rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  color: var(--text-dim);
  background: var(--bg-card);
  font-size: .9rem;
  font-family: 'Cinzel', serif; letter-spacing: .08em;
  min-width: 38px; text-align: center;
}
.pagination a:hover { background: var(--bg-card-hover); color: var(--gold-bright); border-color: var(--gold-deep); text-decoration: none; }
.pagination .current { background: var(--gold); color: #1a1408; border-color: var(--gold); font-weight: 700; }

/* ============== PROSE ============== */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { margin-bottom: 1.5rem; }
.prose h2 { margin-top: 2.5rem; padding-bottom: .5rem; border-bottom: 1px solid var(--border-soft); }
.prose h3 { margin-top: 1.5rem; color: var(--gold-bright); font-size: 1.1rem; }
.prose ul, .prose ol { padding-left: 1.6rem; }
.prose li { margin-bottom: .5rem; line-height: 1.65; }
.prose p { font-size: 1.1rem; line-height: 1.75; }

/* ============== LISTING / CATEGORY ============== */
.listing-head { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); position: relative; }
.listing-head::after {
  content: ''; position: absolute; left: 0; bottom: -1px; width: 100px; height: 2px;
  background: var(--gold);
}
.listing-head h1 { font-size: 2.4rem; }
.listing-head p { color: var(--text-dim); max-width: 52rem; font-size: 1.1rem; }
.listing-head .listing-eyebrow {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .6rem; font-weight: 600;
}

/* Decade / Era / Composer specific */
.dimension-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; }
.dimension-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  color: var(--text);
  box-shadow: var(--shadow-card);
  transition: background .2s, transform .2s, border-color .2s;
}
.dimension-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  text-decoration: none;
}
.dimension-card h3 { color: var(--cream); margin-bottom: .5rem; }
.dimension-card .dimension-sub {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: .65rem;
  font-weight: 600;
}
.dimension-card p { color: var(--text-dim); font-size: .95rem; margin-bottom: .65rem; }
.dimension-card .count {
  font-size: .8rem; color: var(--gold-bright);
  font-family: 'Cinzel', serif; letter-spacing: .08em; text-transform: uppercase;
}

/* ============== RELATED RESOURCES (PBN footer band) ============== */
.related-resources { padding: 2rem 1.5rem 1rem; max-width: var(--max); margin: 0 auto; }
.related-card {
  background: linear-gradient(135deg, rgba(212,167,71,0.04) 0%, rgba(20,28,50,0.6) 100%);
  border: 1px solid var(--gold-deep);
  border-radius: var(--r);
  padding: 2rem 2.25rem;
}
.related-head h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .3rem;
}
.related-head p { color: var(--text-faint); font-style: italic; font-size: .95rem; margin-bottom: 1.25rem; }
.related-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem 1.5rem;
}
.related-list li {
  padding: .85rem 0;
  border-top: 1px solid var(--border-soft);
}
.related-link { display: block; }
.related-link:hover { text-decoration: none; }
.related-link-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: .15rem;
}
.related-link:hover .related-link-title { color: var(--gold-bright); }
.related-link-desc {
  display: block; color: var(--text-faint);
  font-size: .9rem; line-height: 1.45;
  font-style: italic;
}

/* ============== FOOTER ============== */
.site-footer {
  background: #050810;
  padding-top: 0;
  margin-top: 4rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem; padding: 3rem 1.5rem 2rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 {
  font-family: 'Cinzel', serif;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .18em;
  color: var(--gold); margin: 0 0 1rem; font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: .35rem 0; }
.footer-grid li a { color: var(--text-dim); font-size: .95rem; }
.footer-grid li a:hover { color: var(--gold-bright); text-decoration: none; }
.footer-tag { color: var(--text-faint); font-size: .95rem; margin-top: 1rem; line-height: 1.55; font-style: italic; }
.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 1.5rem; color: var(--text-faint);
  font-size: .82rem; text-align: center;
  font-style: italic;
}

/* ============== CHIPS ============== */
.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  padding: .3rem .75rem;
  border-radius: 2px;
  font-size: .75rem;
  color: var(--text-dim);
  font-family: 'Cinzel', serif; letter-spacing: .06em; text-transform: uppercase;
}
.chip a { color: var(--text-dim); }
.chip:hover { border-color: var(--gold-deep); color: var(--gold-bright); }

/* ============== WAVEFORM DECORATION ============== */
.waveform {
  display: flex; align-items: center; gap: 2px; height: 32px;
  margin: 1rem 0;
}
.waveform .bar {
  display: inline-block;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  border-radius: 1px;
}

/* ============== HOMEPAGE BANNER ROW ============== */
.banner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem; margin: 2.5rem 0;
}
.banner-tile {
  display: block;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  padding: 1.25rem 1.4rem;
  color: var(--cream);
  font-family: 'Cinzel', serif;
  text-transform: uppercase; letter-spacing: .08em; font-size: .9rem;
  transition: background .2s, transform .2s;
  box-shadow: var(--shadow-card);
}
.banner-tile:hover { background: var(--bg-card-hover); transform: translateY(-2px); text-decoration: none; }
.banner-tile .tile-eyebrow {
  display: block;
  font-size: .65rem; letter-spacing: .2em;
  color: var(--gold); margin-bottom: .35rem;
  font-weight: 600;
}
.banner-tile .tile-meta {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem; color: var(--text-faint);
  text-transform: none; letter-spacing: 0;
  margin-top: .5rem; font-style: italic;
}
