:root {
  --sky: #6cb8e6;
  --sky-soft: #d7eaf8;
  --navy: #0e2a47;
  --cloud: #f3f8fc;
  --brass: #c9a45c;
  --cream: #f4f1ea;
  --white: #ffffff;
  --muted: #5a7390;
  --line: rgba(14, 42, 71, 0.1);
  --max: 1120px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--navy);
  font-family: "Poppins", "IBM Plex Sans Arabic", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
html[lang="ar"] body { font-family: "IBM Plex Sans Arabic", "Poppins", sans-serif; }
img { max-width: 100%; display: block; border: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

h2, h3 { margin: 0; color: var(--navy); }
h2 {
  font-size: clamp(48px, 8vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
}
html:not([lang="ar"]) h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
h3 { font-size: 28px; font-weight: 700; }
p { margin: 0; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.btn-navy { background: var(--navy); color: var(--white); }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}
.nav-bar {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand img { height: 26px; width: auto; }
.nav-links { display: flex; gap: 22px; flex: 1; }
.nav-links a,
.nav-drop-list a { font-size: 14px; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-inline-start: auto; }
.lang {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.lang button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 10px;
  cursor: pointer;
}
.lang button.is-on { color: var(--navy); font-weight: 600; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  inset-inline: 12px;
  height: 1.5px;
  background: var(--navy);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-drop,
.nav-scrim { display: none; }

.band { padding: 56px 0 20px; }
.band:first-of-type {
  padding-top: 40px;
  background: linear-gradient(180deg, var(--cloud), var(--white) 70%);
}
.band-sub {
  margin-top: 6px;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--muted);
}

.svc-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 32px;
  margin-top: 32px;
}
.svc {
  width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.svc-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: grid;
  place-items: center;
}
.svc-ico.sky { background: var(--sky-soft); }
.svc-ico.brass { background: var(--brass); }
.svc-ico svg { width: 26px; height: 26px; }
.svc-ico.more-ico {
  background: var(--navy);
  color: var(--white);
  font-size: 22px;
}
html[dir="rtl"] .svc-ico.more-ico { transform: scaleX(-1); }

.stories { padding: 48px 0 80px; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  color: var(--white);
}
.story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-txt {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(14, 42, 71, 0.88));
}
.story-txt h3,
.story-txt p { color: var(--white); }
.story-txt p {
  margin-top: 8px;
  font-size: 14px;
  max-width: 42ch;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page { padding: 72px 0 96px; background: var(--cloud); }
.page h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
html:not([lang="ar"]) .page h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}
.page .kicker { margin: 0 0 12px; color: var(--sky); font-size: 13px; font-weight: 600; }
.page-body { margin-top: 28px; display: grid; gap: 18px; max-width: 40em; }
.page-body p { font-size: 18px; }

.foot {
  background: var(--cloud);
  padding: 48px 0 28px;
}
.foot-in { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }
.foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.foot-col { display: grid; gap: 8px; }
.foot-col h3 { font-size: 13px; margin-bottom: 4px; }
.foot-col a { color: var(--muted); font-size: 14px; }
.foot-copy { margin-top: 32px; color: var(--muted); font-size: 13px; }

html.nav-lock { overflow: hidden; }

@media (max-width: 860px) {
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-drop {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 72px;
    z-index: 3;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
  }
  .nav.is-open .nav-drop { display: block; }
  .nav.is-open .nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(14, 42, 71, 0.14);
  }
  .nav-drop-list { display: grid; gap: 14px; }
  .story-grid,
  .foot-grid { grid-template-columns: 1fr; }
  .story { min-height: 280px; }
}
