/* ============================================================
   L'ATELIER — STYLES GÉNÉRAUX
   ============================================================ */

:root {
  --brand: #b94015;
  --brand-glow: rgba(185, 64, 21, 0.15);

  --bg-gradient: radial-gradient(
    circle at top,
    #0c0e12 0%,
    #050507 100%
  );

  --surface: #0d0f14;
  --surface-card: #11141d;

  --line: #1f2431;
  --line-focus: #3a435a;

  --text: #f4f5f7;
  --muted: #8e96a7;
  --dim: #5c6475;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
}


/* ============================================================
   RESET
   ============================================================ */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background: var(--bg-gradient);
  color: var(--text);

  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}


/* ============================================================
   TYPOGRAPHIE
   ============================================================ */

.eyebrow {
  margin-bottom: 10px;

  color: var(--brand);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .15em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;

  letter-spacing: -.03em;
}

h2,
h3 {
  color: #ffffff;
}

p {
  margin: 0 0 24px;

  color: var(--muted);

  font-size: 14px;
  line-height: 1.6;
}
