/* ═══════════════════════════════════════════════════════════
   SHARARA CREATES — The Villa Atelier · v2
   Palette: ivory #FAF8F4 · blue #4A6FA5 · ink #1C1C1A · grey #808080
   Type EN: Montserrat / Montserrat Alternates
   Type AR: Thmanyah Serif Display / Thmanyah Sans
   ═══════════════════════════════════════════════════════════ */

/* ── Thmanyah faces (local) ── */
@font-face{font-family:'Thmanyah Serif Display';src:url('../fonts/thmanyahserifdisplay-Light.woff2') format('woff2');font-weight:300;font-display:swap}
@font-face{font-family:'Thmanyah Serif Display';src:url('../fonts/thmanyahserifdisplay-Regular.woff2') format('woff2');font-weight:400;font-display:swap}
@font-face{font-family:'Thmanyah Serif Display';src:url('../fonts/thmanyahserifdisplay-Medium.woff2') format('woff2');font-weight:500;font-display:swap}
@font-face{font-family:'Thmanyah Serif Display';src:url('../fonts/thmanyahserifdisplay-Bold.woff2') format('woff2');font-weight:700;font-display:swap}
@font-face{font-family:'Thmanyah Sans';src:url('../fonts/thmanyahsans-Light.woff2') format('woff2');font-weight:300;font-display:swap}
@font-face{font-family:'Thmanyah Sans';src:url('../fonts/thmanyahsans-Regular.woff2') format('woff2');font-weight:400;font-display:swap}
@font-face{font-family:'Thmanyah Sans';src:url('../fonts/thmanyahsans-Medium.woff2') format('woff2');font-weight:500;font-display:swap}

:root{
  --ivory:#FAF8F4;
  --ivory-2:#FAF8F4;   /* identity beige only, no invented off-white */
  --ink:#1C1C1A;
  --ink-2:#33322F;
  --blue:#4A6FA5;
  --blue-deep:#3A5A8A;
  --grey:#808080;
  --grey-2:#B9B5AC;
  --line:rgba(28,28,26,.12);
  --display:'Montserrat',system-ui,sans-serif;
  --alt:'Montserrat Alternates','Montserrat',sans-serif;
  --sans:'Montserrat',system-ui,sans-serif;
  --pad:clamp(1.25rem, 4vw, 4.5rem);
  --ease:cubic-bezier(.22,1,.36,1);
  --ease2:cubic-bezier(.65,.05,0,1);
}
html[dir="rtl"]{
  --display:'Thmanyah Serif Display','Amiri',serif;
  --alt:'Thmanyah Serif Display',serif;
  --sans:'Thmanyah Sans','IBM Plex Sans Arabic',sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--sans);
  font-weight:300;
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,video{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
em{font-style:normal;color:var(--blue);font-family:inherit}
/* Montserrat Alternates — reserved for signature headlines only */
.hero__title em,.fhero__name em,.founder-teaser__name em{font-family:var(--alt)}
::selection{background:var(--blue);color:var(--ivory)}

/* ── Preloader: SC logo film ── */
.preloader{
  position:fixed;inset:0;z-index:100;background:var(--ink);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1.8rem;
  transition:clip-path 1s var(--ease2), visibility 1s;
  clip-path:inset(0);
  /* CSS-only bail-out: the curtain lifts even if main.js never runs,
     so a script failure can never leave a visitor on a dark screen */
  animation:pre-bail 1s var(--ease2) 4.5s forwards;
}
.preloader.done{clip-path:inset(0 0 100% 0);visibility:hidden}
@keyframes pre-bail{to{clip-path:inset(0 0 100% 0);visibility:hidden}}
.preloader__mask{overflow:hidden}
.preloader__logo{
  width:min(340px,64vw);height:auto;display:block;
  transform:translateY(110%);
  animation:rise 1.2s var(--ease2) .25s forwards;
}
.preloader__line{
  width:0;height:1px;background:var(--blue);
  animation:pre-line 1s var(--ease2) 1.1s forwards;
}
@keyframes pre-line{to{width:min(340px,64vw)}}

/* ── Cursor ── */
.cursor{
  position:fixed;top:0;left:0;z-index:99;pointer-events:none;
  width:10px;height:10px;border-radius:50%;background:var(--blue);
  transform:translate(-50%,-50%);
  transition:width .35s var(--ease),height .35s var(--ease),background .35s,opacity .3s;
  display:flex;align-items:center;justify-content:center;opacity:0;
}
body.cursor-on .cursor{opacity:1}
.cursor.is-link{width:52px;height:52px;background:rgba(74,111,165,.15);backdrop-filter:blur(2px)}
.cursor.is-media{width:86px;height:86px;background:rgba(28,28,26,.8)}
.cursor__label{font-size:.58rem;letter-spacing:.2em;text-transform:uppercase;color:var(--ivory);opacity:0;transition:opacity .25s;white-space:nowrap;font-weight:600}
.cursor.is-media .cursor__label{opacity:1}
@media (pointer:coarse){.cursor{display:none}}

/* ── Buttons ── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.8em;
  font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:.74rem;letter-spacing:.22em;text-transform:uppercase;
  padding:1.15em 2.4em;border:1px solid var(--ink);
  transition:background .5s var(--ease),color .5s var(--ease),border-color .5s,transform .4s var(--ease);
  cursor:pointer;background:transparent;color:var(--ink);
  will-change:transform;
}
html[dir="rtl"] .btn{font-family:var(--sans);letter-spacing:0;font-weight:500;font-size:.9rem}
.btn--solid{background:var(--ink);color:var(--ivory)}
.btn--solid:hover{background:var(--blue);border-color:var(--blue)}
.btn--ghost:hover{background:var(--ink);color:var(--ivory)}
.btn--light{border-color:var(--ivory);color:var(--ivory)}
.btn--light:hover{background:var(--ivory);color:var(--ink)}
.btn--lg{padding:1.3em 3.2em;font-size:.8rem}

/* ── Nav ── */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;
  padding:1.15rem var(--pad);
  transition:background .5s var(--ease),box-shadow .5s,padding .5s,color .4s;
}
.nav--dark{color:var(--ivory)}
.nav--dark .nav__brand-2{color:var(--ivory);opacity:.75}
.nav--dark .nav__burger span{background:var(--ivory)}
.nav.scrolled{
  background:rgba(250,248,244,.9);backdrop-filter:blur(16px);
  box-shadow:0 1px 0 var(--line);
  padding-top:.65rem;padding-bottom:.65rem;color:var(--ink);
}
.nav.scrolled .nav__brand-2{color:var(--blue)}
.nav.scrolled .nav__burger span{background:var(--ink)}
.nav__brand{display:flex;flex-direction:column;line-height:1;z-index:60}
.nav__brand-1{font-family:'Montserrat',sans-serif;font-weight:600;letter-spacing:.36em;font-size:1.18rem}
.nav__brand-2{font-family:'Montserrat',sans-serif;font-weight:500;letter-spacing:.12em;font-size:.76rem;color:var(--blue);align-self:flex-end;margin-top:.3em}
.nav__links{display:flex;gap:2.2rem}
.nav__links a{
  font-family:var(--sans);font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;
  position:relative;padding:.3em 0;
}
html[dir="rtl"] .nav__links a{letter-spacing:0;font-size:1rem;font-weight:500}
.nav__links a::after{content:"";position:absolute;bottom:0;inset-inline-start:0;width:0;height:1px;background:var(--blue);transition:width .4s var(--ease)}
.nav__links a:hover::after{width:100%}
.nav__right{display:flex;align-items:center;gap:1.3rem}
.nav__lang{
  background:none;border:none;cursor:pointer;
  font-family:var(--sans);font-size:.82rem;font-weight:500;color:inherit;padding:.3em;
  opacity:.85;
}
.nav__lang:hover{opacity:1;color:var(--blue)}
.nav__burger{display:none;background:none;border:none;cursor:pointer;width:34px;height:26px;position:relative;z-index:60}
.nav__burger span{position:absolute;left:0;width:100%;height:1.5px;background:var(--ink);transition:.4s var(--ease)}
.nav__burger span:first-child{top:8px}
.nav__burger span:last-child{top:17px}
.nav__burger.open span:first-child{top:12px;transform:rotate(45deg)}
.nav__burger.open span:last-child{top:12px;transform:rotate(-45deg)}
.nav__burger.open span{background:var(--ink)!important}
.mmenu{
  position:fixed;inset:0;z-index:55;background:var(--ivory);
  display:flex;flex-direction:column;justify-content:center;gap:1.5rem;
  padding:0 var(--pad);
  clip-path:inset(0 0 100% 0);transition:clip-path .7s var(--ease2);
}
.mmenu.open{clip-path:inset(0)}
.mmenu a{font-family:var(--display);font-size:2rem;font-weight:400}
.mmenu__cta{color:var(--blue)}

/* ── Section label ── */
.section-index{
  font-family:'Montserrat',sans-serif;
  font-size:.68rem;letter-spacing:.32em;text-transform:uppercase;
  color:var(--grey);font-weight:600;margin-bottom:2.4rem;
}
html[dir="rtl"] .section-index{font-family:var(--sans);letter-spacing:.02em;font-size:.85rem}
.section-index--light{color:var(--grey-2)}

/* ── HERO (film sequence) ── */
.hero{position:relative;height:100vh;min-height:640px;overflow:hidden;background:var(--ink)}
.hero__media{position:absolute;inset:0}
.hero__film{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  opacity:0;transition:opacity 1.3s var(--ease);
}
.hero__film.is-on{opacity:.92}
.hero__shade{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(21,21,19,.82) 0%, rgba(21,21,19,.25) 38%, rgba(21,21,19,.12) 60%, rgba(21,21,19,.35) 100%);
}
.hero__content{
  position:absolute;inset-inline-start:0;bottom:0;width:100%;
  padding:0 var(--pad) clamp(2.5rem,6vh,4.5rem);
  color:var(--ivory);
  display:flex;flex-direction:column;align-items:flex-start;gap:1.6rem;
}
.hero__kicker{
  font-family:'Montserrat',sans-serif;
  font-size:.7rem;letter-spacing:.4em;text-transform:uppercase;font-weight:600;
  color:var(--ivory);opacity:.8;
}
html[dir="rtl"] .hero__kicker{font-family:var(--sans);letter-spacing:.04em;font-size:.9rem}
.hero__title{
  font-family:var(--display);font-weight:300;
  font-size:clamp(2.6rem,7vw,6.2rem);
  line-height:1.04;letter-spacing:.01em;
  text-transform:uppercase;
  max-width:16ch;
}
html[dir="rtl"] .hero__title{text-transform:none;font-weight:400;line-height:1.32;font-size:clamp(2.4rem,6vw,5.2rem)}
.hero__title em{color:var(--blue);font-weight:400;text-transform:none;letter-spacing:0;text-shadow:0 1px 30px rgba(21,21,19,.45)}
.hero__line{display:block;overflow:hidden}
.hero__line>span,.hero__line>em{display:block;transform:translateY(112%);animation:rise 1.2s var(--ease2) forwards}
.hero__line:nth-child(1)>*{animation-delay:2.5s}
.hero__line:nth-child(2)>*{animation-delay:2.65s}
.hero__line:nth-child(3)>*{animation-delay:2.8s}
/* repeat visit in same session: no intro, fast hero */
.intro-done .preloader{display:none}
.intro-done .hero__line:nth-child(1)>*{animation-delay:.25s}
.intro-done .hero__line:nth-child(2)>*{animation-delay:.4s}
.intro-done .hero__line:nth-child(3)>*{animation-delay:.55s}
@keyframes rise{to{transform:translateY(0)}}
.hero__sub{max-width:44ch;font-size:1rem;color:rgba(250,248,244,.85);font-weight:400}
.hero__actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero__meta{
  position:absolute;bottom:2.6rem;inset-inline-end:var(--pad);
  display:flex;flex-direction:column;align-items:flex-end;gap:.4rem;
  font-family:'Montserrat',sans-serif;font-size:.62rem;letter-spacing:.28em;text-transform:uppercase;color:rgba(250,248,244,.6);
}
html[dir="rtl"] .hero__meta{font-family:var(--sans);letter-spacing:.03em;font-size:.8rem;align-items:flex-start}
/* ── Marquee: pause on hover (interactive) ── */
.marquee:hover .marquee__track{animation-play-state:paused}

/* ── Marquee ── */
.marquee{border-top:1px solid var(--line);border-bottom:1px solid var(--line);overflow:hidden;padding:1.5rem 0;background:var(--ivory)}
.marquee__track{display:flex;align-items:center;gap:3.4rem;width:max-content;animation:marquee 38s linear infinite}
html[dir="rtl"] .marquee__track{animation-name:marquee-rtl}
.marquee__item{
  font-family:var(--display);font-weight:400;
  font-size:clamp(1.4rem,3vw,2.4rem);white-space:nowrap;letter-spacing:.14em;text-transform:uppercase;
}
html[dir="rtl"] .marquee__item{letter-spacing:0;text-transform:none;font-weight:500}
.marquee__item--outline{color:var(--grey-2);font-weight:300}
.marquee__sep{color:var(--blue);font-size:.85rem}
@keyframes marquee{to{transform:translateX(-50%)}}
@keyframes marquee-rtl{to{transform:translateX(50%)}}

/* ── Manifesto ── */
.manifesto{padding:clamp(6rem,13vh,11rem) var(--pad)}
.manifesto__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2.2rem,5.6vw,4.9rem);line-height:1.12;letter-spacing:.02em;
  margin-bottom:4rem;max-width:22ch;
}
html[dir="rtl"] .manifesto__title{text-transform:none;font-weight:400;line-height:1.42;letter-spacing:0}
.manifesto__title .reveal-line{display:block;overflow:hidden}
.manifesto__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:2.8rem;max-width:74rem;margin-bottom:5rem}
.manifesto__cols p{font-size:.95rem;color:var(--ink-2);font-weight:400}
.manifesto__facts{
  display:grid;grid-template-columns:repeat(3,1fr);gap:2.6rem;
  border-top:1px solid var(--line);padding-top:3.2rem;max-width:74rem;
}
.fact__num{
  font-family:var(--display);font-weight:300;
  font-size:clamp(2.8rem,5vw,4.4rem);color:var(--blue);display:block;line-height:1;margin-bottom:.7rem;
}
.fact__label{font-size:.78rem;letter-spacing:.04em;color:var(--grey);max-width:24ch;display:block;font-weight:500}

/* ── Walk ── */
.walk{position:relative;background:var(--ivory);border-top:1px solid var(--line)}
.walk__sticky{position:sticky;top:0;height:100vh;overflow:hidden;display:flex;flex-direction:column;justify-content:center}
.walk__head{padding:5.5rem var(--pad) 1.4rem}
.walk__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(1.8rem,4vw,3.4rem);line-height:1.1;letter-spacing:.02em;
}
html[dir="rtl"] .walk__title{text-transform:none;font-weight:400;line-height:1.4}
.walk__hint{font-family:'Montserrat',sans-serif;font-size:.66rem;letter-spacing:.26em;text-transform:uppercase;color:var(--grey);margin-top:1rem;font-weight:600}
html[dir="rtl"] .walk__hint{font-family:var(--sans);letter-spacing:.02em;font-size:.82rem}
.walk__track{display:flex;gap:clamp(1.5rem,3vw,3rem);padding:2rem var(--pad) 3rem;will-change:transform}
.room{flex:0 0 auto;width:clamp(300px,38vw,560px)}
.room__img-wrap{overflow:hidden;aspect-ratio:4/5;background:var(--ivory)}
.room__img-wrap img{width:100%;height:100%;object-fit:cover;transform:scale(1.05);transition:transform 1.4s var(--ease)}
.room:hover .room__img-wrap img{transform:scale(1.13)}
.room__label{display:flex;align-items:baseline;gap:1rem;margin-top:1.2rem}
.room__num{font-family:var(--display);font-size:1.3rem;color:var(--blue)}
.room__label h3{font-family:var(--display);font-weight:400;font-size:1.35rem;letter-spacing:.06em;text-transform:uppercase}
html[dir="rtl"] .room__label h3{text-transform:none;letter-spacing:0;font-size:1.5rem}
.room__label p{font-size:.8rem;color:var(--grey);margin-top:.2rem}
.room__label>div{display:flex;flex-direction:column}

/* ── WORKS v2 — full-bleed luxury ── */
.works{padding:clamp(6rem,13vh,11rem) 0 0}
.works__head{max-width:66rem;margin-bottom:5rem;padding:0 var(--pad)}
.works__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2.2rem,5.4vw,4.6rem);line-height:1.1;margin-bottom:1.8rem;letter-spacing:.02em;
}
html[dir="rtl"] .works__title{text-transform:none;font-weight:400;line-height:1.4}
.works__sub{color:var(--grey);max-width:46rem;font-weight:400}
.works__ghost{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(1rem,2.2vw,1.8rem);letter-spacing:.24em;line-height:1.2;
  color:var(--grey-2);
  margin:.4rem 0 1.6rem;user-select:none;
}
html[dir="rtl"] .works__ghost{letter-spacing:.03em;font-weight:400}

.project{margin-bottom:clamp(6rem,12vh,10rem)}
.project__bar{
  display:flex;align-items:baseline;justify-content:space-between;gap:2rem;flex-wrap:wrap;
  padding:0 var(--pad);margin-bottom:2rem;
}
.project__id{display:flex;align-items:baseline;gap:1.6rem}
.project__num{
  font-family:var(--display);font-weight:300;
  font-size:clamp(2.2rem,4vw,3.6rem);line-height:1;
  color:var(--grey-2);
}
.project__name{
  font-family:var(--display);font-weight:400;
  font-size:clamp(1.7rem,3.4vw,3rem);line-height:1.06;letter-spacing:.04em;text-transform:uppercase;
}
html[dir="rtl"] .project__name{text-transform:none;letter-spacing:0;font-weight:500}
.project__loc{
  font-family:'Montserrat',sans-serif;font-size:.66rem;letter-spacing:.3em;text-transform:uppercase;color:var(--grey);font-weight:600;
}
html[dir="rtl"] .project__loc{font-family:var(--sans);letter-spacing:.02em;font-size:.84rem}
.project__feature{
  position:relative;overflow:hidden;
  clip-path:inset(0 100% 0 0);
  transition:clip-path 1.3s var(--ease2);
}
html[dir="rtl"] .project__feature{clip-path:inset(0 0 0 100%)}
.project__feature.inview{clip-path:inset(0)!important}
.project__feature img,.project__feature video{width:100%;height:auto;transform:scale(1.06);transition:transform 2s var(--ease)}
.project__feature.inview img,.project__feature.inview video{transform:scale(1)}
.static-mode .project__feature{clip-path:inset(0);transition:none}
.project__caption{
  position:absolute;bottom:1.4rem;inset-inline-start:var(--pad);
  font-family:'Montserrat',sans-serif;font-size:.62rem;letter-spacing:.26em;text-transform:uppercase;
  color:var(--ivory);background:rgba(28,28,26,.5);backdrop-filter:blur(8px);
  padding:.8em 1.4em;font-weight:600;
}
html[dir="rtl"] .project__caption{font-family:var(--sans);letter-spacing:.02em;font-size:.78rem}
.project__grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(.8rem,1.4vw,1.4rem);
  padding:clamp(.8rem,1.4vw,1.4rem) var(--pad) 0;
}
.project__grid figure{overflow:hidden;aspect-ratio:4/5;background:var(--ivory);position:relative}
.project__grid img,.project__grid video{width:100%;height:100%;object-fit:cover;transition:transform 1.4s var(--ease)}
.project__grid figure:hover img,.project__grid figure:hover video{transform:scale(1.07)}
.project__grid--film figcaption{
  position:absolute;bottom:1rem;inset-inline-start:1rem;
  font-family:'Montserrat',sans-serif;font-size:.58rem;letter-spacing:.24em;text-transform:uppercase;font-weight:600;
  color:var(--ivory);background:rgba(28,28,26,.5);backdrop-filter:blur(8px);padding:.7em 1.2em;
}
html[dir="rtl"] .project__grid--film figcaption{font-family:var(--sans);letter-spacing:.02em;font-size:.74rem}
.project__grid figure.wide{aspect-ratio:auto;grid-row:span 2}
.project__foot{
  display:grid;grid-template-columns:1.2fr 1fr 1fr;gap:2rem;
  padding:2.2rem var(--pad) 0;max-width:100%;
}
.project__desc{font-size:.94rem;color:var(--ink-2);max-width:52ch;font-weight:400}
.project__meta{display:flex;flex-direction:column;gap:.55rem}
.project__meta dt{
  font-family:'Montserrat',sans-serif;font-size:.6rem;letter-spacing:.26em;text-transform:uppercase;color:var(--grey);font-weight:600;
}
html[dir="rtl"] .project__meta dt{font-family:var(--sans);letter-spacing:.02em;font-size:.76rem}
.project__meta dd{font-size:.88rem;font-weight:500}

/* ── Trusted by (big names) ── */
.trusted{background:var(--ivory-2);padding:clamp(5rem,10vh,8rem) var(--pad);border-top:1px solid var(--line)}
.trusted__head{max-width:62rem;margin-bottom:3.6rem}
.trusted__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(1.9rem,4.2vw,3.6rem);line-height:1.14;margin-bottom:1.4rem;letter-spacing:.02em;
}
html[dir="rtl"] .trusted__title{text-transform:none;font-weight:400;line-height:1.42}
.trusted__sub{color:var(--grey);max-width:52rem;font-weight:400;font-size:.95rem}
.trusted__logos{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:3rem 2.6rem;align-items:center;
  border-top:1px solid var(--line);padding-top:3.4rem;
}
.trusted__logos img{
  height:42px;width:100%;max-width:150px;object-fit:contain;margin:auto;display:block;
  mix-blend-mode:multiply;
  filter:grayscale(1) opacity(.55);transition:filter .5s var(--ease),transform .5s var(--ease);
}
/* optical balance — taller marks get more height, wordmarks less */
.trusted__logos img[src*="kfnl"],
.trusted__logos img[src*="alramz"]{height:62px}
.trusted__logos img[src*="almajdiah"]{height:52px}
.trusted__logos img[src*="moi"]{height:46px}
.trusted__logos img[src*="stc"]{height:40px;max-width:88px}
.trusted__logos img[src*="flow"]{height:32px}
.trusted__logos img[src*="rewaa"]{height:38px}
.trusted__logos img[src*="mawan"]{height:38px;max-width:170px}
.trusted__logos img:hover{filter:grayscale(0) opacity(1);transform:translateY(-3px)}
.trusted__note{
  margin-top:3rem;font-size:.86rem;color:var(--grey);font-weight:400;max-width:56ch;
}
.trusted__note strong{color:var(--ink);font-weight:600}

/* ── Scope (from the land) ── */
.scope{padding:clamp(6rem,13vh,11rem) var(--pad);display:grid;grid-template-columns:1.05fr .95fr;gap:clamp(2.5rem,6vw,6rem);align-items:center}
.scope__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2rem,4.6vw,4rem);line-height:1.12;margin-bottom:1.6rem;letter-spacing:.02em;
}
html[dir="rtl"] .scope__title{text-transform:none;font-weight:400;line-height:1.42}
.scope__lead{color:var(--ink-2);font-weight:400;margin-bottom:2.4rem;max-width:54ch}
.scope__list{list-style:none;border-top:1px solid var(--line)}
.scope__list li{
  display:flex;align-items:baseline;gap:1.4rem;
  padding:1.05rem 0;border-bottom:1px solid var(--line);
  transition:padding-inline-start .45s var(--ease);
}
.scope__list li:hover{padding-inline-start:.8rem}
.scope__list .n{font-family:'Montserrat',sans-serif;font-size:.66rem;color:var(--blue);font-weight:600;letter-spacing:.1em}
.scope__list h3{font-family:var(--display);font-weight:500;font-size:1.02rem;letter-spacing:.08em;text-transform:uppercase}
html[dir="rtl"] .scope__list h3{text-transform:none;letter-spacing:0;font-size:1.15rem}
.scope__list p{font-size:.82rem;color:var(--grey);margin-top:.15rem}
.scope__list li>div{display:flex;flex-direction:column}
.scope__note{margin-top:1.8rem;font-size:.85rem;color:var(--grey)}
.scope__note strong{color:var(--ink);font-weight:600}
.scope__media{position:relative;overflow:hidden;aspect-ratio:4/5}
.scope__media img{width:100%;height:100%;object-fit:cover}
.scope__badge{
  position:absolute;top:1.6rem;inset-inline-start:1.6rem;
  background:rgba(250,248,244,.92);backdrop-filter:blur(6px);
  padding:1em 1.6em;
  font-family:'Montserrat',sans-serif;font-size:.6rem;letter-spacing:.26em;text-transform:uppercase;font-weight:600;
}
html[dir="rtl"] .scope__badge{font-family:var(--sans);letter-spacing:.02em;font-size:.78rem}

/* ── Footprint map ── */
.fmap{padding:clamp(6rem,13vh,10rem) var(--pad);background:var(--ivory)}
.fmap__head{max-width:60rem;margin-bottom:3rem}
.fmap__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2rem,4.4vw,3.8rem);line-height:1.12;margin-bottom:1.4rem;letter-spacing:.02em;
}
html[dir="rtl"] .fmap__title{text-transform:none;font-weight:400;line-height:1.42}
.fmap__sub{color:var(--grey);max-width:44rem;font-weight:400}
/* The map is a contained plate, not a full-bleed wash: past ~1120px the halftone
   coarsens and Riyadh drops below the fold, which breaks the whole section. */
.fmap__canvas{width:100%;max-width:1120px;margin:2.4rem auto 0}
.fmap__canvas svg{width:100%;height:auto;display:block;direction:ltr}
/* Named places, shown only where the SVG labels become too small to read (see below) */
.fmap__legend{display:none}
.pin circle{transition:transform .4s var(--ease);transform-origin:center;transform-box:fill-box}
.pin:hover circle{transform:scale(1.7);fill:var(--blue)}
.fmap__arcs path{
  stroke-dasharray:1000;stroke-dashoffset:1000;
  transition:stroke-dashoffset 2.2s var(--ease2);
}
.fmap__canvas.in .fmap__arcs path{stroke-dashoffset:0}
/* 12 arcs draw outward from Riyadh, home cluster first */
.fmap__canvas.in .fmap__arcs path:nth-child(2){transition-delay:.09s}
.fmap__canvas.in .fmap__arcs path:nth-child(3){transition-delay:.18s}
.fmap__canvas.in .fmap__arcs path:nth-child(4){transition-delay:.27s}
.fmap__canvas.in .fmap__arcs path:nth-child(5){transition-delay:.36s}
.fmap__canvas.in .fmap__arcs path:nth-child(6){transition-delay:.45s}
.fmap__canvas.in .fmap__arcs path:nth-child(7){transition-delay:.54s}
.fmap__canvas.in .fmap__arcs path:nth-child(8){transition-delay:.63s}
.fmap__canvas.in .fmap__arcs path:nth-child(9){transition-delay:.72s}
.fmap__canvas.in .fmap__arcs path:nth-child(10){transition-delay:.81s}
.fmap__canvas.in .fmap__arcs path:nth-child(11){transition-delay:.9s}
.fmap__canvas.in .fmap__arcs path:nth-child(12){transition-delay:.99s}
.pin circle{fill:var(--ink)}
.pin text{
  font-family:'Montserrat',sans-serif;font-size:11.5px;font-weight:600;
  letter-spacing:.18em;text-transform:uppercase;fill:var(--ink);
}
html[dir="rtl"] .pin text{font-family:'Thmanyah Sans','IBM Plex Sans Arabic',sans-serif;letter-spacing:0;font-size:14px;font-weight:500}
.pin--hub circle{fill:var(--blue)}
.pin--hub text{fill:var(--blue);font-size:12.5px}
.pin--hub .pulse{
  fill:none;stroke:var(--blue);stroke-width:1.5;opacity:.8;
  transform-origin:center;transform-box:fill-box;
  animation:pulse 2.6s var(--ease) infinite;
}
@keyframes pulse{0%{transform:scale(.6);opacity:.8}70%,100%{transform:scale(2.4);opacity:0}}
.static-mode .fmap__arcs path{stroke-dashoffset:0;transition:none}
.static-mode .pin--hub .pulse{animation:none;opacity:.4}

/* ── Journey (dark) ── */
.journey{background:var(--ink);color:var(--ivory)}
.journey__inner{padding:clamp(6rem,13vh,11rem) var(--pad)}
.journey__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2.1rem,5vw,4.4rem);line-height:1.12;margin-bottom:1.6rem;letter-spacing:.02em;
}
html[dir="rtl"] .journey__title{text-transform:none;font-weight:400;line-height:1.42}
.journey__title em{color:var(--blue)}
.journey__sub{color:var(--grey-2);max-width:42rem;margin-bottom:5rem;font-weight:400}
.steps{list-style:none;max-width:64rem}
.step{
  display:grid;grid-template-columns:7rem 1fr;gap:2rem;
  padding:2.3rem 0;border-top:1px solid rgba(250,248,244,.13);
  transition:padding-inline-start .5s var(--ease);
}
.step:hover{padding-inline-start:1rem}
.step__num{font-family:var(--display);font-weight:300;font-size:2rem;color:var(--blue);line-height:1}
.step__body h3{font-family:var(--display);font-weight:400;font-size:1.3rem;margin-bottom:.55rem;letter-spacing:.08em;text-transform:uppercase}
html[dir="rtl"] .step__body h3{text-transform:none;letter-spacing:0;font-size:1.5rem;font-weight:500}
.step__body p{color:var(--grey-2);font-size:.92rem;max-width:48rem;font-weight:400}

/* ── Consultation ── */
.consult{
  display:grid;grid-template-columns:1fr 1fr;
  background:var(--ivory-2);border-top:1px solid var(--line);
}
.consult{grid-template-columns:.92fr 1.08fr}
.consult__media{position:relative;overflow:hidden;aspect-ratio:4/5;min-height:0}
.consult__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 12%;filter:grayscale(1)}
.consult__body{padding:clamp(3.5rem,8vh,6.5rem) var(--pad);display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.consult__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2rem,4.4vw,3.8rem);line-height:1.12;margin-bottom:1.4rem;letter-spacing:.02em;
}
html[dir="rtl"] .consult__title{text-transform:none;font-weight:400;line-height:1.42}
.consult__lead{color:var(--ink-2);font-weight:400;max-width:50ch;margin-bottom:2rem}
.consult__points{list-style:none;margin-bottom:2.6rem;display:flex;flex-direction:column;gap:.8rem}
.consult__points li{display:flex;gap:.9rem;align-items:baseline;font-size:.92rem;font-weight:400}
.consult__points li::before{content:"·";color:var(--blue);font-weight:700}
.consult__fine{margin-top:1.4rem;font-size:.78rem;color:var(--grey)}

/* ── Journal ── */
.journal{padding:clamp(6rem,13vh,10rem) var(--pad)}
.journal__head{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap;margin-bottom:3.6rem}
.journal__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2rem,4.4vw,3.8rem);line-height:1.12;letter-spacing:.02em;
}
html[dir="rtl"] .journal__title{text-transform:none;font-weight:400;line-height:1.42}
.journal__sub{color:var(--grey);max-width:46rem;font-weight:400;margin-top:1.2rem}
.journal__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.jcard{
  border:1px solid var(--line);padding:2.2rem;
  display:flex;flex-direction:column;gap:1.1rem;min-height:250px;
  transition:background .5s var(--ease),transform .5s var(--ease),box-shadow .5s;
  background:var(--ivory);
}
.jcard:hover{border-color:var(--ink);transform:translateY(-5px);box-shadow:0 24px 50px rgba(28,28,26,.08)}
.jcard__tag{font-family:'Montserrat',sans-serif;font-size:.6rem;letter-spacing:.28em;text-transform:uppercase;color:var(--blue);font-weight:600}
html[dir="rtl"] .jcard__tag{font-family:var(--sans);letter-spacing:.02em;font-size:.76rem}
.jcard__title{font-family:'Thmanyah Serif Display','Amiri',serif;font-size:1.5rem;font-weight:500;line-height:1.5;direction:rtl;text-align:start}
.jcard__desc{font-size:.86rem;color:var(--grey);font-weight:400;flex:1}
.jcard__link{font-family:'Montserrat',sans-serif;font-size:.64rem;letter-spacing:.24em;text-transform:uppercase;font-weight:600;color:var(--ink)}
html[dir="rtl"] .jcard__link{font-family:var(--sans);letter-spacing:.02em;font-size:.8rem}
.jcard:hover .jcard__link{color:var(--blue)}

/* ── Voices — testimonials ── */
.voices{background:var(--ink);color:var(--ivory);border-bottom:1px solid rgba(250,248,244,.1)}
.voices__inner{padding:clamp(6rem,13vh,10rem) var(--pad)}
.voices__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(1.9rem,4.2vw,3.6rem);line-height:1.14;margin-bottom:4rem;letter-spacing:.02em;
}
html[dir="rtl"] .voices__title{text-transform:none;font-weight:400;line-height:1.42}
.voices__title em{color:var(--blue)}
.voices__stage{position:relative;min-height:16rem;max-width:62rem}
.voice{
  position:absolute;inset:0;
  opacity:0;transform:translateY(24px);visibility:hidden;
  transition:opacity .8s var(--ease),transform .8s var(--ease),visibility .8s;
}
.voice.is-active{position:relative;opacity:1;transform:none;visibility:visible}
.voice__quote{
  font-family:var(--display);font-weight:300;
  font-size:clamp(1.3rem,2.6vw,2.1rem);line-height:1.55;
  max-width:34ch;margin-bottom:2.2rem;color:var(--ivory);
}
html[dir="rtl"] .voice__quote{font-weight:400;line-height:1.9}
.voice footer{display:flex;flex-direction:column;gap:.3rem}
.voice cite{
  font-style:normal;font-family:'Montserrat',sans-serif;font-weight:600;
  font-size:.8rem;letter-spacing:.18em;text-transform:uppercase;
}
html[dir="rtl"] .voice cite{font-family:var(--sans);letter-spacing:.02em;font-size:.95rem;font-weight:500}
.voice footer span{font-size:.8rem;color:var(--grey-2);font-weight:400}
.voices__nav{display:flex;align-items:center;gap:1.6rem;margin-top:3.2rem;max-width:62rem}
.voices__btn{
  background:none;border:1px solid rgba(250,248,244,.3);color:var(--ivory);
  width:46px;height:46px;border-radius:50%;cursor:pointer;font-size:1rem;
  transition:background .4s var(--ease),border-color .4s;
}
.voices__btn:hover{background:var(--blue);border-color:var(--blue)}
.voices__count{
  font-family:'Montserrat',sans-serif;font-size:.68rem;letter-spacing:.26em;color:var(--grey-2);font-weight:600;
}
.voices__bar{flex:1;height:1px;background:rgba(250,248,244,.15);position:relative;overflow:hidden}
.voices__bar span{
  position:absolute;top:0;inset-inline-start:0;height:100%;width:0;
  background:var(--blue);transition:width .3s linear;
}
.static-mode .voice{transition:none}

/* ── Founder teaser ── */
.founder-teaser{
  background:var(--ink);color:var(--ivory);
  display:grid;grid-template-columns:.9fr 1.1fr;
}
.founder-teaser__media{position:relative;overflow:hidden;aspect-ratio:4/5;min-height:0}
.founder-teaser__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 10%;filter:grayscale(1)}
.founder-teaser__body{padding:clamp(3.5rem,9vh,7rem) var(--pad);display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.founder-teaser__name{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2.2rem,5vw,4.4rem);line-height:1.06;margin-bottom:1.6rem;letter-spacing:.03em;
}
html[dir="rtl"] .founder-teaser__name{text-transform:none;font-weight:400;line-height:1.35}
.founder-teaser__name em{color:var(--blue)}
.founder-teaser__quote{
  font-family:'Thmanyah Serif Display','Georgia',serif;
  font-size:clamp(1.1rem,1.8vw,1.45rem);line-height:1.7;color:rgba(250,248,244,.9);
  max-width:44ch;margin-bottom:2.4rem;
}
.founder-teaser__meta{color:var(--grey-2);font-size:.9rem;margin-bottom:2.6rem;font-weight:400}

/* ── Begin ── */
.begin{background:var(--ivory);padding:clamp(6rem,13vh,10rem) var(--pad);border-top:1px solid var(--line)}
.begin__head{max-width:58rem;margin-bottom:4rem}
.begin__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2.1rem,5vw,4.2rem);line-height:1.12;margin-bottom:1.6rem;letter-spacing:.02em;
}
html[dir="rtl"] .begin__title{text-transform:none;font-weight:400;line-height:1.42}
.begin__sub{color:var(--grey);max-width:42rem;font-weight:400}
.begin__form{display:grid;grid-template-columns:repeat(2,1fr);gap:2.4rem 3rem;max-width:58rem}
.field{display:flex;flex-direction:column;gap:.7rem}
.field--full{grid-column:1/-1}
.field label{
  font-family:'Montserrat',sans-serif;
  font-size:.64rem;letter-spacing:.26em;text-transform:uppercase;color:var(--grey);font-weight:600;
}
html[dir="rtl"] .field label{font-family:var(--sans);letter-spacing:.02em;font-size:.8rem}
.field input,.field select,.field textarea{
  background:transparent;border:none;border-bottom:1px solid rgba(28,28,26,.28);
  padding:.7em 0;font-family:var(--sans);font-size:1.02rem;font-weight:400;color:var(--ink);
  border-radius:0;transition:border-color .4s;appearance:none;-webkit-appearance:none;
}
.field textarea{resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-bottom-color:var(--blue)}
.field input::placeholder,.field textarea::placeholder{color:var(--grey-2)}
.field select{cursor:pointer}
.begin__actions{display:flex;align-items:center;gap:2rem;flex-wrap:wrap;margin-top:1rem}
.begin__alt{font-size:.85rem;color:var(--grey);border-bottom:1px solid var(--grey-2);padding-bottom:.15em;transition:color .3s,border-color .3s}
.begin__alt:hover{color:var(--blue);border-color:var(--blue)}

/* ── The Sample Room (section) ── */
.sroom{
  padding:clamp(6rem,13vh,10rem) var(--pad);
  background:var(--ivory);border-top:1px solid var(--line);
}
.sroom__head{max-width:76rem;margin-bottom:4rem}
.sroom__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(1.9rem,4vw,3.5rem);line-height:1.14;letter-spacing:.02em;margin-bottom:1.6rem;
}
html[dir="rtl"] .sroom__title{text-transform:none;font-weight:400;line-height:1.42}
.sroom__lead{color:var(--ink-2);font-weight:400;max-width:56ch;font-size:1.02rem}
.sroom__list{
  list-style:none;display:grid;grid-template-columns:repeat(5,1fr);
  gap:0;border-top:1px solid var(--line);
}
.sroom__item{
  padding:2rem 1.6rem 2.4rem 1.6rem;border-inline-end:1px solid var(--line);
  transition:transform .5s var(--ease);
}
.sroom__item:first-child{padding-inline-start:0}
.sroom__item:last-child{border-inline-end:none}
.sroom__item:hover{transform:translateY(-6px)}
.sroom__item:hover .sroom__n{color:var(--blue)}
.sroom__n{
  font-family:var(--display);font-weight:300;font-size:1.6rem;color:var(--grey-2);
  display:block;margin-bottom:1.2rem;transition:color .45s var(--ease);
}
.sroom__item h3{
  font-family:var(--display);font-weight:500;font-size:.98rem;
  letter-spacing:.06em;text-transform:uppercase;margin-bottom:.7rem;line-height:1.35;
}
html[dir="rtl"] .sroom__item h3{text-transform:none;letter-spacing:0;font-size:1.12rem}
.sroom__item p{font-size:.84rem;color:var(--grey);font-weight:400}
.sroom__cta{
  display:flex;align-items:center;gap:2rem;flex-wrap:wrap;
  margin-top:3.4rem;padding-top:3rem;border-top:1px solid var(--line);
}
.sroom__fine{font-size:.82rem;color:var(--grey)}

/* ── Social icons (Yodezeen-style) ── */
.social{display:flex;gap:.9rem;margin-bottom:3rem;flex-wrap:wrap}
.sicon{
  width:50px;height:50px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  border:1px solid rgba(250,248,244,.28);color:var(--ivory);
  transition:background .45s var(--ease),border-color .45s,color .45s,transform .4s var(--ease);
  will-change:transform;
}
.sicon svg{width:21px;height:21px}
.sicon:hover{background:var(--blue);border-color:var(--blue);color:var(--ivory)}

/* ── Footer ── */
.footer{background:var(--ink);color:var(--ivory);padding:5rem var(--pad) 2rem}
.footer__brand{margin-bottom:3.5rem}
.footer__logo{width:clamp(200px,24vw,300px);height:auto}
.footer__word{display:block;font-family:'Montserrat',sans-serif;font-weight:600;font-size:clamp(2rem,6.5vw,4.2rem);letter-spacing:.3em;line-height:1.2}
.footer__word--blue{color:var(--blue)}
.footer__tag{font-family:'Thmanyah Serif Display',Georgia,serif;color:var(--grey-2);font-size:1.1rem;margin-top:1.2rem}
.footer__cols{display:grid;grid-template-columns:repeat(4,1fr);gap:2.4rem;border-top:1px solid rgba(250,248,244,.14);padding:2.8rem 0}
.footer__col{display:flex;flex-direction:column;gap:.7rem}
.footer__col h4{
  font-family:'Montserrat',sans-serif;
  font-size:.62rem;letter-spacing:.28em;text-transform:uppercase;color:var(--grey);font-weight:600;margin-bottom:.4rem;
}
html[dir="rtl"] .footer__col h4{font-family:var(--sans);letter-spacing:.02em;font-size:.8rem}
.footer__col a,.footer__col span{font-size:.9rem;color:var(--grey-2);font-weight:400}
.footer__col a:hover{color:var(--ivory)}
.footer__base{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;
  border-top:1px solid rgba(250,248,244,.14);padding-top:1.8rem;
  font-size:.75rem;color:var(--grey);
}
.footer__top:hover{color:var(--ivory)}

/* ── FOUNDER PAGE ── */
.fhero{
  min-height:100vh;display:grid;grid-template-columns:1fr 1fr;background:var(--ink);color:var(--ivory);
}
.fhero__body{display:flex;flex-direction:column;justify-content:center;padding:8rem var(--pad) 4rem}
.fhero__kicker{font-family:'Montserrat',sans-serif;font-size:.68rem;letter-spacing:.4em;text-transform:uppercase;color:var(--ivory);opacity:.8;font-weight:600;margin-bottom:2rem}
html[dir="rtl"] .fhero__kicker{font-family:var(--sans);letter-spacing:.03em;font-size:.88rem}
.fhero__name{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(2.8rem,6.5vw,5.8rem);line-height:1.04;letter-spacing:.02em;margin-bottom:2rem;
}
html[dir="rtl"] .fhero__name{text-transform:none;font-weight:400;line-height:1.3}
.fhero__name em{color:var(--blue)}
.fhero__roles{display:flex;gap:1.4rem;flex-wrap:wrap;margin-bottom:2.4rem;font-family:'Montserrat',sans-serif;font-size:.66rem;letter-spacing:.24em;text-transform:uppercase;color:var(--grey-2);font-weight:600}
html[dir="rtl"] .fhero__roles{font-family:var(--sans);letter-spacing:.02em;font-size:.84rem}
.fhero__roles span::after{content:"·";margin-inline-start:1.4rem;color:var(--blue)}
.fhero__roles span:last-child::after{content:""}
.fhero__sub{color:rgba(250,248,244,.85);max-width:46ch;font-weight:400;margin-bottom:2.8rem}
.fhero__media{position:relative;overflow:hidden;min-height:70vh}
.fhero__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 18%;filter:grayscale(1)}
.fhero__media::after{content:"";position:absolute;inset:0;background:linear-gradient(to right, rgba(28,28,26,.5), transparent 40%)}
html[dir="rtl"] .fhero__media::after{background:linear-gradient(to left, rgba(28,28,26,.5), transparent 40%)}

.fstory{padding:clamp(6rem,13vh,10rem) var(--pad);display:grid;grid-template-columns:1fr 1.4fr;gap:clamp(2.5rem,6vw,6rem)}
.fstory__title{
  font-family:var(--display);font-weight:300;text-transform:uppercase;
  font-size:clamp(1.9rem,4vw,3.4rem);line-height:1.14;letter-spacing:.02em;position:sticky;top:7rem;align-self:start;
}
html[dir="rtl"] .fstory__title{text-transform:none;font-weight:400;line-height:1.42}
.fstory__body p{font-size:1.02rem;color:var(--ink-2);font-weight:400;margin-bottom:1.6rem;max-width:62ch}
.fstory__body p strong{font-weight:600;color:var(--ink)}
.fbeliefs{background:var(--ivory-2);padding:clamp(5rem,10vh,8rem) var(--pad);border-top:1px solid var(--line)}
.fbeliefs__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.4rem;max-width:74rem}
.belief{border-top:2px solid var(--ink);padding-top:1.6rem}
.belief__num{font-family:var(--display);font-weight:300;font-size:2rem;color:var(--blue);display:block;margin-bottom:1rem}
.belief h3{font-family:var(--display);font-weight:500;font-size:1.05rem;letter-spacing:.08em;text-transform:uppercase;margin-bottom:.8rem}
html[dir="rtl"] .belief h3{text-transform:none;letter-spacing:0;font-size:1.2rem}
.belief p{font-size:.9rem;color:var(--grey);font-weight:400}

/* ── Typography: weight play on signature words ── */
.works__title em,.journey__title em,.scope__title em,.consult__title em,
.begin__title em,.trusted__title em,.fmap__title em,.voices__title em,
.journal__title em,.walk__title em,.manifesto__title em{font-weight:500}
html[dir="rtl"] .works__title em,html[dir="rtl"] .journey__title em,
html[dir="rtl"] .scope__title em,html[dir="rtl"] .consult__title em,
html[dir="rtl"] .begin__title em,html[dir="rtl"] .trusted__title em,
html[dir="rtl"] .fmap__title em,html[dir="rtl"] .voices__title em,
html[dir="rtl"] .journal__title em,html[dir="rtl"] .walk__title em,
html[dir="rtl"] .manifesto__title em{font-weight:700}
.project__name{font-weight:500}
.hero__title em{font-weight:400}

/* ── Reveal / motion ── */
.reveal{
  opacity:0;transform:translateY(26px);filter:blur(5px);
  transition:opacity 1.35s var(--ease),transform 1.35s var(--ease),filter 1.35s var(--ease);
}
.reveal.in{opacity:1;transform:none;filter:blur(0)}
/* journey steps + sample room: soft cascade */
.steps .step:nth-child(2),.sroom__item:nth-child(2){transition-delay:.08s}
.steps .step:nth-child(3),.sroom__item:nth-child(3){transition-delay:.16s}
.steps .step:nth-child(4),.sroom__item:nth-child(4){transition-delay:.24s}
.steps .step:nth-child(5),.sroom__item:nth-child(5){transition-delay:.32s}
.steps .step:nth-child(6){transition-delay:.4s}
.static-mode .reveal{filter:none}
.reveal-line{display:block;overflow:hidden}
.reveal-line>span,.reveal-line>em{display:inline-block;transform:translateY(118%);transition:transform 1.2s var(--ease2)}
.reveal-line.in>span,.reveal-line.in>em{transform:none}
.parallax img{will-change:transform}

/* static QA mode */
.static-mode .preloader{display:none}
.static-mode .walk{height:auto!important}
.static-mode .reveal,
.static-mode .reveal-line>span,.static-mode .reveal-line>em,
.static-mode .hero__line>span,.static-mode .hero__line>em{opacity:1;transform:none;animation:none;transition:none}
.static-mode .marquee__track{animation-play-state:paused}
.static-mode .project__feature img,.static-mode .project__feature video{transform:none}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .reveal,.reveal-line>span,.reveal-line>em,.hero__line>span,.hero__line>em{opacity:1;transform:none}
}

/* ── RTL refinements ── */
html[dir="rtl"] body{font-weight:400}
html[dir="rtl"] .hero__sub,html[dir="rtl"] .works__sub{font-size:1.05rem}

/* ── Responsive ── */
@media (max-width:1080px){
  .nav__links{display:none}
  .nav__burger{display:block}
  .nav__cta{display:none}
  /* Below this width the burger is the only way to navigate, and every device
     that shows it is touch-driven, so it needs a full 44px target. */
  .nav__burger{width:44px;height:44px}
  .nav__burger span{left:5px;width:34px}
  .nav__burger span:first-child{top:17px}
  .nav__burger span:last-child{top:26px}
  .nav__burger.open span:first-child,.nav__burger.open span:last-child{top:21px}
  .nav__lang{min-height:44px;padding:.5em .7em}
  .footer__top,.begin__alt{min-height:44px;display:inline-flex;align-items:center}
  .scope{grid-template-columns:1fr}
  .consult{grid-template-columns:1fr}
  .consult__media{min-height:380px}
  .founder-teaser{grid-template-columns:1fr}
  .founder-teaser__media{min-height:70vw}
  .fhero{grid-template-columns:1fr}
  .fhero__media{min-height:80vw;order:-1}
  .fstory{grid-template-columns:1fr}
  .fstory__title{position:static}
  .fbeliefs__grid{grid-template-columns:1fr;gap:2rem}
  .manifesto__cols{grid-template-columns:1fr;gap:1.6rem}
  .manifesto__facts{grid-template-columns:1fr;gap:2rem}
  .project__grid{grid-template-columns:repeat(2,1fr)}
  .project__foot{grid-template-columns:1fr;gap:1.6rem}
  .journal__grid{grid-template-columns:1fr}
  .voices__stage{min-height:22rem}
  .sroom__list{grid-template-columns:1fr 1fr;column-gap:2.4rem}
  .sroom__item{border-inline-end:none;border-bottom:1px solid var(--line);padding-inline:0}
  .sroom__item:last-child{border-bottom:none}
  .begin__form{grid-template-columns:1fr}
  .footer__cols{grid-template-columns:repeat(2,1fr);gap:2.2rem}
  .step{grid-template-columns:4.2rem 1fr;gap:1.2rem}
}
@media (max-width:560px){
  .room{width:82vw}
  .hero__actions .btn{width:100%}
  .project__grid{grid-template-columns:1fr}
  .footer__cols{grid-template-columns:1fr}
  .trusted__logos{grid-template-columns:repeat(2,1fr)}
  .sroom__list{grid-template-columns:1fr}
}

/* ── Handheld legibility (phones + iPad portrait) ──
   The rem scale is tuned for a desk, where secondary copy is read at arm's length.
   On anything held in the hand those same values land at 10-15px and read as fine
   print. Lift body copy to the 16px floor and keep eyebrows above ~11.5px, without
   flattening the hierarchy the design depends on. Sizes only, so no layout moves. */
@media (max-width:900px){
  .manifesto__cols p,.trusted__sub,.works__sub,.fmap__sub,.journey__sub,
  .project__desc,.project__meta dd,.step__body p,.scope__list li,.scope__list p,
  .consult__lead,.consult__points li,.jcard__desc,.sroom__lead,.sroom__item p,
  .room__label p,.founder-teaser__meta,.footer__col a,.footer__col span,
  .fstory p,.fbeliefs__grid p{font-size:1rem;line-height:1.62}
  .fact__label,.consult__fine,.sroom__fine,.begin__alt,.voice footer span,
  .footer__base,.footer__base span{font-size:.92rem}
  .section-index,.hero__kicker,.hero__meta,.walk__hint,.project__loc,.project__caption,
  .project__grid--film figcaption,.project__meta dt,.jcard__tag,.jcard__link,
  .scope__badge,.scope__list .n,.field label,
  .fhero__kicker,.fhero__roles,.footer__col h4{font-size:.72rem}
  /* Controls need a real 44px target, not just a legible label. */
  .btn{font-size:.78rem;letter-spacing:.16em;padding:1.1em 2em;min-height:44px}
  .nav__lang{font-size:.95rem}
  .footer__top{font-size:.92rem;min-height:44px;display:inline-flex;align-items:center}
  .begin__alt{display:inline-flex;align-items:center;min-height:44px}

  /* Arabic needs its own floor: the RTL rules outrank the selectors above on
     specificity, and Arabic letterforms carry more detail than Latin, so they
     need a little more size to stay readable at the same distance. */
  html[dir="rtl"] .section-index,html[dir="rtl"] .hero__kicker,html[dir="rtl"] .hero__meta,
  html[dir="rtl"] .walk__hint,html[dir="rtl"] .project__loc,html[dir="rtl"] .project__caption,
  html[dir="rtl"] .project__grid--film figcaption,html[dir="rtl"] .project__meta dt,
  html[dir="rtl"] .jcard__tag,html[dir="rtl"] .jcard__link,html[dir="rtl"] .scope__badge,
  html[dir="rtl"] .field label,html[dir="rtl"] .fhero__kicker,html[dir="rtl"] .fhero__roles,
  html[dir="rtl"] .footer__col h4{font-size:.95rem}
  html[dir="rtl"] .btn{font-size:.98rem}
}

/* ── Map on handhelds ──
   The SVG scales with its container, so by ~1000px the city labels are under 10px
   and by phone width about 4px: unreadable, which defeats the point of the pins.
   Below this the map reads as a constellation and the places are named in real type. */
@media (max-width:1000px){
  .fmap__canvas .pin text{display:none}
  .fmap__legend{display:grid;gap:1.6rem;margin-top:2.2rem;max-width:44rem}
  .fmap__legend h3{
    font-family:'Montserrat',sans-serif;font-size:.72rem;letter-spacing:.26em;
    text-transform:uppercase;color:var(--grey);font-weight:600;margin-bottom:.7rem;
  }
  html[dir="rtl"] .fmap__legend h3{font-family:var(--sans);letter-spacing:.02em;text-transform:none;font-size:.95rem}
  .fmap__legend ul{list-style:none;display:flex;flex-wrap:wrap;gap:.3rem .55rem}
  .fmap__legend li{font-size:1rem;color:var(--ink-2);font-weight:400}
  .fmap__legend li:not(:last-child)::after{content:"·";color:var(--grey-2);margin-inline-start:.55rem}
  .fmap__legend .fmap__legend-group:first-child li{color:var(--ink);font-weight:500}
}
