Gd dusk · CSS
/* ════════════════════════════════════════════════════════════════
   gd-dusk.css — the "past work" theme partial for gilesdenmark.art
   Load this AFTER gd-site.css on any page that should read as archive:
     <link rel="stylesheet" href="/css/gd-site.css">
     <link rel="stylesheet" href="/css/gd-dusk.css">
   It only overrides the shared colour variables (and two hardcoded
   exceptions in gd-site.css), so every existing class — nav, buttons,
   cards, footer, perf-card, gallery-cap, etc. — just inherits the new
   palette. Nothing in gd-site.css itself needs to change.
   ════════════════════════════════════════════════════════════════ */
 
:root {
  --bg: #3d2140;
  --bg2: #4a2a4a;
  --bg3: #573356;
  --text: #f5e6de;
  --muted: #c9a0b0;
  --gold: #e2793f;
  --gold-light: #f2a561;
  --border: rgba(226,121,63,0.24);
  --border-hover: rgba(226,121,63,0.58);
}
 
/* gd-site.css hardcodes the nav bar to a navy rgba rather than var(--bg) —
   override it here so the fixed nav reads as dusk too, not a black band. */
nav {
  background: rgba(61,33,64,0.92);
}
 
/* The sun still coloring the sky — applies to either a plain .hero (used
   on the sub-pages) or the archive landing page's .archive-hero. Purple
   sky fading through magenta into warm horizon orange. Swap for a real
   photographed banner later if you make one — just replace this one rule. */
.hero, .archive-hero {
  background: linear-gradient(180deg, #33203f 0%, #52294f 30%, #8f4451 62%, #cf7040 100%);
}
 
/* gd-site.css also hardcodes the lightbox overlay to a navy rgba —
   only matters on pages with a gallery, but kept consistent here. */
.lightbox {
  background: rgba(30,14,36,0.94);
}
 @charset "UTF-8";
/* CSS Document */

