/* ============================================================
   Tel qu'elle — Base element styles & utility primitives
   Applied lightly so consumer pages inherit the brand feel.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-brand);
  font-weight: var(--fw-light);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-regular); }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-medium); letter-spacing: 0; }

p { margin: 0 0 var(--space-4); text-wrap: pretty; }
a { color: var(--text-brand); text-decoration-color: var(--tqe-apricot); text-underline-offset: 3px; }

/* ---- Brand helpers ---- */
.tqe-eyebrow {
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--text-accent);
}
.tqe-script {
  font-family: var(--font-script);
  font-size: var(--fs-script);
  color: var(--text-accent);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.tqe-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-thin);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--text-brand);
}
.tqe-lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
  font-weight: var(--fw-light);
}

::selection { background: var(--tqe-apricot-300); color: var(--tqe-indigo-deep); }
