/* ── FONTS ── */
@font-face {
  font-family: 'Eksell Display';
  src: url('../fonts/EksellDisplayWeb-Small.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Light_Italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Regular_Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Medium_Italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Harriet Text';
  src: url('../fonts/Harriet_Text_Bold_Italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── COLOUR TOKENS ── */
:root {
  /* Backgrounds */
  --bg:       #F2EDE6;
  --bg2:      #E8E1D8;
  --bg3:      #DDD5C9;

  /* Text */
  --ink:      #1C1714;
  --ink2:     #3E352E;
  --muted:    #5A4E47;  /* 5.2:1 on --bg — passes WCAG AA */

  /* Borders */
  --rule:     #C8BDB4;

  /* Brand */
  --accent:   #B83228;
  --accent-dk:#8F1F17;
  --gold:     #A8732A;

  /* Nav */
  --nav-bg:   #1C1714;

  /* Layout */
  --gutter:   2.5rem;
  --max-width: 1100px;

  /* Typography */
  --font-display: 'Eksell Display', 'Georgia', serif;
  --font-prose:   'Harriet Text', 'Georgia', serif;
  --font-ui:      'Archivo', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 0.18s;
  --duration-mid:  0.28s;
  --duration-slow: 0.55s;
}

/* ── DARK MODE ── */
.dark {
  --bg:       #18120F;
  --bg2:      #221A16;
  --bg3:      #2D231D;
  --ink:      #EDE6DD;
  --ink2:     #C8BCB0;
  --muted:    #7A6C63;
  --rule:     #3D3028;
  --muted:    #9A8B80;  /* brighter for dark bg — passes WCAG AA */
  --accent:   #D94035;
  --accent-dk:#B02E25;
  --gold:     #D4A24C;
  --nav-bg:   #100C09;
}
