/* ============================================================
   DESIGN TOKENS — Ridgeway College
   ------------------------------------------------------------
   PER-SCHOOL FILE. Re-skin by editing only this file.
   Palette drawn from the official logo: brand blue + gold
   (logo also uses green — kept as a minor accent option).
   ============================================================ */
:root{
  /* Brand palette ------------------------------------------- */
  --navy:        #0c3f73;   /* deep brand blue — anchor / dark sections */
  --navy-2:      #14528f;
  --accent:      #d9a800;   /* brand gold */
  --accent-dark: #a87c00;
  --brand-green: #00904a;   /* logo green — available for accents */

  /* Neutrals ------------------------------------------------- */
  --ink:    #1b2430;
  --muted:  #5a6573;
  --line:   rgba(12,63,115,.13);
  --paper:  #f8f7f3;
  --paper-2:#eaeef3;
  --white:  #ffffff;

  /* Type ----------------------------------------------------- */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --fs-hero: clamp(2.6rem, 5.5vw, 4.8rem);
  --fs-h2:   clamp(1.9rem, 3.4vw, 3rem);
  --fs-h3:   1.35rem;
  --fs-lead: clamp(1.05rem, 1.5vw, 1.3rem);
  --eyebrow: .16em;

  /* Shape ---------------------------------------------------- */
  --r-md: 14px;
  --r-lg: 26px;
  --r-pill: 999px;
  --maxw: 1180px;
  --shadow: 0 18px 50px -22px rgba(12,63,115,.42);
}
           