:root {
  /* ===== Core Palette ===== */
  --cream: #F4F1E8;
  --ink: #1F1F1F;

  --red: #FF3B3B;
  --yellow: #FFC93C;
  --orange: #FF7A1E;
  --pink: #FF6FB0;
  --cyan: #3FE0E0;
  --green: #3EE07A;
  --purple: #B08CFF;
  --ink-soft: rgba(31, 31, 31, 0.75);

  /* Section-specific dominant accents (kept consistent, one per section) */
  --hero-accent: var(--red);
  --about-accent: var(--yellow);
  --skills-accent: var(--purple);
  --portfolio-accent: var(--pink);
  --contact-accent: var(--cyan);

  /* ===== Typography ===== */
  --font-display: 'Archivo Black', 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-pixel: 'Press Start 2P', monospace;
  --font-hand: 'Caveat', cursive;

  /* ===== Spacing / Sizing ===== */
  --section-pad-y: clamp(80px, 12vw, 160px);
  --section-pad-x: clamp(20px, 6vw, 80px);
  --radius: 14px;
  --border-w: 3px;

  /* ===== Motion ===== */
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-overshoot: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.2s;
  --dur-med: 0.45s;
  --dur-slow: 0.9s;

  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-hard-lg: 10px 10px 0 var(--ink);

  /* ===== Turbulence / hand-drawn filters (defined as inline SVG in index.html) ===== */
  --filter-sketchy: url(#sketchy);
  --filter-sketchy-strong: url(#sketchy-strong);
  --filter-blob-wobble: url(#blob-wobble);
}
