/* Dancefloor DC — Design Tokens (single source of truth)
   Extracted verbatim from the Claude Design handover :root.
   The content manager may override --gold at runtime (accent picker). */
:root{
  /* Colours */
  --bg:#0a0908;          /* page background (near-black) */
  --bg2:#13110d;         /* cards / panels */
  --bg3:#1c1812;         /* reserved / elevated */
  --ink:#f3eee4;         /* primary text (warm off-white) */
  --mut:#a89e8c;         /* muted / secondary text */
  --line:rgba(243,238,228,.10);  /* hairline borders */
  --line2:rgba(243,238,228,.17); /* stronger borders */
  --gold:#c9a14a;        /* accent (brand gold) */
  --gold-lo:#9c7730;     /* gradient low */
  --gold-hi:#ecd08a;     /* gradient high */
  --on-gold:#1a1305;     /* dark ink on gold fills */

  /* Type families */
  --disp:'Archivo Expanded',system-ui,sans-serif;
  --body:'Hanken Grotesk',system-ui,sans-serif;
  --mono:'Space Mono',ui-monospace,monospace;

  /* Layout */
  --maxw:1300px;
  --pad:clamp(20px,5vw,60px);
}
