:root {
  --ink: #f3eee5;
  --muted: #b9b0a2;
  --gold: #d5aa54;
  --red: #b63c32;
  --line: rgba(243, 238, 229, 0.15);
  --panel: #1b1a18;
  --paper: #0d0d0c;
  --font-body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bodoni 72", Didot, Georgia, serif;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; color: var(--ink); background: var(--paper); font-family: var(--font-body); }
a { color: inherit; }
.page { width: min(1160px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 74px; }
.topbar { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 24px; }
.back { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); text-decoration: none; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; font-weight: 700; }
.back img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; }
.status { color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
.hero { min-height: 430px; position: relative; display: flex; align-items: flex-end; overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background-position: center; background-size: cover; margin-bottom: 20px; }
.hero.gearhead { background-image: url("/billville/farrah/images/farrah-feature-car.jpg"); }
.hero.music { background-image: url("/billville/audio/images/listening-room-feature.jpg"); background-position: center 58%; }
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(5, 5, 5, 0.6); }
.hero-copy { position: relative; width: min(780px, 100%); padding: 38px; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 700; }
h1, h2 { font-family: var(--font-display); font-style: italic; letter-spacing: 0; }
h1 { margin: 10px 0 14px; font-size: clamp(54px, 9vw, 108px); line-height: 0.88; }
.hero p { margin: 0; max-width: 680px; color: #ded6ca; font-size: clamp(17px, 2vw, 22px); line-height: 1.45; }
.tools { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 14px 0 22px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.search { width: min(420px, 100%); min-height: 44px; padding: 0 14px; color: var(--ink); background: #121211; border: 1px solid var(--line); border-radius: 6px; outline: none; font: inherit; }
.search:focus { border-color: var(--gold); }
.count { color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; }
.channel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.channel-card { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; padding: 22px; color: inherit; text-decoration: none; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; transition: transform 150ms ease, border-color 150ms ease, background 150ms ease; }
.channel-card:hover { transform: translateY(-3px); border-color: rgba(213, 170, 84, 0.58); background: #24221e; }
.tag { color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; font-weight: 700; }
.channel-card h2 { margin: 12px 0 10px; font-size: 31px; line-height: 1; }
.channel-card p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 14px; }
.visit { margin-top: 24px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; font-weight: 700; }
.empty { display: none; padding: 48px; color: var(--muted); text-align: center; border: 1px solid var(--line); border-radius: 8px; }
.crosslink { margin-top: 34px; padding: 20px 0; color: var(--muted); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); line-height: 1.55; }
.crosslink a { color: var(--gold); }
footer { display: flex; justify-content: space-between; gap: 18px; margin-top: 34px; color: #8c857a; text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; }
@media (max-width: 900px) { .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) {
  .page { width: min(100% - 20px, 1160px); padding-top: 16px; }
  .topbar, .tools, footer { align-items: flex-start; flex-direction: column; }
  .status { display: none; }
  .hero { min-height: 500px; }
  .hero-copy { padding: 26px 20px; }
  .channel-grid { grid-template-columns: 1fr; }
  .channel-card { min-height: 190px; }
}
