/* =============================================================
   Al Aqtar — recreation stylesheet
   ============================================================= */
@font-face {
  font-family: "Etab";
  src: url("fonts/etab.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pnu";
  src: url("fonts/ArbFONTS-PNU-Light.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Pnu";
  src: url("fonts/ArbFONTS-PNU-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pnu";
  src: url("fonts/ArbFONTS-PNU-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Pnu";
  src: url("fonts/ArbFONTS-PNU-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  /* -------- COLOR TOKENS (preserved, do not change) -------- */
  --bg:            #1e1e1e;
  --bg-2:          #262626;
  --card:          #2b2b2b;
  --card-2:        #333333;
  --line:          #3a3a3a;
  --sienna:        #dc7a5a;
  --sienna-2:      #c86849;
  --silver:        #b9b9b7;
  --silver-2:      #8a8a88;
  --white:         #efe7df;
  --green:         #2d3d2a;
  --green-2:       #3a4a33;

  /* -------- RADII -------- */
  --radius-lg:     100px;
  --radius-md:     36px;
  --radius-sm:     24px;
  --radius-xs:     12px;

  /* -------- 8pt SPACING SCALE -------- */
  --space-1:       4px;
  --space-2:       8px;
  --space-3:       16px;
  --space-4:       24px;
  --space-5:       32px;
  --space-6:       48px;
  --space-7:       64px;
  --space-8:       96px;
  --space-9:       128px;
  --space-10:      160px;
  --space-11:      200px;

  /* -------- LAYOUT -------- */
  --container-max: 1440px;
  --container-pad: var(--space-6);   /* 48 desktop */
  --gutter:        var(--space-4);   /* 24 desktop */
  --measure:       65ch;

  /* -------- TYPE SCALE (preserving existing visual sizes) -------- */
  --fs-display:    78px;   /* hero */
  --fs-h1:         72px;   /* section title, board head */
  --fs-h2:         54px;   /* tagline-silver */
  --fs-h3:         46px;   /* mv h4 */
  --fs-h4:         36px;   /* vendor h3 */
  --fs-h5:         28px;   /* future cta h4 */
  --fs-h6:         22px;   /* section sub, footer h5 */
  --fs-lg:         18px;
  --fs-base:       15px;
  --fs-sm:         14px;
  --fs-xs:         13px;
  --fs-xxs:        11px;

  --lh-tight:      1.1;
  --lh-snug:       1.35;
  --lh-base:       1.55;
  --lh-relaxed:    1.85;
  --lh-loose:      1.95;

  /* -------- MOTION -------- */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-inout:    cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast:      200ms;
  --dur-base:      300ms;
  --dur-slow:      600ms;
  --dur-reveal:    800ms;

  /* -------- ELEVATION -------- */
  --shadow-sm:     0 2px 8px rgba(0,0,0,.25);
  --shadow-md:     0 10px 30px rgba(0,0,0,.35);
  --shadow-lg:     0 24px 60px rgba(0,0,0,.5);
  --shadow-ring:   0 0 0 2px rgba(220,122,90,.35);

  /* -------- Z-INDEX -------- */
  --z-nav:         50;
  --z-overlay:     80;
  --z-modal:       100;
}

@media (max-width: 767px) {
  :root {
    --container-pad: var(--space-3); /* 16 mobile */
    --gutter:        var(--space-3); /* 16 mobile */
  }
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: "Pnu", "Noto Kufi Arabic", "Tajawal", system-ui, sans-serif;
  direction: rtl;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- type helpers ---------- */
.etab   { font-family: "Etab", "Noto Naskh Arabic", "Amiri", serif; font-weight: 400; }
.pnu    { font-family: "Pnu", "Noto Kufi Arabic", "Tajawal", sans-serif; }
.t-sienna { color: var(--sienna); }
.t-silver { color: var(--silver); }
.t-white  { color: var(--white); }

/* =============================================================
   HEADER
   ============================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: background var(--dur-base) var(--ease-out),
              padding var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  background: transparent;
}
.header.is-scrolled {
  background: rgba(20,20,20,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: var(--space-3) var(--space-6);
  box-shadow: var(--shadow-sm);
}
.header.header-right {
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .header { padding: var(--space-3) var(--space-3); }
  .header.is-scrolled { padding: var(--space-2) var(--space-3); }
}
.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo img { height: 52px; width: auto; display: block; }
.footer-brand .brand-logo img { height: 64px; }
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(20,20,20,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: var(--space-2) var(--space-4);
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,.06);
}
.nav a {
  color: var(--white);
  font-size: var(--fs-base);
  padding: var(--space-2) var(--space-3);
  border-radius: 24px;
  transition: background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out);
}
.nav a:hover { background: rgba(255,255,255,.08); }
.nav a.active {
  background: rgba(220,122,90,.18);
  color: var(--sienna);
}
.nav .lang {
  background: #111;
  border: 1px solid rgba(255,255,255,.14);
  color: #f5efe9;
  font-weight: 500;
  letter-spacing: .04em;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  margin: 0 var(--space-4);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  background: #111;
}
@media (max-width: 1023px) {
  .hero { min-height: 78vh; }
}
@media (max-width: 640px) {
  .hero { min-height: 72vh; margin: 0 var(--space-2); border-radius: 0 0 48px 48px; }
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(0,0,0,.2) 0%,rgba(0,0,0,.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-6);
  gap: var(--space-5);
}
.hero-title {
  color: #fff;
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, var(--fs-display));
  line-height: 1.15;
  text-align: center;
  max-width: 1000px;
  letter-spacing: .5px;
}
.hero-sub {
  color: var(--silver);
  font-size: var(--fs-lg);
  text-align: center;
  max-width: 680px;
  line-height: var(--lh-relaxed);
}
.hero-cta-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--space-3);
}
.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: .75;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  letter-spacing: 2px;
  z-index: 2;
}
.scroll-indicator .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--sienna), transparent);
  animation: scroll-cue 1.8s var(--ease-inout) infinite;
  transform-origin: top;
}
@keyframes scroll-cue {
  0%,100% { transform: scaleY(.3); opacity: .4; }
  50%     { transform: scaleY(1);  opacity: 1; }
}
.hero-social {
  position: absolute;
  left: 44px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}
.hero-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s, transform .2s;
}
.hero-social a:hover { background: var(--sienna); transform: scale(1.08); border-color: var(--sienna); }
.hero-social svg { width: 16px; height: 16px; fill: currentColor; }

/* small hero variant */
.hero.hero-sm { min-height: 62vh; }
.hero.hero-sm .hero-content { min-height: 62vh; }
.hero.hero-sm .hero-title { font-size: clamp(36px, 5vw, 60px); }

/* =============================================================
   CONTAINER / GENERAL
   ============================================================= */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container-narrow {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.measure { max-width: var(--measure); }
.section     { padding: 80px 0; }
.section-sm  { padding: 48px 0; }
.section-xl  { padding: 112px 0; }

@media (max-width: 1023px) {
  .section    { padding: 64px 0; }
  .section-sm { padding: 40px 0; }
  .section-xl { padding: 88px 0; }
}
@media (max-width: 767px) {
  .section    { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .section-xl { padding: 64px 0; }
}

.divider { height:1px; background: var(--line); margin: var(--space-7) 0; }

.section-title {
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: clamp(40px, 5vw, var(--fs-h1));
  font-weight: 400;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-3);
  letter-spacing: .3px;
}
.section-sub {
  color: var(--silver);
  font-size: var(--fs-h6);
  font-weight: 400;
  max-width: 820px;
  line-height: var(--lh-relaxed);
}
.eyebrow {
  display: inline-block;
  font-family: "Pnu", sans-serif;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--sienna);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.section-head.center { align-items: center; text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

.tagline-silver {
  color: var(--silver);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: clamp(32px, 4vw, var(--fs-h2));
  line-height: var(--lh-tight);
  font-weight: 400;
  text-align: center;
  margin: var(--space-5) 0 var(--space-3);
}
.tagline-sienna-sub {
  color: var(--sienna);
  font-size: var(--fs-lg);
  text-align: center;
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

/* =============================================================
   PROJECT CARDS — asymmetric editorial grid
   ============================================================= */
.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}
.project-card {
  position: relative;
  background: var(--card);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  min-height: 320px;
  grid-column: span 6; /* default — 2 per row */
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
/* feature card — spans wide */
.project-card.feature { grid-column: span 12; min-height: 480px; }
.project-card.half    { grid-column: span 6; }
.project-card.third   { grid-column: span 4; }
.project-card.two-third { grid-column: span 8; }
.project-card.full { grid-column: 1 / -1; }

.project-card .media {
  flex: 1;
  background-size: cover;
  background-position: center;
  min-height: 280px;
  transition: transform var(--dur-slow) var(--ease-out);
}
.project-card:hover .media { transform: scale(1.04); }

.project-card .info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}
.project-card .info img { max-width: 280px; width: 80%; }
.project-card .info .text-logo {
  text-align: center;
  font-family: "Etab", "Noto Naskh Arabic", serif;
  color: var(--white);
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: 2px;
}
.project-card .meta-tag {
  position: absolute;
  top: var(--space-4);
  inset-inline-end: var(--space-4);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: var(--space-2) var(--space-3);
  border-radius: 999px;
  font-size: var(--fs-xs);
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 1023px) {
  .project-card.feature, .project-card.half, .project-card.third, .project-card.two-third {
    grid-column: 1 / -1;
  }
}

/* -- zumuruda block on /projects -- */
.zum-block {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-6);
  align-items: stretch;
}
.zum-block .left {
  display: flex; flex-direction: column; justify-content: center;
  gap: var(--space-5);
  max-width: var(--measure);
}
.zum-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  padding: var(--space-2) var(--space-2) var(--space-3);
}
.zum-logo-wrap img { max-width: 180px; }
.zum-desc { color: var(--silver); font-size: var(--fs-base); line-height: var(--lh-loose); }

.zum-meta {
  display: flex;
  gap: var(--space-6);
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
  font-size: var(--fs-base);
  color: var(--silver);
}
.zum-meta .label { color: var(--silver-2); font-size: var(--fs-xs); margin-bottom: var(--space-1); letter-spacing: 1px; }
.zum-meta .value { color: var(--white); }

.zum-actions { display: flex; gap: var(--space-3); margin-top: var(--space-2); flex-wrap: wrap; }

.zum-block .right {
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  min-height: 470px;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: 999px;
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: 17px;
  font-weight: 400;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}
.btn:hover  { transform: scale(1.02); }
.btn:active { transform: scale(.98); }
.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-ring);
}
.btn-primary {
  background: var(--sienna);
  color: #fff;
  box-shadow: 0 6px 18px rgba(220,122,90,.25);
}
.btn-primary:hover {
  background: var(--sienna-2);
  box-shadow: 0 10px 30px rgba(220,122,90,.45);
}
.btn-ghost   {
  background: transparent;
  color: var(--white);
  border-color: var(--silver-2);
}
.btn-ghost:hover {
  border-color: var(--sienna);
  color: var(--sienna);
}
.btn-icon    {
  width: 48px; height: 48px;
  padding: 0;
  border-radius: 50%;
  background: var(--sienna); color:#fff;
}
.btn-lg { padding: var(--space-4) var(--space-7); font-size: var(--fs-lg); }

/* =============================================================
   PARTNERS LOGO ROW
   ============================================================= */
.partners-logos {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  gap: var(--space-7);
  padding: var(--space-6) 0;
}
.partners-logos .logo-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  opacity: .75;
  transition: opacity var(--dur-base) var(--ease-out);
}
.partners-logos .logo-wrap:hover { opacity: 1; }
.partners-logos .logo-wrap:not(:last-child)::before {
  content: "";
  position: absolute;
  inset-inline-start: calc(-1 * var(--space-5));
  top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}
.partners-logos img { max-height: 72px; width: auto; filter: grayscale(.2); }

/* =============================================================
   VENDOR LOGIN CARD (partners page)
   ============================================================= */
.vendor-login {
  background: var(--bg-2);
  border-radius: var(--radius-sm);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-6);
  align-items: stretch;
}
.vendor-login .img-col {
  border-radius: 18px;
  overflow: hidden;
  min-height: 340px;
  background-size: cover;
  background-position: center;
}
.vendor-login .txt-col { padding: 14px 8px; }
.vendor-login h3 {
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 18px;
  line-height: 1.2;
}
.vendor-login p { color: var(--silver); font-size: 15px; line-height: 1.9; margin-bottom: 18px; }
.vendor-login ul li {
  color: var(--silver);
  font-size: 14px;
  padding: 8px 0;
  display: flex;
  gap: 10px;
  align-items: center;
}
.vendor-login ul li a { color: var(--sienna); text-decoration: underline; margin-inline-end: 4px; }
.vendor-login ul li .check-row { display:flex; align-items:center; gap:8px; color: var(--silver); font-size: 13px; }
.vendor-login .btn-row { display:flex; gap: 12px; margin-top: 18px; }

/* =============================================================
   ABOUT — mission/vision green block
   ============================================================= */
.mv-block {
  position: relative;
  background: var(--green);
  border-radius: var(--radius-md);
  padding: var(--space-7) var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  overflow: hidden;
}
.mv-block::before {
  content: "";
  position: absolute; inset: 0;
  background: url('https://alaqtar.com/assets/images/png/flag.png') center/contain no-repeat;
  opacity: .12;
  mix-blend-mode: overlay;
}
.mv-block > div { position: relative; z-index: 1; }
.mv-block h4 {
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: var(--fs-h3);
  font-weight: 400;
  margin-bottom: var(--space-4);
  line-height: var(--lh-tight);
}
.mv-block p { color: var(--white); font-size: var(--fs-base); line-height: var(--lh-relaxed); max-width: var(--measure); }

/* values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--space-6);
  padding: var(--space-4) 0 var(--space-6);
  position: relative;
}
.values-grid::before,
.values-grid::after {
  content:"";
  position:absolute;
  top: 10%; bottom:10%;
  width:1px;
  background: var(--line);
}
.values-grid::before { inset-inline-start: 33.33%; }
.values-grid::after  { inset-inline-start: 66.66%; }

.value-item { padding: var(--space-2) var(--space-4); text-align: right; }
.value-item svg { margin-bottom: var(--space-3); }
.value-item h5 {
  color: var(--silver);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: var(--fs-h4);
  font-weight: 400;
  margin-bottom: var(--space-3);
  line-height: var(--lh-tight);
}
.value-item p { color: var(--silver); font-size: var(--fs-base); line-height: var(--lh-relaxed); }

/* future innovation section */
.future-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  padding: var(--space-6) 0;
}
.future-block p { color: var(--silver); font-size: var(--fs-base); line-height: var(--lh-relaxed); max-width: var(--measure); }
.future-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.future-cta-row h4 {
  color: var(--white);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: var(--fs-h5);
  font-weight: 400;
  margin-bottom: var(--space-3);
  line-height: var(--lh-snug);
}
.future-cta-row p { color: var(--silver); font-size: var(--fs-sm); line-height: var(--lh-relaxed); }

/* board */
.board-wrap { padding: var(--space-6) 0 0; }
.board-head {
  text-align: center;
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: clamp(44px, 5vw, var(--fs-h1));
  margin-bottom: var(--space-3);
  font-weight: 400;
  line-height: var(--lh-tight);
}
.board-head-sub {
  text-align: center;
  color: var(--white);
  font-size: var(--fs-lg);
  max-width: 760px;
  margin: 0 auto var(--space-7);
  font-weight: 300;
  line-height: var(--lh-relaxed);
}
.board-bg {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-image: url('https://alaqtar.com/assets/images/jpeg/wall.jpeg');
  background-size: cover;
  background-position: center;
  padding: var(--space-7) var(--space-6) 0;
}
.board-bg::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg,rgba(0,0,0,.6) 0%, rgba(20,20,20,.85) 60%, var(--bg) 100%);
}
.board-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
  max-width: 900px;
  margin: 0 auto;
}
.board-card {
  text-align: center;
  padding-bottom: var(--space-5);
}
.board-card img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto var(--space-3);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.45));
  transition: transform var(--dur-slow) var(--ease-out);
}
.board-card:hover img { transform: translateY(-6px); }
.board-card .name {
  color: #fff;
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: var(--fs-h6);
  margin-bottom: var(--space-1);
  letter-spacing: .5px;
}
.board-card .role {
  color: var(--sienna);
  font-size: var(--fs-xs);
  letter-spacing: 1px;
}

/* leadership stack — chairman / ceo with messages on left, photo on right */
.leadership-stack {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: var(--space-7);
}
.leader-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--space-7);
  align-items: center;
}
.leader-row .photo {
  position: relative;
}
.leader-row .photo img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  border-radius: var(--radius-sm);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.55));
  background: var(--card);
}
.leader-row .msg {
  text-align: right;
}
[dir="ltr"] .leader-row .msg { text-align: left; }
.leader-row .msg .role-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 3px;
  color: var(--sienna);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.leader-row .msg h4 {
  color: #fff;
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: var(--lh-tight);
  font-weight: 400;
  margin-bottom: var(--space-2);
}
.leader-row .msg .sub {
  color: var(--sienna);
  font-size: var(--fs-base);
  margin-bottom: var(--space-4);
}
.leader-row .msg p {
  color: var(--silver);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  max-width: var(--measure);
}
@media (max-width: 767px) {
  .leader-row {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    text-align: center;
  }
  .leader-row .msg, [dir="ltr"] .leader-row .msg { text-align: center; }
  .leader-row .msg p { margin: 0 auto; }
}

/* =============================================================
   CONTACT FORM + INFO (RIGHT COLUMN)
   ============================================================= */
.contact-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
  padding: var(--space-8) 0 var(--space-7);
  align-items: start;
}
.contact-section h2 {
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: var(--fs-h5);
  font-weight: 400;
  line-height: var(--lh-snug);
  margin-bottom: var(--space-4);
}
.contact-section .intro p {
  color: var(--silver);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-3);
  max-width: var(--measure);
}
.contact-info { margin-top: var(--space-6); }
.contact-info .row {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-3) 0;
  color: var(--white);
  font-size: var(--fs-base);
  transition: color var(--dur-base) var(--ease-out);
}
a.row:hover { color: var(--sienna); }
a.row:hover svg { transform: scale(1.15); }
.contact-info .row svg {
  flex-shrink: 0; margin-top: 3px; color: var(--sienna);
  transition: transform var(--dur-base) var(--ease-out);
}
.contact-info .row span.lbl { color: var(--sienna); margin-inline-end: var(--space-1); }

/* form column */
.form-wrap h3 {
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: var(--fs-h4);
  font-weight: 400;
  margin-bottom: var(--space-5);
  text-align: right;
  line-height: var(--lh-tight);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.form-grid input,
.form-grid textarea,
.form-grid select {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: var(--space-3) var(--space-4);
  color: var(--white);
  font-size: var(--fs-sm);
  font-family: inherit;
  outline: none;
  width: 100%;
  direction: rtl;
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.form-grid input:hover,
.form-grid textarea:hover,
.form-grid select:hover { border-color: var(--silver-2); }
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--sienna);
  background: var(--card-2);
  box-shadow: 0 0 0 3px rgba(220,122,90,.18);
}
.form-grid input::placeholder,
.form-grid textarea::placeholder { color: var(--silver-2); }
.form-grid textarea { border-radius: var(--radius-xs); resize: vertical; min-height: 140px; }
.form-grid .full { grid-column: span 2; }
.form-grid .phone-row {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--space-3);
}
.form-grid .phone-row select { background:var(--bg-2); text-align:center; padding: var(--space-3) var(--space-2); }
.form-submit {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5);
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: #252525;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: var(--space-8) 0 var(--space-5);
  margin-top: var(--space-7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: var(--space-7);
  align-items: start;
}
.footer-brand { display:flex; flex-direction:column; gap: 20px; }
.footer-brand .socials {
  display:flex;
  gap: 10px;
}
.footer-brand .socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background .2s;
}
.footer-brand .socials a:hover { background: var(--sienna); border-color: var(--sienna); }
.footer-brand p { color: var(--silver); font-size: 14px; line-height: 1.8; }

.footer h5 {
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-weight: 400;
  font-size: var(--fs-h6);
  margin-bottom: var(--space-3);
  letter-spacing: .5px;
}
.footer ul li {
  padding: var(--space-1) 0;
  color: var(--silver);
  font-size: var(--fs-sm);
}
.footer ul li a {
  position: relative;
  transition: color var(--dur-base) var(--ease-out);
}
.footer ul li a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--sienna);
  transition: width var(--dur-base) var(--ease-out);
}
.footer ul li a:hover { color: var(--white); }
.footer ul li a:hover::after { width: 100%; }

.footer .contact-row {
  display: flex; gap: var(--space-2); padding: var(--space-2) 0;
  color: var(--silver); font-size: var(--fs-xs); line-height: var(--lh-base);
  transition: color var(--dur-base) var(--ease-out);
}
a.contact-row:hover { color: var(--white); }
a.contact-row:hover svg { transform: scale(1.15); }
.footer .contact-row svg {
  color: var(--sienna); margin-top: 2px; flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-out);
}
.footer .contact-row .lbl { color: var(--sienna); display: block; font-size: 13px; }

.newsletter {
  display: flex; gap: var(--space-2);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: var(--space-1);
  margin-top: var(--space-3);
  transition: border-color var(--dur-base) var(--ease-out);
}
.newsletter:focus-within { border-color: var(--sienna); }
.newsletter input {
  flex:1; background: transparent; border: none;
  padding: 10px 16px; color:var(--white); font-family: inherit; font-size: 14px;
  outline: none; direction: rtl;
}
.newsletter button {
  width: 40px; height: 40px; border:none; border-radius:50%;
  background: var(--sienna); color:#fff; cursor:pointer;
  display: flex; align-items: center; justify-content: center;
}
.footer-note { font-size: 11px; color: var(--silver-2); margin-top: 10px; line-height: 1.6; }

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  color: var(--silver-2);
  font-size: var(--fs-xxs);
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* join team */
.join-team { display:flex; flex-direction:column; gap: 10px; }
.join-team a {
  color: var(--white);
  text-decoration: underline;
  font-size: 14px;
}

/* chat bubble */
.chat-fab {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  border: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
  z-index: 40;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.chat-fab:hover { background: #1ebe5d; }

/* =============================================================
   RESPONSIVE — 4 breakpoints
   mobile   : 320-767
   tablet   : 768-1023
   desktop  : 1024-1439
   wide     : 1440+
   ============================================================= */

/* Tablet & down */
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; gap: var(--space-6); }
  .zum-block { grid-template-columns: 1fr; }
  .mv-block, .future-block, .future-cta-row, .values-grid { grid-template-columns: 1fr; }
  .values-grid::before, .values-grid::after { display:none; }
  .nav a { display: none; }
  .nav .lang { display: inline-flex; }
}

/* Mobile */
@media (max-width: 767px) {
  .footer-grid { grid-template-columns: 1fr; }
  .vendor-login { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full, .form-grid .phone-row { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: var(--space-2); }
  .zum-meta { flex-wrap: wrap; gap: var(--space-4); }
  .mv-block { padding: var(--space-5) var(--space-4); }
  .zum-block { padding: var(--space-4); gap: var(--space-4); }
  .zum-block .right { min-height: 260px; }
}

/* Wide */
@media (min-width: 1440px) {
  .container { padding-inline: var(--space-7); }
}

/* =============================================================
   HOMEPAGE COMPONENTS — stats / editorial / testimonials / awards / nl-hero
   ============================================================= */

/* ---- Trust / stats counter ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item {
  text-align: center;
  padding: var(--space-4) var(--space-3);
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 20%; bottom: 20%;
  width: 1px;
  background: var(--line);
}
.stat-item .num {
  display: block;
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: var(--lh-tight);
  color: var(--sienna);
  font-weight: 400;
  letter-spacing: 1px;
}
.stat-item .unit {
  display: inline-block;
  margin-inline-start: var(--space-1);
  font-size: .5em;
  color: var(--silver);
}
.stat-item .lbl {
  color: var(--silver);
  font-size: var(--fs-sm);
  margin-top: var(--space-2);
  letter-spacing: 1px;
}

/* ---- Editorial 2-col ---- */
.editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.editorial .media {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  min-height: 520px;
}
.editorial .txt { max-width: var(--measure); }
.editorial .txt h2 {
  color: var(--sienna);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: var(--lh-tight);
  font-weight: 400;
  margin-bottom: var(--space-5);
}
.editorial .txt p {
  color: var(--silver);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-3);
}
.editorial .cta-row { margin-top: var(--space-5); display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* reverse variant */
.editorial.reverse { grid-template-columns: 1fr 1.1fr; direction: ltr; }
.editorial.reverse > * { direction: rtl; }

/* ---- Testimonials ---- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--sienna);
  box-shadow: var(--shadow-md);
}
.testimonial .quote-mark {
  color: var(--sienna);
  font-family: "Etab", serif;
  font-size: 56px;
  line-height: 1;
  opacity: .5;
}
.testimonial blockquote {
  color: var(--white);
  font-size: var(--fs-base);
  line-height: var(--lh-loose);
  font-style: normal;
  flex: 1;
}
.testimonial .author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}
.testimonial .author img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}
.testimonial .author .meta { display: flex; flex-direction: column; }
.testimonial .author .name { color: var(--white); font-size: var(--fs-sm); }
.testimonial .author .role { color: var(--silver-2); font-size: var(--fs-xs); }

/* ---- Awards / Press strip ---- */
.awards-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.award-item {
  text-align: center;
  color: var(--silver-2);
  font-family: "Etab", serif;
  font-size: var(--fs-xs);
  letter-spacing: 2px;
  opacity: .7;
  transition: opacity var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.award-item:hover { opacity: 1; color: var(--white); }
.award-item .year {
  display: block;
  color: var(--sienna);
  font-size: var(--fs-h4);
  margin-bottom: var(--space-1);
}

/* ---- Newsletter capture hero-style block ---- */
.nl-hero {
  background: linear-gradient(135deg, var(--card) 0%, var(--bg-2) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nl-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(220,122,90,.12), transparent 60%);
  pointer-events: none;
}
.nl-hero > * { position: relative; z-index: 1; }
.nl-hero h3 {
  color: var(--white);
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: var(--lh-tight);
  font-weight: 400;
  margin-bottom: var(--space-3);
}
.nl-hero p {
  color: var(--silver);
  font-size: var(--fs-lg);
  max-width: 560px;
  margin: 0 auto var(--space-5);
  line-height: var(--lh-relaxed);
}
.nl-hero .nl-form {
  display: flex;
  gap: var(--space-2);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: var(--space-1);
  max-width: 460px;
  margin: 0 auto;
  transition: border-color var(--dur-base) var(--ease-out);
}
.nl-hero .nl-form:focus-within { border-color: var(--sienna); }
.nl-hero .nl-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: var(--space-3) var(--space-4);
  color: var(--white);
  font-family: inherit;
  font-size: var(--fs-sm);
  outline: none;
  direction: rtl;
}
.nl-hero .nl-form button {
  padding: var(--space-3) var(--space-5);
  border: 0;
  border-radius: 999px;
  background: var(--sienna);
  color: #fff;
  font-family: inherit;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.nl-hero .nl-form button:hover { background: var(--sienna-2); }

@media (max-width: 1023px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .editorial, .editorial.reverse { grid-template-columns: 1fr; gap: var(--space-5); }
  .editorial .media { aspect-ratio: 16 / 10; min-height: 320px; }
  .testimonials { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); padding: var(--space-4) 0; }
  .stat-item::after { display: none !important; }
  .nl-hero .nl-form { flex-direction: column; border-radius: var(--radius-xs); }
  .nl-hero .nl-form input, .nl-hero .nl-form button { border-radius: 999px; }
}

/* =============================================================
   ANIMATION / REVEAL UTILITIES
   ============================================================= */

/* JS adds .reveal to candidate elements and .in-view when intersecting */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
/* delay utilities for staggered children */
.reveal.d-1 { transition-delay: 100ms; }
.reveal.d-2 { transition-delay: 200ms; }
.reveal.d-3 { transition-delay: 300ms; }
.reveal.d-4 { transition-delay: 400ms; }
.reveal.d-5 { transition-delay: 500ms; }

/* image clip-path reveal */
.reveal-img {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1200ms var(--ease-out);
}
.reveal-img.in-view {
  clip-path: inset(0 0 0 0);
}

/* split-text hero reveal — apply to .hero-title and JS will wrap words */
.split-word {
  display: inline-block;
  overflow: hidden;
}
.split-word > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 900ms var(--ease-out), opacity 900ms var(--ease-out);
}
.split-word.in-view > span { transform: none; opacity: 1; }

/* Ken-Burns for hero image */
.hero-img.kb {
  animation: kenburns 24s var(--ease-inout) both;
}
@keyframes kenburns {
  from { transform: scale(1);    }
  to   { transform: scale(1.08); }
}

/* Link underline draw-in (use .lnk class) */
.lnk {
  position: relative;
  display: inline-block;
}
.lnk::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -2px;
  height: 1px;
  width: 100%;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-fast) var(--ease-out);
}
.lnk:hover::after { transform: scaleX(1); transform-origin: left; }

/* =============================================================
   A11Y
   ============================================================= */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--sienna);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  inset-inline-start: var(--space-3);
  top: var(--space-3);
  background: var(--sienna);
  color: #fff;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  font-size: var(--fs-sm);
  z-index: var(--z-modal);
  transform: translateY(-200%);
  transition: transform var(--dur-base) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* sr-only (visually-hidden but readable by SR) */
.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;
}

/* =============================================================
   LTR / ENGLISH OVERRIDES
   ============================================================= */
[dir="ltr"] body,
body[dir="ltr"] {
  direction: ltr;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}
[dir="ltr"] .value-item { text-align: left; }
[dir="ltr"] .form-wrap h3 { text-align: left; }
[dir="ltr"] .form-grid input,
[dir="ltr"] .form-grid textarea,
[dir="ltr"] .form-grid select,
[dir="ltr"] .newsletter input,
[dir="ltr"] .nl-hero .nl-form input { direction: ltr; }
[dir="ltr"] .chat-fab { left: auto; right: 18px; }
[dir="ltr"] .hero-social { left: auto; right: 44px; }
[dir="ltr"] .section-sub { margin-left: 0; margin-right: 0; }
[dir="ltr"] .mv-block h4,
[dir="ltr"] .section-title,
[dir="ltr"] .editorial .txt h2,
[dir="ltr"] .board-head,
[dir="ltr"] .contact-section h2 { letter-spacing: .5px; }
[dir="ltr"] .eyebrow { letter-spacing: 4px; }
[dir="ltr"] .footer ul li a::after { inset-inline-start: 0; }
/* For English wordmark, give a slightly tighter letter-spacing on hero title */
[dir="ltr"] .hero-title { letter-spacing: 0; }

/* =============================================================
   REDUCED MOTION
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal,
  .reveal-img,
  .split-word > span { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .hero-img.kb { animation: none !important; }
  .scroll-indicator .line { animation: none !important; }
}

/* =============================================================
   EDITORIAL PASS — refinement layer (additive only)
   Adds rhythm, depth, motion and component polish on top of the
   existing brand tokens. No colors, fonts, or copy are introduced.
   ============================================================= */

/* ---- Tokens local to the editorial pass --------------------- */
:root {
  --hairline:        rgba(220,122,90,.18);
  --rule-soft:       rgba(255,255,255,.06);
  --pad-section:     clamp(80px, 10vw, 160px);
  --pad-section-sm:  clamp(56px, 7vw, 96px);
  --ease-luxe:       cubic-bezier(.2,.7,.2,1);
}

/* ---- Vertical rhythm utility (opt-in via .rhythm) ----------- */
.rhythm                { padding-block: var(--pad-section); }
.rhythm.rhythm-sm      { padding-block: var(--pad-section-sm); }
.rhythm-top            { padding-top: var(--pad-section); }
.rhythm-bottom         { padding-bottom: var(--pad-section); }

/* ---- Refined divider --------------------------------------- */
.divider {
  position: relative;
  height: auto;
  background: transparent;
  margin: var(--space-8) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider::before {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}
.divider::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sienna);
  box-shadow: 0 0 0 4px rgba(220,122,90,.12);
}

/* ---- Eyebrow label (decorative numeral / pre-title tag) ---- */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: Georgia, "Etab", serif;
  font-style: italic;
  font-size: var(--fs-xs);
  letter-spacing: .18em;
  color: var(--sienna);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.eyebrow-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--sienna);
  display: inline-block;
}
[dir="rtl"] .eyebrow-tag::before { margin-inline-end: 0; }

/* ---- Refined focus ring (overrides global outline) --------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--sienna);
  border-radius: 8px;
  transition: box-shadow 160ms var(--ease-out);
}

/* ---- Sienna underline-rise on ghost / inline anchors -------- */
.btn-ghost {
  background-image: linear-gradient(var(--sienna), var(--sienna));
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0 1px;
  transition: background-size 360ms var(--ease-luxe),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.btn-ghost:hover {
  background-size: 70% 1px;
  transform: translateY(-1px);
}
.btn-primary {
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.btn-primary:hover {
  transform: translateY(-1px);
}

/* ---- Header refinement (on top of existing is-scrolled) ----- */
.header.is-scrolled::after {
  content: "";
  position: absolute;
  inset-inline: var(--space-6);
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}

/* =============================================================
   HERO — cinematic vignette + ken-burns auto-enable
   ============================================================= */
.hero .hero-img,
.lp-hero .bg {
  animation: kb-zoom 18s var(--ease-inout) both;
  will-change: transform;
}
@keyframes kb-zoom {
  from { transform: scale(1) translate3d(0,0,0); }
  to   { transform: scale(1.08) translate3d(0,-1.5%,0); }
}

/* Stronger vignette + bottom fade for legibility */
.hero::after {
  background:
    radial-gradient(120% 80% at 50% 40%, rgba(0,0,0,.0) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 100%);
}
.hero-title {
  letter-spacing: .5px;
  text-shadow: 0 1px 24px rgba(0,0,0,.4);
}
.hero.hero-sm .hero-title { letter-spacing: .25px; }

/* ---- Reveal cascade (stagger children of [data-reveal=cascade]) ---- */
[data-reveal="cascade"] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease-luxe), transform 700ms var(--ease-luxe);
}
[data-reveal="cascade"].in-view > * { opacity: 1; transform: none; }
[data-reveal="cascade"].in-view > *:nth-child(1)  { transition-delay:   0ms; }
[data-reveal="cascade"].in-view > *:nth-child(2)  { transition-delay:  70ms; }
[data-reveal="cascade"].in-view > *:nth-child(3)  { transition-delay: 140ms; }
[data-reveal="cascade"].in-view > *:nth-child(4)  { transition-delay: 210ms; }
[data-reveal="cascade"].in-view > *:nth-child(5)  { transition-delay: 280ms; }
[data-reveal="cascade"].in-view > *:nth-child(6)  { transition-delay: 350ms; }
[data-reveal="cascade"].in-view > *:nth-child(7)  { transition-delay: 420ms; }
[data-reveal="cascade"].in-view > *:nth-child(8)  { transition-delay: 490ms; }

/* =============================================================
   PROJECT CARDS — richer hover on home grid
   ============================================================= */
.project-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: transform 600ms var(--ease-luxe), box-shadow 600ms var(--ease-luxe);
}
.project-card .media {
  transition: transform 1200ms var(--ease-luxe), filter 600ms var(--ease-luxe);
}
.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55));
  opacity: .85;
  z-index: 1;
  transition: opacity 500ms var(--ease-luxe);
  pointer-events: none;
}
.project-card::after {
  content: "↗";
  position: absolute;
  inset-inline-end: var(--space-4);
  inset-block-start: var(--space-4);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.14);
  font-size: 18px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 360ms var(--ease-luxe), transform 360ms var(--ease-luxe), background 360ms;
}
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-card:hover .media { transform: scale(1.06); filter: saturate(1.1); }
.project-card:hover::before { opacity: .55; }
.project-card:hover::after  { opacity: 1; transform: translateY(0); background: var(--sienna); border-color: var(--sienna); }

/* =============================================================
   VALUE CARDS — refined card replacing divider grid
   ============================================================= */
.values-grid.values-grid-4 { position: relative; padding: var(--space-2) 0; gap: var(--space-4); }
/* Hide the old vertical dividers in the 4-up variant */
.values-grid.values-grid-4::before,
.values-grid.values-grid-4::after,
.values-grid.values-grid-4 .v-divider-3 { display: none !important; }

.values-grid.values-grid-4 .value-item {
  position: relative;
  padding: var(--space-6) var(--space-5);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,0));
  border: 1px solid var(--rule-soft);
  border-radius: var(--radius-sm);
  text-align: start;
  transition: transform 500ms var(--ease-luxe),
              border-color 500ms var(--ease-luxe),
              box-shadow 500ms var(--ease-luxe),
              background 500ms var(--ease-luxe);
  overflow: hidden;
}
.values-grid.values-grid-4 .value-item::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--sienna), transparent);
  opacity: .5;
  transition: opacity 500ms var(--ease-luxe), top 500ms var(--ease-luxe), bottom 500ms var(--ease-luxe);
}
.values-grid.values-grid-4 .value-item:hover {
  transform: translateY(-4px);
  border-color: rgba(220,122,90,.32);
  background: linear-gradient(180deg, rgba(220,122,90,.06), rgba(0,0,0,0));
  box-shadow: var(--shadow-md);
}
.values-grid.values-grid-4 .value-item:hover::before {
  opacity: 1;
  top: 8%; bottom: 8%;
}
.values-grid.values-grid-4 .value-item .v-num {
  display: block;
  font-family: Georgia, "Etab", serif;
  font-style: italic;
  font-size: var(--fs-base);
  color: var(--sienna);
  letter-spacing: .15em;
  margin-bottom: var(--space-2);
}

/* =============================================================
   MISSION / VISION block — numbered editorial split
   ============================================================= */
.mv-block { position: relative; }

/* Stacked variant — single column, all three sections share the Saudi flag bg */
.mv-block.mv-block-stacked {
  grid-template-columns: 1fr;
  gap: 0;
}
.mv-block.mv-block-stacked::before {
  background-size: 60% auto;
  opacity: .14;
}
.mv-block.mv-block-stacked > div {
  padding: var(--space-6) 0;
  position: relative;
}
.mv-block.mv-block-stacked > div + div {
  border-top: 1px solid rgba(220,122,90,.18);
}
.mv-block.mv-block-stacked > div + div::before {
  display: none !important;
}
.mv-block.mv-block-stacked > div:first-child { padding-top: var(--space-3); }
.mv-block.mv-block-stacked > div:last-child  { padding-bottom: var(--space-3); }
.mv-block.mv-block-stacked p { max-width: none; }

.mv-block .mv-num {
  display: inline-block;
  font-family: Georgia, "Etab", serif;
  font-style: italic;
  font-size: var(--fs-base);
  color: var(--sienna);
  letter-spacing: .15em;
  margin-bottom: var(--space-2);
}
@media (min-width: 1024px) {
  .mv-block > div + div { position: relative; }
  .mv-block > div + div::before {
    content: "";
    position: absolute;
    inset-block: 12%;
    inset-inline-start: calc(var(--space-6) * -1);
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--hairline), transparent);
  }
}

/* =============================================================
   PROJECTS PAGE — editorial sequence numbers on zum-block
   ============================================================= */
.zum-block {
  position: relative;
  isolation: isolate;
  transition: transform 600ms var(--ease-luxe);
}
.zum-block[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: -28px;
  inset-inline-start: var(--space-6);
  font-family: Georgia, "Etab", serif;
  font-style: italic;
  font-size: clamp(64px, 7vw, 120px);
  line-height: 1;
  color: var(--sienna);
  opacity: .14;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -.02em;
}
.zum-block .left, .zum-block .right { position: relative; z-index: 1; }
.zum-block .right {
  transition: transform 1200ms var(--ease-luxe), filter 600ms var(--ease-luxe);
}
.zum-block:hover .right { transform: scale(1.03); filter: saturate(1.08); }

/* =============================================================
   BOARD — refined photo treatment + signature underline
   ============================================================= */
.leader-row .photo {
  position: relative;
}
.leader-row .photo img {
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px rgba(0,0,0,.5);
}
.leader-row .photo::after {
  content: "";
  position: absolute;
  inset: -12px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
  transition: inset 500ms var(--ease-luxe), border-color 500ms var(--ease-luxe);
}
.leader-row:hover .photo::after { inset: -18px; border-color: rgba(220,122,90,.5); }
.leader-row .msg h4 {
  position: relative;
  display: inline-block;
  padding-bottom: var(--space-2);
}
.leader-row .msg h4::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 48px;
  height: 1px;
  background: var(--sienna);
  transform-origin: inset-inline-start;
}

/* =============================================================
   FORMS — bottom-border-only field treatment
   ============================================================= */
.form-grid input,
.form-grid textarea,
.form-grid select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--silver-2);
  border-radius: 0;
  padding: var(--space-3) var(--space-1);
  color: var(--white);
  font-size: var(--fs-base);
  font-family: inherit;
  transition: border-color 360ms var(--ease-luxe), padding 360ms var(--ease-luxe);
}
.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: var(--silver-2);
  transition: color 240ms;
}
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-bottom-color: var(--sienna);
}
.form-grid input:focus::placeholder,
.form-grid textarea:focus::placeholder { color: var(--silver); }
.form-grid .phone-row { gap: var(--space-3); }
.form-grid .form-submit { margin-top: var(--space-4); }

/* =============================================================
   AL-ZUMURUDA — gallery + detail-card polish
   ============================================================= */
.lp-gallery-branded img {
  transition: transform 900ms var(--ease-luxe), box-shadow 600ms var(--ease-luxe);
}
.lp-gallery-branded img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 1px var(--hairline), 0 20px 50px rgba(0,0,0,.45);
}

.lp-detail-card {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--rule-soft) !important;
  border-radius: 0 !important;
  padding: var(--space-5) var(--space-2) !important;
  text-align: start !important;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--space-3);
  row-gap: 2px;
  align-items: center;
  transition: border-color 360ms var(--ease-luxe);
}
.lp-detail-card .icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  margin: 0 !important;
  color: var(--sienna);
}
.lp-detail-card .label {
  grid-column: 2; grid-row: 1;
  font-size: var(--fs-xs) !important;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver-2) !important;
}
.lp-detail-card .value {
  grid-column: 2; grid-row: 2;
  font-family: "Etab", "Noto Naskh Arabic", serif;
  font-size: var(--fs-h6) !important;
  font-weight: 400 !important;
  color: var(--white) !important;
}
.lp-detail-card:hover { border-bottom-color: var(--sienna) !important; }

/* List bullet refinement */
.lp-list li::before {
  width: 6px !important;
  height: 6px !important;
  border-radius: 1px !important;
  background: var(--sienna) !important;
  transform: rotate(45deg);
}
.lp-list li {
  padding: 14px 0 !important;
  border-bottom: 1px solid var(--rule-soft) !important;
}
.lp-list li:last-child { border-bottom-color: transparent !important; }

/* Lp-overview subtitle alignment */
.lp-overview .lp-overview-sub { letter-spacing: .04em; }

/* =============================================================
   PARTNERS LOGOS — hover treatment
   ============================================================= */
.partners-logos .logo-wrap {
  filter: grayscale(.7) brightness(.9);
  opacity: .8;
  transition: filter 360ms var(--ease-luxe), opacity 360ms var(--ease-luxe), transform 360ms var(--ease-luxe);
}
.partners-logos .logo-wrap:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-3px);
}

/* =============================================================
   FOOTER — bottom hairline + spacing rhythm
   ============================================================= */
.footer-bottom {
  position: relative;
  padding-top: var(--space-4);
}
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0; inset-inline: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline), transparent);
}

/* =============================================================
   MOBILE TUNING
   ============================================================= */
@media (max-width: 1023px) {
  .zum-block[data-num]::before { font-size: 64px; top: -16px; }
  .leader-row .photo::after { inset: -6px; }
}
@media (max-width: 767px) {
  .divider { margin: var(--space-6) 0; }
  .project-card::after { width: 32px; height: 32px; font-size: 15px; }
}

