/* ==========================================================================
   Estia Homes — Design Tokens
   Single source of truth for color, type, and layout constants.
   Lifted verbatim from the approved homepage :root. Do not redefine these
   values in other files — reference them via var(--token).
   ========================================================================== */
:root{
  /* Brand — navy is primary equity, amber is the single controlled accent */
  --navy:#16294B;        /* Estia deep navy — PRIMARY brand equity */
  --navy-2:#1E355F;
  --ink:#1B2333;
  --text:#38404F;
  --amber:#E4A143;       /* Glaser humanist accent — controlled, single accent */
  --amber-deep:#C6842A;   /* amber for fills/borders/hover on light (decorative) */
  --amber-text:#8F5D1B;   /* WCAG-AA amber for TEXT/labels on paper/white (5.06:1 on paper) */

  /* Warm paper system (Glaser warmth as an accent layer) */
  --paper:#F7F3EC;       /* warm off-white section background */
  --paper-2:#EFE9DE;
  --line:#D8D0C2;
  --white:#FFFFFF;

  /* Layout */
  --maxw:1200px;

  /* Type families */
  --sans:'IBM Plex Sans',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
  --serif:'IBM Plex Serif',Georgia,serif;   /* humanist pull-quotes ONLY */
}
