<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:media="http://search.yahoo.com/mrss/"
	
	>

<channel>
	<title>Jimmy Owen Jones</title>
	<link>https://jimmyowenjones.com</link>
	<description>Jimmy Owen Jones</description>
	<pubDate>Thu, 19 Mar 2026 11:13:04 +0000</pubDate>
	<generator>https://jimmyowenjones.com</generator>
	<language>en</language>
	
		
	<item>
		<title>HOME</title>
				
		<link>https://jimmyowenjones.com/HOME-1</link>

		<pubDate>Fri, 27 Feb 2026 12:31:18 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/HOME-1</guid>

		<description>-
Rolling Stones — In The Stars. Directed by François Rousselet




  
  
    
  

  
  
    
  

  
  
    
    
  


  
    
  

  
  
    
  

  
  
    
    
  

  
  
    
  

  
  
    
    
  

  
  
    
    
  

  
  
    
    
    
    
  




  #click-catcher { cursor: default !important; }



(function () {
  'use strict';

  var SLIDE_DURATION  = 10000;
  var TRANSITION_MS   = 600;
  var slides          = Array.prototype.slice.call(document.querySelectorAll('.joj-slide'));
  var caption         = document.getElementById('slide-caption');
  var catcher         = document.getElementById('click-catcher');
  var current         = 0;
  var timer           = null;
  var isTransitioning = false;

  if (!slides.length) return;

  /* Force clean state — remove any active class Cargo may have injected */
  slides.forEach(function(s) { s.classList.remove('active'); });
  slides[0].classList.add('active');

  function loadVideo(slide) {
    if (slide.getAttribute('data-loaded')) return;
    var src   = slide.getAttribute('data-src');
    var title = slide.getAttribute('data-title') &#124;&#124; '';
    if (!src) return;
    var wrapper = slide.querySelector('.video-wrapper');
    if (!wrapper) return;
    var iframe = document.createElement('iframe');
    iframe.src             = src;
    iframe.title           = title;
    iframe.allow           = 'autoplay; fullscreen';
    iframe.allowFullscreen = true;
    wrapper.appendChild(iframe);
    slide.setAttribute('data-loaded', '1');
  }

  function showSlide(index) {
    if (isTransitioning) return;
    isTransitioning = true;
    slides[current].classList.remove('active');
    current = ((index % slides.length) + slides.length) % slides.length;
    slides[current].classList.add('active');
    loadVideo(slides[current]);
    var nextIndex = ((current + 1) % slides.length);
    loadVideo(slides[nextIndex]);
    if (caption) {
      caption.classList.remove('visible');
      setTimeout(function () {
        caption.textContent = slides[current].getAttribute('data-caption') &#124;&#124; '';
        caption.classList.add('visible');
      }, TRANSITION_MS / 2);
    }
    setTimeout(function () { isTransitioning = false; }, TRANSITION_MS);
  }

  function startTimer() {
    clearInterval(timer);
    timer = setInterval(function () { showSlide(current + 1); }, SLIDE_DURATION);
  }

  function goNext() { showSlide(current + 1); startTimer(); }
  function goPrev() { showSlide(current - 1); startTimer(); }

  document.addEventListener('joj-slide-click', function (e) {
    if (e.detail.x &#60; e.detail.width / 3) { goPrev(); } else { goNext(); }
  });

  if (catcher) {
    catcher.addEventListener('click', function (e) {
      if (e.clientX &#60; window.innerWidth / 3) { goPrev(); } else { goNext(); }
    });
  }

  var touchStartX = null;
  document.addEventListener('touchstart', function (e) {
    touchStartX = e.touches[0].clientX;
  }, { passive: true });
  document.addEventListener('touchend', function (e) {
    if (touchStartX === null) return;
    var dx = e.changedTouches[0].clientX - touchStartX;
    touchStartX = null;
    if (Math.abs(dx) &#60; 40) return;
    if (dx &#60; 0) { goNext(); } else { goPrev(); }
  }, { passive: true });

  document.addEventListener('keydown', function (e) {
    if (e.key === 'ArrowLeft')  goPrev();
    if (e.key === 'ArrowRight') goNext();
  });

  loadVideo(slides[0]);
  loadVideo(slides[1]);

  if (caption) {
    caption.textContent = slides[0].getAttribute('data-caption') &#124;&#124; '';
    setTimeout(function () { caption.classList.add('visible'); }, 200);
  }

  document.body.classList.add('page-HOME');
  startTimer();

})();
</description>
		
	</item>
		
		
	<item>
		<title>ABOUT</title>
				
		<link>https://jimmyowenjones.com/ABOUT</link>

		<pubDate>Fri, 31 Oct 2025 09:06:46 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/ABOUT</guid>

		<description>
::-webkit-scrollbar { width: 0; }
* { scrollbar-width: none; }
c-link, c-link-set, .c-link, #page-nav, .page-nav { display: none !important; }

html, body {
  background: #fff !important;
  color: #000 !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.about-outer,
.about-outer * {
  text-transform: none !important;
  font-family: Helvetica, Arial, sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.7 !important;
  color: #000 !important;
}

.about-outer {
  padding-top: 60px;
  padding-bottom: 80px;
  min-height: 100vh;
  background: #fff;
  width: 100%;
}

.about-wrap {
  display: grid !important;
  grid-template-columns: 340px 1fr !important;
  gap: 100px !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 40px 40px 0 40px !important;
  align-items: start !important;
  width: 100% !important;
}

.about-image {
  position: sticky !important;
  top: 60px !important;
  width: 340px !important;
}

.about-image img,
.about-image figure,
.about-image .cargo-image,
.about-image [class*="image"],
.about-image [class*="image"] img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  max-width: 100% !important;
}

.about-text {
  min-width: 0 !important;
}

.about-text p {
  margin: 0 0 20px 0 !important;
}

.about-text h3 {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin: 30px 0 6px 0 !important;
  border-top: 1px solid rgba(0,0,0,0.15) !important;
  padding-top: 10px !important;
  text-align: left !important;
}

.about-text h3:first-of-type {
  border-top: none !important;
  margin-top: 0 !important;
}

.about-text h3.centred {
  text-align: center !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin: 30px 0 6px 0 !important;
  border-top: 1px solid rgba(0,0,0,0.15) !important;
  padding-top: 10px !important;
}

.about-outer a {
  color: #000 !important;
  text-decoration: none !important;
}

.about-outer a:hover {
  color: #C8401E !important;
}

.contact-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  margin-bottom: 20px !important;
  align-items: flex-start !important;
}

.contact-list a,
.contact-list span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  width: auto !important;
}

.imdb-button {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  font-weight: 400 !important;
  text-transform: none !important;
  color: #000 !important;
  border: none !important;
  padding: 0 !important;
  text-decoration: none !important;
  background: transparent !important;
}

.imdb-button:hover {
  color: #C8401E !important;
  background: transparent !important;
}

.wpa-link {
  color: #555 !important;
  display: block !important;
  margin-bottom: 16px !important;
  text-decoration: none !important;
  text-align: center !important;
}

.wpa-link:hover {
  color: #C8401E !important;
}

.agent-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin-top: 4px !important;
  text-align: center !important;
}

.agent-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 3px !important;
}

.agent-name {
  font-weight: 700 !important;
  text-transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
}

.agent-name svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.agent-role {
  color: #555 !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

.agent-email {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  margin-top: 2px !important;
  color: #000 !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.agent-email svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.agent-email:hover {
  color: #C8401E !important;
}

.arrows-section {
  border-top: 1px solid rgba(0,0,0,0.15) !important;
  padding-top: 10px !important;
  margin-top: 30px !important;
  margin-bottom: 0 !important;
  font-weight: 700 !important;
}

#joj-nav .nav-item,
#joj-nav .nav-link,
#joj-nav .nav-contact,
#joj-nav .contact-label,
#joj-nav .contact-email {
  color: #000 !important;
}

#joj-nav .nav-link:hover {
  color: #C8401E !important;
}

#joj-nav .nav-item.nav-active,
#joj-nav .nav-link.nav-active {
  color: #C8401E !important;
}

@media (max-width: 768px) {
  .about-wrap {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 20px 20px 0 20px !important;
  }

  .about-image {
    position: static !important;
    width: 100% !important;
    max-width: 280px !important;
  }

  .about-outer {
    padding-top: 64px !important;
  }

  .agent-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}



  

    
&#38;nbsp;&#60;img width="3717" height="5576" width_o="3717" height_o="5576" data-src="https://freight.cargo.site/t/original/i/ef995c6187240eb1dd86c63503b1351f238d6764c03d32774534264f4ad40823/Jimmy-Jones-Black-and-White.jpg" data-mid="240102245" border="0" data-scale="22" src="https://freight.cargo.site/w/1000/i/ef995c6187240eb1dd86c63503b1351f238d6764c03d32774534264f4ad40823/Jimmy-Jones-Black-and-White.jpg" /&#62;
    

    

      

      Brands
      Adidas, Agolde, Aries, Burberry, COS, Code 8, De Beers, Dyson, E45, Farfetch, Gentle Monster, Gucci, H&#38;amp;M, Harrods, John Lewis, Lacoste, Lumine, Maison Margiela, Meta, Microsoft, Mulberry, Net-a-Porter, New Balance, Nike, No7, The North Face, Olivia von Halle, Paul Smith, Puma, Samsung, Swarovski, Y-3, Zara.

      Publications
      Another, British Vogue, Dazed, FTHTI, i-D.

      Contact
      
        
          
            
            
          
          info@jimmyowenjones.com
        
        Models.com
        IMDbRepresented by WPA
      wp-a.co.uk

      

        
          
            
              
              
            
            Estere Sulca
          
          Agent
          
            
              
              
            
            estere@wp-a.co.uk
          
        

        
          
            
              
              
            
            Léa Robert-Patterson
          
          Commercials Agent
          
            
              
              
            
            lea@wp-a.co.uk
          
        

        
          
            
              
              
            
            Barnaby Laws
          
          Features &#38;amp; TV
          
            
              
              
            
            barnaby@wp-a.co.uk
          

        

      

      
        CRAFT JURY MEMBER — BRITISH ARROWS 2026
        britisharrows.com
      

    
  
</description>
		
	</item>
		
		
	<item>
		<title>Eartheater</title>
				
		<link>https://jimmyowenjones.com/Eartheater</link>

		<pubDate>Thu, 19 Mar 2026 11:13:04 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/Eartheater</guid>

		<description>
  
EARTHEATER ALBUM ART

  Makeup &#38;amp; Prosthetics Designer


  Photographer: Daniel Sannwald


  Hair: Soichi Inagaki


  Production: Dtouch London



  &#60;img width="500" height="500" width_o="500" height_o="500" data-src="https://freight.cargo.site/t/original/i/1a5ab50551d8f334200b2bbc74340194fb0ac4a012846c1fa44f62f7e510f0fa/artworks-9cfIfTqFHbYbce9m-JtvxMg-t500x500.jpg" data-mid="246293750" border="0" data-scale="100" src="https://freight.cargo.site/w/500/i/1a5ab50551d8f334200b2bbc74340194fb0ac4a012846c1fa44f62f7e510f0fa/artworks-9cfIfTqFHbYbce9m-JtvxMg-t500x500.jpg" /&#62;

  
    &#60;img width="1000" height="1000" width_o="1000" height_o="1000" data-src="https://freight.cargo.site/t/original/i/bca9c8d2a96a199a2e1bcc6a763fa4b83f30f4a1f89d7b46bea401d6374bacd8/229b16d81660c143b7e2847193baa7bd.1000x1000x1.png" data-mid="246293723" border="0" data-scale="53" src="https://freight.cargo.site/w/1000/i/bca9c8d2a96a199a2e1bcc6a763fa4b83f30f4a1f89d7b46bea401d6374bacd8/229b16d81660c143b7e2847193baa7bd.1000x1000x1.png" /&#62;
    &#60;img width="881" height="881" width_o="881" height_o="881" data-src="https://freight.cargo.site/t/original/i/42f210dc3d93cf7133a567e8d04a1e9b89ac8cf6f6a86d1edf046057637cc1df/tumblr_18f5ce55b279c833a5be20b6d83d87e1_4136e8ed_1280.png" data-mid="246293786" border="0" data-scale="53" src="https://freight.cargo.site/w/881/i/42f210dc3d93cf7133a567e8d04a1e9b89ac8cf6f6a86d1edf046057637cc1df/tumblr_18f5ce55b279c833a5be20b6d83d87e1_4136e8ed_1280.png" /&#62;
  

  &#60;img width="1024" height="1024" width_o="1024" height_o="1024" data-src="https://freight.cargo.site/t/original/i/468e3a2ceb23df89b81b40fbd38c1f4235bd7e215c08ebc70f1cf81f162612e7/95949820_10158414631862384_3460642462500913152_o-1024x1024.jpg" data-mid="246293721" border="0" data-scale="53" src="https://freight.cargo.site/w/1000/i/468e3a2ceb23df89b81b40fbd38c1f4235bd7e215c08ebc70f1cf81f162612e7/95949820_10158414631862384_3460642462500913152_o-1024x1024.jpg" /&#62;

  &#60;img width="1200" height="850" width_o="1200" height_o="850" data-src="https://freight.cargo.site/t/original/i/739bffd04daf9ea0abbe1a8f58063252e5012256a170ecf8804dd4b7a480a2af/0021214107_10.jpg" data-mid="246293706" border="0" data-scale="71" src="https://freight.cargo.site/w/1000/i/739bffd04daf9ea0abbe1a8f58063252e5012256a170ecf8804dd4b7a480a2af/0021214107_10.jpg" /&#62;

  &#60;img width="1644" height="1648" width_o="1644" height_o="1648" data-src="https://freight.cargo.site/t/original/i/d562de82e045c3bd7089b0a379671715928ed01cc33fe82298b04afd16a22cd6/Screenshot-2025-08-04-at-10.26.53.png" data-mid="246293687" border="0" data-scale="75" src="https://freight.cargo.site/w/1000/i/d562de82e045c3bd7089b0a379671715928ed01cc33fe82298b04afd16a22cd6/Screenshot-2025-08-04-at-10.26.53.png" /&#62;
</description>
		
	</item>
		
		
	<item>
		<title>Gentle Monster </title>
				
		<link>https://jimmyowenjones.com/Gentle-Monster</link>

		<pubDate>Mon, 23 Feb 2026 12:26:11 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/Gentle-Monster</guid>

		<description>
  

GENTAL MONSTER

  Makeup Designer


  Photographer: BC Founder Jonas Hegi

 
  
  Production: Builders Club&#38;nbsp;

Worked with Korean eyewear brand Gentle Monster to create this futuristic installation for their retail experience. In the center of the room, you can see two robot astronauts contemplate about the future of humanity. Surrounding them, are five video portraits of future mars humans. Each of those future humans has one of the following themes: Light, Sand, Technology, Metal, and Water.



&#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/0c432bc580b00a902995609e50e95b16b24895b8e2f74a83b81c3fee6b3ec13d/3-4-2.jpg" data-mid="246295864" border="0"  src="https://freight.cargo.site/w/1000/i/0c432bc580b00a902995609e50e95b16b24895b8e2f74a83b81c3fee6b3ec13d/3-4-2.jpg" /&#62;
&#60;img width="1152" height="1536" width_o="1152" height_o="1536" data-src="https://freight.cargo.site/t/original/i/86a9f59b916be94c0e1e6fa25acf938bf583bb792e410ed74e179678ebea464d/5-4-1152x1536-2.jpg" data-mid="246295877" border="0"  src="https://freight.cargo.site/w/1000/i/86a9f59b916be94c0e1e6fa25acf938bf583bb792e410ed74e179678ebea464d/5-4-1152x1536-2.jpg" /&#62;
&#60;img width="1440" height="1920" width_o="1440" height_o="1920" data-src="https://freight.cargo.site/t/original/i/be72667e76dd0d1fb8da8269d73d321fa0076cf2065d0ee7873a4f9026cef504/9-4.jpg" data-mid="246295876" border="0"  src="https://freight.cargo.site/w/1000/i/be72667e76dd0d1fb8da8269d73d321fa0076cf2065d0ee7873a4f9026cef504/9-4.jpg" /&#62;
&#60;img width="1152" height="1536" width_o="1152" height_o="1536" data-src="https://freight.cargo.site/t/original/i/6c37c59097db67a12498610abfd6ab3a098c3d02e278b9893ff2325b15b6f04a/1-4-1152x1536-2.jpg" data-mid="246295860" border="0"  src="https://freight.cargo.site/w/1000/i/6c37c59097db67a12498610abfd6ab3a098c3d02e278b9893ff2325b15b6f04a/1-4-1152x1536-2.jpg" /&#62;



&#60;img width="1920" height="1157" width_o="1920" height_o="1157" data-src="https://freight.cargo.site/t/original/i/abcd7bc83410d2b5ef0ff10c2efa0ba2c343d5e08a995acfcc4deffdc9810e2a/space_3.jpg" data-mid="246295810" border="0"  src="https://freight.cargo.site/w/1000/i/abcd7bc83410d2b5ef0ff10c2efa0ba2c343d5e08a995acfcc4deffdc9810e2a/space_3.jpg" /&#62;&#60;img width="1920" height="1157" width_o="1920" height_o="1157" data-src="https://freight.cargo.site/t/original/i/a43ee537358acf7dbb3fbf2d68243b93b38521f37039b7ef3b6e45d82772081f/space_2.jpg" data-mid="246295811" border="0"  src="https://freight.cargo.site/w/1000/i/a43ee537358acf7dbb3fbf2d68243b93b38521f37039b7ef3b6e45d82772081f/space_2.jpg" /&#62;</description>
		
	</item>
		
		
	<item>
		<title>FT ZINE X THEO WHITE</title>
				
		<link>https://jimmyowenjones.com/FT-ZINE-X-THEO-WHITE</link>

		<pubDate>Tue, 24 Sep 2024 12:02:27 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/FT-ZINE-X-THEO-WHITE</guid>

		<description>
  

FT ZINE X THEO WHITE 

  Makeup Artist&#38;nbsp;
  Photographer: Daniel Sannwald
&#60;img width="3648" height="5160" width_o="3648" height_o="5160" data-src="https://freight.cargo.site/t/original/i/825ff71a8cdeb359a8ed1ad5c848f3240213021e8925fcaf8ef8fa2ae3da8aa8/01.jpg" data-mid="218588344" border="0" data-scale="74" src="https://freight.cargo.site/w/1000/i/825ff71a8cdeb359a8ed1ad5c848f3240213021e8925fcaf8ef8fa2ae3da8aa8/01.jpg" /&#62;&#60;img width="3648" height="5159" width_o="3648" height_o="5159" data-src="https://freight.cargo.site/t/original/i/58762bf54b12f9508d39e5119a64b4af4cd2c43693d5bfd5a968923dce4c6205/02.jpg" data-mid="218588343" border="0" data-scale="78" src="https://freight.cargo.site/w/1000/i/58762bf54b12f9508d39e5119a64b4af4cd2c43693d5bfd5a968923dce4c6205/02.jpg" /&#62;</description>
		
	</item>
		
		
	<item>
		<title>Jamie Hawksworth / ZARA</title>
				
		<link>https://jimmyowenjones.com/Jamie-Hawksworth-ZARA</link>

		<pubDate>Mon, 23 Sep 2024 15:20:03 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/Jamie-Hawksworth-ZARA</guid>

		<description>
  


ZARA OREGINS CAMPAIGN
  Photographer: Jamie Hawksworth

  Art Director: Nacho Torra

  Production: CAP Dept.




&#60;img width="3606" height="4556" width_o="3606" height_o="4556" data-src="https://freight.cargo.site/t/original/i/cf28ddaca6070b39b7fe8181d4c3688c891fff6cd119defc9a5d9eea48354306/Zara_Origins_Print_76_RGB.jpg" data-mid="218541823" border="0"  src="https://freight.cargo.site/w/1000/i/cf28ddaca6070b39b7fe8181d4c3688c891fff6cd119defc9a5d9eea48354306/Zara_Origins_Print_76_RGB.jpg" /&#62;
&#60;img width="3690" height="4604" width_o="3690" height_o="4604" data-src="https://freight.cargo.site/t/original/i/fbf8f2a5602547f3ec1273ec5f539b9b4e4564f100cae77a69db4e2cb18f54cd/Zara_Origins_Print_63_RGB.jpg" data-mid="218541829" border="0"  src="https://freight.cargo.site/w/1000/i/fbf8f2a5602547f3ec1273ec5f539b9b4e4564f100cae77a69db4e2cb18f54cd/Zara_Origins_Print_63_RGB.jpg" /&#62;
&#60;img width="2904" height="3612" width_o="2904" height_o="3612" data-src="https://freight.cargo.site/t/original/i/11ead349e6820b51ceeb2516eeb9d5b70cb49e9a51eaa6ef39d467d059c85b5d/Zara_Origins_Print_23_RGB.jpg" data-mid="218541828" border="0"  src="https://freight.cargo.site/w/1000/i/11ead349e6820b51ceeb2516eeb9d5b70cb49e9a51eaa6ef39d467d059c85b5d/Zara_Origins_Print_23_RGB.jpg" /&#62;
&#60;img width="3633" height="2886" width_o="3633" height_o="2886" data-src="https://freight.cargo.site/t/original/i/57b59afdf4e9b958cd38b880ba3d60adca236a353e89677d32f5faeb27324ed0/Zara_Origins_Print_20_RGB.jpg" data-mid="218541827" border="0"  src="https://freight.cargo.site/w/1000/i/57b59afdf4e9b958cd38b880ba3d60adca236a353e89677d32f5faeb27324ed0/Zara_Origins_Print_20_RGB.jpg" /&#62;
&#60;img width="3104" height="3850" width_o="3104" height_o="3850" data-src="https://freight.cargo.site/t/original/i/31eec8d8c47b2c5313cd4db8256e5258e993ce085feee7356335a953aa66dc97/Zara_Origins_Print_46_RGB.jpg" data-mid="218541836" border="0"  src="https://freight.cargo.site/w/1000/i/31eec8d8c47b2c5313cd4db8256e5258e993ce085feee7356335a953aa66dc97/Zara_Origins_Print_46_RGB.jpg" /&#62;
&#60;img width="3672" height="4589" width_o="3672" height_o="4589" data-src="https://freight.cargo.site/t/original/i/9364c1eb494558fdf35f86f61b72413a9acb6bbec309d0dce51a2190fd7c68f5/Zara_Origins_Print_54_RGB.jpg" data-mid="218541830" border="0"  src="https://freight.cargo.site/w/1000/i/9364c1eb494558fdf35f86f61b72413a9acb6bbec309d0dce51a2190fd7c68f5/Zara_Origins_Print_54_RGB.jpg" /&#62;
&#60;img width="3655" height="4598" width_o="3655" height_o="4598" data-src="https://freight.cargo.site/t/original/i/af142e0ba89f0070da8b810c8e23d6be72eec9c3d5641768bee60a3945112d1c/Zara_Origins_Print_52_RGB.jpg" data-mid="218541831" border="0"  src="https://freight.cargo.site/w/1000/i/af142e0ba89f0070da8b810c8e23d6be72eec9c3d5641768bee60a3945112d1c/Zara_Origins_Print_52_RGB.jpg" /&#62;
&#60;img width="3072" height="3867" width_o="3072" height_o="3867" data-src="https://freight.cargo.site/t/original/i/d4d43634edd0c796077f80cf4e503bda4f24248e9cba815984b691a30cd7576f/Zara_Origins_Print_79_RGB.jpg" data-mid="218541833" border="0"  src="https://freight.cargo.site/w/1000/i/d4d43634edd0c796077f80cf4e503bda4f24248e9cba815984b691a30cd7576f/Zara_Origins_Print_79_RGB.jpg" /&#62;
&#60;img width="3092" height="3850" width_o="3092" height_o="3850" data-src="https://freight.cargo.site/t/original/i/29cb90f962fb07c2ea6f19c3e61683777d6bdb65f508b33ed238e69fa3e6f71e/Zara_Origins_Print_3_RGB.jpg" data-mid="218541837" border="0"  src="https://freight.cargo.site/w/1000/i/29cb90f962fb07c2ea6f19c3e61683777d6bdb65f508b33ed238e69fa3e6f71e/Zara_Origins_Print_3_RGB.jpg" /&#62;
&#60;img width="3062" height="3845" width_o="3062" height_o="3845" data-src="https://freight.cargo.site/t/original/i/22808b59235674f816b0de2c1bf7922887d15ded8fcf84eca3a665a6a5ea90f6/Zara_Origins_Print_6_RGB.jpg" data-mid="218541825" border="0"  src="https://freight.cargo.site/w/1000/i/22808b59235674f816b0de2c1bf7922887d15ded8fcf84eca3a665a6a5ea90f6/Zara_Origins_Print_6_RGB.jpg" /&#62;
&#60;img width="3119" height="3848" width_o="3119" height_o="3848" data-src="https://freight.cargo.site/t/original/i/fdaf0749ede0fd75229834d583fa48a10913ec27a5a3cac2c7df805445355aa0/Zara_Origins_Print_51_RGB.jpg" data-mid="218541835" border="0"  src="https://freight.cargo.site/w/1000/i/fdaf0749ede0fd75229834d583fa48a10913ec27a5a3cac2c7df805445355aa0/Zara_Origins_Print_51_RGB.jpg" /&#62;
&#60;img width="3721" height="4607" width_o="3721" height_o="4607" data-src="https://freight.cargo.site/t/original/i/63a4bcbefb9b0236de5a7d4c8d599f94fc5209aaa5fba95443e54ce88f0b6dee/Zara_Origins_Print_59_RGB.jpg" data-mid="218541826" border="0"  src="https://freight.cargo.site/w/1000/i/63a4bcbefb9b0236de5a7d4c8d599f94fc5209aaa5fba95443e54ce88f0b6dee/Zara_Origins_Print_59_RGB.jpg" /&#62;
&#60;img width="3672" height="4583" width_o="3672" height_o="4583" data-src="https://freight.cargo.site/t/original/i/452bd2ab3d7789d1ea04d1f3f6410f8bab60f2dcb5a27d77899b51c0fc7fcb79/Zara_Origins_Print_53_RGB.jpg" data-mid="218541834" border="0"  src="https://freight.cargo.site/w/1000/i/452bd2ab3d7789d1ea04d1f3f6410f8bab60f2dcb5a27d77899b51c0fc7fcb79/Zara_Origins_Print_53_RGB.jpg" /&#62;
&#60;img width="3164" height="3878" width_o="3164" height_o="3878" data-src="https://freight.cargo.site/t/original/i/40f4821740b737a6ba26c37ff4504a0c6f27b8661d0fa631ddb1de9bbed31e2c/Zara_Origins_Print_78_RGB.jpg" data-mid="218541832" border="0"  src="https://freight.cargo.site/w/1000/i/40f4821740b737a6ba26c37ff4504a0c6f27b8661d0fa631ddb1de9bbed31e2c/Zara_Origins_Print_78_RGB.jpg" /&#62;



  .project-credits {
    text-align: center;
    margin-bottom: 3rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
  }

  .publication {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .credit {
    font-size: 0.8rem;
    margin: 0.25rem 0;
    opacity: 0.85;
  }
</description>
		
	</item>
		
		
	<item>
		<title>De Beer - London </title>
				
		<link>https://jimmyowenjones.com/De-Beer-London</link>

		<pubDate>Wed, 23 Jul 2025 08:44:53 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/De-Beer-London</guid>

		<description>
  
DE BEERS
  Photographer: Paul Scala
  Creative Director: Richard Pang
  Senior Art Director: Elizabeth Jane Bishop
  Stylist: Naomi Miller
  Executive Producer: James Hazlett-Beard



&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/ff6722183e774d241e5d7df95d9c1758d05519cb8aa4cb29fe52ab045bf3656c/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_10_096_sRGB_F1.jpg" data-mid="236771908" border="0"  src="https://freight.cargo.site/w/1000/i/ff6722183e774d241e5d7df95d9c1758d05519cb8aa4cb29fe52ab045bf3656c/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_10_096_sRGB_F1.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/0190c1f9fd3cde95830e1db17aa01bac21ee456b9ea2900515650769e150f346/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_11_114_sRGB_F1.jpg" data-mid="236771899" border="0"  src="https://freight.cargo.site/w/1000/i/0190c1f9fd3cde95830e1db17aa01bac21ee456b9ea2900515650769e150f346/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_11_114_sRGB_F1.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/faf025e7d17ff8dcff55f19e6c4867a6ceac4c7851870a26bffa67ac20dcd35e/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_03_217_sRGB_F1.jpg" data-mid="236771900" border="0"  src="https://freight.cargo.site/w/1000/i/faf025e7d17ff8dcff55f19e6c4867a6ceac4c7851870a26bffa67ac20dcd35e/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_03_217_sRGB_F1.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/23bb9923e418f8f134387a490bf8f22b74558955377e82a3e5fede19a1d87581/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_09_094_sRGB_F1.jpg" data-mid="236771904" border="0"  src="https://freight.cargo.site/w/1000/i/23bb9923e418f8f134387a490bf8f22b74558955377e82a3e5fede19a1d87581/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_09_094_sRGB_F1.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/ca482b1a6bfa48da34a095df3a6f54c03912ae7efcab69d0f00d0ed0e56af6e6/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_05_022_sRGB_F1.jpg" data-mid="236771901" border="0"  src="https://freight.cargo.site/w/1000/i/ca482b1a6bfa48da34a095df3a6f54c03912ae7efcab69d0f00d0ed0e56af6e6/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_05_022_sRGB_F1.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/32059fc3b985c70d44caf37cb1d2542a9793c54cce3fea26aa8b741b9fc5bcd4/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_08_069_sRGB_F1.jpg" data-mid="236771907" border="0"  src="https://freight.cargo.site/w/1000/i/32059fc3b985c70d44caf37cb1d2542a9793c54cce3fea26aa8b741b9fc5bcd4/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_08_069_sRGB_F1.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/fe68d02df4a4ea4c17d450eb8451a62914cad31236ae104f0761008c5dd2d714/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_08_069_sRGB_F1_CROP.jpg" data-mid="236771906" border="0"  src="https://freight.cargo.site/w/1000/i/fe68d02df4a4ea4c17d450eb8451a62914cad31236ae104f0761008c5dd2d714/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_08_069_sRGB_F1_CROP.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/0196f9f6b6405dfd8c2a942452fbeac434694b436e788dd8f2ce19556303af9f/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_02_058_sRGB_F2.jpg" data-mid="236771905" border="0"  src="https://freight.cargo.site/w/1000/i/0196f9f6b6405dfd8c2a942452fbeac434694b436e788dd8f2ce19556303af9f/IMAGINE_AE_DE_BEERS_250603_SCALA_DEBEERS_ADIF_02_058_sRGB_F2.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/2a53cb62bc5cf4936ea6f343e4016fbf8f02bc175739c13c13ba07823ffed67a/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_07_045_sRGB_F1.jpg" data-mid="236771903" border="0"  src="https://freight.cargo.site/w/1000/i/2a53cb62bc5cf4936ea6f343e4016fbf8f02bc175739c13c13ba07823ffed67a/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_07_045_sRGB_F1.jpg" /&#62;
&#60;img width="2400" height="3000" width_o="2400" height_o="3000" data-src="https://freight.cargo.site/t/original/i/dfa96513dd0bb8e0b6150566b54e7e622b902f003bece3906edc2e36a5ad1f78/IMAGINE_AE_DE_BEERS250603_SCALA_DEBEERS_ADIF_09_165_sRGB_F1.jpg" data-mid="236771910" border="0"  src="https://freight.cargo.site/w/1000/i/dfa96513dd0bb8e0b6150566b54e7e622b902f003bece3906edc2e36a5ad1f78/IMAGINE_AE_DE_BEERS250603_SCALA_DEBEERS_ADIF_09_165_sRGB_F1.jpg" /&#62;
&#60;img width="2250" height="3000" width_o="2250" height_o="3000" data-src="https://freight.cargo.site/t/original/i/541844dbdf830743dab6dc4e85e9a5dca6d971e9241376af6e105698d746a560/IMAGINE_AE_DE_BEERS250603_SCALA_DEBEERS_ADIF_01_065_sRGB_F1.jpg" data-mid="236771909" border="0"  src="https://freight.cargo.site/w/1000/i/541844dbdf830743dab6dc4e85e9a5dca6d971e9241376af6e105698d746a560/IMAGINE_AE_DE_BEERS250603_SCALA_DEBEERS_ADIF_01_065_sRGB_F1.jpg" /&#62;
&#60;img width="2250" height="3000" width_o="2250" height_o="3000" data-src="https://freight.cargo.site/t/original/i/48c84387dd95a0ddfb3ce34bbdf1594cadc6432c742de32021699df50e2915de/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_06_020_sRGB_F1.jpg" data-mid="236771902" border="0"  src="https://freight.cargo.site/w/1000/i/48c84387dd95a0ddfb3ce34bbdf1594cadc6432c742de32021699df50e2915de/IMAGINE_AE_DE-BEERS_250603_SCALA_DEBEERS_ADIF_06_020_sRGB_F1.jpg" /&#62;



  .project-credits {
    text-align: center;
    margin-bottom: 3rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
  }

  .publication {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .credit {
    font-size: 0.8rem;
    margin: 0.25rem 0;
    opacity: 0.85;
  }
</description>
		
	</item>
		
		
	<item>
		<title>HTSI</title>
				
		<link>https://jimmyowenjones.com/HTSI-1</link>

		<pubDate>Mon, 23 Feb 2026 09:21:47 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/HTSI-1</guid>

		<description>
  




FINANCIAL TIMES HTSI
  Photographer: Olimpia Taliani &#38;nbsp;
  Stylist: Benjamin Canares
  Hair: Paula McCash
  Nails: Saffron Goddard
  Casting: DM Casting 
  Production: Town Production 
  


&#60;img width="1989" height="3000" width_o="1989" height_o="3000" data-src="https://freight.cargo.site/t/original/i/3e052b06304e02acfe8a24cc69f8318a32727f8fcf04a30ef9d0b2026bfd4e45/FashionMinis_000070350001-copia-3.jpg" data-mid="245213695" border="0"  src="https://freight.cargo.site/w/1000/i/3e052b06304e02acfe8a24cc69f8318a32727f8fcf04a30ef9d0b2026bfd4e45/FashionMinis_000070350001-copia-3.jpg" /&#62;&#60;img width="3000" height="1989" width_o="3000" height_o="1989" data-src="https://freight.cargo.site/t/original/i/156c8c715d7c2e5c982a5a632fd303013a527c82b0d6c47c315d550784c630e6/FashionMinis_000070350002-copia.jpg" data-mid="245213696" border="0"  src="https://freight.cargo.site/w/1000/i/156c8c715d7c2e5c982a5a632fd303013a527c82b0d6c47c315d550784c630e6/FashionMinis_000070350002-copia.jpg" /&#62;&#60;img width="3000" height="1989" width_o="3000" height_o="1989" data-src="https://freight.cargo.site/t/original/i/51df93b102428359dc9eca912b8f74a96541d3f21f7d86de549ff648a995d40c/FashionMinis_000070350003-copia-2.jpg" data-mid="245213697" border="0"  src="https://freight.cargo.site/w/1000/i/51df93b102428359dc9eca912b8f74a96541d3f21f7d86de549ff648a995d40c/FashionMinis_000070350003-copia-2.jpg" /&#62;&#60;img width="3000" height="1989" width_o="3000" height_o="1989" data-src="https://freight.cargo.site/t/original/i/e260b7d8cf68eff2346a66b7f8fc72033be7ef2728da475408077033053429a1/FashionMinis_000070350004-copia-2.jpg" data-mid="245213698" border="0"  src="https://freight.cargo.site/w/1000/i/e260b7d8cf68eff2346a66b7f8fc72033be7ef2728da475408077033053429a1/FashionMinis_000070350004-copia-2.jpg" /&#62;&#60;img width="1989" height="3000" width_o="1989" height_o="3000" data-src="https://freight.cargo.site/t/original/i/a4bc449f5cde9ca0542f5ba8c0d96e6c75e94fcff14b367754139bbd5aa10303/FashionMinis_000070350005-copia-2.jpg" data-mid="245213699" border="0"  src="https://freight.cargo.site/w/1000/i/a4bc449f5cde9ca0542f5ba8c0d96e6c75e94fcff14b367754139bbd5aa10303/FashionMinis_000070350005-copia-2.jpg" /&#62;&#60;img width="1989" height="3000" width_o="1989" height_o="3000" data-src="https://freight.cargo.site/t/original/i/8b1c4c27a50c042a9e8d4306bffc318e7293af40cb308d553d99cd40e1f610ee/FashionMinis_000070350006-copia-3.jpg" data-mid="245213700" border="0"  src="https://freight.cargo.site/w/1000/i/8b1c4c27a50c042a9e8d4306bffc318e7293af40cb308d553d99cd40e1f610ee/FashionMinis_000070350006-copia-3.jpg" /&#62;&#60;img width="1989" height="3000" width_o="1989" height_o="3000" data-src="https://freight.cargo.site/t/original/i/fb8a94224188ad0a55887869a11026e236a7a9aeb1d2e07c51266a19f2a091b4/FashionMinis_000070350008-copia-2.jpg" data-mid="245213701" border="0"  src="https://freight.cargo.site/w/1000/i/fb8a94224188ad0a55887869a11026e236a7a9aeb1d2e07c51266a19f2a091b4/FashionMinis_000070350008-copia-2.jpg" /&#62;</description>
		
	</item>
		
		
	<item>
		<title>COS </title>
				
		<link>https://jimmyowenjones.com/COS</link>

		<pubDate>Fri, 06 Feb 2026 10:24:19 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/COS</guid>

		<description>
  


COS
  Photographer: Jeff Boudreau
  Art Director: Phoebe Sing
  Stylist: Ali Cameron
  Hair: Hiroshi Matsushita
  Set Design:Georgia Currell


 

&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/24636e9a424a63340b84e022e1b20d0e2b981ff3cc2aab8eb6680e8a4cb27a3b/WW_Denim_07.jpg" data-mid="244511772" border="0"  src="https://freight.cargo.site/w/1000/i/24636e9a424a63340b84e022e1b20d0e2b981ff3cc2aab8eb6680e8a4cb27a3b/WW_Denim_07.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/db4cf9b3abeea125e315d00611041b2d0752b2afda0eb8edb8117d632d20f592/WW_Denim_11.jpg" data-mid="244511776" border="0"  src="https://freight.cargo.site/w/1000/i/db4cf9b3abeea125e315d00611041b2d0752b2afda0eb8edb8117d632d20f592/WW_Denim_11.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/386af98b46c050c2bb4d15f44a89b4f7709a6e75fc42ef3d3af758ba148aee28/WW_Denim_15.jpg" data-mid="244511771" border="0"  src="https://freight.cargo.site/w/1000/i/386af98b46c050c2bb4d15f44a89b4f7709a6e75fc42ef3d3af758ba148aee28/WW_Denim_15.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/3e6002e828f1db24d20f428ff8f4f61ef8b41f2d392f90f7ec499344dd28ac77/WW_Trousers_07.jpg" data-mid="244511768" border="0"  src="https://freight.cargo.site/w/1000/i/3e6002e828f1db24d20f428ff8f4f61ef8b41f2d392f90f7ec499344dd28ac77/WW_Trousers_07.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/c586f87ac113b62e1fb6ef5aeaa0573ef58a47db6eeef1b6588364bf723c05dd/WW_Knit_04.jpg" data-mid="244511769" border="0"  src="https://freight.cargo.site/w/1000/i/c586f87ac113b62e1fb6ef5aeaa0573ef58a47db6eeef1b6588364bf723c05dd/WW_Knit_04.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/05e53461586691763cb75e35a9225bcbd295b063908fdc6feff6c9edd7313a67/WW_Knit_05.jpg" data-mid="244511785" border="0"  src="https://freight.cargo.site/w/1000/i/05e53461586691763cb75e35a9225bcbd295b063908fdc6feff6c9edd7313a67/WW_Knit_05.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/45d252829fd7a19041201574fc3d7dbe73ac0469bbcdb0db6433c02344287400/WW_Knit_03.jpg" data-mid="244511770" border="0"  src="https://freight.cargo.site/w/1000/i/45d252829fd7a19041201574fc3d7dbe73ac0469bbcdb0db6433c02344287400/WW_Knit_03.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/1e420435dca97511ae671d15165620f47825b6153eb53a44e5eb932c8f36e7ac/WW_Trousers_04.jpg" data-mid="244511766" border="0"  src="https://freight.cargo.site/w/1000/i/1e420435dca97511ae671d15165620f47825b6153eb53a44e5eb932c8f36e7ac/WW_Trousers_04.jpg" /&#62;
&#60;img width="1080" height="1350" width_o="1080" height_o="1350" data-src="https://freight.cargo.site/t/original/i/731d10a7dcc1c9c2e586e0e6bfe7fd4a87e0a6bd23a448b3b381c6b31fb60274/WW_Trousers_08.jpg" data-mid="244511767" border="0"  src="https://freight.cargo.site/w/1000/i/731d10a7dcc1c9c2e586e0e6bfe7fd4a87e0a6bd23a448b3b381c6b31fb60274/WW_Trousers_08.jpg" /&#62;


</description>
		
	</item>
		
		
	<item>
		<title>NET-A-PORTER RTW 25</title>
				
		<link>https://jimmyowenjones.com/NET-A-PORTER-RTW-25</link>

		<pubDate>Fri, 22 Aug 2025 09:53:19 +0000</pubDate>

		<dc:creator>Jimmy Owen Jones</dc:creator>

		<guid isPermaLink="true">https://jimmyowenjones.com/NET-A-PORTER-RTW-25</guid>

		<description>
  



NET-A-PORTER &#124; Ready to Wear
  Photographer: Georgia Devey Smith
  Art Director: Lizzy Cooney
  Stylist: Kristen Neillie
  Hair: Pål Berdahl
  Set Design: King Owusu



&#60;img width="1080" height="1440" width_o="1080" height_o="1440" data-src="https://freight.cargo.site/t/original/i/9d99a46e01d25a58e6b5f2a4a94d061f492cad482986698f54170319ca478d8b/250709_NAP_14_119_retouch.jpg" data-mid="237477681" border="0"  src="https://freight.cargo.site/w/1000/i/9d99a46e01d25a58e6b5f2a4a94d061f492cad482986698f54170319ca478d8b/250709_NAP_14_119_retouch.jpg" /&#62;
&#60;img width="5464" height="8192" width_o="5464" height_o="8192" data-src="https://freight.cargo.site/t/original/i/d1e1979bbd139b4242eeffe8c18a404b26b7263e0feee70c5fd57c39cafd8da9/250709_NAP_15_003-1_retouch.jpg" data-mid="237331832" border="0"  src="https://freight.cargo.site/w/1000/i/d1e1979bbd139b4242eeffe8c18a404b26b7263e0feee70c5fd57c39cafd8da9/250709_NAP_15_003-1_retouch.jpg" /&#62;
&#60;img width="5464" height="8192" width_o="5464" height_o="8192" data-src="https://freight.cargo.site/t/original/i/3386591464f4f169127db0f3c88df742576297a50a3921649087de7ff50aab93/250709_NAP_05_076-1_retouch.jpg" data-mid="237331818" border="0"  src="https://freight.cargo.site/w/1000/i/3386591464f4f169127db0f3c88df742576297a50a3921649087de7ff50aab93/250709_NAP_05_076-1_retouch.jpg" /&#62;
&#60;img width="2808" height="3743" width_o="2808" height_o="3743" data-src="https://freight.cargo.site/t/original/i/67099427acaae98aaa65385eda5e0b73a1346231aea22aa13d1634b195161762/250709_NAP_10_011-1_retouch.jpg" data-mid="237331823" border="0"  src="https://freight.cargo.site/w/1000/i/67099427acaae98aaa65385eda5e0b73a1346231aea22aa13d1634b195161762/250709_NAP_10_011-1_retouch.jpg" /&#62;
&#60;img width="1080" height="1440" width_o="1080" height_o="1440" data-src="https://freight.cargo.site/t/original/i/5db7cc9c7a1ae9a7eba2e6b70e538555e12d48c0208c944551dd42e9b1a405cf/250709_NAP_03_157_retouch.jpg" data-mid="237477698" border="0"  src="https://freight.cargo.site/w/1000/i/5db7cc9c7a1ae9a7eba2e6b70e538555e12d48c0208c944551dd42e9b1a405cf/250709_NAP_03_157_retouch.jpg" /&#62;
&#60;img width="5301" height="7068" width_o="5301" height_o="7068" data-src="https://freight.cargo.site/t/original/i/63ed0c392b59978623564c9982a3671914d1b613016b0ce72858fa239fb90701/250709_NAP_10_133-1_retouch.jpg" data-mid="237331824" border="0"  src="https://freight.cargo.site/w/1000/i/63ed0c392b59978623564c9982a3671914d1b613016b0ce72858fa239fb90701/250709_NAP_10_133-1_retouch.jpg" /&#62;
&#60;img width="5238" height="7853" width_o="5238" height_o="7853" data-src="https://freight.cargo.site/t/original/i/a3f0b08e77954c2f8075e217922e860b23708ae1221c207e849a5586dc7eacf7/250709_NAP_11_044-1_retouch.jpg" data-mid="237331825" border="0"  src="https://freight.cargo.site/w/1000/i/a3f0b08e77954c2f8075e217922e860b23708ae1221c207e849a5586dc7eacf7/250709_NAP_11_044-1_retouch.jpg" /&#62;
&#60;img width="5464" height="8192" width_o="5464" height_o="8192" data-src="https://freight.cargo.site/t/original/i/4703df4bb2bcc7f0ca1f958c8d7f9e69d90f1a9e06c3f808e8113d201c7cd79b/250709_NAP_12_073-1_retouch.jpg" data-mid="237331827" border="0"  src="https://freight.cargo.site/w/1000/i/4703df4bb2bcc7f0ca1f958c8d7f9e69d90f1a9e06c3f808e8113d201c7cd79b/250709_NAP_12_073-1_retouch.jpg" /&#62;
&#60;img width="5464" height="8192" width_o="5464" height_o="8192" data-src="https://freight.cargo.site/t/original/i/f1b77a0d94b2646d6d14f25e37438483cf1c2d1e9fa4b4d0b4c6ef8621e14ac0/250709_NAP_13_067_retouch.jpg" data-mid="237331829" border="0"  src="https://freight.cargo.site/w/1000/i/f1b77a0d94b2646d6d14f25e37438483cf1c2d1e9fa4b4d0b4c6ef8621e14ac0/250709_NAP_13_067_retouch.jpg" /&#62;
&#60;img width="5286" height="7925" width_o="5286" height_o="7925" data-src="https://freight.cargo.site/t/original/i/b829d88205c06a56f264806fc79aad02c550656f98dd049d4a4e26ec9afc98d5/250709_NAP_04_064-1_retouch.jpg" data-mid="237331817" border="0"  src="https://freight.cargo.site/w/1000/i/b829d88205c06a56f264806fc79aad02c550656f98dd049d4a4e26ec9afc98d5/250709_NAP_04_064-1_retouch.jpg" /&#62;
&#60;img width="5464" height="8192" width_o="5464" height_o="8192" data-src="https://freight.cargo.site/t/original/i/dfb8c287d5ce5f7a8221d3325c274a88aa1fb803a5d2ecaa5f7c1d67b95a7bfe/250709_NAP_06_076_retouch.jpg" data-mid="237331820" border="0"  src="https://freight.cargo.site/w/1000/i/dfb8c287d5ce5f7a8221d3325c274a88aa1fb803a5d2ecaa5f7c1d67b95a7bfe/250709_NAP_06_076_retouch.jpg" /&#62;
&#60;img width="5342" height="8009" width_o="5342" height_o="8009" data-src="https://freight.cargo.site/t/original/i/a2cbb917674b34b1e5fc570bb668338116a16167e93550130e9bca50d8593f29/250709_NAP_07_025-1_retouch.jpg" data-mid="237331822" border="0"  src="https://freight.cargo.site/w/1000/i/a2cbb917674b34b1e5fc570bb668338116a16167e93550130e9bca50d8593f29/250709_NAP_07_025-1_retouch.jpg" /&#62;
&#60;img width="5415" height="8119" width_o="5415" height_o="8119" data-src="https://freight.cargo.site/t/original/i/186b2c2ba63ba728ec8ff0c7e203da8ce8af7e3c7dff616145fbdc36dd458eca/250709_NAP_01_058-3_retouch.jpg" data-mid="237331816" border="0"  src="https://freight.cargo.site/w/1000/i/186b2c2ba63ba728ec8ff0c7e203da8ce8af7e3c7dff616145fbdc36dd458eca/250709_NAP_01_058-3_retouch.jpg" /&#62;



  .project-credits {
    text-align: center;
    margin-bottom: 3rem;
    font-family: "Helvetica Neue", Arial, sans-serif;
  }

  .publication {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: 500;
  }

  .credit {
    font-size: 0.8rem;
    margin: 0.25rem 0;
    opacity: 0.85;
  }

  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }

  .image-gallery img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
</description>
		
	</item>
		
	</channel>
</rss>