:root {
  --ink: #141210;
  --ink-deep: #0e0c0a;
  --ink-soft: #221e1a;
  --amber: #ffa028;
  --paper: #f4f0e6;
  --paper-soft: #f8f5ec;
  --text: #26241f;
  --muted: #6e6a5e;
  --line: #ddd5c2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: #9a5600; text-underline-offset: 3px; }
a:hover { color: #633800; }
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(244, 240, 230, 0.12);
  background: rgba(20, 18, 16, 0.96);
}
.headerInner, .legalMain, .siteFooterInner {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}
.headerInner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f3eee6;
  font-weight: 800;
  text-decoration: none;
}
.brand img { display: block; width: 58px; height: auto; }
.brandArabic { color: var(--amber); font-family: "IBM Plex Sans Arabic", sans-serif; font-size: 19px; }
.headerNav { display: flex; align-items: center; gap: 18px; }
.headerNav a { color: #b6afa2; font-size: 14px; text-decoration: none; }
.headerNav a[aria-current="page"], .headerNav a:hover { color: var(--amber); }
.legalMain { padding: 64px 0 88px; }
.legalHero { max-width: 760px; margin-bottom: 48px; }
.eyebrow {
  margin: 0 0 10px;
  color: #b96400;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
h1 { margin: 0; font-size: clamp(34px, 6vw, 54px); line-height: 1.08; letter-spacing: 0; }
.intro { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.effective { margin: 16px 0 0; color: var(--muted); font-size: 14px; }
.languageNav {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.languageNav a {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 12px;
  background: var(--paper-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.notice {
  margin: 32px 0;
  border-left: 4px solid var(--amber);
  padding: 16px 18px;
  background: #fff9ec;
}
.notice p { margin: 0; }
.legalDocument {
  border-top: 1px solid var(--line);
  padding-top: 42px;
}
.legalDocument + .legalDocument { margin-top: 72px; }
.languageLabel { color: #b96400; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
h2 { margin: 8px 0 26px; font-size: 30px; line-height: 1.2; }
h3 { margin: 34px 0 10px; font-size: 20px; line-height: 1.3; }
p { margin: 0 0 14px; }
ul { margin: 10px 0 18px; padding-left: 22px; }
li + li { margin-top: 7px; }
.tableWrap { margin: 18px 0 24px; overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--paper-soft); font-size: 14px; }
th, td { border: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
th { background: #ece5d5; }
.contactBlock { border: 1px solid var(--line); padding: 18px; background: var(--paper-soft); }
.contactBlock p:last-child { margin-bottom: 0; }
.siteFooter { border-top: 1px solid var(--line); background: var(--ink); color: #8a8478; }
.siteFooterInner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 13px;
}
.siteFooter a { color: #b6afa2; }
.footerLinks { display: flex; gap: 16px; }

@media (max-width: 640px) {
  .headerInner, .legalMain, .siteFooterInner { width: min(100% - 28px, 920px); }
  .headerNav a:first-child { display: none; }
  .legalMain { padding-top: 44px; }
  .siteFooterInner { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
  th, td { min-width: 150px; }
}

@media print {
  .siteHeader, .siteFooter, .languageNav { display: none; }
  .legalMain { width: 100%; padding: 0; }
  .legalDocument + .legalDocument { break-before: page; }
  body { background: #fff; font-size: 11pt; }
  a { color: inherit; }
}
