/* ============================================================
   WEST ON MY BACK — West Coast Hip-Hop / G-Funk
   Classic gold & black theme
   ============================================================ */

/* Fonts are loaded via <link> in the document head for faster first paint. */

/* ---------- Tokens ---------- */
:root {
  --bg:        #0a0a0a;
  --bg-2:      #111111;
  --panel:     #161616;
  --panel-2:   #1d1d1d;
  --line:      #2a2a2a;
  --ink:       #ededed;
  --ink-dim:   #9a9a9a;
  --ink-faint: #6b6b6b;
  --gold:      #d4af37;
  --gold-lite: #f2c94c;
  --gold-deep: #8a6d1d;
  --red:       #c1272d;
  --red-deep:  #8f1d22;
  --chrome-1:  #f4f4f4;
  --chrome-2:  #9fa6ad;
  --chrome-3:  #d9dde1;
  --chrome-4:  #6b7178;

  --maxw: 1220px;
  --gap: 26px;

  --f-black:   'Pirata One', 'UnifrakturMaguntia', 'Times New Roman', serif;
  --f-carve:   'Cinzel', Georgia, serif;
  --f-head:    'Anton', 'Arial Narrow', sans-serif;
  --f-ui:      'Oswald', 'Helvetica Neue', Arial, sans-serif;
  --f-body:    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; }
/* overflow-x: clip (not hidden) keeps the page from scrolling sideways
   WITHOUT creating a scroll container — which would break position: sticky
   on the main nav. */
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
[hidden] { display: none !important; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: linear-gradient(180deg, #161616, #0d0d0d);
  border-bottom: 1px solid var(--line);
  font-family: var(--f-ui);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  flex-wrap: wrap;
}
.topbar .date {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.topbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar nav a {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-dim);
  transition: color .15s;
}
.topbar nav a:hover { color: var(--gold-lite); }
.socials { display: flex; align-items: center; gap: 12px; }
.socials a { color: var(--ink-dim); transition: color .15s, transform .15s; }
.socials a:hover { color: var(--gold-lite); transform: translateY(-1px); }
.socials svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- Masthead ---------- */
.masthead {
  background:
    radial-gradient(1200px 220px at 50% -60%, rgba(212,175,55,0.14), transparent 70%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 30px 0 26px;
  text-align: center;
}
.brand-lockup { display: block; padding: 0 14px; cursor: pointer; }
.brand-lockup:hover .brand-word,
a.brand-word:hover { filter: drop-shadow(0 3px 6px rgba(0,0,0,0.55)) brightness(1.12); }
a.brand-word { display: inline-block; cursor: pointer; }
.brand-sub {
  font-family: var(--f-black);
  color: var(--gold);
  font-size: clamp(22px, 4.4vw, 36px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  opacity: 0.95;
}
.brand-word {
  font-family: var(--f-carve);
  font-weight: 900;
  font-size: clamp(25px, 8.5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0.04em;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
  background: linear-gradient(180deg,
    var(--chrome-1) 0%,
    var(--chrome-3) 28%,
    var(--chrome-4) 52%,
    #4a4f55 53%,
    var(--chrome-2) 74%,
    var(--chrome-1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 0 rgba(0,0,0,0.4);
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.55));
}
.brand-tag {
  margin-top: 8px;
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: clamp(12px, 1.9vw, 14px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.brand-rule {
  width: 220px; max-width: 60%;
  height: 2px; margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ---------- Sticky header ----------
   The full masthead (logo + "West Coast" + tagline) and the main nav ride
   together and stay pinned to the top as the page scrolls. */
.site-header { position: sticky; top: 0; z-index: 100; }

/* ---------- Main nav ---------- */
.mainnav {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, #101010, #0a0a0a);
  border-top: 1px solid var(--gold-deep);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
}
.mainnav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
}
.mainnav ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
.mainnav a {
  display: block;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 16px 14px;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.mainnav a:hover,
.mainnav a.active {
  color: var(--gold-lite);
  border-bottom-color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  color: var(--ink); border-radius: 6px;
  padding: 8px 10px; cursor: pointer;
  font-size: 18px; line-height: 1;
}
.nav-star { color: var(--red); }

/* ---------- Section scaffolding ---------- */
section { padding: 46px 0; }
.section-label {
  display: inline-block;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  padding: 6px 14px;
  margin-bottom: 26px;
}
.section-label.ghost {
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold-deep);
}

/* ---------- Hero ---------- */
.hero { padding-top: 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: var(--gap);
}
.hero-sub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-rows: min-content;
  align-content: start;
  gap: var(--gap);
}

/* Video card (shared) */
.vcard {
  position: relative;
  display: block;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  isolation: isolate;
}
.vcard .thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.vcard .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .3s;
  filter: saturate(0.92) contrast(1.02);
}
.vcard:hover .thumb img { transform: scale(1.06); filter: saturate(1.05); }
.vcard .thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.82) 100%);
}
.play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(10,10,10,0.62);
  border: 2px solid var(--gold);
  display: grid; place-items: center;
  z-index: 3;
  transition: transform .2s, background .2s;
}
.play::before {
  content: "";
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--gold-lite);
  margin-left: 4px;
}
.vcard:hover .play { transform: translate(-50%,-50%) scale(1.1); background: var(--red); }
.vcard:hover .play::before { border-left-color: #fff; }

.vcard .body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  z-index: 3;
}

/* Small cards: caption sits in a solid strip BELOW the thumbnail so long
   titles can never be clipped or collide with the play button. */
.vcard.small { display: flex; flex-direction: column; }
.vcard.small .thumb { flex: none; }
.vcard.small .thumb::after { display: none; }
.vcard.small .body {
  position: static;
  z-index: auto;
  flex: 1 1 auto;
  padding: 14px 15px 20px;
  background: var(--panel);
}
.vcard.small .kicker { margin-bottom: 6px; }
.vcard.small h3 { margin-bottom: 4px; }
.vcard.small .meta { margin-top: 8px; margin-bottom: 2px; }
.vault .vcard.small .body { background: #1a0d0e; }
.kicker {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lite);
  margin-bottom: 8px;
}
.vcard h2, .vcard h3 {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
  overflow-wrap: anywhere;
}
.vcard h2 { font-size: clamp(26px, 3.6vw, 40px); }
.vcard.small h3 { font-size: clamp(15px, 1.9vw, 18px); text-shadow: none; }
.vcard .meta {
  margin-top: 10px;
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.vcard .meta b { color: var(--gold); font-weight: 600; }
.vcard .dek {
  margin-top: 10px;
  font-size: 14px;
  color: #cfcfcf;
  max-width: 46ch;
}

/* ---------- Trending ticker ---------- */
.ticker {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
}
.ticker .tag {
  flex: none;
  background: var(--red);
  color: #fff;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex; align-items: center;
  padding: 0 18px;
}
.ticker .track {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}
.ticker .track ul {
  list-style: none;
  margin: 0; padding: 0;
  display: inline-flex;
  gap: 46px;
  padding: 12px 46px;
  animation: marquee 34s linear infinite;
}
.ticker:hover .track ul { animation-play-state: paused; }
.ticker li {
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
}
.ticker li::before { content: "🔥"; margin-right: 8px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- The Wire: aggregated headlines ---------- */
.wire { background: var(--panel-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.wire-intro {
  max-width: 72ch; margin: 0 0 18px;
  font-family: var(--f-ui); font-size: 14px; line-height: 1.65; color: var(--ink-dim);
}
.wire-intro b { color: var(--gold); font-weight: 600; }
.wire-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.wire-list > li { border-bottom: 1px solid var(--line); }
.wire-list > li.wire-loading,
.wire-list > li.wire-error {
  padding: 18px 2px; font-family: var(--f-ui); font-size: 14px; color: var(--ink-faint);
}
.wire-item {
  display: grid; grid-template-columns: 112px minmax(0, 1fr) auto; gap: 16px; align-items: baseline;
  padding: 14px 2px; text-decoration: none; color: var(--ink);
  transition: background .12s;
}
.wire-item:hover { background: rgba(212, 175, 55, 0.06); }
.wire-item:hover .wire-head { color: var(--gold-lite); }
.wire-src {
  font-family: var(--f-ui); font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.wire-head { font-family: var(--f-ui); font-size: 15px; line-height: 1.45; }
.wire-time { font-family: var(--f-ui); font-size: 12px; color: var(--ink-faint); white-space: nowrap; }
.wire-fallback {
  margin: 0; padding-left: 18px;
  font-family: var(--f-ui); font-size: 14px; line-height: 1.9; color: var(--ink-dim);
}
.wire-fallback a { color: var(--gold); }
@media (max-width: 640px) {
  .wire-item { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .wire-time { display: none; }
  .wire-src { font-size: 10px; }
}

/* ---------- Card grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gap); }

/* Static (non-video) editorial card */
.acard {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.acard:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.acard .kicker { color: var(--red); }
.acard h3 {
  margin: 6px 0 10px;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
}
.acard p { margin: 0; color: var(--ink-dim); font-size: 14.5px; }
.acard .more {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- From the Vault (red) ---------- */
.vault {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.35)),
    var(--red-deep);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.vault .section-label { background: #0a0a0a; color: var(--gold); }
.vault .vcard { border-color: rgba(0,0,0,0.4); background: #1a0d0e; }

/* ---------- Two-column layout (features + rail) ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
}

/* Rail widgets */
.widget {
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 26px;
}
.widget h4 {
  margin: 0;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: var(--gold);
  padding: 9px 14px;
}
.widget .widget-in { padding: 16px; }

.follow-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--f-ui);
}
.follow-row:last-child { border-bottom: 0; }
.follow-row .who { display: flex; align-items: center; gap: 10px; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink); }
.follow-row .who svg { width: 16px; height: 16px; fill: var(--gold); }
.follow-row .btn {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold-deep);
  padding: 5px 12px; transition: background .15s, color .15s;
}
.follow-row .btn:hover { background: var(--gold); color: #0a0a0a; }

.radio-now {
  display: flex; gap: 14px; align-items: center;
}
.radio-now .eq { display: flex; gap: 3px; align-items: flex-end; height: 34px; }
.radio-now .eq span {
  width: 4px; background: var(--gold);
  animation: eq 0.9s ease-in-out infinite;
}
.radio-now .eq span:nth-child(2){ animation-delay: .15s; }
.radio-now .eq span:nth-child(3){ animation-delay: .3s; }
.radio-now .eq span:nth-child(4){ animation-delay: .45s; }
.radio-now .eq span:nth-child(5){ animation-delay: .6s; }
@keyframes eq {
  0%,100% { height: 8px; }
  50%     { height: 32px; }
}
.radio-now .txt .lbl { font-family: var(--f-ui); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); }
.radio-now .txt .song { font-family: var(--f-ui); font-weight: 600; color: var(--ink); letter-spacing: 0.03em; }

.news-mini { display: flex; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.news-mini:last-child { border-bottom: 0; }
.news-mini img { width: 84px; height: 56px; object-fit: cover; flex: none; border: 1px solid var(--line); }
.news-mini .t { font-family: var(--f-ui); font-size: 13.5px; line-height: 1.25; color: var(--ink); }
.news-mini .d { font-family: var(--f-ui); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; }
.news-mini:hover .t { color: var(--gold-lite); }

.subscribe input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--f-ui);
  padding: 10px 12px;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}
.subscribe button {
  width: 100%;
  background: var(--gold);
  color: #0a0a0a;
  border: 0;
  font-family: var(--f-ui);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px;
  cursor: pointer;
  transition: background .15s;
}
.subscribe button:hover { background: var(--gold-lite); }
.subscribe .fine { font-size: 11px; color: var(--ink-faint); margin: 8px 0 0; }

/* ---------- Artist roster strip ---------- */
.roster { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.roster .head {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap;
  gap: 10px; margin-bottom: 22px;
}
.roster h2 {
  margin: 0;
  font-family: var(--f-black);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 46px);
  color: var(--gold);
  letter-spacing: 0.01em;
}
.roster .note {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 9px 14px;
  transition: all .15s;
}
.chip:hover {
  color: #0a0a0a;
  background: var(--gold);
  border-color: var(--gold);
}
.chip[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }
.chip[aria-disabled="true"]:hover { color: var(--ink); background: var(--panel); border-color: var(--line); }

/* ---------- Footer ---------- */
.site-foot {
  background: #070707;
  border-top: 3px solid var(--gold-deep);
  padding: 48px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 46px;
}
.foot-brand .brand-word { font-size: 44px; }
.foot-brand p { color: var(--ink-dim); font-size: 14px; max-width: 42ch; }
.foot-brand .socials { margin-top: 16px; }
.foot-brand .socials svg { width: 18px; height: 18px; }
.foot h5 {
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}
.foot-links { list-style: none; margin: 0; padding: 0; }
.foot-links li { border-bottom: 1px solid var(--line); }
.foot-links a {
  display: flex; justify-content: space-between;
  font-family: var(--f-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ink-dim);
  padding: 10px 0;
  transition: color .15s;
}
.foot-links a:hover { color: var(--gold-lite); }
.foot-links .count { color: var(--ink-faint); }
.foot-bottom {
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.disclaimer {
  max-width: var(--maxw);
  margin: 14px auto 0;
  padding: 0 20px;
  font-size: 11.5px;
  color: var(--ink-faint);
  line-height: 1.6;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background:
    radial-gradient(900px 200px at 50% -40%, rgba(212,175,55,0.16), transparent 70%),
    var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 34px;
  text-align: center;
}
.page-hero .crumb {
  font-family: var(--f-ui);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 12px;
}
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero h1 {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 400;
  font-size: clamp(38px, 8vw, 74px);
  line-height: 0.95;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero p {
  margin: 14px auto 0;
  max-width: 60ch;
  color: var(--ink-dim);
  font-size: 15px;
}

/* ---------- Video page: filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.filter-bar button {
  font-family: var(--f-ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 8px 14px;
  cursor: pointer;
  transition: all .15s;
}
.filter-bar button:hover { color: var(--gold-lite); border-color: var(--gold-deep); }
.filter-bar button.active {
  color: #0a0a0a;
  background: var(--gold);
  border-color: var(--gold);
}
.video-count {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 22px;
}
.grid-3.video-grid .vcard.small h3 { font-size: 17px; }
.vcard .yr {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 3;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #0a0a0a;
  background: var(--gold);
  padding: 3px 8px;
}
.no-results {
  padding: 40px 0;
  text-align: center;
  font-family: var(--f-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Home: video teaser CTA ---------- */
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  padding: 12px 20px;
  transition: background .15s, color .15s;
}
.see-all:hover { background: var(--gold); color: #0a0a0a; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.section-head .section-label { margin-bottom: 0; }
.note-inline {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Producers band — subtle contrast from the sections around it */
.producers {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- Lightbox ---------- */
.lb {
  position: fixed; inset: 0;
  background-color: rgba(7,7,7,0.94);
  /* Themed backdrop: repeating gold cannabis-leaf motif behind the player. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150' viewBox='0 0 150 150'%3E%3Cg fill='%23d4af37' fill-opacity='0.10' transform='translate(75,98)'%3E%3Cpath d='M0 4C-6-14-3-32 0-44C3-32 6-14 0 4Z'/%3E%3Cpath d='M0 4C-16-8-24-22-27-36C-13-30-4-16 0 4Z'/%3E%3Cpath d='M0 4C16-8 24-22 27-36C13-30 4-16 0 4Z'/%3E%3Cpath d='M0 4C-22 4-36-2-46-10C-34-14-14-10 0 4Z'/%3E%3Cpath d='M0 4C22 4 36-2 46-10C34-14 14-10 0 4Z'/%3E%3Cpath d='M0 4C-14 14-26 18-36 20C-28 10-12 6 0 4Z'/%3E%3Cpath d='M0 4C14 14 26 18 36 20C28 10 12 6 0 4Z'/%3E%3Crect x='-1.3' y='2' width='2.6' height='22' rx='1'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 52px 16px 20px;      /* top room for the close button */
  overflow-y: auto;             /* last-resort scroll on very short screens */
  overscroll-behavior: contain;
}
.lb-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  width: auto;
  max-width: 100%;
  margin: auto;
  position: relative;
}
.lb-stage {
  /* Full original player size — height never exceeds the viewport. */
  width: min(960px, calc((100vh - 150px) * 16 / 9));
  max-width: 100%;
  flex: 0 1 auto;
}
.lb-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--gold-deep);
}
.lb-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lb-close {
  position: fixed;
  top: 12px; right: 16px;
  z-index: 201;
  background: rgba(10,10,10,0.7);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-family: var(--f-ui);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 12px;
  cursor: pointer;
}
.lb-close:hover { color: var(--gold-lite); border-color: var(--gold-deep); }
.lb-cap {
  margin: 12px auto 0;
  max-width: min(960px, 100%);
  font-family: var(--f-ui);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  text-align: center;
}

/* "More from <artist>" list — a column to the right of the player */
.lb-up {
  flex: 0 0 250px;
  align-self: stretch;
  max-height: calc(100vh - 150px);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.lb-up-h {
  flex: none;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.lb-up-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  min-height: 0;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) rgba(255,255,255,0.06);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.lb-up-row::-webkit-scrollbar { width: 8px; }
.lb-up-row::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); }
.lb-up-row::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 4px; }
.lb-up-row::-webkit-scrollbar-thumb:hover { background: var(--gold); }
.lb-up-item {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  padding: 6px;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.lb-up-item img {
  width: 92px;
  flex: none;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
}
.lb-up-item:hover { border-color: var(--gold-deep); background: rgba(212,175,55,0.06); }
.lb-up-item.playing { border-color: var(--gold); background: rgba(212,175,55,0.09); }
.lb-up-item .t {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--f-ui);
  font-size: 11.5px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
}
.lb-up-item.playing .t { color: var(--gold-lite); }

/* Narrow screens: drop the list back under the player as a horizontal strip */
@media (max-width: 900px) {
  .lb-inner { flex-direction: column; align-items: center; }
  .lb-up { flex: none; width: min(960px, 100%); max-height: none; margin-top: 12px; }
  .lb-up-row { flex-direction: row; gap: 10px; overflow-x: auto; overflow-y: visible; padding-right: 0; padding-bottom: 6px; }
  .lb-up-item { flex: 0 0 150px; flex-direction: column; gap: 6px; }
  .lb-up-item img { width: 100%; }
  .lb-up-item .t { -webkit-line-clamp: 2; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: minmax(0,1fr); }
  .split { grid-template-columns: minmax(0,1fr); }
  .foot-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .mainnav ul { display: none; width: 100%; flex-direction: column; gap: 0; padding: 8px 0; }
  .mainnav ul.open { display: flex; }
  .mainnav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .mainnav .wrap { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .topbar .date { display: none; }
}
@media (max-width: 680px) {
  .grid-3 { grid-template-columns: minmax(0,1fr); }
  .grid-4 { grid-template-columns: minmax(0,1fr); }
  .hero-sub-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
  .foot-grid { grid-template-columns: minmax(0,1fr); }
  section { padding: 34px 0; }
  .topbar nav { display: none; }
}
@media (max-width: 560px) {
  .brand-sub { font-size: clamp(19px, 6.4vw, 26px); }
  .brand-word { letter-spacing: 0.02em; font-size: clamp(26px, 9.2vw, 44px); }
  .brand-tag { letter-spacing: 0.12em; font-size: 13px; }
  .hero-sub-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 480px) {
  :root { --gap: 16px; }
  .foot-brand .brand-word { font-size: clamp(26px, 11vw, 40px); }
  .hero-sub-grid { grid-template-columns: minmax(0,1fr); }
  .topbar nav { display: none; }
  .vcard .body, .vcard.small .body { padding: 12px; }
  .wrap { padding: 0 14px; }
}
