<?xml version="1.0" encoding="UTF-8"?><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:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Seascapes &#8211; Jose Sánchez Peinado</title>
	<atom:link href="https://www.sanchezpeinado.gallery/subject/seascapes/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.sanchezpeinado.gallery</link>
	<description></description>
	<lastBuildDate>Fri, 24 Jul 2026 11:53:22 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0.4</generator>

<image>
	<url>https://www.sanchezpeinado.gallery/wp-content/uploads/2025/04/cropped-Jose-Sanchez-Peinado-Artist-Logo-32x32.jpg</url>
	<title>Seascapes &#8211; Jose Sánchez Peinado</title>
	<link>https://www.sanchezpeinado.gallery</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Tidal Serenity</title>
		<link>https://www.sanchezpeinado.gallery/product/tidal-serenity/</link>
		
		<dc:creator><![CDATA[sanchezpeinadogallery]]></dc:creator>
		<pubDate>Tue, 04 Mar 2025 13:57:09 +0000</pubDate>
				<guid isPermaLink="false">https://www.sanchezpeinado.gallery/?post_type=product&#038;p=3350</guid>

					<description><![CDATA[<p>An oil painting capturing the rhythm of ocean waves in soft blues and greens. Painted in 2025, this 32×25cm seascape shows the constant movement of water - each wave crest and shadow shifting with the light.</p>
<p>Unframed, ships worldwide.</p>
<p>&#160;</p>
<p>This painting sold quickly. Looking for more seascape or ocean wave paintings?</p>
<p>Get notified when new water-focused paintings become available - before they're listed publicly.</p>
<p>[jose_form]</p>
<p>The post <a rel="nofollow" href="https://www.sanchezpeinado.gallery/product/tidal-serenity/">Tidal Serenity</a> appeared first on <a rel="nofollow" href="https://www.sanchezpeinado.gallery">Jose Sánchez Peinado</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><strong>Ocean Wave Oil Painting</strong></p>
<p>This oil painting focuses on what water actually does &#8211; the way waves overlap, catch light, and create patterns that exist for seconds before dissolving into the next movement.</p>
<p>Painted in 2025 using traditional oil techniques with an impressionistic approach. The composition captures multiple wave states simultaneously &#8211; the peaked crests, the flat troughs, the foam patterns where waves collapse.</p>
<p><strong>Medium</strong>: Oil on paper<br />
<strong>When</strong>: 2025<br />
<strong>Size</strong>: 32×25cm (about 12.5×10 inches)</p>
<p><strong>Why Ocean Paintings Work</strong></p>
<p>Seascapes appeal to collectors because water never repeats itself. Unlike landscapes with fixed elements, ocean paintings capture something inherently temporary. The specific arrangement of waves, light, and colour in this painting existed for maybe 10-15 minutes before conditions changed.</p>
<p>The blue-green palette creates a calming effect while the varied brushstrokes add movement and energy. This balance between serenity and dynamism makes ocean paintings versatile &#8211; they work in both quiet spaces and active rooms.</p>
<p><strong>Oil on Paper</strong></p>
<p>Painting with oils on paper creates different surface qualities than canvas. The paper absorbs some oil, producing matte areas that contrast with glossier passages. This variation adds depth and texture that responds to changing light throughout the day.</p>
<p>&nbsp;</p>
<p><strong>This Painting Sold Quickly</strong></p>
<p>Looking for more seascape or ocean wave paintings?</p>
<p>Get notified when new water-focused paintings become available &#8211; before they&#8217;re listed publicly.</p>
    <div class="systeme-form-container">
        <form class="systeme-form" id="jf_6a7f26be2754b">
            <input type="email" name="email" placeholder="Your email" required autocomplete="email">
            <div class="consent-wrapper">
                <input type="checkbox" id="gdprConsent_jf_6a7f26be2754b" name="gdprConsent" required>
                <label for="gdprConsent_jf_6a7f26be2754b">
                    I agree to receive emails and accept the <a href="https://www.sanchezpeinado.gallery/privacy-policy/" target="_blank">privacy policy</a>.
                </label>
            </div>
            <button type="submit" data-original-text="SHOW ME THE PAINTINGS">SHOW ME THE PAINTINGS</button>
            <div class="form-message" id="formMessage_jf_6a7f26be2754b"></div>
        </form>
    </div>
    <script>
    (function() {
        const form = document.getElementById('jf_6a7f26be2754b');
        if (!form) return;
        const message = document.getElementById('formMessage_jf_6a7f26be2754b');
        const button = form.querySelector('button[type="submit"]');
        const emailInput = form.querySelector('input[type="email"]');
        const originalButtonText = button.getAttribute('data-original-text');
        form.addEventListener('submit', async function(e) {
            e.preventDefault();
            message.className = 'form-message';
            message.style.display = 'none';
            const email = emailInput.value.trim();
            if (!email || !email.includes('@')) {
                showMessage('Please enter a valid email', 'error');
                return;
            }
            const consentCheckbox = form.querySelector('#gdprConsent_jf_6a7f26be2754b');
            if (!consentCheckbox.checked) {
                showMessage('Please accept the privacy policy to continue', 'error');
                return;
            }
            button.disabled = true;
            button.textContent = 'Sending...';
            try {
                const formData = new FormData();
                formData.append('action', 'submit_systeme_form');
                formData.append('email', email);
                formData.append('nonce', Date.now());
                const response = await fetch('/wp-admin/admin-ajax.php', {
                    method: 'POST',
                    body: formData
                });
                const result = await response.json();
                if (result.success) {
                    showMessage('Done. Check your email.', 'success');
                    emailInput.value = '';
                    consentCheckbox.checked = false;
                } else {
                    showMessage(result.data ? result.data.message : 'Something went wrong', 'error');
                }
            } catch (error) {
                showMessage('Connection error. Try again.', 'error');
            } finally {
                button.disabled = false;
                button.textContent = originalButtonText;
            }
        });
        function showMessage(text, type) {
            message.textContent = text;
            message.className = 'form-message ' + type;
            message.style.display = 'block';
        }
    })();
    </script>
    
<p>&#8212;</p>
<p><a href="https://www.sanchezpeinado.gallery/shop/">Browse all available paintings</a></p>
<p>The post <a rel="nofollow" href="https://www.sanchezpeinado.gallery/product/tidal-serenity/">Tidal Serenity</a> appeared first on <a rel="nofollow" href="https://www.sanchezpeinado.gallery">Jose Sánchez Peinado</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>MASTY III</title>
		<link>https://www.sanchezpeinado.gallery/product/masty-iii/</link>
		
		<dc:creator><![CDATA[sanchezpeinadogallery]]></dc:creator>
		<pubDate>Tue, 25 Feb 2025 22:31:38 +0000</pubDate>
				<guid isPermaLink="false">https://www.sanchezpeinado.gallery/?post_type=product&#038;p=3247</guid>

					<description><![CDATA[<p>October in Portugal. Everyone said it was off-season. The coast had other ideas.<br />
I nearly threw up on the boat. Flat water, barely any swell. Still got me.<br />
Painted this one from dry land, which turned out to be a good call.</p>
<p>The post <a rel="nofollow" href="https://www.sanchezpeinado.gallery/product/masty-iii/">MASTY III</a> appeared first on <a rel="nofollow" href="https://www.sanchezpeinado.gallery">Jose Sánchez Peinado</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p class="font-claude-response-body break-words whitespace-normal">October on the Algarve coast feels like summer forgot to leave.</p>
<p class="font-claude-response-body break-words whitespace-normal">We drove the stretch between Lagos and Carvoeiro in 2024. The kind of road trip where you stop more than you drive. That coastline does something to you. The light comes off the water differently there. Warmer. More insistent.</p>
<p class="font-claude-response-body break-words whitespace-normal">I went out on a boat to the Benagil Caves. Worth every minute of the journey. The caves are the kind of thing you don&#8217;t believe until you&#8217;re standing inside them.</p>
<p class="font-claude-response-body break-words whitespace-normal">The boat, though. Barely any swell. Flat water. I nearly lost my lunch anyway.</p>
<p class="font-claude-response-body break-words whitespace-normal">Masty III I painted from land. Watching it move through that light was enough. Sometimes the better view is from the shore.</p>
<p class="font-claude-response-body break-words whitespace-normal">Oil on canvas. One of a kind.</p>
<p>The post <a rel="nofollow" href="https://www.sanchezpeinado.gallery/product/masty-iii/">MASTY III</a> appeared first on <a rel="nofollow" href="https://www.sanchezpeinado.gallery">Jose Sánchez Peinado</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Outside world. Jersey Island</title>
		<link>https://www.sanchezpeinado.gallery/product/outside-world-jersey-island/</link>
					<comments>https://www.sanchezpeinado.gallery/product/outside-world-jersey-island/#respond</comments>
		
		<dc:creator><![CDATA[sanchezpeinadogallery]]></dc:creator>
		<pubDate>Mon, 14 Jun 2021 11:14:42 +0000</pubDate>
				<guid isPermaLink="false">https://www.sanchezpeinado.gallery/?post_type=product&#038;p=2193</guid>

					<description><![CDATA[<p><strong>Outside World</strong> – Jersey Island<br />
Watercolour on paper, 31 x 41 cm. 2020. Signed and dated.</p>
<p>This painting is inspired by one of my travels. Before the pandemic, I had the chance to visit Jersey, one of the Channel Islands, and was struck by its unique light. Despite being winter, the sun was bright, and the weather was unexpectedly warm—an unforgettable contrast.</p>
<p>I often include vehicles in my landscapes, whether boats or cars. To me, they symbolise freedom, movement, and the excitement of the journey itself.</p>
<p>The post <a rel="nofollow" href="https://www.sanchezpeinado.gallery/product/outside-world-jersey-island/">Outside world. Jersey Island</a> appeared first on <a rel="nofollow" href="https://www.sanchezpeinado.gallery">Jose Sánchez Peinado</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.sanchezpeinado.gallery/wp-content/uploads/2021/06/20200401_1_Jose-Sanchez-Peinado.-Outside-World.-Jersey-3.-31-x-41-cm.-Watercolor-on-paper.-2020-scaled.jpg"><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-2194" src="https://www.sanchezpeinado.gallery/wp-content/uploads/2021/06/20200401_1_Jose-Sanchez-Peinado.-Outside-World.-Jersey-3.-31-x-41-cm.-Watercolor-on-paper.-2020-scaled.jpg" alt="" width="2560" height="1820" /></a></p>
<p>The post <a rel="nofollow" href="https://www.sanchezpeinado.gallery/product/outside-world-jersey-island/">Outside world. Jersey Island</a> appeared first on <a rel="nofollow" href="https://www.sanchezpeinado.gallery">Jose Sánchez Peinado</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.sanchezpeinado.gallery/product/outside-world-jersey-island/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
