/* base.css — إعادة ضبط + رموز مشتركة للـ shell. الألوان/الخطوط تأتي من المتغيرات المحقونة. */

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

:root {
  /* قيم بنيوية فقط (ليست هوية كيان) */
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  /* قيم افتراضية تُستبدل عند حقن ثيم الكيان */
  --c-primary:#0E2A47; --c-secondary:#C9A24B; --c-accent:#8A6D2F;
  --c-bg:#F7F5F0; --c-surface:#FFF; --c-text:#1A2230; --c-muted:#5A6473;
  --font-heading:'Tajawal',sans-serif; --font-body:'Tajawal',sans-serif;
  --radius:6px;
}

html { -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.25; font-weight: 700; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

:focus-visible { outline: 3px solid var(--c-secondary); outline-offset: 3px; border-radius: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
  html { scroll-behavior: auto; }
}
