/* ─────────────────────────────────────────
   BRAND IDENTITY: DAYO

   Palette: Ink & Brass
   Primary   #0D0D0D  — near-black ink
   Surface   #F7F5F0  — warm parchment
   Offset    #EFEDE6  — slightly darker parchment
   Brass     #B8924A  — warm gold accent (the signature color)
   Brass-lt  rgba(184,146,74,0.12)
   Mid       #6B6458  — warm grey
   Light     #9E9589  — muted warm
   Rule      rgba(13,13,13,0.08)

   Type: Cormorant (serif, editorial, timeless) + Syne (sans, modern, confident)

   Feeling: McKinsey-meets-Lagos. Institutional authority, warm origins.
   Industry-agnostic by design — brass and parchment belong to no sector.
─────────────────────────────────────────── */

:root {
  --ink:      #0D0D0D;
  --ink2:     #1A1814;
  --brass:    #B8924A;
  --brass-lt: rgba(184,146,74,0.1);
  --brass-md: rgba(184,146,74,0.2);
  --bg:       #F7F5F0;
  --off:      #EFEDE6;
  --white:    #FFFFFF;
  --mid:      #6B6458;
  --light:    #9E9589;
  --rule:     rgba(13,13,13,0.08);
  --serif:    'Cormorant', Georgia, serif;
  --sans:     'Syne', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
