/* Born Mtn Club — primary color palette. Source: Brand Manual 3B, "BRAND SYSTEM: COLOR PALETTE".
   Hex values are the manual's approved swatches; do not substitute. */
:root{
  /* Base palette */
  --born-gold:#8C734B;      /* PMS 872 C  — primary brand color */
  --alpine-blue:#002A49;    /* PMS 7463 C */
  --apres-red:#D02C2E;      /* PMS 711 C */
  --vaurnet:#0067B2;        /* PMS 2196 C */
  --chalet:#DEA59C;         /* PMS 2444 C */
  --heirloom:#F8E49A;       /* PMS 2001 C */
  --juniper:#5F6638;        /* PMS 5753 C */
  --trail:#514747;          /* PMS 8601 C */
  --black:#231F20;          /* PMS Black C */

  /* Neutrals — derived tints/shades of Trail + Chalet for interface use.
     Not in the printed manual; kept deliberately narrow and warm. */
  --paper:#FFFFFF;
  --bone:#FAF7F3;
  --linen:#F1EAE2;
  --stone:#E2D9CF;
  --ash:#BFB4A8;
  --slate:#8A7F78;

  /* Tinted brand surfaces */
  --gold-050:#F4F0E9;
  --gold-100:#E6DECF;
  --gold-700:#6E5A3A;
  --gold-900:#4A3C26;
  --chalet-050:#FDF3F0;
  --chalet-100:#F7DED8;
  --chalet-600:#C0837A;
  --alpine-800:#001C31;

  /* Semantic aliases — use these in components */
  --text-primary:var(--black);
  --text-body:var(--trail);
  --text-muted:var(--trail);
  --text-faint:var(--slate);              /* decorative only — below 4.5:1 at body sizes */
  --text-inverse:var(--paper);
  --text-brand:var(--born-gold);          /* on white only — 4.50:1, exactly at the line */
  --text-brand-on-tint:var(--gold-700);   /* gold small type on bone, linen or gold-050 */
  --text-eyebrow:var(--gold-700);         /* eyebrows on any light ground; Born Gold fails on bone */
  --text-eyebrow-inverse:var(--chalet);   /* eyebrows on Alpine Blue, gold flood or photography */
  --text-link:var(--born-gold);
  --text-link-hover:var(--gold-700);

  --surface-page:var(--paper);
  --surface-warm:var(--bone);
  --surface-card:var(--paper);
  --surface-sunken:var(--linen);
  --surface-brand:var(--born-gold);
  --surface-brand-soft:var(--gold-050);
  --surface-accent:var(--chalet);
  --surface-accent-soft:var(--chalet-050);
  --surface-deep:var(--alpine-blue);
  --surface-ink:var(--black);

  --border-hairline:var(--stone);
  --border-rule:var(--trail);
  --border-strong:var(--black);
  --border-brand:var(--born-gold);
  --border-inverse:rgba(255,255,255,.55);

  --accent-primary:var(--born-gold);
  --accent-secondary:var(--chalet);
  --accent-alert:var(--apres-red);
  --accent-info:var(--vaurnet);
  --accent-success:var(--juniper);
  --accent-highlight:var(--heirloom);

  --overlay-scrim:rgba(35,31,32,.45);
  --overlay-gold:rgba(140,115,75,.88);
  /* Protection gradient for type over photography, bottom-up. -protect for hero blocks,
     -soft for caption type on cards. Born Gold caps are never placed over an image. */
  --overlay-protect:linear-gradient(180deg,rgba(35,31,32,0) 0%,rgba(35,31,32,.42) 30%,rgba(35,31,32,.74) 100%); /* @kind other */
  --overlay-protect-soft:linear-gradient(180deg,rgba(35,31,32,0) 0%,rgba(35,31,32,.50) 100%); /* @kind other */
  --overlay-protect-top:linear-gradient(180deg,rgba(35,31,32,.52) 0%,rgba(35,31,32,0) 100%); /* @kind other */
}
