/* AKAMENA design tokens — ported verbatim from the v3 "Golden Thread" spec.
   Colours, fonts, spacing and easing are the single source of truth for the whole site. */
:root {
  --ivory: #FBFAF6;
  --white: #FFFFFF;
  --night: #0D1322;
  --night-2: #131C31;
  --ink: #1A2440;
  --body: #3C465C;
  --muted: #79839B;
  --gold: #C9982F;
  --gold-bright: #E2A33C;
  --champagne: #EFE3C8;
  --cream: #F7F0E1;
  --hairline: #E7E3D8;
  --hairline-dark: rgba(255, 255, 255, 0.13);
  --green: #2F7D52;
  --ledger: #E4D9BF;

  --serif: "Instrument Serif", Georgia, serif; /* display + italic accents */
  --text: "Spectral", Georgia, serif;          /* body copy */
  --mono: "Space Grotesk", ui-monospace, monospace; /* labels / data voice */

  --pad: clamp(24px, 6vw, 96px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
