  /* ── Albums page styles ─────────────────────────
     Tokens: tokens.css · Base: base.css
     ──────────────────────────────────────────── */

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px) 54px;
    animation: fadeIn 0.3s ease-out;
  }

  /* Header */
  header {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    flex: 1;
    font-family: "Financier Display", Georgia, "Times New Roman", Times, serif;
    font-size: clamp(25px, 1.73vw, 28px);
    font-weight: 340;
    font-style: italic;
    letter-spacing: 0.045em;
  }
  .logo a {
    color: var(--color-text);
    text-decoration: none;
  }

  .site-nav {
    display: flex;
    gap: 24px;
    align-items: baseline;
  }
  .site-nav-link {
    font-size: clamp(14px, 1.05vw, 15px);
    font-weight: 400;
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
  }
  .site-nav-link:hover {
    color: var(--color-gold);
  }
  .site-nav-link.active {
    color: var(--color-text);
    border-bottom-color: var(--color-gold);
  }

  .header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .search-box {
    position: relative;
    display: flex;
    align-items: center;
  }

  .search-input {
    width: 200px;
    padding: 8px 28px 8px 32px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: clamp(14px, 0.94vw, 15px);
    background-color: var(--color-input-bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23727272' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 10px center;
    color: var(--color-text);
    transition: width 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }
  [data-theme="dark"] .search-input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .search-input {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
    }
  }
  .search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    width: 220px;
    box-shadow: 0 0 0 3px var(--color-focus-ring);
  }
  .search-input::placeholder {
    color: var(--color-text-muted);
  }

  .search-clear {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 0;
    width: 22px;
    height: 22px;
    display: none;
    line-height: 1;
    font-size: 16px;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .search-clear:hover { color: var(--color-text-secondary); background: var(--color-bg-hover); }
  .search-clear:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--color-focus-shadow);
    color: var(--color-text-secondary);
  }
  .search-input:not(:placeholder-shown) + .search-clear { display: flex; align-items: center; justify-content: center; }

  .search-count {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    font-size: clamp(11px, 0.78vw, 12px);
    color: var(--color-text-muted);
    padding: 0 6px;
    opacity: 0;
    transition: opacity 0.15s ease;
    white-space: nowrap;
    pointer-events: none;
  }
  .search-count.visible {
    opacity: 1;
  }

  .theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
    padding: 13px;
    margin: -13px;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .theme-toggle:hover { color: var(--color-gold); }
  .theme-toggle::after {
    content: attr(data-tooltip);
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: var(--color-text);
    color: var(--color-bg);
    font-size: 10px;
    font-weight: 400;
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 10;
  }
  .theme-toggle::before {
    content: '';
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid transparent;
    border-bottom-color: var(--color-text);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 10;
  }
  @media (hover: hover) {
    .theme-toggle:hover::after {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
    .theme-toggle:hover::before {
      opacity: 1;
    }
  }
  .theme-toggle .icon-sun { display: none; }
  .theme-toggle .icon-moon { display: block; }
  [data-theme="dark"] .theme-toggle .icon-sun { display: block; }
  [data-theme="dark"] .theme-toggle .icon-moon { display: none; }
  @media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) .theme-toggle .icon-sun { display: block; }
    :root:not([data-theme="light"]) .theme-toggle .icon-moon { display: none; }
  }

  .theme-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
    border-radius: 4px;
  }

  /* Hero */
  .hero {
    padding: 28px 0 6px;
  }
  .hero-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
  }
  .hero h1 {
    font-family: "Financier Display", Georgia, "Times New Roman", Times, serif;
    font-weight: var(--font-weight-heading);
    font-style: normal;
    font-size: clamp(18px, 1.3vw, 21px);
    line-height: 1.2;
    letter-spacing: 0.045em;
  }
  .hero .subtitle {
    color: var(--color-text-secondary);
    font-size: clamp(13px, 0.85vw, 15px);
    font-weight: var(--font-weight-body);
    margin-top: 6px;
  }

  /* Toolbar — hidden without JS */
  .toolbar {
    display: none;
    padding: 16px 0 4px;
    gap: 12px;
    flex-direction: column;
  }
  .js-ready .toolbar {
    display: flex;
  }

  .genre-pills {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8px, #000 calc(100% - 24px), transparent 100%);
    padding-right: 16px;
  }
  .genre-pills::-webkit-scrollbar {
    display: none;
  }

  .genre-pill {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .genre-pill:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
  }
  .genre-pill.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
  }
  .genre-pill:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
  }

  .sort-pills {
    display: flex;
    gap: 6px;
    align-self: flex-end;
  }
  .sort-pill {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 13px;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: inherit;
  }
  .sort-pill:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
  }
  .sort-pill.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
  }
  .sort-pill:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
  }

  /* Album feed — 2-column grid at desktop */
  .album-feed {
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 32px;
  }

  /* Week dividers — text-only label, no rule line (avoids clashing
     with half-width card borders in the 2-column grid) */
  .week-divider {
    grid-column: 1 / -1;
    font-size: 0.78rem;
    font-weight: 450;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 40px;
    margin-bottom: 8px;
  }
  .week-divider:first-child {
    margin-top: 0;
  }

  .album-card {
    display: flex;
    gap: 20px;
    padding: 24px 0 24px 12px;
    border-bottom: 1px solid var(--color-border);
    border-left: 2px solid transparent;
    transition: border-left-color 0.15s ease, background 0.2s ease;
    position: relative;
  }
  .album-card.last-visible-row {
    border-bottom: none;
  }
  .album-card:hover {
    border-left-color: var(--color-gold);
    background: linear-gradient(90deg, var(--color-active-gradient-start) 0%, var(--color-active-gradient-end) 70%, transparent 100%);
  }

  .card-left {
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .card-cover {
    width: 200px;
    height: 200px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--color-bg-hover);
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .album-card:hover .card-cover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--color-cover-shadow);
  }
  .card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    color: transparent;
    font-size: 0;
    transition: transform 0.2s ease;
  }
  .album-card:hover .card-cover img {
    transform: scale(1.03);
  }
  .card-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Vinyl record placeholder */
  .card-cover-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-bg-hover);
    position: relative;
  }
  .card-cover-placeholder::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 44%; height: 44%;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
  }
  .card-cover-placeholder::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--color-border);
  }

  .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
  }

  .card-artist {
    font-size: 1rem;
    font-weight: var(--font-weight-body);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 3px;
  }

  .card-title {
    font-weight: 460;
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .card-format {
    align-self: flex-start;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 1px 8px;
    margin-bottom: 8px;
  }
  /* Album art — clickable to open full-res image */
  .card-cover-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
    text-decoration: none;
  }
  .card-cover-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1;
  }
  .card-cover-link:hover::before {
    opacity: 1;
  }

  /* Source block — fills space between cover and streaming, fully clickable */
  .card-source {
    display: flex;
    flex-direction: column;
    font-size: 0.85rem;
    font-weight: var(--font-weight-body);
    color: var(--color-text-muted);
    text-align: left;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.15s ease;
  }
  a.card-source:hover {
    color: var(--color-text-muted);
  }
  .card-source:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
    border-radius: 2px;
  }
  .card-source-name {
    color: var(--color-gold);
    transition: color 0.15s ease;
  }
  a.card-source:hover .card-source-name {
    color: var(--color-gold);
  }
  .card-date {
    font-size: 0.75rem;
    opacity: 0.7;
  }

  .teaser-face {
    font-size: 1rem;
    font-weight: var(--font-weight-body);
    line-height: 1.55;
    color: var(--color-text-body);
  }
  .teaser-author {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .teaser-author:hover {
    color: var(--color-gold);
  }

  .card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .card-streaming {
    margin-top: auto;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .card-streaming a {
    color: var(--color-text-muted);
    text-decoration: none;
    padding: 6px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: border-color 0.15s ease, color 0.15s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .card-streaming a::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: var(--color-text);
    color: var(--color-bg);
    font-size: 12px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }
  .card-streaming a::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: var(--color-text);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s ease;
  }
  @media (hover: hover) {
    .card-streaming a:hover::after,
    .card-streaming a:focus-visible::after {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }
    .card-streaming a:hover::before,
    .card-streaming a:focus-visible::before {
      opacity: 1;
    }
  }
  .card-streaming a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
  }
  .card-streaming a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
  }
  .si { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
  .icon-sprite {
    display: none;
  }

  /* Show more pagination */
  .show-more-container {
    display: none;
    text-align: center;
    margin: 32px 0 8px;
  }
  .show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    padding: 10px 28px;
    font-size: 14px;
    font-family: inherit;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease;
  }
  .show-more-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
  }
  .show-more-btn .remaining {
    color: var(--color-text-muted);
    font-size: 13px;
  }

  /* Empty states */
  .empty-state {
    display: none;
    text-align: center;
    padding: 80px 20px 60px;
    color: var(--color-text-secondary);
  }
  .empty-state.visible { display: block; }
  .empty-state::before {
    content: "—";
    display: block;
    font-family: "Financier Display", Georgia, serif;
    font-size: 1.6rem;
    color: var(--color-border);
    margin-bottom: 20px;
    letter-spacing: 0.2em;
  }
  .empty-state-title {
    font-family: "Financier Display", Georgia, serif;
    font-style: normal;
    font-weight: var(--font-weight-heading);
    font-size: clamp(20px, 1.5vw, 24px);
    letter-spacing: 0.02em;
    color: var(--color-text-secondary);
    margin-bottom: 12px;
  }
  .empty-state-title span {
    color: var(--color-gold);
  }
  .empty-state-hint {
    font-family: "Untitled Sans", sans-serif;
    font-size: clamp(13px, 0.9vw, 14px);
    color: var(--color-text-muted);
    line-height: 1.6;
  }
  .empty-state-clear {
    color: var(--color-gold);
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
    font: inherit;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms ease;
  }
  .empty-state-clear:hover {
    border-bottom-color: var(--color-gold);
  }

  .no-albums-state {
    margin-top: 24px;
    padding: 22px;
    border: 1px dashed var(--color-border);
    border-radius: 10px;
    color: var(--color-text-secondary);
    text-align: center;
  }

  /* Footer */
  footer {
    padding: 32px 0 48px;
    margin-top: 48px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  @media (min-width: 768px) {
    footer {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }
    .footer-info { margin-bottom: 0; }
  }

  .footer-info {
    font-size: clamp(12px, 0.85vw, 13px);
    color: var(--color-text-secondary);
    font-variant-numeric: tabular-nums;
  }
  .footer-info a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .footer-info a:hover { color: var(--color-gold); }
  .footer-info a:hover svg { fill: var(--color-gold); }
  .footer-info svg {
    vertical-align: -2px;
    margin-right: 4px;
    fill: var(--color-gold);
    transition: fill 0.15s ease;
  }
  .footer-shortcuts {
    font-size: clamp(13px, 0.87vw, 14px);
    color: var(--color-text-muted);
    opacity: 0.7;
  }
  .footer-shortcuts kbd {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
    background: var(--color-kbd-bg);
    border-radius: 3px;
    padding: 2px 6px;
    font-size: clamp(11px, 0.79vw, 12px);
    border: 1px solid var(--color-border);
  }
  .footer-tagline {
    font-family: "Financier Text", Georgia, "Times New Roman", Times, serif;
    font-weight: 380;
    font-style: italic;
    font-size: clamp(13px, 0.87vw, 14px);
    color: var(--color-text-muted);
    letter-spacing: 0.045em;
    opacity: 0.6;
  }

  /* Keyboard focus */
  .album-card.kb-focus {
    border-left-color: var(--color-gold);
    border-left-width: 2px;
    background: linear-gradient(90deg, var(--color-active-gradient-start) 0%, var(--color-active-gradient-end) 70%, transparent 100%);
  }
  .album-card.kb-focus .card-cover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--color-cover-shadow);
  }
  .album-card.kb-focus .card-cover img {
    transform: scale(1.03);
  }

  /* Scroll-to-top */
  .scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, color 0.15s ease, border-color 0.15s ease;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }
  .scroll-top.visible {
    opacity: 1;
    visibility: visible;
  }
  .scroll-top:hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
  }
  .scroll-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--color-focus-shadow);
  }

  /* Responsive — tablet: single column cards */
  @media (max-width: 960px) {
    .album-feed {
      grid-template-columns: 1fr;
    }
  }

  /* Responsive — mobile: stacked card layout */
  @media (max-width: 767px) {
    header {
      flex-wrap: wrap;
      gap: 12px;
    }
    .logo { flex: 1; }
    .site-nav {
      gap: 16px;
    }
    .site-nav-link {
      font-size: 13px;
    }
    .header-actions {
      flex: 0 0 100%;
      justify-content: flex-start;
    }
    .search-box { flex: 1; }
    .search-input { width: 100%; }
    .search-input:focus { width: 100%; }
    .search-clear {
      width: 28px;
      height: 28px;
      right: 2px;
      font-size: 18px;
    }
    .album-card {
      gap: 14px;
    }
    .card-left {
      width: 120px;
      min-width: 120px;
      gap: 14px;
    }
    .card-cover {
      width: 120px;
      height: 120px;
    }
    .card-title {
      font-size: 1.2rem;
    }
    .card-meta {
      gap: 10px;
    }
  }

  /* Skip link */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--color-accent);
    color: var(--color-bg);
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    z-index: 10000;
    border-radius: 0 0 4px 0;
  }
  .skip-link:focus {
    left: 0;
    outline: 2px solid var(--color-accent-hover);
    outline-offset: 2px;
  }

  /* Source colors use --color-gold token directly; no dark-mode override needed */

