/* =========================================================================
   SoundVerse — Design tokens
   Palette: periwinkle paper / deep ink-violet / warm brass accent / teal
   Type: Fraunces (display serif) + Inter (body) + IBM Plex Mono (data)
   Signature: vinyl-groove rings on album art, brass tonearm accent on hover
   ========================================================================= */

:root {
  --paper: #F3F2FA;
  --paper-raised: #FFFFFF;
  --ink: #1C1930;
  --ink-soft: #5B5773;
  --line: #E1DEEF;
  --brass: #C8963E;
  --brass-strong: #A97A2C;
  --teal: #2E8C82;
  --danger: #C24C4C;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(28, 25, 48, 0.08);
  --shadow-md: 0 8px 24px rgba(28, 25, 48, 0.10);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;
  --header-h: 68px;
  --mini-player-h: 84px;
  --bottom-nav-h: 60px;
}

[data-theme="dark"] {
  --paper: #15131F;
  --paper-raised: #1E1B2E;
  --ink: #F1EFF8;
  --ink-soft: #A9A5C2;
  --line: #322D48;
  --brass: #E3B25E;
  --brass-strong: #F0C87A;
  --teal: #4FD1C5;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.45);
}

@font-face {
  font-family: 'Fraunces';
  src: local('Georgia');
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--bottom-nav-h) + 8px);
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brass-strong); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0 0 .5em; line-height: 1.15; }
.eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--brass-strong); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ---------------------------------------------------------------------
   Header
   --------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper-raised);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; gap: 24px; padding: 0 20px;
}
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; flex-shrink: 0; }
.logo-mark { color: var(--brass); font-size: 1.4rem; }
.main-nav { display: flex; gap: 20px; flex: 1; }
.main-nav a { font-weight: 500; font-size: .95rem; color: var(--ink-soft); padding: 6px 2px; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: var(--ink); border-color: var(--brass); }
.header-actions { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.header-search { position: relative; display: flex; align-items: center; }
.header-search input {
  width: 240px; padding: 9px 36px 9px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-size: .88rem;
}
.header-search button { position: absolute; right: 6px; background: none; border: none; font-size: .95rem; color: var(--ink-soft); }
.search-suggestions {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--paper-raised);
  border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md);
  max-height: 360px; overflow-y: auto; z-index: 60;
}
.search-suggestions .sugg-group-label { font-family: var(--font-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); padding: 10px 14px 4px; }
.search-suggestions a { display: flex; align-items: center; gap: 10px; padding: 8px 14px; font-size: .88rem; }
.search-suggestions a:hover { background: var(--paper); }
.search-suggestions img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; }
.theme-toggle { background: none; border: 1px solid var(--line); border-radius: 999px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.theme-toggle .icon-moon { display: none; } [data-theme="dark"] .theme-toggle .icon-sun { display: none; } [data-theme="dark"] .theme-toggle .icon-moon { display: inline; }
.account-link { font-weight: 600; font-size: .9rem; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 4px; background: none; border: none; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); display: block; }

/* ---------------------------------------------------------------------
   Hero
   --------------------------------------------------------------------- */
.hero {
  padding: 64px 20px 56px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at top, color-mix(in srgb, var(--brass) 12%, transparent), transparent 60%);
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 720px; margin: 0 auto .3em; }
.hero p.subtitle { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2em; }
.hero-search { max-width: 620px; margin: 0 auto; display: flex; gap: 10px; }
.hero-search input {
  flex: 1; padding: 15px 20px; border-radius: 999px; border: 1px solid var(--line);
  background: var(--paper-raised); color: var(--ink); font-size: 1rem; box-shadow: var(--shadow-sm);
}
.hero-search button {
  padding: 0 28px; border-radius: 999px; border: none; background: var(--brass); color: #1C1930;
  font-weight: 700; font-size: .95rem;
}
.hero-search button:hover { background: var(--brass-strong); }

/* ---------------------------------------------------------------------
   Section headers
   --------------------------------------------------------------------- */
.section { padding: 40px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.section-head h2 { font-size: 1.5rem; margin: 0; }
.section-head a.view-all { font-size: .85rem; font-weight: 600; color: var(--brass-strong); }

/* ---------------------------------------------------------------------
   Category cards
   --------------------------------------------------------------------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.category-card {
  background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 22px 18px; transition: transform .18s ease, box-shadow .18s ease;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.category-card .cat-icon { font-size: 1.6rem; color: var(--brass); margin-bottom: 10px; display: block; }
.category-card h3 { font-size: 1.02rem; margin: 0; }

/* ---------------------------------------------------------------------
   Song card / row (with vinyl-groove art treatment — the signature element)
   --------------------------------------------------------------------- */
.song-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }

.art-wrap { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; background: var(--line); }
.art-wrap img { width: 100%; height: 100%; object-fit: cover; }
.art-wrap::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%; margin: auto; width: 34%; height: 34%;
  background: repeating-radial-gradient(circle, rgba(0,0,0,.35) 0 1px, transparent 1px 3px), radial-gradient(circle, #111 0 18%, transparent 19%);
  opacity: 0; transition: opacity .2s ease, transform .5s ease;
  transform: translateX(-8%) rotate(0deg);
}
.art-wrap:hover::after { opacity: .9; transform: translateX(0%) rotate(140deg); }
.art-wrap .play-btn {
  position: absolute; bottom: 8px; right: 8px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--brass); color: #1C1930; border: none; display: flex; align-items: center; justify-content: center;
  font-size: .95rem; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(6px); transition: all .18s ease;
}
.art-wrap:hover .play-btn, .song-card:focus-within .play-btn { opacity: 1; transform: translateY(0); }

.song-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.song-card-body { padding: 12px 14px 14px; }
.song-card-title { font-weight: 600; font-size: .95rem; margin: 0 0 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-card-sub { color: var(--ink-soft); font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-card-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; font-family: var(--font-mono); font-size: .74rem; color: var(--ink-soft); }
.dl-btn { border: 1px solid var(--line); background: none; color: var(--ink); border-radius: 999px; padding: 4px 10px; font-size: .74rem; font-weight: 600; }
.dl-btn:hover { border-color: var(--brass); color: var(--brass-strong); }

/* Poster (album/movie) card */
.poster-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; }
.poster-card { background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.poster-art { aspect-ratio: 3/4; overflow: hidden; }
.poster-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.poster-card:hover .poster-art img { transform: scale(1.04); }
.poster-body { padding: 12px 14px; }
.poster-title { font-weight: 600; font-size: .92rem; }
.poster-sub { font-size: .78rem; color: var(--ink-soft); margin-top: 2px; }
.poster-btn { display: block; margin: 10px 14px 14px; text-align: center; padding: 8px; border-radius: var(--radius-sm); background: var(--paper); border: 1px solid var(--line); font-size: .82rem; font-weight: 600; }
.poster-btn:hover { border-color: var(--brass); color: var(--brass-strong); }

/* ---------------------------------------------------------------------
   Trending ranked list
   --------------------------------------------------------------------- */
.trending-list { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--paper-raised); }
.trending-row { display: grid; grid-template-columns: 40px 48px 1fr auto auto; gap: 14px; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.trending-row:last-child { border-bottom: none; }
.trending-rank { font-family: var(--font-mono); font-size: 1.1rem; color: var(--brass-strong); font-weight: 700; text-align: center; }
.trending-row img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.trending-title { font-weight: 600; font-size: .92rem; }
.trending-sub { font-size: .78rem; color: var(--ink-soft); }
.trending-hits { font-family: var(--font-mono); font-size: .76rem; color: var(--ink-soft); white-space: nowrap; }

/* ---------------------------------------------------------------------
   Tabs (Top Downloads / Popular)
   --------------------------------------------------------------------- */
.tabs { display: flex; gap: 6px; margin-bottom: 18px; flex-wrap: wrap; }
.tab-btn { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper-raised); font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.tab-btn.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
[data-theme="dark"] .tab-btn.active { background: var(--brass); color: #1C1930; border-color: var(--brass); }

/* ---------------------------------------------------------------------
   A-Z nav
   --------------------------------------------------------------------- */
.az-nav { display: flex; flex-wrap: wrap; gap: 6px; margin: 18px 0 24px; }
.az-nav a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 8px; background: var(--paper-raised); border: 1px solid var(--line); font-size: .82rem; font-weight: 700; }
.az-nav a.active, .az-nav a:hover { background: var(--brass); color: #1C1930; border-color: var(--brass); }

/* ---------------------------------------------------------------------
   Breadcrumb
   --------------------------------------------------------------------- */
.breadcrumb { font-size: .82rem; color: var(--ink-soft); margin: 18px 0; display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--brass-strong); }

/* ---------------------------------------------------------------------
   Detail page (album/song)
   --------------------------------------------------------------------- */
.detail-hero { display: flex; gap: 28px; padding: 20px 0 30px; flex-wrap: wrap; }
.detail-cover { width: 220px; height: 220px; border-radius: var(--radius-lg); overflow: hidden; flex-shrink: 0; box-shadow: var(--shadow-md); }
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { flex: 1; min-width: 240px; }
.detail-info h1 { font-size: 1.9rem; }
.meta-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; }
.meta-pill { font-family: var(--font-mono); font-size: .74rem; background: var(--paper-raised); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; color: var(--ink-soft); }
.detail-actions { display: flex; gap: 10px; margin-top: 16px; }
.btn-primary { background: var(--brass); color: #1C1930; border: none; padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: .9rem; }
.btn-primary:hover { background: var(--brass-strong); }
.btn-secondary { background: none; border: 1px solid var(--line); padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: .9rem; }
.btn-secondary:hover { border-color: var(--brass); color: var(--brass-strong); }

/* Track list */
.track-list-head { display: flex; justify-content: space-between; align-items: center; margin: 20px 0 10px; }
.sort-select { border: 1px solid var(--line); background: var(--paper-raised); color: var(--ink); border-radius: var(--radius-sm); padding: 7px 10px; font-size: .82rem; }
.track-row {
  display: grid; grid-template-columns: 32px 44px 1fr auto auto auto; gap: 12px; align-items: center;
  padding: 11px 10px; border-bottom: 1px solid var(--line);
}
.track-row:hover { background: var(--paper-raised); }
.track-num { font-family: var(--font-mono); color: var(--ink-soft); text-align: center; font-size: .82rem; }
.track-row img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; }
.track-title { font-weight: 600; font-size: .9rem; }
.track-singer { font-size: .78rem; color: var(--ink-soft); }
.track-duration, .track-size { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-soft); white-space: nowrap; }
.icon-btn { background: none; border: 1px solid var(--line); width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .9rem; }
.icon-btn:hover { border-color: var(--brass); color: var(--brass-strong); }

/* Related section */
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }

/* ---------------------------------------------------------------------
   Forms (auth, contact)
   --------------------------------------------------------------------- */
.form-card { max-width: 420px; margin: 50px auto; background: var(--paper-raised); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.form-card h1 { font-size: 1.5rem; text-align: center; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line);
  background: var(--paper); color: var(--ink); font-size: .92rem; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--brass); }
.form-error { background: color-mix(in srgb, var(--danger) 12%, transparent); color: var(--danger); padding: 10px 14px; border-radius: var(--radius-sm); font-size: .85rem; margin-bottom: 16px; }
.form-success { background: color-mix(in srgb, var(--teal) 14%, transparent); color: var(--teal); padding: 10px 14px; border-radius: var(--radius-sm); font-size: .85rem; margin-bottom: 16px; }
.btn-block { width: 100%; }
.form-foot { text-align: center; font-size: .85rem; margin-top: 16px; color: var(--ink-soft); }

/* ---------------------------------------------------------------------
   Static/legal content pages
   --------------------------------------------------------------------- */
.prose { max-width: 760px; margin: 30px auto; padding: 0 4px; }
.prose h1 { font-size: 2rem; }
.prose h2 { font-size: 1.25rem; margin-top: 1.6em; }
.prose p { color: var(--ink-soft); margin: 0 0 1em; }

/* ---------------------------------------------------------------------
   404 / error states
   --------------------------------------------------------------------- */
.error-state { text-align: center; padding: 100px 20px; }
.error-state .code { font-family: var(--font-mono); font-size: 5rem; color: var(--brass); font-weight: 700; }
.error-state h1 { font-size: 1.5rem; margin: 6px 0 10px; }
.error-state p { color: var(--ink-soft); margin-bottom: 26px; }
.error-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Empty states */
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.empty-state .icon { font-size: 2.4rem; display: block; margin-bottom: 10px; opacity: .6; }

/* Skeleton loaders */
.skeleton { background: linear-gradient(90deg, var(--line) 25%, color-mix(in srgb, var(--line) 60%, var(--paper)) 37%, var(--line) 63%); background-size: 400% 100%; animation: skeleton-loading 1.4s ease infinite; border-radius: var(--radius-md); }
@keyframes skeleton-loading { 0% { background-position: 100% 50%; } 100% { background-position: 0 50%; } }

/* Toasts */
.toast-container { position: fixed; bottom: calc(var(--bottom-nav-h) + var(--mini-player-h) + 16px); left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 8px; align-items: center; }
.toast { background: var(--ink); color: var(--paper); padding: 10px 18px; border-radius: 999px; font-size: .85rem; box-shadow: var(--shadow-md); animation: toast-in .2s ease; }
@keyframes toast-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------------------------------------------------------------------
   Pagination
   --------------------------------------------------------------------- */
.pagination { display: flex; gap: 6px; justify-content: center; margin: 30px 0; flex-wrap: wrap; }
.page-link { padding: 8px 14px; border-radius: 8px; border: 1px solid var(--line); font-size: .85rem; font-weight: 600; background: var(--paper-raised); }
.page-link.active { background: var(--brass); border-color: var(--brass); color: #1C1930; }

/* ---------------------------------------------------------------------
   Mini player
   --------------------------------------------------------------------- */
.mini-player {
  position: fixed; left: 0; right: 0; bottom: var(--bottom-nav-h); z-index: 90;
  background: var(--paper-raised); border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px; padding: 8px 16px; height: var(--mini-player-h);
  box-shadow: 0 -4px 16px rgba(0,0,0,.06);
}
.player-cover { width: 52px; height: 52px; border-radius: 8px; object-fit: cover; flex-shrink: 0; background: var(--line); }
.player-info { min-width: 110px; max-width: 180px; }
.player-title { font-weight: 600; font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-artist { font-size: .74rem; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.player-controls { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.player-controls button { background: none; border: none; font-size: 1.1rem; width: 34px; height: 34px; border-radius: 50%; }
.player-controls button:hover { background: var(--paper); }
#playerToggle { background: var(--brass); color: #1C1930; }
.player-progress { flex: 1; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .72rem; color: var(--ink-soft); min-width: 160px; }
.player-progress input[type=range] { flex: 1; accent-color: var(--brass); }
.player-volume { display: none; align-items: center; gap: 6px; }
.player-volume input { width: 80px; accent-color: var(--brass); }
@media (min-width: 640px) { .player-volume { display: flex; } }

/* ---------------------------------------------------------------------
   Mobile bottom nav
   --------------------------------------------------------------------- */
.mobile-bottom-nav {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; height: var(--bottom-nav-h);
  background: var(--paper-raised); border-top: 1px solid var(--line);
  align-items: center; justify-content: space-around;
}
.mobile-bottom-nav a { display: flex; flex-direction: column; align-items: center; font-size: .64rem; color: var(--ink-soft); gap: 2px; }
.mobile-bottom-nav a span { font-size: 1.1rem; }
.mobile-bottom-nav a:hover, .mobile-bottom-nav a.active { color: var(--brass-strong); }

/* ---------------------------------------------------------------------
   Responsive breakpoints
   ========================================================================= */
@media (max-width: 1024px) {
  .main-nav { gap: 14px; }
  .header-search input { width: 170px; }
}

@media (max-width: 768px) {
  .main-nav { position: fixed; top: var(--header-h); left: 0; right: 0; background: var(--paper-raised);
    flex-direction: column; padding: 10px 20px 16px; border-bottom: 1px solid var(--line);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .18s ease; }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .account-link { display: none; }
  .mobile-bottom-nav { display: flex; }
  .detail-hero { flex-direction: column; align-items: center; text-align: center; }
  .detail-actions { justify-content: center; }
  .track-row { grid-template-columns: 24px 36px 1fr auto; }
  .track-duration, .track-size { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 425px) {
  .header-inner { gap: 12px; }
  .logo-text { display: none; }
  .hero { padding: 44px 16px 40px; }
  .hero-search { flex-direction: column; }
  .category-grid, .song-grid, .poster-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr !important; text-align: center; }
  .player-info { max-width: 100px; }
}

@media (max-width: 375px) {
  .category-grid, .song-grid, .poster-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .detail-cover { width: 170px; height: 170px; }
}

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--paper-raised); border-top: 1px solid var(--line); margin-top: 50px; padding: 40px 20px 0; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding-bottom: 30px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft); margin-bottom: 12px; }
.footer-col a { display: block; font-size: .88rem; padding: 4px 0; color: var(--ink-soft); }
.footer-col a:hover { color: var(--brass-strong); }
.footer-brand p { color: var(--ink-soft); font-size: .85rem; margin-top: 10px; max-width: 280px; }
.footer-bottom { border-top: 1px solid var(--line); text-align: center; padding: 16px 0; font-size: .78rem; color: var(--ink-soft); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
