<?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>Archives des raisin - Bastide Blanche</title>
	<atom:link href="https://www.bastide-blanche.fr/tag/raisin/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.bastide-blanche.fr/tag/raisin/</link>
	<description>AOC BANDOL</description>
	<lastBuildDate>Wed, 13 May 2026 13:02:10 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://www.bastide-blanche.fr/wp-content/uploads/2021/06/cropped-favicon-BB_Plan-de-travail-1-32x32.png</url>
	<title>Archives des raisin - Bastide Blanche</title>
	<link>https://www.bastide-blanche.fr/tag/raisin/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Du raisin au vin</title>
		<link>https://www.bastide-blanche.fr/2026/01/14/etapes-de-vinification-vins-bandol/</link>
		
		<dc:creator><![CDATA[Tanais]]></dc:creator>
		<pubDate>Wed, 14 Jan 2026 15:00:14 +0000</pubDate>
				<category><![CDATA[La cave]]></category>
		<category><![CDATA[au]]></category>
		<category><![CDATA[du]]></category>
		<category><![CDATA[raisin]]></category>
		<category><![CDATA[vin]]></category>
		<guid isPermaLink="false">https://www.bastide-blanche.fr/?p=1158</guid>

					<description><![CDATA[<p>Du raisin au vin, chaque étape compte. De la vendange à la vinification, puis à l’élevage, nous accompagnons le raisin afin de révéler l’expression du terroir et du millésime.</p>
<p>L’article <a href="https://www.bastide-blanche.fr/2026/01/14/etapes-de-vinification-vins-bandol/">Du raisin au vin</a> est apparu en premier sur <a href="https://www.bastide-blanche.fr">Bastide Blanche </a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="et_pb_section et_pb_section_0 et_section_regular" >
				
				
				
				
				
				
				<div class="et_pb_row et_pb_row_0">
				<div class="et_pb_column et_pb_column_4_4 et_pb_column_0  et_pb_css_mix_blend_mode_passthrough et-last-child">
				
				
				
				
				<div class="et_pb_module et_pb_code et_pb_code_0">
				
				
				
				
				<div class="et_pb_code_inner"><!-- ============================================================
     BASTIDE BLANCHE — ARTICLE : DU RAISIN AU VIN
     À coller dans un bloc HTML personnalisé dans WordPress
     ============================================================ -->

<div id="bb-article-root"></div>

<script>
const BB = {
  titre:       "Du raisin au vin",
  categorie:   "la-cave",
  cat_label:   "La cave",
  date:        "Août / Septembre",
  lecture:     "2 min",
  lien_retour: "/journal",

  chapeau: "Après leur récolte à parfaite maturité, les grappes sont acheminées au chai où elles subissent un second tri rigoureux. Cette étape essentielle permet de ne conserver que les raisins les plus sains et les plus qualitatifs, garants de l'expression fidèle de notre terroir.",

  contenu: `
Chaque grappe est observée avec attention, afin d'écarter toute baie ne répondant pas à nos exigences. Vient ensuite l'étape du pressurage, réalisée avec douceur pour extraire les jus tout en préservant la finesse aromatique des raisins. Les moûts obtenus sont alors soumis au débourbage, un processus naturel de clarification qui permet de séparer les jus limpides des bourbes, préparant ainsi une fermentation maîtrisée et harmonieuse.

## Un suivi quotidien en cuverie

Dès lors, le travail en cuverie devient quotidien. Chaque cuve fait l'objet d'un suivi attentif : contrôle précis des températures, observation des fermentations, dégustations régulières… Rien n'est laissé au hasard. Ce travail minutieux accompagne le vin dans sa transformation, en respectant le rythme naturel des levures et l'identité de chaque parcelle.

Pour les vins rouges, la fermentation malolactique se déclenche naturellement, apportant douceur, rondeur et équilibre. Elle affine la structure des vins et participe à l'harmonie finale, tout en révélant une belle profondeur.

## Les premières promesses

> Les premiers jus livrent alors leurs promesses : des vins équilibrés, dotés d'une intensité aromatique marquée, portés par une acidité juste et une structure élégante. Des vins qui traduisent déjà le caractère du millésime et l'âme de notre terroir, fidèles à l'esprit de Bandol.
  `,

  seo_titre:       "Du raisin au vin — Journal du Domaine | Bastide Blanche",
  seo_description: "Découvrez les étapes de vinification à Bastide Blanche : tri des raisins, pressurage, débourbage, fermentation et premiers jus des vins de Bandol.",
};

const WP_URL = 'https://www.bastide-blanche.fr';

function parseContenu(texte) {
  const lignes = texte.trim().split('\n');
  let html = '', buf = [];
  const flush = () => { const t = buf.join(' ').trim(); if (t) html += `<p>${t}</p> `; buf = []; };
  lignes.forEach(l => {
    const t = l.trim();
    if (!t)                       { flush(); }
    else if (t.startsWith('## ')) { flush(); html += `<h2>${t.slice(3)}</h2>`; }
    else if (t.startsWith('> '))  { flush(); html += `<blockquote><p>${t.slice(2)}</p> </blockquote>`; }
    else buf.push(t);
  });
  flush();
  return html;
}

if (BB.seo_titre) document.title = BB.seo_titre;
[
  ['name',     'description',         BB.seo_description],
  ['property', 'og:title',            BB.seo_titre || BB.titre],
  ['property', 'og:description',      BB.seo_description],
  ['property', 'og:type',             'article'],
  ['name',     'twitter:card',        'summary_large_image'],
  ['name',     'twitter:title',       BB.seo_titre || BB.titre],
  ['name',     'twitter:description', BB.seo_description],
].forEach(([attr, name, content]) => {
  if (!content) return;
  let el = document.querySelector(`meta[${attr}="${name}"]`);
  if (!el) { el = document.createElement('meta'); el.setAttribute(attr, name); document.head.appendChild(el); }
  el.setAttribute('content', content);
});

document.getElementById('bb-article-root').innerHTML = `
<div class="bbs">

  <!-- HERO TYPOGRAPHIQUE SANS PHOTO -->
  <div class="bbs-hero">
    <div class="bbs-hero-inner">
      ${BB.cat_label ? `<span class="bbs-cat">${BB.cat_label}</span>` : ''}
      <h1 class="bbs-titre">${BB.titre}</h1>
    </div>
  </div>

  <!-- META BAR -->
  <div class="bbs-metabar">
    <div class="bbs-meta-left">
      <span class="bbs-meta">${BB.date}</span>
      <span class="bbs-sep"></span>
      <span class="bbs-meta">${BB.lecture} de lecture</span>
    </div>
    <a href="${BB.lien_retour}" class="bbs-retour">
      <span class="bbs-retour-arrow">&#8592;</span>
      Retour au journal
    </a>
  </div>

  <!-- CORPS -->
  <div class="bbs-body">
    <p class="bbs-chapeau">${BB.chapeau}</p> 
    <div class="bbs-content">${parseContenu(BB.contenu)}</div>

    <!-- PIED -->
    <div class="bbs-footer">
      <div class="bbs-footer-line"></div>
      <div class="bbs-footer-inner">
        <span class="bbs-footer-label">Domaine Bastide Blanche</span>
        <a href="${BB.lien_retour}" class="bbs-footer-btn">&#8592; Tous les articles</a>
      </div>
    </div>
  </div>

  <!-- ARTICLES SIMILAIRES -->
  <div class="bbs-sim-wrap">
    <div class="bbs-sim-header">
      <span class="bbs-sim-label">Dans la même catégorie</span>
    </div>
    <div id="bbs-sim-grid" class="bbs-sim-grid">
      <div class="bbs-loading">
        <span class="bbs-dot"></span><span class="bbs-dot"></span><span class="bbs-dot"></span>
      </div>
    </div>
  </div>

</div>
`;

async function loadSimilaires() {
  const grid = document.getElementById('bbs-sim-grid');
  try {
    const catRes  = await fetch(`${WP_URL}/wp-json/wp/v2/categories?slug=${BB.categorie}`);
    const catData = await catRes.json();
    if (!catData.length) { grid.innerHTML = ''; return; }

    const posts = await (await fetch(
      `${WP_URL}/wp-json/wp/v2/posts?categories=${catData[0].id}&per_page=4&_embed&orderby=date&order=desc`
    )).json();

    const filtered = posts
      .filter(p => (p.title?.rendered || '').replace(/<[^>]+>/g,'').trim() !== BB.titre)
      .slice(0, 3);

    if (!filtered.length) { grid.innerHTML = ''; return; }

    grid.innerHTML = filtered.map(post => {
      const title   = (post.title?.rendered || '').replace(/<[^>]+>/g, '');
      const raw     = (post.excerpt?.rendered || '').replace(/<[^>]+>/g, '').trim();
      const excerpt = raw.split(/\s+/).slice(0, 20).join(' ') + '\u2026';
      const media   = (post._embedded?.['wp:featuredmedia'] || [])[0];
      const img     = media?.source_url || '';
      const alt     = media?.alt_text   || title;
      return `
        <a href="${post.link}" class="bbs-sim-card">
          <div class="bbs-sim-img">
            ${img ? `<img decoding="async" src="${img}" alt="${alt}" loading="lazy">` : '<div class="bbs-sim-ph"></div>'}
          </div>
          <div class="bbs-sim-body">
            <h3 class="bbs-sim-titre">${title}</h3>
            <p class="bbs-sim-excerpt">${excerpt}</p> 
          </div>
          <div class="bbs-sim-foot">
            <span class="bbs-sim-arrow">&#8594;</span>
          </div>
        </a>`;
    }).join('');
  } catch(e) {
    grid.innerHTML = '';
    console.error(e);
  }
}

loadSimilaires();
</script>

<style>
  .bbs * { box-sizing: border-box; margin: 0; padding: 0; }
  .bbs { font-family: 'Jost', sans-serif; font-weight: 300; color: #2A2218; background: #fff; }

  /* ── HERO TYPOGRAPHIQUE (sans photo) ── */
  .bbs-hero {
    width: 100%;
    background: #1C2B1A;
    padding: 72px 80px 64px;
  }
  .bbs-hero-inner { max-width: 800px; }
  .bbs-cat {
    display: inline-block; margin-bottom: 20px;
    font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase;
    color: rgba(255,255,255,0.70); border: 1px solid rgba(255,255,255,0.30); padding: 6px 14px;
  }
  .bbs-titre {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05;
    letter-spacing: -0.02em; color: #fff;
  }

  /* ── META BAR ── */
  .bbs-metabar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 80px; border-bottom: 1px solid #E8E2D8;
    background: #fff; flex-wrap: wrap; gap: 16px;
  }
  .bbs-meta-left { display: flex; align-items: center; gap: 24px; }
  .bbs-meta { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #9A9080; }
  .bbs-sep { display: inline-block; width: 1px; height: 16px; background: #E8E2D8; flex-shrink: 0; }
  .bbs-retour {
    font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
    color: #9A9080; text-decoration: none; display: flex; align-items: center; gap: 10px;
    transition: color 0.2s;
  }
  .bbs-retour:hover { color: #1C2B1A; }
  .bbs-retour-arrow {
    width: 30px; height: 30px; border-radius: 50%; border: 1px solid #E8E2D8;
    display: flex; align-items: center; justify-content: center; font-size: 14px;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }
  .bbs-retour:hover .bbs-retour-arrow { background: #1C2B1A; border-color: #1C2B1A; color: #fff; }

  /* ── CORPS ── */
  .bbs-body { max-width: 720px; margin: 0 auto; padding: 64px 24px 80px; }
  .bbs-chapeau {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.35rem; line-height: 1.72; color: #1C2B1A;
    margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid #E8E2D8;
  }
  .bbs-content p { font-size: 16px; line-height: 1.92; color: #3A3228; margin-bottom: 28px; }
  .bbs-content h2 {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: 1.85rem; line-height: 1.15; color: #1C2B1A;
    margin: 52px 0 18px; letter-spacing: -0.01em;
  }
  .bbs-content blockquote { margin: 44px 0; padding: 28px 36px; border-left: 2px solid #7B6585; background: #faf8f5; }
  .bbs-content blockquote p {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 1.2rem; line-height: 1.65; color: #1C2B1A; margin: 0;
  }
  .bbs-content img { width: 100%; height: auto; display: block; margin: 40px 0; border-radius: 2px; }

  /* ── PIED ── */
  .bbs-footer { margin-top: 72px; }
  .bbs-footer-line { height: 1px; background: #E8E2D8; margin-bottom: 32px; }
  .bbs-footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .bbs-footer-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #9A9080; }
  .bbs-footer-btn {
    font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
    color: #1C2B1A; text-decoration: none; border: 1px solid #E8E2D8; padding: 12px 24px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
  }
  .bbs-footer-btn:hover { background: #1C2B1A; border-color: #1C2B1A; color: #fff; }

  /* ── ARTICLES SIMILAIRES ── */
  .bbs-sim-wrap { background: #fff; padding: 64px 80px; border-top: 1px solid #E8E2D8; }
  .bbs-sim-header { display: flex; align-items: center; gap: 20px; margin-bottom: 36px; }
  .bbs-sim-header::after { content: ''; flex: 1; height: 1px; background: #E8E2D8; }
  .bbs-sim-label { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: #9A9080; white-space: nowrap; }
  .bbs-sim-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; }

  .bbs-sim-card {
    background: #fff; border: 1px solid #E8E2D8; border-radius: 2px;
    overflow: hidden; display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .bbs-sim-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(28,43,26,0.09); }
  .bbs-sim-img { position: relative; aspect-ratio: 16/11; overflow: hidden; background: #E8E2D8; flex-shrink: 0; }
  .bbs-sim-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; }
  .bbs-sim-card:hover .bbs-sim-img img { transform: scale(1.05); }
  .bbs-sim-ph { width: 100%; height: 100%; background: #1C2B1A; opacity: 0.15; }
  .bbs-sim-body { padding: 22px 24px 0; flex: 1; display: flex; flex-direction: column; }
  .bbs-sim-titre {
    font-family: 'Cormorant Garamond', serif; font-weight: 400;
    font-size: 1.25rem; line-height: 1.2; color: #1C2B1A; margin-bottom: 10px;
  }
  .bbs-sim-excerpt { font-size: 13px; line-height: 1.65; color: #9A9080; flex: 1; }
  .bbs-sim-foot {
    padding: 16px 24px 20px; display: flex; align-items: center;
    justify-content: flex-end; border-top: 1px solid #E8E2D8; margin-top: 20px;
  }
  .bbs-sim-arrow {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid #E8E2D8;
    display: flex; align-items: center; justify-content: center; font-size: 15px; color: #2A2218;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }
  .bbs-sim-card:hover .bbs-sim-arrow { background: #1C2B1A; border-color: #1C2B1A; color: #fff; }

  /* ── LOADING ── */
  .bbs-loading { text-align: center; padding: 40px 0; grid-column: 1/-1; }
  .bbs-dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: #7B6585; margin: 0 3px; animation: bbs-pulse 1.2s ease-in-out infinite;
  }
  .bbs-dot:nth-child(2) { animation-delay: 0.2s; }
  .bbs-dot:nth-child(3) { animation-delay: 0.4s; }
  @keyframes bbs-pulse {
    0%, 80%, 100% { opacity: 0.2; transform: scale(0.8); }
    40%            { opacity: 1;   transform: scale(1); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 980px) {
    .bbs-hero { padding: 48px 32px 40px; }
    .bbs-metabar, .bbs-sim-wrap { padding-left: 32px; padding-right: 32px; }
    .bbs-sim-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  }
  @media (max-width: 600px) {
    .bbs-hero { padding: 36px 20px 32px; }
    .bbs-metabar { padding: 14px 20px; }
    .bbs-body { padding: 40px 20px 60px; }
    .bbs-sim-wrap { padding: 40px 20px; }
    .bbs-sim-grid { grid-template-columns: 1fr; }
  }
</style></div>
			</div>
			</div>
				
				
				
				
			</div>
				
				
			</div>
<p>L’article <a href="https://www.bastide-blanche.fr/2026/01/14/etapes-de-vinification-vins-bandol/">Du raisin au vin</a> est apparu en premier sur <a href="https://www.bastide-blanche.fr">Bastide Blanche </a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
