/* ── Garamant — shared tokens, font, resets ─────────────────────────────── */

@font-face {
  font-family: 'DIN Next LT Arabic';
  src: url('../fonts/DINNextLTArabic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand: #36251d;       /* brand brown */
  --muted: #a3a3a3;       /* subtitle grey */
  --line: #e4e4e4;        /* dividers / borders */
  --bg: #ffffff;
  --card-w: 440px;

  /* gold-foil palette */
  --gold-1: #fbf5b7;
  --gold-2: #bf953f;
  --gold-3: #fcf6ba;
  --gold-4: #b38728;
  --gold-5: #aa771c;

  font-family: 'DIN Next LT Arabic', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    system-ui, sans-serif;
}

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

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--brand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
