/* ==========================================================================
   GVB-SPES — Design tokens (single source of truth, see docs/DESIGN-SYSTEM.md)
   ========================================================================== */

/* Fonts — served from the media library for now; Phase 3 moves subset woff2
   into the theme. Family names match the current live rendering. */
@font-face {
  font-family: 'Klavika';
  src: url('/wp-content/uploads/2025/02/Klavika-Regular.woff2') format('woff2'),
       url('/wp-content/uploads/2025/02/Klavika-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Klavika';
  src: url('/wp-content/uploads/2025/02/klavika-medium.woff2') format('woff2'),
       url('/wp-content/uploads/2025/02/klavika-medium.otf') format('opentype');
  font-weight: 500 600;
  font-display: swap;
}
@font-face {
  font-family: 'Klavika';
  src: url('/wp-content/uploads/2025/02/klavika-bold.woff2') format('woff2'),
       url('/wp-content/uploads/2025/02/klavika-bold.otf') format('opentype');
  font-weight: 700 800;
  font-display: swap;
}
@font-face {
  font-family: 'UniversLightCondensed';
  src: url('/wp-content/uploads/2025/02/UniversLightCondensed.woff2') format('woff2'),
       url('/wp-content/uploads/2025/02/UniversLightCondensed.ttf') format('truetype');
  font-weight: 300 700;
  font-display: swap;
}

:root {
  /* Brand color */
  --teal:     #009a8c;
  --teal-d:   #007a6f;
  --teal-dd:  #005f56;
  --teal-l:   #d8f1ee;
  --teal-ul:  #f0faf8;
  --mint-bg:  #edf7f5;
  --white:    #ffffff;

  /* Text */
  --text:     #1e293b;
  --text-b:   #475569;
  --text-m:   #6b7280;

  /* Lines */
  --border:   #e2e8f0;
  --border-d: #cbd5e0;

  /* Type */
  --font-head: 'Klavika', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'UniversLightCondensed', 'Segoe UI', system-ui, sans-serif;

  /* Radii */
  --r-xs: 3px;
  --r-s:  5px;
  --r:    8px;
  --r-l:  12px;
  --r-xl: 18px;
  --r-pill: 24px;

  /* Elevation */
  --sh-xs: 0 1px 3px rgba(15, 40, 35, .07);
  --sh-s:  0 2px 8px rgba(15, 40, 35, .08);
  --sh-m:  0 8px 24px rgba(15, 40, 35, .12);
  --sh-h:  0 10px 28px rgba(0, 122, 111, .25);
  --sh-drop: 0 8px 32px rgba(0,0,0,.13), 0 2px 8px rgba(0,0,0,.06);

  /* Motion */
  --ease: .22s ease;

  /* Layout */
  --container: 1240px;
  --container-pad: 28px;
  --prose: 880px;

  /* Hero */
  --hero-gradient: linear-gradient(135deg, #009a8c, #006d62, #00b89a, #004d46);
}
