/* National Holding Company — Official brand stylesheet (refined) */
:root {
  --brand-navy: #160C56;
  --brand-orange: #DB8E3D;
  --navy-dark: #0E0740;
  --navy-800: #221474;
  --orange-dark: #B87220;
  --white: #FFFFFF;

  --text: #0E0740;
  --muted: #5a5a72;
  --line: rgba(22, 12, 86, 0.10);
  --line-strong: rgba(22, 12, 86, 0.18);
  --bg-soft: #f6f5fb;
  --bg-tint: #fbfaff;
  --shadow-sm: 0 1px 2px rgba(14, 7, 64, 0.04), 0 2px 8px rgba(14, 7, 64, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 7, 64, 0.08);
  --shadow-lg: 0 24px 60px -20px rgba(14, 7, 64, 0.25);
  --radius-sm: 8px;
  --radius: 10px;
  --radius-lg: 16px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "IBM Plex Sans Arabic", "Tajawal", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-navy); text-decoration: none; }
a:hover { color: var(--brand-orange); }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: "Noto Kufi Arabic", "IBM Plex Sans Arabic", "Tajawal", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  min-height: 48px;
  border: 1.5px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brand-orange);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(219, 142, 61, 0.55);
}
.btn-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: var(--white); color: var(--brand-navy); border-color: var(--white); }
.btn-ghost { background: transparent; color: var(--brand-navy); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--brand-navy); color: var(--white); border-color: var(--brand-navy); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--brand-navy);
  transition: color .2s ease;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--brand-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.main-nav a:hover { color: var(--brand-orange); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--line-strong);
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 13px;
  background: transparent;
  letter-spacing: 0.05em;
}
.lang-switch:hover { background: var(--brand-navy); color: var(--white); border-color: var(--brand-navy); }
.header-cta {
  padding: 10px 20px;
  min-height: 40px;
  border-radius: 6px;
  background: var(--brand-orange);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border: none;
}
.header-cta:hover { background: var(--orange-dark); color: var(--white); }

.menu-toggle {
  display: none;
  border: 1px solid var(--line-strong);
  background: transparent;
  padding: 8px;
  color: var(--brand-navy);
  border-radius: 6px;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; pointer-events: none; visibility: hidden; }
.drawer.open { pointer-events: auto; visibility: visible; }
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(14, 7, 64, 0.55);
  opacity: 0; transition: opacity .25s ease;
}
.drawer.open .drawer-overlay { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: min(340px, 88vw);
  background: var(--white);
  padding: 20px;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex; flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.drawer-head img { height: 38px; }
.drawer-close { border: none; background: transparent; color: var(--brand-navy); padding: 6px; }
.drawer nav a {
  display: block; padding: 14px 12px; border-radius: 8px;
  color: var(--brand-navy); font-weight: 700; font-size: 16px;
}
.drawer nav a:hover { background: var(--bg-soft); color: var(--brand-orange); }
.drawer .btn { margin-top: 12px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(14,7,64,0.78) 0%, rgba(22,12,86,0.72) 55%, rgba(34,20,116,0.65) 100%),
    url("/assets/img/official/hero-baghdad.jpg") center/cover no-repeat,
    linear-gradient(135deg, var(--brand-navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(219,142,61,0.28), transparent 60%),
    radial-gradient(1000px 700px at 10% 90%, rgba(34,20,116,0.55), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 140px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 64px;
  align-items: center;
}
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--brand-orange);
  font-weight: 700;
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(219,142,61,0.4);
  border-radius: 999px;
  background: rgba(219,142,61,0.08);
}
.hero h1 {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.hero h1 span { color: var(--brand-orange); }
.hero p.lead {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin: 0 0 36px;
  max-width: 56ch;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-visual::before {
  content: "لمحة عن المجموعة";
  position: absolute;
  top: -12px; right: 20px;
  background: var(--brand-orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.hero-visual .stat {
  padding: 20px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background .2s ease;
}
.hero-visual .stat:hover { background: rgba(255,255,255,0.08); }
.hero-visual .stat b {
  display: block;
  font-size: 30px;
  color: var(--brand-orange);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1;
}
.hero-visual .stat span { color: rgba(255,255,255,0.72); font-size: 13.5px; }

/* Sections */
section { padding: 100px 0; }
.section-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.section-head.align-start { text-align: start; margin: 0 0 56px; }
.section-head .kicker {
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.24em;
  font-size: 12px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-head .kicker::before {
  content: "";
  width: 24px; height: 1.5px; background: var(--brand-orange);
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  color: var(--brand-navy);
  margin: 14px 0 16px;
  font-weight: 800;
}
.section-head p { color: var(--muted); font-size: 17px; margin: 0; line-height: 1.8; }

.bg-soft { background: var(--bg-soft); }
.bg-navy { background: var(--brand-navy); color: var(--white); }
.bg-navy .section-head h2 { color: var(--white); }
.bg-navy .section-head p { color: rgba(255,255,255,0.78); }

/* Grids */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

/* About — pillar cards */
.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
}
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.pillar-card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(22,12,86,0.06), rgba(219,142,61,0.10));
  color: var(--brand-orange);
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(219,142,61,0.20);
}
.pillar-card .icon svg { width: 24px; height: 24px; }
.pillar-card h3 { margin: 0 0 10px; color: var(--brand-navy); font-size: 20px; font-weight: 800; }
.pillar-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }

/* Sector — flat editorial tiles */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sector-tile {
  background: var(--white);
  padding: 32px 24px;
  transition: background .2s ease;
  position: relative;
}
.sector-tile:hover { background: var(--bg-tint); }
.sector-tile .num {
  font-size: 12px;
  color: var(--brand-orange);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.sector-tile .icon {
  width: 44px; height: 44px;
  color: var(--brand-navy);
  margin: 14px 0 16px;
  display: grid; place-items: center;
}
.sector-tile .icon svg { width: 32px; height: 32px; }
.sector-tile h3 { margin: 0 0 8px; color: var(--brand-navy); font-size: 17px; font-weight: 800; }
.sector-tile p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Projects — magazine feature */
.projects-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.project-card.feature { grid-row: span 2; }
.project-card.feature .project-thumb { aspect-ratio: 4/3; }
.project-thumb {
  aspect-ratio: 16/10;
  background:
    linear-gradient(135deg, rgba(14,7,64,0.55), rgba(22,12,86,0.85)),
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, var(--brand-navy), var(--navy-800));
  position: relative;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
}
.project-thumb::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(219,142,61,0.35), transparent 55%);
}
.project-thumb span { position: relative; z-index: 2; }
.project-thumb.has-img { overflow: hidden; }
.project-thumb.has-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}
.project-thumb.has-img::before {
  background: linear-gradient(180deg, rgba(14,7,64,0) 55%, rgba(14,7,64,0.72) 100%);
  z-index: 1;
}
.project-thumb.has-img span {
  position: absolute; bottom: 12px; inset-inline-end: 14px;
  background: rgba(14,7,64,0.72);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  backdrop-filter: blur(4px);
}
.project-body { padding: 22px 24px; }
.project-body .tag {
  display: inline-block;
  color: var(--orange-dark);
  padding: 3px 0;
  border-bottom: 1.5px solid var(--brand-orange);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.06em;
}
.project-body h3 { margin: 0 0 6px; font-size: 19px; color: var(--brand-navy); }
.project-body p { margin: 0; font-size: 14px; color: var(--muted); }

/* Companies — monochrome logo strip */
.companies {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.company {
  padding: 36px 20px;
  text-align: center;
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 14px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.company:hover { background: var(--bg-tint); color: var(--brand-orange); }
.company:nth-child(4n) { border-inline-end: none; }
.company:nth-last-child(-n+4) { border-bottom: none; }
.company .placeholder-logo {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-navy), var(--navy-800));
  color: var(--brand-orange);
  display: grid; place-items: center;
  font-weight: 800;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 20px;
}

/* Investments — bold navy backdrop cards */
.invest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.invest-card {
  background: linear-gradient(180deg, var(--brand-navy), var(--navy-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.invest-card:hover { transform: translateY(-4px); }
.invest-card::after {
  content: "";
  position: absolute;
  right: -60px; bottom: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,142,61,0.30), transparent 65%);
}
.invest-card .icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(219,142,61,0.4);
  color: var(--brand-orange);
  display: grid; place-items: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.invest-card h3 { color: var(--white); font-size: 20px; margin: 0 0 10px; position: relative; z-index: 1; }
.invest-card p { color: rgba(255,255,255,0.78); font-size: 15px; margin: 0 0 20px; line-height: 1.8; position: relative; z-index: 1; }
.invest-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--brand-orange); font-weight: 700; font-size: 14px;
  position: relative; z-index: 1;
}

/* Geographic */
.geo { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.geo-visual {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 40%, rgba(219,142,61,0.35), transparent 40%),
    radial-gradient(circle at 65% 55%, rgba(219,142,61,0.25), transparent 35%),
    linear-gradient(135deg, var(--brand-navy), var(--navy-800));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.geo-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.geo-visual .dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(219,142,61,0.20), 0 0 0 14px rgba(219,142,61,0.10);
}
.geo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.geo h2 { font-size: clamp(28px, 3.2vw, 40px); color: var(--brand-navy); margin: 14px 0 16px; font-weight: 800; }
.geo .lead-text { color: var(--muted); font-size: 17px; margin: 0 0 24px; line-height: 1.85; }
.geo ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.geo li {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
}
.geo li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand-orange); flex-shrink: 0;
}

/* Sustainability — inline list */
.sus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sus-item {
  padding: 40px 30px;
  border-inline-end: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.sus-item:last-child { border-inline-end: none; }
.sus-item .icon {
  width: 44px; height: 44px;
  color: var(--brand-orange);
  display: grid; place-items: center;
}
.sus-item .icon svg { width: 32px; height: 32px; }
.sus-item h3 { margin: 0; color: var(--brand-navy); font-size: 19px; font-weight: 800; }
.sus-item p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* News */
.news-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.news-thumb {
  aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, rgba(14,7,64,0.5), rgba(22,12,86,0.9)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 14px),
    var(--brand-navy);
  position: relative;
}
.news-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(219,142,61,0.30), transparent 55%);
}
.news-body { padding: 22px 24px; }
.news-body time {
  color: var(--brand-orange);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.news-body h3 { margin: 10px 0 10px; color: var(--brand-navy); font-size: 18px; line-height: 1.5; }
.news-body p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* CTA */
.cta {
  background:
    radial-gradient(600px 400px at 90% 0%, rgba(219,142,61,0.25), transparent 60%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta h2 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 16px; position: relative; color: var(--white); font-weight: 800; }
.cta p { margin: 0 auto 32px; max-width: 60ch; color: rgba(255,255,255,0.85); position: relative; font-size: 17px; line-height: 1.8; }
.cta .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-grid img { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  margin: 0 0 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; }
.site-footer a { color: rgba(255,255,255,0.72); font-size: 14.5px; }
.site-footer a:hover { color: var(--brand-orange); }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px;
}

/* Placeholder badge */
.placeholder {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(219,142,61,0.10);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  border: 1px dashed rgba(219,142,61,0.35);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .companies { grid-template-columns: repeat(3, 1fr); }
  .company:nth-child(4n) { border-inline-end: 1px solid var(--line); }
  .company:nth-child(3n) { border-inline-end: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; padding: 90px 24px 100px; gap: 48px; }
  .hero-visual { max-width: 520px; }
  .geo { grid-template-columns: 1fr; gap: 40px; }
  .geo-visual { aspect-ratio: 4/3; }
  .geo-visual img { object-position: 55% 50%; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-card.feature { grid-row: auto; }
  .project-card.feature .project-thumb { aspect-ratio: 16/10; }
  .invest-grid { grid-template-columns: 1fr; }
  .sus-grid { grid-template-columns: 1fr; }
  .sus-item { border-inline-end: none; border-bottom: 1px solid var(--line); }
  .sus-item:last-child { border-bottom: none; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .header-inner { padding: 10px 20px; gap: 12px; }
  .brand img { height: 38px; }
  .lang-switch { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .companies { grid-template-columns: 1fr 1fr; }
  .company { border-inline-end: 1px solid var(--line) !important; }
  .company:nth-child(2n) { border-inline-end: none !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta { padding: 48px 28px; }
  .hero-inner { padding: 64px 20px 80px; gap: 40px; }
  .hero .eyebrow { font-size: 11px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); max-width: none; }
  .hero p.lead { font-size: 16px; }
  .hero-visual { grid-template-columns: 1fr 1fr; padding: 22px; }
  .hero-visual .stat { padding: 16px 14px; }
  .hero-visual .stat b { font-size: 24px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .section-head { margin-bottom: 48px; }
  .geo ul { grid-template-columns: 1fr; }
  .geo-visual { aspect-ratio: 4/3; }
  .geo-visual img { object-position: 50% 40%; }
  .btn { padding: 14px 22px; font-size: 14.5px; }
}
@media (max-width: 420px) {
  .brand img { height: 34px; }
  .hero-inner { padding: 56px 20px 72px; }
  .hero-visual { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .companies { grid-template-columns: 1fr; }
  .company { border-inline-end: none !important; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ===== Inner page hero ===== */
.inner-hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(700px 380px at 88% 15%, rgba(219,142,61,0.22), transparent 60%),
    radial-gradient(800px 500px at 10% 100%, var(--navy-800), transparent 55%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
}
.inner-hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
  pointer-events: none;
}
.inner-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 84px 24px 72px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a { color: rgba(255,255,255,0.85); }
.breadcrumb a:hover { color: var(--brand-orange); }
.breadcrumb .sep { margin: 0 8px; color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--brand-orange); font-weight: 700; }
.inner-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--brand-orange);
  font-weight: 700;
  padding: 6px 14px;
  border: 1px solid rgba(219,142,61,0.4);
  border-radius: 999px;
  background: rgba(219,142,61,0.08);
  margin-bottom: 20px;
}
.inner-hero h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.2;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 22ch;
}
.inner-hero p.lead {
  font-size: 17.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 68ch;
}

/* Active nav item */
.main-nav a.active { color: var(--brand-orange); }
.main-nav a.active::after { transform: scaleX(1); }

/* ===== Overview (two-column editorial) ===== */
.overview {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.overview h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--brand-navy);
  margin: 14px 0 18px;
  font-weight: 800;
}
.overview p { color: var(--muted); font-size: 16.5px; line-height: 1.9; margin: 0 0 16px; }
.overview-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 25% 20%, rgba(219,142,61,0.30), transparent 55%),
    linear-gradient(160deg, var(--brand-navy), var(--navy-800));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.overview-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.overview-visual::after {
  content: "قيد التزويد بالمحتوى الرسمي";
  position: absolute;
  inset: auto 20px 20px 20px;
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 8px 12px;
  border: 1px dashed rgba(219,142,61,0.5);
  border-radius: 8px;
  background: rgba(14,7,64,0.35);
}

/* ===== Vision & Mission ===== */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.vm-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}
.vm-block.dark {
  background: linear-gradient(160deg, var(--brand-navy), var(--navy-dark));
  color: var(--white);
  border-color: transparent;
}
.vm-block.dark h3 { color: var(--white); }
.vm-block.dark p { color: rgba(255,255,255,0.78); }
.vm-block::after {
  content: "";
  position: absolute;
  inset-inline-start: -40px; top: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219,142,61,0.20), transparent 70%);
}
.vm-block .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  color: var(--brand-orange);
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(219,142,61,0.35);
  background: rgba(219,142,61,0.06);
  position: relative;
  z-index: 1;
}
.vm-block .icon svg { width: 26px; height: 26px; }
.vm-block h3 { margin: 0 0 12px; color: var(--brand-navy); font-size: 22px; font-weight: 800; position: relative; }
.vm-block p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.85; position: relative; }

/* ===== Values ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.value-tile {
  background: var(--white);
  padding: 32px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .2s ease;
}
.value-tile:hover { background: var(--bg-tint); }
.value-tile .num {
  color: var(--brand-orange);
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.value-tile h3 { margin: 0; color: var(--brand-navy); font-size: 18px; font-weight: 800; }
.value-tile p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* Note banner */
.note-banner {
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: var(--radius);
  background: rgba(219,142,61,0.08);
  border: 1px dashed rgba(219,142,61,0.45);
  color: var(--orange-dark);
  font-size: 13.5px;
  font-weight: 600;
  text-align: center;
}

/* ===== Strategy ===== */
.strategy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.strategy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.strategy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.strategy-card .idx {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: rgba(22,12,86,0.12);
  line-height: 1;
  margin-bottom: 14px;
}
.strategy-card h3 { margin: 0 0 8px; color: var(--brand-navy); font-size: 17px; font-weight: 800; }
.strategy-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.strategy-card .status {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(219,142,61,0.10);
  color: var(--orange-dark);
  border: 1px dashed rgba(219,142,61,0.4);
  letter-spacing: 0.05em;
}

/* ===== Leadership placeholders ===== */
.leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.leader-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.leader-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand-navy), var(--navy-800));
  display: grid; place-items: center;
  color: var(--brand-orange);
  border: 2px solid rgba(219,142,61,0.4);
}
.leader-avatar svg { width: 42px; height: 42px; }
.leader-card h3 { margin: 0 0 6px; color: var(--brand-navy); font-size: 16px; font-weight: 800; }
.leader-card .role { margin: 0 0 10px; color: var(--muted); font-size: 13.5px; }

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-inline-start: 24px;
  border-inline-start: 2px solid var(--line-strong);
  display: flex; flex-direction: column; gap: 28px;
}
.timeline-item { position: relative; }
.timeline-item::before {
  content: "";
  position: absolute;
  inset-inline-start: -32px;
  top: 8px;
  width: 14px; height: 14px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(219,142,61,0.18);
}
.timeline-item .date {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  background: rgba(22,12,86,0.06);
  color: var(--brand-navy);
  border: 1px dashed rgba(22,12,86,0.25);
  margin-bottom: 8px;
}
.timeline-item h3 { margin: 0 0 6px; color: var(--brand-navy); font-size: 17px; font-weight: 800; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.75; }

/* ===== Group structure diagram ===== */
.org-diagram {
  padding: 40px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.org-node {
  padding: 16px 22px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14.5px;
  text-align: center;
  min-width: 200px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--brand-navy);
}
.org-node.root {
  background: linear-gradient(135deg, var(--brand-navy), var(--navy-800));
  color: var(--white);
  border-color: transparent;
  padding: 18px 28px;
  font-size: 15.5px;
}
.org-node.accent { border-color: rgba(219,142,61,0.4); color: var(--orange-dark); }
.org-connector { width: 2px; height: 28px; background: var(--line-strong); }
.org-row {
  display: grid;
  gap: 16px;
  width: 100%;
  max-width: 720px;
}
.org-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.org-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.org-row .org-node { min-width: 0; }

/* ===== Responsive additions ===== */
@media (max-width: 1024px) {
  .overview { grid-template-columns: 1fr; gap: 36px; }
  .overview-visual { aspect-ratio: 16/10; max-width: 560px; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: repeat(2, 1fr); }
  .org-row.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .inner-hero-inner { padding: 60px 20px 56px; }
  .inner-hero h1 { font-size: clamp(26px, 7vw, 34px); }
  .vm-block { padding: 32px 26px; }
  .values-grid { grid-template-columns: 1fr; }
  .strategy-grid { grid-template-columns: 1fr; }
  .leader-grid { grid-template-columns: 1fr; }
  .org-row.cols-3, .org-row.cols-4 { grid-template-columns: 1fr; }
}

/* ===== Sectors page additions ===== */
.sector-tile .foot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.sector-tile .foot .status {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-orange);
  border: 1px dashed var(--brand-orange);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.sector-tile .foot .explore {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
  border-bottom: 1px solid var(--brand-navy);
  padding-bottom: 2px;
}
.sector-tile .foot .explore:hover { color: var(--brand-orange); border-color: var(--brand-orange); }

.featured-sector {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.featured-sector .visual {
  min-height: 380px;
  background:
    radial-gradient(120% 90% at 20% 20%, rgba(219,142,61,0.25), transparent 60%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--navy-800) 100%);
  position: relative;
}
.featured-sector .visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.5;
}
.featured-sector .visual .badge {
  position: absolute;
  top: 24px; inset-inline-start: 24px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}
.featured-sector .body { padding: 44px 40px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.featured-sector .body .label { font-size: 12.5px; color: var(--brand-orange); font-weight: 800; letter-spacing: 0.08em; }
.featured-sector .body h2 { margin: 0; color: var(--brand-navy); font-size: 28px; line-height: 1.35; }
.featured-sector .body p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.featured-sector .body .explore {
  align-self: flex-start;
  margin-top: 8px;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-orange);
  padding-bottom: 3px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.approach-item {
  padding: 32px 26px;
  border-inline-end: 1px solid var(--line);
  position: relative;
}
.approach-item:last-child { border-inline-end: none; }
.approach-item .idx {
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-orange);
  font-family: "Noto Kufi Arabic", sans-serif;
  line-height: 1;
  margin-bottom: 14px;
}
.approach-item h3 { margin: 0 0 8px; color: var(--brand-navy); font-size: 18px; font-weight: 800; }
.approach-item p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.stat-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--brand-navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-placeholder {
  padding: 40px 24px;
  text-align: center;
  border-inline-end: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.stat-placeholder:last-child { border-inline-end: none; }
.stat-placeholder .value {
  font-size: 44px;
  font-weight: 800;
  color: var(--brand-orange);
  line-height: 1;
  margin-bottom: 12px;
  font-family: "Noto Kufi Arabic", sans-serif;
}
.stat-placeholder .label { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.stat-placeholder .note { font-size: 12px; color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) {
  .featured-sector { grid-template-columns: 1fr; }
  .featured-sector .visual { min-height: 240px; }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-item:nth-child(2) { border-inline-end: none; }
  .approach-item:nth-child(1), .approach-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .stat-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-placeholder:nth-child(2) { border-inline-end: none; }
  .stat-placeholder:nth-child(1), .stat-placeholder:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 640px) {
  .approach-grid { grid-template-columns: 1fr; }
  .approach-item { border-inline-end: none; border-bottom: 1px solid var(--line); }
  .approach-item:last-child { border-bottom: none; }
  .stat-placeholder-grid { grid-template-columns: 1fr; }
  .stat-placeholder { border-inline-end: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-placeholder:last-child { border-bottom: none; }
  .featured-sector .body { padding: 32px 24px; }
  .featured-sector .body h2 { font-size: 22px; }
}

/* ============ Projects listing & detail ============ */
.filters-bar {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 16px 0 28px;
  justify-content: center;
}
.filter-btn {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-navy);
  font-family: inherit;
  font-size: 14px; font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
}
.filter-btn:hover { border-color: var(--brand-orange); color: var(--orange-dark); }
.filter-btn.is-active {
  background: var(--brand-navy); color: var(--white); border-color: var(--brand-navy);
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.proj-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; color: inherit;
}
.proj-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.proj-media {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--brand-navy), var(--navy-800));
  overflow: hidden;
}
.proj-media img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.proj-media.no-img {
  display: grid; place-items: center;
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600;
}
.render-label {
  position: absolute;
  inset-inline-start: 12px; top: 12px;
  background: rgba(14,7,64,0.85);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(219,142,61,0.6);
  letter-spacing: 0.04em;
}
.proj-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.proj-body .sector-tag {
  color: var(--orange-dark);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--brand-orange);
  align-self: flex-start;
}
.proj-body h3 { margin: 0; font-size: 18px; color: var(--brand-navy); line-height: 1.4; }
.proj-body p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.7; }
.proj-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 8px;
}
.status-pill {
  font-size: 11px; font-weight: 700;
  color: var(--brand-navy);
  background: rgba(22,12,86,0.06);
  border: 1px dashed rgba(22,12,86,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}
.explore-link {
  font-size: 13px; font-weight: 700;
  color: var(--orange-dark);
  text-decoration: none;
}
.explore-link:hover { text-decoration: underline; }
.proj-card.is-hidden { display: none; }

/* Project detail */
.pd-hero {
  padding: 44px 0 32px;
  background:
    radial-gradient(circle at 15% 10%, rgba(219,142,61,0.12), transparent 45%),
    linear-gradient(180deg, #F7F5FB, transparent);
}
.pd-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 8px; }
.pd-meta .chip {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--brand-navy);
}
.pd-meta .chip.orange { border-color: var(--brand-orange); color: var(--orange-dark); }

.pd-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 10px;
  margin-top: 8px;
}
.pd-gallery .cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--brand-navy), var(--navy-800));
}
.pd-gallery .cell:first-child { grid-row: span 2; }
.pd-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pd-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 40px;
  padding-top: 40px;
}
.pd-content h2 { color: var(--brand-navy); margin: 0 0 12px; font-size: 22px; }
.pd-content p { color: var(--muted); line-height: 1.9; margin: 0 0 14px; font-size: 15px; }
.pd-components {
  display: grid; gap: 12px;
  margin-top: 12px;
}
.pd-components li {
  background: var(--white);
  border: 1px solid var(--line);
  border-inline-start: 3px solid var(--brand-orange);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px; color: var(--brand-navy); font-weight: 600;
  list-style: none;
}
.pd-side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky; top: 96px;
}
.pd-side h3 { margin: 0 0 14px; color: var(--brand-navy); font-size: 16px; }
.pd-side dl { margin: 0; display: grid; gap: 10px; }
.pd-side dt { font-size: 12px; color: var(--muted); font-weight: 600; }
.pd-side dd { margin: 0 0 6px; font-size: 14px; color: var(--brand-navy); font-weight: 600; }

.render-disclaimer {
  background: rgba(219,142,61,0.08);
  border: 1px solid rgba(219,142,61,0.35);
  color: var(--brand-navy);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 600;
  margin: 18px 0 4px;
}

@media (max-width: 960px) {
  .proj-grid { grid-template-columns: 1fr 1fr; }
  .pd-content { grid-template-columns: 1fr; }
  .pd-side { position: static; }
  .pd-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 160px 160px; }
  .pd-gallery .cell:first-child { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 560px) {
  .proj-grid { grid-template-columns: 1fr; }
  .pd-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 180px); }
  .pd-gallery .cell:first-child { grid-column: auto; }
  .pd-gallery .cell:nth-child(n+4) { display: none; }
}

/* ============ Companies (Group) ============ */
.co-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.co-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: inherit;
}
.co-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.co-mark {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brand-navy), var(--navy-800));
  color: var(--white);
  position: relative;
  padding: 20px;
}
.co-mark .mono {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: .2px;
}
.co-mark::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(219,142,61,0.22), transparent 55%);
}
.co-mark .mono { position: relative; z-index: 1; }
.co-body { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.co-body .sector-tag {
  font-size: 11px; font-weight: 700;
  color: var(--orange-dark);
  background: rgba(219,142,61,.1);
  border: 1px solid rgba(219,142,61,.3);
  padding: 4px 10px; border-radius: 999px;
  align-self: flex-start;
}
.co-body h3 { margin: 0; font-size: 18px; color: var(--brand-navy); line-height: 1.5; }
.co-body p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.8; }
.co-foot {
  margin-top: auto; padding-top: 12px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px dashed var(--line);
}
.co-foot .status-pill {
  font-size: 11px; font-weight: 600;
  color: var(--brand-navy);
  background: #F2EFFB;
  padding: 4px 10px; border-radius: 999px;
}
.co-foot .explore-link {
  font-size: 13px; font-weight: 700;
  color: var(--brand-orange); text-decoration: none;
}
.co-foot .explore-link:hover { text-decoration: underline; }

/* Company detail */
.cd-summary {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky; top: 96px;
}
.cd-summary h3 { margin: 0 0 14px; color: var(--brand-navy); font-size: 16px; }
.cd-summary dl { margin: 0; display: grid; gap: 10px; }
.cd-summary dt { font-size: 12px; color: var(--muted); font-weight: 600; }
.cd-summary dd { margin: 0 0 6px; font-size: 14px; color: var(--brand-navy); font-weight: 600; }
.cd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.cd-tags span {
  font-size: 12px; font-weight: 600;
  background: #F2EFFB; color: var(--brand-navy);
  padding: 5px 10px; border-radius: 999px;
}

@media (max-width: 960px) {
  .co-grid { grid-template-columns: repeat(2, 1fr); }
  .cd-summary { position: static; }
}
@media (max-width: 560px) {
  .co-grid { grid-template-columns: 1fr; }
}

/* ============ Document Figures (corporate profile pages) ============ */
.doc-fig {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.doc-fig img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 360/486;
  object-fit: cover;
  object-position: top center;
}
.doc-fig figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(14,7,64,0.88));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
}
.doc-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.doc-strip .doc-fig img { aspect-ratio: 3/4; }
/* Filled variant of overview-visual */
.overview-visual.with-doc {
  aspect-ratio: 3/4;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
}
.overview-visual.with-doc::before,
.overview-visual.with-doc::after { display: none; }
.overview-visual.with-doc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.overview-visual.with-doc .doc-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent, rgba(14,7,64,0.9));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  letter-spacing: .06em;
}
@media (max-width: 640px) {
  .doc-strip { grid-template-columns: repeat(2, 1fr); }
  .doc-fig figcaption { font-size: 11px; padding: 8px 10px; }
}

/* ============ Investment section ============ */
.inv-hero { position: relative; padding: 72px 0 40px; background: linear-gradient(160deg, #0E0740 0%, #160C56 55%, #221474 100%); color: var(--white); overflow: hidden; }
.inv-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 90% 0%, rgba(219,142,61,0.22), transparent 60%), radial-gradient(500px 300px at 10% 100%, rgba(219,142,61,0.14), transparent 60%); pointer-events:none; }
.inv-hero .container { position: relative; z-index: 1; }
.inv-hero .breadcrumb a, .inv-hero .breadcrumb .current, .inv-hero .breadcrumb .sep { color: rgba(255,255,255,0.85); }
.inv-hero h1 { color: var(--white); font-size: 40px; margin: 10px 0 12px; line-height: 1.25; }
.inv-hero p.lead { max-width: 780px; color: rgba(255,255,255,0.86); line-height: 1.9; margin: 0 0 22px; font-size: 17px; }
.inv-hero .eyebrow { color: var(--brand-orange); }

.inv-pillars { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.inv-pillar { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 20px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.inv-pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.inv-pillar .num { font-family: "Noto Kufi Arabic", sans-serif; color: var(--brand-orange); font-weight: 800; font-size: 20px; letter-spacing: .04em; }
.inv-pillar h3 { color: var(--brand-navy); margin: 8px 0 8px; font-size: 18px; }
.inv-pillar p { color: var(--muted); font-size: 14.5px; line-height: 1.85; margin: 0; }

.inv-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 14px; }
.inv-step { position: relative; padding: 22px 18px 18px; background: #F7F5FB; border-radius: var(--radius-lg); border-inline-start: 3px solid var(--brand-orange); }
.inv-step .n { position: absolute; inset-block-start: -14px; inset-inline-start: 18px; background: var(--brand-navy); color: var(--white); width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.inv-step h4 { color: var(--brand-navy); margin: 6px 0 6px; font-size: 15.5px; }
.inv-step p { color: var(--muted); font-size: 13.5px; margin: 0; line-height: 1.8; }

/* Opportunity cards */
.opp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.opp-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.opp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.opp-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: #EDE9F5; }
.opp-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.opp-media .render-label { position: absolute; inset-block-end: 10px; inset-inline-start: 10px; background: rgba(14,7,64,0.85); color: var(--white); font-size: 11px; padding: 4px 10px; border-radius: 999px; font-weight: 700; letter-spacing: .05em; }
.opp-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.opp-body .sector-tag { color: var(--brand-orange); font-weight: 700; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.opp-body h3 { color: var(--brand-navy); font-size: 19px; margin: 0; }
.opp-body p { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 0; }
.opp-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.opp-chip { background: #F1EDF9; color: var(--brand-navy); font-size: 12px; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.opp-chip.orange { background: rgba(219,142,61,0.14); color: var(--orange-dark); }
.opp-chip.dashed { background: transparent; border: 1px dashed var(--brand-orange); color: var(--orange-dark); }
.opp-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-top: 1px solid var(--line); font-size: 13px; color: var(--brand-navy); font-weight: 700; }
.opp-foot .explore-link::after { content: " ←"; }

/* Filter chips */
.opp-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 24px; }
.opp-filter { background: transparent; border: 1px solid var(--line-strong); color: var(--brand-navy); padding: 8px 16px; border-radius: 999px; cursor: pointer; font-family: inherit; font-size: 13px; font-weight: 600; transition: background .2s ease, color .2s ease; }
.opp-filter:hover { background: #F7F5FB; }
.opp-filter.is-active { background: var(--brand-navy); color: var(--white); border-color: var(--brand-navy); }

/* Detail layout reuses .pd-* but add legal box */
.inv-legal { margin-top: 18px; background: #FFF8EE; border: 1px dashed var(--brand-orange); border-radius: var(--radius-md); padding: 14px 16px; color: #6b4a20; font-size: 13.5px; line-height: 1.85; }
.inv-legal strong { color: var(--orange-dark); }

/* Form */
.inv-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); }
.inv-form .full { grid-column: 1 / -1; }
.inv-form label { display: block; font-size: 13px; font-weight: 700; color: var(--brand-navy); margin-bottom: 6px; }
.inv-form label .req { color: var(--brand-orange); }
.inv-form input, .inv-form select, .inv-form textarea { width: 100%; font: inherit; font-size: 14.5px; padding: 11px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-md); background: #FBFAFD; color: var(--brand-navy); transition: border-color .2s ease, box-shadow .2s ease; }
.inv-form input:focus, .inv-form select:focus, .inv-form textarea:focus { outline: none; border-color: var(--brand-orange); box-shadow: 0 0 0 3px rgba(219,142,61,0.15); background: var(--white); }
.inv-form textarea { min-height: 130px; resize: vertical; }
.inv-form .consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.75; }
.inv-form .consent input { width: auto; margin-top: 3px; }
.inv-form .actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.inv-form .note { font-size: 12.5px; color: var(--muted); }

@media (max-width: 900px) {
  .inv-pillars { grid-template-columns: 1fr; }
  .inv-process { grid-template-columns: repeat(2, 1fr); }
  .opp-grid { grid-template-columns: 1fr; }
  .inv-form { grid-template-columns: 1fr; padding: 18px; }
  .inv-hero h1 { font-size: 30px; }
}
@media (max-width: 560px) {
  .inv-process { grid-template-columns: 1fr; }
}

/* ===== Nav dropdown ===== */
.main-nav .has-drop { position: relative; }
.main-nav .drop-btn {
  background: none; border: 0; cursor: pointer; font: inherit;
  padding: 10px 14px; border-radius: 6px; font-weight: 600; font-size: 14.5px;
  color: var(--brand-navy); display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s ease;
}
.main-nav .drop-btn:hover, .main-nav .has-drop:hover .drop-btn,
.main-nav .has-drop.is-active .drop-btn { color: var(--brand-orange); }
.main-nav .drop-btn svg { width: 12px; height: 12px; transition: transform .2s ease; }
.main-nav .has-drop:hover .drop-btn svg { transform: rotate(180deg); }
.main-nav .drop {
  position: absolute; top: 100%; right: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line-strong); border-radius: 10px;
  box-shadow: 0 20px 40px -20px rgba(22,12,86,.25);
  padding: 8px; margin: 6px 0 0; list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 60;
}
.main-nav .has-drop:hover .drop,
.main-nav .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .drop li { display: block; }
.main-nav .drop a {
  display: block; padding: 10px 12px; border-radius: 6px;
  font-size: 14px; color: var(--brand-navy);
}
.main-nav .drop a::after { display: none; }
.main-nav .drop a:hover, .main-nav .drop a.active { background: #F7F5FB; color: var(--brand-orange); }

.drawer-panel .drawer-group {
  margin-top: 6px; padding: 12px 4px 4px;
  font-size: 11px; color: var(--muted); font-weight: 700;
  letter-spacing: .1em; border-top: 1px dashed var(--line); text-transform: uppercase;
}

/* ===== Sustainability ===== */
.sus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sus-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; transition: box-shadow .2s ease, transform .2s ease; }
.sus-card:hover { box-shadow: 0 20px 40px -20px rgba(22,12,86,.15); transform: translateY(-2px); }
.sus-card .num { color: var(--brand-orange); font-family: "Noto Kufi Arabic", sans-serif; font-weight: 800; font-size: 22px; }
.sus-card h3 { margin: 10px 0 8px; color: var(--brand-navy); font-size: 19px; }
.sus-card p { color: var(--muted); line-height: 1.9; font-size: 14.5px; margin: 0; }
.sus-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.sus-pill { background: var(--brand-navy); color: #fff; border-radius: 12px; padding: 22px; }
.sus-pill .k { color: var(--brand-orange); font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.sus-pill h4 { color: #fff; margin: 6px 0; font-size: 16px; }
.sus-pill p { color: rgba(255,255,255,.78); font-size: 13.5px; line-height: 1.75; margin: 0; }

/* ===== News ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s ease, transform .2s ease; }
.news-card:hover { box-shadow: 0 20px 40px -20px rgba(22,12,86,.15); transform: translateY(-2px); }
.news-card .cover { aspect-ratio: 16/9; background: linear-gradient(135deg, #EFECF8 0%, #E5E1F0 100%); position: relative; overflow: hidden; }
.news-card .cover img { width: 100%; height: 100%; object-fit: cover; }
.news-card .cover .tag { position: absolute; top: 12px; right: 12px; background: rgba(22,12,86,.9); color: #fff; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.news-card .body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-card .meta { color: var(--muted); font-size: 13px; }
.news-card h3 { margin: 0; color: var(--brand-navy); font-size: 18px; line-height: 1.5; }
.news-card .excerpt { color: var(--muted); font-size: 14px; line-height: 1.8; margin: 0; }
.news-empty { background: #F7F5FB; border: 1px dashed var(--line-strong); border-radius: 14px; padding: 60px 30px; text-align: center; }
.news-empty h3 { color: var(--brand-navy); margin: 0 0 8px; font-size: 22px; }
.news-empty p { color: var(--muted); margin: 0; max-width: 540px; margin-inline: auto; line-height: 1.9; }

.article-body { max-width: 780px; margin: 0 auto; }
.article-body p { color: #333; line-height: 2; font-size: 16px; margin: 0 0 18px; }
.article-body h2 { color: var(--brand-navy); margin: 28px 0 12px; font-size: 22px; }
.article-cover { aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; margin: 20px 0; background: #EFECF8; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Reports ===== */
.reports-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.reports-table th, .reports-table td { padding: 16px 18px; text-align: right; font-size: 14.5px; vertical-align: middle; }
.reports-table thead { background: var(--brand-navy); color: #fff; }
.reports-table th { font-weight: 700; font-size: 13px; letter-spacing: .04em; }
.reports-table tbody tr { border-top: 1px solid var(--line); }
.reports-table .cat { display: inline-block; padding: 4px 10px; border-radius: 999px; background: #F7F5FB; color: var(--brand-navy); font-size: 12px; font-weight: 600; }
.reports-table .ft { color: var(--muted); font-size: 13px; }
.btn-dl { display: inline-block; padding: 8px 14px; border-radius: 8px; background: var(--brand-orange); color: #fff; font-size: 13px; font-weight: 700; }
.btn-dl.disabled { background: transparent; color: var(--muted); border: 1px dashed var(--line-strong); cursor: not-allowed; pointer-events: none; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 20px; }
.contact-item .k { color: var(--brand-orange); font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.contact-item h4 { color: var(--brand-navy); margin: 6px 0 4px; font-size: 16px; }
.contact-item p { color: var(--muted); font-size: 14px; line-height: 1.85; margin: 0; }
.map-placeholder { aspect-ratio: 16/9; border-radius: 14px; margin-top: 20px; background: linear-gradient(135deg, #EFECF8 0%, #E5E1F0 100%); border: 1px dashed var(--line-strong); display: grid; place-items: center; color: var(--muted); text-align: center; padding: 20px; font-size: 14px; }

/* ===== Legal ===== */
.legal-doc { max-width: 820px; margin: 0 auto; }
.legal-doc h2 { color: var(--brand-navy); margin: 28px 0 10px; font-size: 22px; }
.legal-doc h3 { color: var(--brand-navy); margin: 20px 0 8px; font-size: 17px; }
.legal-doc p, .legal-doc li { color: #333; line-height: 2; font-size: 15px; }
.legal-doc ul { padding-right: 22px; }
.draft-badge { display: inline-block; padding: 6px 12px; border-radius: 999px; background: rgba(219,142,61,.14); color: var(--orange-dark); font-size: 12px; font-weight: 700; margin-bottom: 14px; }

/* ===== 404 ===== */
.err-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.err-code { font-family: "Noto Kufi Arabic", sans-serif; font-weight: 900; font-size: clamp(96px, 20vw, 200px); line-height: 1; background: linear-gradient(135deg, var(--brand-navy), var(--brand-orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.err-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

@media (max-width: 960px) {
  .sus-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .sus-pillars { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .reports-table thead { display: none; }
  .reports-table, .reports-table tbody, .reports-table tr, .reports-table td { display: block; width: 100%; }
  .reports-table tr { border-top: 1px solid var(--line); padding: 10px 0; }
  .reports-table td { padding: 6px 18px; }
  .reports-table td[data-label]::before { content: attr(data-label); display: block; font-size: 11px; color: var(--muted); font-weight: 700; letter-spacing: .05em; margin-bottom: 2px; }
}
@media (max-width: 600px) {
  .sus-grid, .news-grid, .sus-pillars { grid-template-columns: 1fr; }
}

/* ===== About page — official image override ===== */
#overview .overview-visual {
  aspect-ratio: 4 / 3;
  background: var(--brand-navy);
}
#overview .overview-visual::before,
#overview .overview-visual::after { display: none; content: none; }
#overview .overview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  display: block;
}

/* ===== Executive Director section ===== */
#executive-director { padding: 96px 0; background: #ffffff; }
.exec-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(22,12,86,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px -30px rgba(22,12,86,0.35);
  max-width: 1080px;
  margin: 0 auto;
}
.exec-portrait {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--brand-navy);
  box-shadow: 0 12px 32px -18px rgba(22,12,86,0.4);
}
.exec-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}
.exec-info .kicker { color: var(--brand-orange); }
.exec-info h2 {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--brand-navy);
  margin: 12px 0 20px;
  font-weight: 800;
}
.exec-info .exec-name {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: var(--brand-navy);
  margin: 0 0 8px;
  line-height: 1.3;
}
.exec-info .exec-role {
  font-size: 16px;
  color: var(--brand-orange);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.02em;
}
@media (max-width: 820px) {
  #executive-director { padding: 64px 0; }
  .exec-card { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .exec-portrait { aspect-ratio: 4 / 5; max-width: 360px; margin: 0 auto; }
}

/* ===== Sectors page: overview collage + featured visual image + stat cards ===== */
.overview-visual.sectors-collage {
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3 / 2;
  max-width: 100%;
}
.overview-visual.sectors-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 0;
}

.featured-sector .visual.has-image { padding: 0; overflow: hidden; }
.featured-sector .visual.has-image::after { display: none; }
.featured-sector .visual.has-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Premium statistic cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand-orange);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-value {
  font-family: "Noto Kufi Arabic", "IBM Plex Sans Arabic", system-ui, sans-serif;
  color: var(--brand-navy);
  font-weight: 800;
  font-size: 42px;
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-value .stat-prefix,
.stat-value .stat-suffix {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-navy);
  opacity: 0.85;
}
.stat-value .stat-num { font-size: 46px; color: var(--brand-orange); }
.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat-card:nth-child(4) { grid-column: 1 / span 1; }
}
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-card:last-child { grid-column: 1 / -1; }
  .stat-value { font-size: 34px; }
  .stat-value .stat-num { font-size: 38px; }
  .featured-sector .visual.has-image img { min-height: 240px; }
}

/* Projects listing — full-image display preserving embedded titles */
.proj-media.proj-media--contain{
  background:#f4f5f7;
  aspect-ratio:16/9;
  display:block;
}
.proj-media.proj-media--contain img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
