/* ══ VARIABLES ══ */
:root {
  --p: #a259e6;
  --pd: #7c3cbf;
  --pl: #c98df0;
  --pg: rgba(162,89,230,.1);
  --bk: #06060e;
  --dk: #0b0b14;
  --cd: #111119;
  --br: rgba(162,89,230,.18);
  --br2: rgba(162,89,230,.07);
  --tx: #e8e2f4;
  --mu: #8a7fa0;
  --wh: #fff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --display: 'Bebas Neue', sans-serif;
}

/* ══ RESET ══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bk); color: var(--tx); font-family: var(--sans); overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ══ CURSOR ══ */
.cursor, .cring { display: none; }
@media (hover:hover) and (pointer:fine) {
  html, body, a, button, input, textarea, select, label { cursor: none; }
  .cursor {
    display: block; width: 8px; height: 8px; background: var(--p);
    border-radius: 50%; position: fixed; top:0; left:0;
    pointer-events:none; z-index:9999;
    transform:translate(-50%,-50%);
    transition: width .2s, height .2s;
  }
  .cring {
    display: block; width: 32px; height: 32px;
    border: 1px solid rgba(162,89,230,.5); border-radius: 50%;
    position:fixed; top:0; left:0;
    pointer-events:none; z-index:9998;
    transform:translate(-50%,-50%);
  }
}

/* ══ NAV ══ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 4vw; height: 72px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(6,6,14,0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .5s, border-color .5s;
}
nav.sc { background: rgba(6,6,14,.97); border-bottom-color: var(--br2); }

.nav-left { display: flex; gap: 36px; align-items: center; }
.nav-right { display: flex; gap: 28px; align-items: center; justify-content: flex-end; }

.nav-link {
  font-size: 11px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.5); transition: color .25s; position: relative;
}
.nav-link::after {
  content:''; position:absolute; bottom:-3px; left:0;
  width:0; height:1px; background:var(--p); transition:width .3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-logo { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.nav-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; }
.nav-logo-text { font-family: var(--display); font-size: 20px; letter-spacing: 3px; color: rgba(255,255,255,.4); white-space: nowrap; }

.nav-cta {
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border: 1px solid var(--br); border-radius: 2px;
  color: var(--pl); transition: all .25s;
}
.nav-cta:hover { background: var(--pg); border-color: var(--p); color: #fff; }

.lang-bar { display: flex; border: 1px solid var(--br); border-radius: 2px; overflow: hidden; }
.lb { padding: 5px 10px; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; cursor: pointer; border: none; background: transparent; color: var(--mu); font-family: var(--sans); transition: all .2s; }
.lb.active { background: var(--p); color: #fff; }

/* ══ HERO ══ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video { position: absolute; inset: 0; }
.hero-video video { width: 100%; height: 100%; object-fit: cover; }
.hero-video::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,14,.35) 0%, rgba(6,6,14,.6) 60%, rgba(6,6,14,1) 100%);
}
.hero-placeholder {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(162,89,230,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(162,89,230,.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(162,89,230,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(162,89,230,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 5vw; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--pl); font-weight: 400; margin-bottom: 28px;
  animation: fadeUp .9s ease both;
}
.hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(64px, 10vw, 140px);
  line-height: .92; color: #fff; letter-spacing: -1px;
  animation: fadeUp .9s .1s ease both;
}
.hero-title em { font-style: italic; color: var(--pl); }
.hero-sub {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(15px, 1.5vw, 20px); color: rgba(255,255,255,.4);
  margin-top: 28px; line-height: 1.65;
  animation: fadeUp .9s .2s ease both;
}
.hero-sub-ar {
  font-family: 'Noto Kufi Arabic', sans-serif; font-size: 15px;
  color: rgba(255,255,255,.4); margin-top: 28px; line-height: 1.85;
  animation: fadeUp .9s .2s ease both; display: none; direction: rtl;
}
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp .9s .4s ease both;
}
.hero-scroll span { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--mu); }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(var(--p), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3;}50%{opacity:1;} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);}to{opacity:1;transform:none;} }

/* ══ MARQUEE ══ */
.mq { padding: 16px 0; overflow: hidden; border-top: 1px solid var(--br2); border-bottom: 1px solid var(--br2); background: var(--dk); }
.mqt { display: flex; animation: mq 28s linear infinite; width: max-content; }
.mqi {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: rgba(255,255,255,.2); padding: 0 32px; white-space: nowrap;
  display: flex; align-items: center; gap: 32px;
}
.mqi::after { content: '◆'; color: var(--p); font-size: 8px; font-style: normal; }
@keyframes mq { from{transform:translateX(0);}to{transform:translateX(-50%);} }

/* ══ SECTIONS ══ */
section { padding: 110px 6vw; }
.section-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--p); font-weight: 500; margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--p); }
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .95; color: #fff; letter-spacing: -.5px; margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--pl); }
.section-desc { font-size: 15px; color: var(--mu); max-width: 480px; line-height: 1.8; }

/* ══ ABOUT ══ */
#about { background: var(--bk); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 0;
}
.about-visual { position: relative; height: 520px; }
.about-img-main {
  position: absolute; top: 0; left: 0; right: 60px; bottom: 60px;
  background: var(--cd); border: 1px solid var(--br); overflow: hidden;
}
.about-img-main img { width:100%; height:100%; object-fit:cover; filter:saturate(.8) brightness(.85); transition: transform .8s, filter .6s; }
.about-img-main:hover img { transform:scale(1.04); filter:saturate(.95) brightness(.95); }
.about-accent {
  position: absolute; bottom: 0; right: 0;
  width: 180px; height: 140px; background: var(--p);
  display: flex; flex-direction: column; justify-content: center; padding: 24px;
}
.about-accent-n { font-family: var(--display); font-size: 52px; color: rgba(255,255,255,.9); line-height: 1; }
.about-accent-l { font-size: 10px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }
.about-stats { display: flex; margin-top: 44px; border-top: 1px solid var(--br2); padding-top: 40px; }
.astat { padding: 0 36px 0 0; border-right: 1px solid var(--br2); }
.astat:first-child { padding-left: 0; }
.astat:last-child { border-right: none; padding-left: 36px; padding-right: 0; }
.astat-n { font-family: var(--display); font-size: 42px; color: #fff; line-height: 1; }
.astat-n em { color: var(--p); font-style: normal; }
.astat-l { font-size: 10px; color: var(--mu); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; }
.about-cta { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary-serif {
  font-family: var(--serif); font-size: 16px; font-style: italic;
  padding: 14px 36px; background: var(--p); color: #fff;
  transition: background .25s, transform .25s; display: inline-block;
}
.btn-primary-serif:hover { background: var(--pd); transform: translateY(-2px); }
.btn-outline-serif {
  font-family: var(--serif); font-size: 16px; font-style: italic;
  padding: 13px 36px; border: 1px solid var(--br); color: var(--tx);
  transition: border-color .25s, color .25s; display: inline-block;
}
.btn-outline-serif:hover { border-color: var(--p); color: var(--pl); }

/* ══ PROJECTS ══ */
#projects { background: var(--dk); }
.projects-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 20px; }
.view-all {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--mu); border-bottom: 1px solid var(--br); padding-bottom: 4px;
  transition: color .25s, border-color .25s;
}
.view-all:hover { color: var(--pl); border-color: var(--p); }

.proj-featured {
  position: relative; height: 520px; overflow: hidden; cursor: pointer;
  margin-bottom: 3px;
}
.proj-featured img { width:100%; height:100%; object-fit:cover; filter:brightness(.7) saturate(.85); transition:transform .8s, filter .6s; }
.proj-featured:hover img { transform:scale(1.04); filter:brightness(.85) saturate(1); }
.proj-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,14,.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px 48px;
}
.proj-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--pl); margin-bottom: 10px; }
.proj-name { font-family: var(--serif); font-size: clamp(32px, 4vw, 54px); font-weight: 300; color: #fff; line-height: 1; }
.proj-meta { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 10px; }
.proj-arrow {
  position: absolute; bottom: 44px; right: 48px;
  width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 18px;
  opacity: 0; transform: translateX(-8px); transition: all .3s;
}
.proj-featured:hover .proj-arrow { opacity: 1; transform: none; }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.proj-card { position: relative; overflow: hidden; aspect-ratio: .8; cursor: pointer; background: var(--cd); }
.proj-card img { filter:brightness(.75) saturate(.8); transition:transform .7s, filter .5s; }
.proj-card:hover img { transform:scale(1.06); filter:brightness(.9) saturate(1.05); }
.proj-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,14,.85) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.proj-card-tag { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--pl); margin-bottom: 6px; }
.proj-card-name { font-family: var(--serif); font-size: 22px; font-weight: 300; color: #fff; line-height: 1.1; }
.proj-card-place { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 6px; }
.proj-card-btn {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 14px;
  opacity: 0; transform: translateY(-6px); transition: all .3s;
}
.proj-card:hover .proj-card-btn { opacity: 1; transform: none; }

/* ══ CATEGORIES ══ */
#categories { background: var(--bk); }
.cat-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cat-card { position: relative; overflow: hidden; aspect-ratio: .9; cursor: pointer; background: var(--cd); }
.cat-card img { filter: brightness(.6) saturate(.7); transition: transform .7s, filter .6s; }
.cat-card:hover img { transform: scale(1.08); filter: brightness(.8) saturate(1); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,14,.9) 0%, rgba(6,6,14,.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  transition: background .4s;
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(6,6,14,.85) 0%, rgba(162,89,230,.06) 100%); }
.cat-num { font-family: var(--display); font-size: 11px; letter-spacing: 3px; color: var(--p); margin-bottom: 8px; }
.cat-name { font-family: var(--serif); font-size: 26px; font-weight: 300; color: #fff; line-height: 1.1; }
.cat-count { font-size: 11px; color: rgba(255,255,255,.3); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }
.cat-card-wide { grid-column: span 2; }
.cat-card-wide .cat-name { font-size: 36px; }

/* ══ PROCESS ══ */
#process { background: var(--dk); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 64px; }
.process-step { border-top: 1px solid var(--br2); padding: 28px 0; cursor: pointer; }
.process-step:last-child { border-bottom: 1px solid var(--br2); }
.process-step-header { display: flex; align-items: center; justify-content: space-between; }
.process-step-left { display: flex; align-items: center; gap: 20px; }
.process-num { font-family: var(--display); font-size: 13px; letter-spacing: 2px; color: var(--p); }
.process-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: rgba(255,255,255,.55); transition: color .3s; }
.process-step.active .process-title, .process-step:hover .process-title { color: #fff; }
.process-arrow { font-size: 18px; color: var(--mu); transition: transform .3s, color .3s; }
.process-step.active .process-arrow { transform: rotate(45deg); color: var(--p); }
.process-body {
  font-size: 14px; color: var(--mu); line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .4s; padding: 0;
}
.process-step.active .process-body { max-height: 200px; padding-top: 16px; }
.process-visual {
  position: sticky; top: 100px; height: 480px;
  background: var(--cd); border: 1px solid var(--br); overflow: hidden;
}
.process-visual-inner { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
.process-visual-text {
  font-family: var(--serif); font-size: 80px; font-style:italic; font-weight:300;
  color: rgba(162,89,230,.12); text-align:center; line-height:1;
}

/* ══ SOCIAL ══ */
#social { background: var(--bk); }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; }
.ig-item { aspect-ratio: 1; overflow: hidden; position: relative; cursor: pointer; background: var(--cd); }
.ig-item img { filter: saturate(.7) brightness(.85); transition: transform .6s, filter .4s; }
.ig-item:hover img { transform: scale(1.08); filter: saturate(1) brightness(1); }
.ig-item-over { position: absolute; inset:0; background: rgba(162,89,230,.15); opacity:0; display:flex; align-items:center; justify-content:center; font-size:22px; transition:opacity .3s; }
.ig-item:hover .ig-item-over { opacity:1; }
.ig-handle { font-family: var(--serif); font-style:italic; font-size:22px; color:var(--pl); transition:color .25s; }
.ig-handle:hover { color: var(--p); }

/* ══ CONTACT ══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-left { padding: 80px 60px 80px 0; border-right: 1px solid var(--br2); }
.contact-right { padding: 80px 0 80px 60px; }
.contact-info-row { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--br2); }
.contact-info-row:first-of-type { border-top: 1px solid var(--br2); margin-top: 40px; }
.ci-icon { width:40px; height:40px; border:1px solid var(--br); display:flex; align-items:center; justify-content:center; font-size:16px; flex-shrink:0; }
.ci-label { font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--mu); margin-bottom:4px; }
.ci-val { font-size:15px; color:#fff; }
.contact-form-title { font-family:var(--serif); font-size:clamp(28px,3vw,42px); font-weight:300; color:#fff; margin-bottom:36px; }
.contact-form-title em { font-style:italic; color:var(--pl); }
.cf-field { margin-bottom:20px; }
.cf-label { display:block; font-size:10px; letter-spacing:2px; text-transform:uppercase; color:var(--mu); margin-bottom:9px; }
.cf-input, .cf-select, .cf-textarea {
  width:100%; background:rgba(6,6,14,.8); border:1px solid var(--br2);
  padding:13px 16px; color:var(--tx); font-family:var(--sans); font-size:14px;
  outline:none; transition:border-color .25s; appearance:none;
}
.cf-input:focus, .cf-select:focus, .cf-textarea:focus { border-color:var(--p); }
.cf-input::placeholder, .cf-textarea::placeholder { color:rgba(138,127,160,.35); }
.cf-select option { background:var(--dk); }
.cf-textarea { resize:vertical; min-height:110px; }
.cf-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.cf-submit {
  width:100%; padding:16px; background:var(--p); color:#fff; border:none;
  font-family:var(--display); font-size:18px; letter-spacing:3px; cursor:pointer;
  transition:background .25s, transform .25s; margin-top:6px;
}
.cf-submit:hover { background:var(--pd); transform:translateY(-2px); }
.cf-wa {
  width:100%; padding:14px; background:#25D366; color:#fff; border:none;
  font-family:var(--display); font-size:16px; letter-spacing:2px; cursor:pointer;
  margin-top:10px; display:flex; align-items:center; justify-content:center; gap:10px;
  transition:background .25s; text-decoration:none;
}
.cf-wa:hover { background:#1daa55; }
.cf-ok { display:none; text-align:center; padding:20px; color:var(--pl); font-family:var(--serif); font-style:italic; font-size:18px; }

/* ══ FOOTER ══ */
footer {
  background: var(--bk); border-top: 1px solid var(--br2);
  padding: 48px 6vw;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 20px;
}
.footer-links { display:flex; gap:28px; flex-wrap:wrap; }
.footer-links a { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--mu); transition:color .2s; }
.footer-links a:hover { color:var(--pl); }
.footer-logo { display:flex; flex-direction:column; align-items:center; gap:5px; }
.footer-logo img { width:40px; height:40px; border-radius:50%; }
.footer-logo-text { font-family:var(--display); font-size:10px; letter-spacing:4px; color:rgba(255,255,255,.3); }
.footer-right { display:flex; gap:20px; justify-content:flex-end; align-items:center; flex-wrap:wrap; }
.footer-copy { font-size:11px; color:rgba(138,127,160,.35); }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:34px; height:34px; border:1px solid var(--br); display:flex; align-items:center; justify-content:center; font-size:13px; color:var(--mu); transition:all .2s; }
.footer-social a:hover { border-color:var(--p); color:var(--pl); background:var(--pg); }

/* ══ WHATSAPP FLOAT ══ */
.waf {
  position:fixed; bottom:28px; right:28px; z-index:2000;
  width:52px; height:52px; background:#25D366; border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:22px;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  transition:transform .25s; animation:wafBob 3s ease-in-out infinite;
}
.waf:hover { transform:scale(1.1)!important; }
@keyframes wafBob { 0%,100%{transform:translateY(0);}50%{transform:translateY(-5px);} }

/* ══ REVEAL ══ */
.reveal { opacity:0; transform:translateY(32px); transition:opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ══ ARABIC ══ */
body.ar { direction: rtl; }

/* Nav stays IDENTICAL layout — logo center, links split left/right */
body.ar nav { direction: ltr; }
body.ar .nav-left { flex-direction: row; }
body.ar .nav-right { flex-direction: row; }

/* Arabic nav links — bigger and readable */
body.ar .nav-link {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 500;
}

/* Hero */
body.ar .hero-eyebrow {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}
body.ar .hero-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
  padding-bottom: 8px;
}
body.ar .hero-title em {
  font-style: normal;
  display: block;
  padding-top: 4px;
}
body.ar .hero-scroll span {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

/* Section eyebrow */
body.ar .section-eyebrow {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  flex-direction: row-reverse;
}
body.ar .section-eyebrow::before { display: none; }
body.ar .section-eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--p); }

/* Section titles & descriptions */
body.ar .section-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  letter-spacing: 0;
  line-height: 1.6;
  margin-bottom: 32px;
}
body.ar .section-title em {
  font-style: normal;
  display: block;
  padding-top: 4px;
}
body.ar .section-desc {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

/* About */
body.ar .about-accent-l {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}
body.ar .about-grid { direction: rtl; }
body.ar .about-stats { flex-direction: row-reverse; }
body.ar .astat { border-left: 1px solid var(--br2); border-right: none; }
body.ar .astat:first-child { padding-left: 36px; padding-right: 0; border-left: 1px solid var(--br2); }
body.ar .astat:last-child { border-left: none; padding-right: 36px; padding-left: 0; }
body.ar .astat-l {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

/* View all / small links */
body.ar .view-all {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

/* Project overlays */
body.ar .proj-tag, body.ar .proj-card-tag {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}
body.ar .proj-name, body.ar .proj-card-name {
  font-family: 'Noto Kufi Arabic', sans-serif;
  letter-spacing: 0;
  line-height: 1.2;
}
body.ar .proj-meta, body.ar .proj-card-place {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}

/* Category cards */
body.ar .cat-num {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 14px;
  letter-spacing: 0;
}
body.ar .cat-name {
  font-family: 'Noto Kufi Arabic', sans-serif;
  letter-spacing: 0;
  line-height: 1.3;
}
body.ar .cat-count {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}
body.ar .cat-card-wide .cat-name { font-size: 32px; }
body.ar .cat-intro { direction: rtl; }

/* Process */
body.ar .process-grid { direction: rtl; }
body.ar .process-num {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}
body.ar .process-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 20px;
  letter-spacing: 0;
}
body.ar .process-body {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.85;
  text-align: right;
}
body.ar .process-step-left { flex-direction: row-reverse; }
body.ar .process-visual-text {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 60px;
  letter-spacing: 0;
  line-height: 1.3;
}

/* Social */
body.ar .ig-handle {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 20px;
  font-style: normal;
}

/* Contact */
body.ar .contact-grid { direction: rtl; }
body.ar .contact-left { border-right: none; border-left: 1px solid var(--br2); padding-right: 0; padding-left: 60px; }
body.ar .contact-right { padding-left: 0; padding-right: 60px; }
body.ar .contact-form-title {
  font-family: 'Noto Kufi Arabic', sans-serif;
  letter-spacing: 0;
  line-height: 1.4;
}
body.ar .contact-form-title em { font-style: normal; }
body.ar .ci-label {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}
body.ar .ci-val {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 16px;
  direction: ltr;
  text-align: left;
}
body.ar .contact-info-row { flex-direction: row-reverse; text-align: right; }
body.ar .cf-label {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  text-align: right;
}
body.ar .cf-input, body.ar .cf-select, body.ar .cf-textarea {
  font-family: 'Noto Kufi Arabic', sans-serif;
  text-align: right;
}
body.ar .cf-submit {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 18px;
  letter-spacing: 0;
}

/* Footer */
body.ar footer { direction: rtl; }
body.ar .footer-links { flex-direction: row-reverse; }
body.ar .footer-links a {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}
body.ar .footer-right { justify-content: flex-start; }
body.ar .footer-copy {
  font-family: 'Noto Kufi Arabic', sans-serif;
  font-size: 13px;
  letter-spacing: 0;
}

/* Marquee stays LTR */
body.ar .mq { direction: ltr; }
body.ar .section-eyebrow { flex-direction: row-reverse; }
body.ar .section-eyebrow::before { display:none; }
body.ar .section-eyebrow::after { content:''; width:28px; height:1px; background:var(--p); }
body.ar .section-title { font-family:'Noto Kufi Arabic',sans-serif; letter-spacing:0; }
body.ar .section-desc { font-family:'Noto Kufi Arabic',sans-serif; }
body.ar .hero-sub { display:none; }
body.ar .hero-sub-ar { display:block; }
body.ar .about-grid { direction:rtl; }
body.ar .about-stats { flex-direction:row-reverse; }
body.ar .astat { border-left:1px solid var(--br2); border-right:none; }
body.ar .astat:last-child { border-left:none; }
body.ar .cat-intro { direction:rtl; }
body.ar .process-grid, body.ar .contact-grid { direction:rtl; }
body.ar .contact-left { border-right:none; border-left:1px solid var(--br2); padding-right:0; padding-left:60px; }
body.ar .contact-right { padding-left:0; padding-right:60px; }
body.ar .contact-form-title { font-family:'Noto Kufi Arabic',sans-serif; letter-spacing:0; }
body.ar .cf-label { font-family:'Noto Kufi Arabic',sans-serif; letter-spacing:0; text-align:right; }
body.ar footer { direction:rtl; }
body.ar .footer-links { flex-direction:row-reverse; }
body.ar .footer-right { justify-content:flex-start; }
body.ar .mq { direction:ltr; }

/* ══ RESPONSIVE ══ */
@media (max-width:1024px) {
  .about-grid, .process-grid, .contact-grid { grid-template-columns:1fr; gap:48px; }
  .cat-intro { grid-template-columns:1fr; gap:24px; }
  .cat-grid { grid-template-columns:1fr 1fr; }
  .cat-card-wide { grid-column:span 2; }
  .ig-grid { grid-template-columns:repeat(3,1fr); }
  .contact-left { border-right:none; border-bottom:1px solid var(--br2); padding:60px 0; }
  .contact-right { padding:60px 0; }
  footer { grid-template-columns:1fr; gap:28px; text-align:center; }
  .footer-links, .footer-right { justify-content:center; }
  .about-visual { height:400px; }
  .process-visual { display:none; }
  body.ar .contact-left { border-left:none; border-bottom:1px solid var(--br2); padding-left:0; }
  body.ar .contact-right { padding-right:0; }
}
@media (max-width:768px) {
  section { padding:80px 5vw; }
  .proj-grid { grid-template-columns:1fr 1fr; }
  .cat-grid { grid-template-columns:1fr; }
  .cat-card-wide { grid-column:span 1; }
  .ig-grid { grid-template-columns:repeat(2,1fr); }
  .nav-left, .nav-right { display:none; }
  nav { grid-template-columns:1fr; justify-items:center; }
  .about-visual { height:300px; }
  .about-img-main { right:40px; bottom:40px; }
  .about-accent { width:130px; height:100px; }
  .about-accent-n { font-size:36px; }
  .about-stats { flex-wrap:wrap; gap:20px; }
  .astat { border:none; padding:0!important; }
  .cf-grid { grid-template-columns:1fr; }
  .proj-featured { height:320px; }
  .proj-grid { grid-template-columns:1fr; }
  .proj-overlay { padding:28px; }
}
@media (max-width:480px) {
  .ig-grid { grid-template-columns:repeat(2,1fr); }
  .proj-grid { grid-template-columns:1fr; }
}
