/* style.css — Greypeak Capital */

/* ============================================
   CUSTOM PALETTE: GREYPEAK DARK
   Permanently dark. No light/dark toggle.
   ============================================ */

:root {
  /* --- Type Scale (fluid) --- */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.9rem  + 0.5vw,  1.125rem);
  --text-lg:   clamp(1.125rem, 0.95rem + 0.85vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1rem    + 1.5vw,  2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* --- 4px Spacing System --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- Greypeak Colors — 4 total --- */
  --color-bg:         #121214;  /* Deep near-black, subtle warmth */
  --color-text:       #e8e6e1;  /* Warm off-white, aged paper */
  --color-text-muted: #6b6965;  /* Warm medium gray */
  --color-text-hover: #a8a5a0;  /* Slightly brighter warm gray */

  /* --- Typography --- */
  --font-display: 'Bodoni Moda', 'Didot', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  /* --- Motion --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
}
