/* ══ FemininFinance — Base element styles ══
   Applies the brand defaults: warm off-white page, Outfit body, DM Serif headings,
   gold italic <em> accent word, Outfit numbers. */
*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: var(--ff-sans);
  font-weight: var(--fw-light);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ff-text);
  background: var(--ff-bg-warm);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
h1, h2, h3, h4 { font-family: var(--ff-serif); color: var(--ff-navy); line-height: 1.2; margin: 0; font-weight: 400; }
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
/* Signature: one gold italic accent word per headline */
em { color: var(--ff-gold); font-style: italic; font-family: var(--ff-serif); }
strong { font-weight: var(--fw-semibold); }
/* Large numbers are ALWAYS Outfit — never serif */
.ff-num { font-family: var(--ff-sans); font-weight: var(--fw-semibold); color: var(--ff-navy); }
/* Overline / eyebrow label */
.ff-overline { font-family: var(--ff-sans); font-weight: var(--fw-bold); font-size: var(--fs-overline); letter-spacing: var(--ls-overline); text-transform: uppercase; color: var(--ff-gold); }
a { color: var(--ff-navy-mid); text-decoration: none; transition: color .15s; }
a:hover { color: var(--ff-navy); }
