/* ════════════════════════════════════════════════════
   LUMIÈRE — Base & Reset
   ════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-ar);
  background: var(--paper);
  color: var(--ink-900);
  font-size: var(--fs-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern", "ss01";
  overflow-x: hidden;
}
body[dir="ltr"], body.lang-en { font-family: var(--font-en); }

::selection { background: var(--rose-200); color: var(--ink-900); }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
ul, ol { list-style: none; }

/* Headings — serif for display */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink-900);
}
h4, h5, h6 {
  font-family: var(--font-ar);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
body.lang-en h1, body.lang-en h2, body.lang-en h3 { font-family: var(--font-display); }
body.lang-en h4, body.lang-en h5, body.lang-en h6 { font-family: var(--font-en); }

/* Italic accents in serif headings */
.italic, em { font-style: normal; }

/* Numerics — tabular */
.num, .price, [data-num] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum", "zero";
  letter-spacing: -0.005em;
}

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--side);
  position: relative;
}

/* Helpers */
.muted { color: var(--ink-500); }
.gold { color: var(--gold); }
.rose { color: var(--rose-500); }

/* Section spacing */
section { padding: var(--sp-12) 0; position: relative; }
section.tight { padding: var(--sp-10) 0; }

@media (max-width: 768px) {
  section { padding: var(--sp-10) 0; }
  :root { --side: 18px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Global no-italic policy */
*, em, i, .italic { font-style: normal !important; }
