/* ═══════════════════════════════════════════════════════════
   AMPP DESIGN TOKENS — matches afghanmissionbonn.de identity
   DO NOT EDIT (owned by architecture contract)
═══════════════════════════════════════════════════════════ */
:root {
  --navy:       #0f2441;
  --navy-mid:   #1a365d;
  --navy-lt:    #2d4a7c;
  --accent:     #2d5a9e;
  --accent-pale:#e8eef6;
  --gold:       #d4a853;
  --white:      #ffffff;
  --cream:      #faf8f4;
  --ink:        #1e293b;
  --ink-mid:    #475569;
  --border:     #dde4ef;
  --bg:         #edf1f7;
  --ok:         #16803c;
  --ok-pale:    #e8f6ed;
  --warn:       #b45309;
  --warn-pale:  #fdf3e3;
  --danger:     #b91c1c;
  --danger-pale:#fdecec;
  --info:       #1d4ed8;
  --info-pale:  #e8eefc;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow-sm:  0 2px 8px rgba(15,36,65,.08);
  --shadow-md:  0 6px 24px rgba(15,36,65,.13);
  --font-en: 'Poppins', -apple-system, Segoe UI, sans-serif;
  --font-fa: 'Vazirmatn', Tahoma, sans-serif;
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-en);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
}
html[dir="rtl"] body { font-family: var(--font-fa); font-size: 17px; }
.ltr-text { direction: ltr; unicode-bidi: isolate; display: inline-block; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
