/* ALT Construction — Color tokens
 * Brand palette anchored on the logo's harvest GOLD (#b5883c), paired with a
 * warm olive/forest green family and warm stone neutrals on a white canvas.
 * Gold is an ACCENT only (ticks, active chips, small marks); deep green and
 * near-black ink carry surfaces and primary actions. Photography & material
 * samples carry the rest of the color; the UI shell stays restrained.
 */
:root {
  /* --- Brand: Warm olive / forest greens --- */
  --green-950: #14190e;   /* deepest near-black green */
  --green-900: #1e2515;   /* dark band background */
  --green-800: #29331c;
  --green-700: #3a4827;   /* PRIMARY brand green */
  --green-600: #495a31;
  --green-500: #5d7140;   /* mid green / focus */
  --green-300: #94a578;   /* muted green text on dark */

  /* --- Brand accent: Harvest gold (from the logo) --- */
  --gold-700: #8a6526;
  --gold-600: #a2792f;
  --gold-500: #b5883c;    /* PRIMARY brand gold (sampled from logo) */
  --gold-400: #c8a258;
  --gold-300: #d9bd86;    /* soft accent / chip border / on-dark accent */
  --gold-200: #e6d3a6;
  --gold-100: #f3e9d2;    /* pale accent wash */

  /* --- Ink & black --- */
  --black: #000000;       /* announcement strip, max contrast */
  --ink-900: #191813;     /* near-black, primary CTA on light */
  --ink-700: #2b2a22;     /* headings on light */
  --ink-500: #4b493d;     /* strong body */

  /* --- Warm neutrals / stone --- */
  --canvas: #ffffff;      /* dominant page surface */
  --stone-50:  #faf7ef;
  --stone-100: #f3eee1;   /* soft stone surface (cards, sections) */
  --stone-200: #e7dec9;   /* warm neutral block */
  --stone-300: #d7cbae;

  /* --- Text --- */
  --text-body: #25231a;   /* default body text */
  --text-muted: #6c6655;  /* metadata, captions, de-emphasized */
  --text-slate: #8b8672;  /* tertiary text, separators */
  --on-dark: #ffffff;     /* text on green/ink bands */
  --on-dark-muted: #c2c4ad;

  /* --- Lines & borders --- */
  --hairline: #dfd8c6;    /* standard list rules / dividers */
  --border-light: #ece7d8;/* soft card containment line */
  --border-dark: rgba(255,255,255,0.16); /* rules on dark bands */

  /* --- Surface aliases (semantic) --- */
  --surface-page: var(--canvas);
  --surface-card: var(--canvas);
  --surface-stone: var(--stone-100);
  --surface-dark: var(--green-900);
  --surface-ink: var(--ink-900);

  /* --- Accent aliases (point components at the brand accent) --- */
  --accent: var(--gold-500);
  --accent-strong: var(--gold-600);
  --accent-soft: var(--gold-300);
  --accent-wash: var(--gold-100);

  /* --- Semantic --- */
  --focus-ring: #5d7140;
  --error: #b3261e;
  --success: #3a4827;
}
