/* ============================================================
   ADCCUL Design Tokens
   Palette drawn from the ADCCUL emblem: royal purple and harvest gold
   (sampled from the emblem), with a thread of red used only as an accent.
   ============================================================ */
:root {
  /* Color */
  --forest: #321057;        /* deep purple: dark sections, footer */
  --forest-soft: #43176f;
  --green: #6d1fa7;         /* primary brand purple (legacy var name) */
  --green-hover: #571788;
  --gold: #f2b705;          /* primary CTA */
  --gold-hover: #d9a504;
  --gold-soft: #fdf3d3;
  --red: #c8102e;           /* micro-accent only: eyebrow dots, stripe */
  --paper: #faf8fc;         /* warm page background */
  --white: #ffffff;
  --ink: #1d1030;           /* body text */
  --ink-soft: #55496b;      /* secondary text */
  --line: #e6e0ee;          /* hairlines on paper */
  --line-dark: rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-hero: clamp(1.85rem, 4.4vw + 0.6rem, 3.6rem);
  --fs-h1: clamp(1.9rem, 3.4vw + 0.5rem, 2.9rem);
  --fs-h2: clamp(1.5rem, 2.2vw + 0.5rem, 2.1rem);
  --fs-h3: 1.22rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-tiny: 0.78rem;

  /* Layout */
  --container: 1160px;
  --gutter: clamp(1rem, 4vw, 2rem);
  --section-y: clamp(3.2rem, 7vw, 5.5rem);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(50, 16, 87, 0.10);
  --shadow-sm: 0 3px 12px rgba(50, 16, 87, 0.08);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.7, 0.3, 1);
  --dur: 0.35s;
}
