:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8dbc1fe *//* ==========================================================================
   PAGE À PROPOS - SECTION 1 HERO - CAMPOURCY PREMIUM
   ========================================================================== */

:root {
  --cp-bg: #F5F3EE;
  --cp-forest: #2D5016;
  --cp-ocre: #BA7517;
  --cp-ocre-hover: #9E6110;
  --cp-font-serif: 'Playfair Display', serif;
  --cp-font-sans: 'DM Sans', sans-serif;
  --cp-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cp-about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  font-family: var(--cp-font-sans);
  color: #FFFFFF;
  overflow: hidden;
  padding: 120px 24px 80px 24px;
}

/* --- ARRIÈRE-PLAN & OVERLAY --- */
.cp-about-hero__bg {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
}

.cp-about-hero__bg-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center center;
  transform: scale(1.05);
  animation: cpZoomOut 10s ease-out forwards;
}

/* Dégradé Vert Forêt pour la lisibilité */
.cp-about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45, 80, 22, 0.95) 0%, rgba(45, 80, 22, 0.7) 50%, rgba(45, 80, 22, 0.2) 100%);
}

/* --- FILIGRANE GÉANT (Inspiration "Gofar") --- */
.cp-about-hero__watermark-text {
  position: absolute;
  bottom: -2vw;
  left: -2vw;
  font-family: var(--cp-font-sans);
  font-size: 22vw;
  font-weight: 700;
  line-height: 0.8;
  color: rgba(255, 255, 255, 0.04);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

/* --- CONTENEUR PRINCIPAL --- */
.cp-about-hero__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* --- CONTENU TEXTE (GAUCHE) --- */
.cp-about-hero__content {
  max-width: 680px;
}

.cp-about-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(186, 117, 23, 0.9);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cp-about-hero__tag svg {
  color: #F5F3EE;
}

.cp-about-hero__title {
  font-family: var(--cp-font-serif);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 24px;
}

.cp-about-hero__title-accent {
  color: var(--cp-ocre);
  font-style: italic;
  position: relative;
}

.cp-about-hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 580px;
}

/* Bouton Primaire (Inclus ici pour être autonome) */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--cp-transition);
}

.cp-btn--primary {
  background-color: var(--cp-ocre);
  color: #FFFFFF;
  padding: 16px 36px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cp-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cp-ocre-hover);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.3, 1, 0.2, 1);
  z-index: -1;
}

.cp-btn--primary:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.cp-btn__icon {
  width: 18px;
  height: 18px;
  margin-left: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cp-btn--primary:hover .cp-btn__icon {
  transform: translateX(6px);
}

/* --- CARTES SUPERPOSÉES (DROITE) --- */
.cp-about-hero__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: flex-start;
}

.cp-ah-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  animation: cpFloat 6s ease-in-out infinite;
}

/* Carte Statistique (Glassmorphism Vert) */
.cp-ah-card--stat {
  background: rgba(45, 80, 22, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  position: relative;
  width: 280px;
}

.cp-ah-card__bg-icon {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 120px;
  height: 120px;
  color: #FFFFFF;
  opacity: 0.05;
}

.cp-ah-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.cp-ah-card__value {
  font-family: var(--cp-font-serif);
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.cp-ah-card__label {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* Carte Image */
.cp-ah-card--img {
  width: 280px;
  height: 160px;
  animation-delay: -3s; /* Désynchronise l'animation par rapport à l'autre carte */
  border: 2px solid #FFFFFF;
}

.cp-ah-card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- ANIMATIONS --- */
@keyframes cpZoomOut {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

@keyframes cpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- BREAKPOINTS RESPONSIVE --- */
@media (max-width: 768px) {
  .cp-about-hero {
    min-height: 100vh;
    padding: 140px 20px 60px 20px;
  }

  .cp-about-hero__bg-img {
    object-position: center 30%;
  }
}

@media (min-width: 992px) {
  .cp-about-hero__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  
  .cp-about-hero__cards {
    flex-direction: row;
    align-items: flex-end;
    align-self: flex-end;
    margin-bottom: -120px; /* Fait déborder les cartes en bas de la section */
  }

  .cp-ah-card--stat {
    width: 320px;
    z-index: 2;
  }

  .cp-ah-card--img {
    width: 240px;
    margin-left: -40px; /* Superposition des deux cartes */
    margin-bottom: 40px;
    z-index: 1;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4c8a4a4 *//* ==========================================================================
   PAGE À PROPOS - SECTION 2 HISTOIRE - CAMPOURCY PREMIUM
   ========================================================================== */

:root {
  --cp-bg-white: #FFFFFF;
  --cp-forest: #2D5016;
  --cp-ocre: #BA7517;
  --cp-font-serif: 'Playfair Display', serif;
  --cp-font-sans: 'DM Sans', sans-serif;
  --cp-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.cp-history {
  background-color: var(--cp-bg-white);
  color: var(--cp-forest);
  font-family: var(--cp-font-sans);
  /* On prévoit un padding top important pour compenser les cartes de la bannière qui débordent */
  padding: 160px 24px 100px 24px;
  position: relative;
  overflow: hidden;
}

.cp-history__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

/* --- COLONNE GAUCHE (TITRE) --- */
.cp-history__left {
  position: relative;
}

.cp-history__watermark {
  position: absolute;
  top: -40px;
  left: -20px;
  font-family: var(--cp-font-serif);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(45, 80, 22, 0.04);
  z-index: 0;
  pointer-events: none;
}

.cp-history__title {
  font-family: var(--cp-font-serif);
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cp-history__title-accent {
  color: var(--cp-ocre);
  font-style: italic;
}

/* --- COLONNE DROITE (CONTENU) --- */
.cp-history__right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

/* Ligne continue de fond (Timeline) */
.cp-history__right::before {
  content: '';
  position: absolute;
  left: 23px; /* Centré sur l'icône */
  top: 20px;
  bottom: 20px;
  width: 1px;
  background-color: rgba(45, 80, 22, 0.1);
  z-index: 0;
}

/* Blocs de texte individuels */
.cp-history-block {
  display: flex;
  gap: 32px;
  position: relative;
  z-index: 1;
  group: true; /* Conceptuel, pour cibler le hover parent */
}

/* Effet d'asymétrie : le 2ème bloc est légèrement décalé vers la droite sur grand écran */
@media (min-width: 992px) {
  .cp-history-block--offset {
    margin-left: 40px;
  }
}

/* La ligne Ocre qui s'anime au survol */
.cp-history-block__line {
  position: absolute;
  left: 23px;
  top: 0;
  width: 2px;
  height: 0;
  background-color: var(--cp-ocre);
  transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.cp-history-block:hover .cp-history-block__line {
  height: 100%;
}

/* L'icône de chaque bloc */
.cp-history-block__icon {
  width: 48px;
  height: 48px;
  background-color: var(--cp-bg-white);
  border: 1px solid rgba(45, 80, 22, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cp-forest);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: var(--cp-transition);
}

.cp-history-block__icon svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.cp-history-block:hover .cp-history-block__icon {
  border-color: var(--cp-ocre);
  background-color: var(--cp-ocre);
  color: #FFFFFF;
  box-shadow: 0 10px 20px rgba(186, 117, 23, 0.2);
}

.cp-history-block:hover .cp-history-block__icon svg {
  transform: scale(1.1);
}

/* Contenu du texte */
.cp-history-block__content {
  padding-top: 10px;
  transition: var(--cp-transition);
}

.cp-history-block:hover .cp-history-block__content {
  transform: translateX(8px);
}

.cp-history-block__subtitle {
  font-family: var(--cp-font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cp-ocre);
  margin-bottom: 12px;
}

.cp-history-block__text {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
  max-width: 560px;
}

/* ==========================================================================
   BREAKPOINTS RESPONSIVE
   ========================================================================== */

@media (min-width: 992px) {
  .cp-history__container {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-91ccfd5 *//* ==========================================================================
   SECTION ENGAGEMENTS : PREMIUM DARK & GLASSMORPHISM
   ========================================================================== */

:root {
  --cp-forest-dark: #1F380F; /* Vert encore plus profond pour le fond */
  --cp-forest: #2D5016;
  --cp-ocre: #BA7517;
}

.cp-commitments-premium {
  position: relative;
  background-color: var(--cp-forest-dark);
  padding: 120px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #FFFFFF;
  overflow: hidden;
  z-index: 1;
}

/* --- ANIMATION DE FOND (Cernes de bois / Topographie) --- */
.cp-commitments-premium__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw; /* Très large pour couvrir tout l'écran en tournant */
  height: 150vw;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15; /* Subtil */
}

.cp-terroir-anim {
  width: 100%;
  height: 100%;
  animation: cpRotateWood 60s linear infinite;
}

.cp-terroir-anim path {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2px;
  stroke-dasharray: 20 10; /* Effet de pointillé topographique */
  animation: cpMorph 20s ease-in-out infinite alternate;
}

@keyframes cpRotateWood {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes cpMorph {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* --- CONTENEUR ET EN-TÊTE --- */
.cp-commitments-premium__container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cp-commitments-premium__header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Variante claire du sur-titre pour fond sombre */
.cp-sur-titre--light {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cp-commitments-premium__title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
  color: #FFFFFF;
}

.cp-commitments-premium__desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
}

/* --- GRILLE --- */
.cp-commitments-premium__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* --- CARTES GLASSMORPHISM (Le cœur du design premium) --- */
.cp-glass-card {
  background: rgba(255, 255, 255, 0.03); /* Fond blanc quasi transparent */
  backdrop-filter: blur(16px); /* L'effet verre dépoli */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08); /* Bordure lumière */
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cp-glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(186, 117, 23, 0.4); /* La bordure s'illumine en Ocre */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cp-glass-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(186, 117, 23, 0.15); /* Pastille Ocre foncée */
  border: 1px solid rgba(186, 117, 23, 0.3);
  color: var(--cp-ocre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.cp-glass-card__icon svg {
  width: 28px;
  height: 28px;
}

.cp-glass-card:hover .cp-glass-card__icon {
  transform: scale(1.1);
  background: var(--cp-ocre);
  color: #FFFFFF;
}

.cp-glass-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cp-glass-card__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
  .cp-commitments-premium__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* Forçage absolu du titre principal en blanc */
.cp-commitments-premium__title {
  color: #FFFFFF !important;
}

/* Forçage absolu des titres de chaque engagement en blanc */
.cp-glass-card__title {
  color: #FFFFFF !important;
}

/* Optionnel : Si le sur-titre "NOS VALEURS" a aussi du mal à ressortir */
.cp-commitments-premium .cp-sur-titre {
  color: #FFFFFF !important;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-16c6c60 *//* ==========================================================================
   SECTION ATELIERS : DESIGN ÉDITORIAL (Blanc & Épuré)
   ========================================================================== */

:root {
  --cp-bg-white: #FFFFFF;
  --cp-text-dark: #111111; /* Presque noir pour un contraste maximal */
  --cp-text-grey: #555555;
  --cp-border: #E5E5E5; /* Gris très clair pour les séparations */
  --cp-forest: #2D5016;
  --cp-ocre: #BA7517;
}

.cp-ateliers-editorial {
  background-color: var(--cp-bg-white);
  padding: 120px 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--cp-text-dark);
}

.cp-ateliers-editorial__container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
}

/* --- COLONNE GAUCHE (TEXTE) --- */
.cp-sur-titre {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000 !important; /* Modification ici : Forçage en noir absolu */
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cp-asterisk { color: var(--cp-ocre); font-size: 16px; }

.cp-ateliers-editorial__title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--cp-text-dark);
  margin-bottom: 30px;
}

.cp-title-accent {
  color: var(--cp-forest);
  font-style: italic; /* Touche d'élégance */
  font-weight: 700;
}

.cp-ateliers-editorial__text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--cp-text-grey);
  margin-bottom: 20px;
  max-width: 90%;
}

/* Liste des Atouts */
.cp-ateliers-editorial__list {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  border-top: 1px solid var(--cp-border);
}

.cp-ateliers-editorial__list li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--cp-border);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cp-text-dark);
}

.cp-list-icon {
  width: 40px;
  height: 40px;
  background: rgba(45, 80, 22, 0.05); /* Rond vert très pâle */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  color: var(--cp-forest);
}

.cp-list-icon svg {
  width: 18px;
  height: 18px;
}

/* --- COLONNE DROITE (GRILLE CARTES) --- */
.cp-ateliers-editorial__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.cp-ed-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  group: true;
}

/* L'image de la carte */
.cp-ed-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  /* Ombre très subtile pour détacher du fond blanc */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); 
}

.cp-ed-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cp-ed-card:hover .cp-ed-card__media img {
  transform: scale(1.05);
}

/* Le numéro élégant (en haut à gauche) */
.cp-ed-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FFFFFF;
  color: var(--cp-text-dark);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Le bloc texte sous l'image */
.cp-ed-card__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cp-border); /* Ligne fine sous le titre */
  transition: border-color 0.3s ease;
}

.cp-ed-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--cp-text-dark);
  margin: 0;
  transition: color 0.3s ease;
}

.cp-ed-card__body svg {
  width: 20px;
  height: 20px;
  color: var(--cp-text-grey);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Interactions au survol */
.cp-ed-card:hover .cp-ed-card__body {
  border-color: var(--cp-ocre);
}

.cp-ed-card:hover .cp-ed-card__body h3 {
  color: var(--cp-forest);
}

.cp-ed-card:hover .cp-ed-card__body svg {
  transform: translateX(4px);
  color: var(--cp-ocre);
}

/* --- RESPONSIVE BUREAU --- */
@media (min-width: 768px) {
  .cp-ateliers-editorial__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }
}

@media (min-width: 1024px) {
  .cp-ateliers-editorial__container {
    grid-template-columns: 0.8fr 1.2fr; /* Colonne texte un peu plus fine que la grille */
  }
  
  /* Permet à la colonne texte de rester fixe pendant le scroll de la grille */
  .cp-ateliers-editorial__content {
    position: sticky;
    top: 120px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-8cf2720 *//* ==========================================================================
   SECTION TERRITOIRE : DARK PREMIUM & GLASSMORPHISM
   ========================================================================== */

:root {
  --cp-forest-dark: #1F380F; /* Vert profond pour le fond (Gardé en mémoire) */
  --cp-forest: #2D5016;
  --cp-ocre: #BA7517;
}

.cp-territory-premium {
  position: relative;
  background-color: var(--cp-forest-dark); /* Application du fond sombre */
  padding: 120px 24px;
  font-family: 'DM Sans', sans-serif;
  color: #FFFFFF;
  overflow: hidden;
  z-index: 1;
}

/* --- ANIMATION DE FOND (Topographie) --- */
.cp-territory-premium__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150vw; /* Très large pour couvrir tout l'écran en tournant */
  height: 150vw;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15; /* Subtil */
}

.cp-terroir-anim {
  width: 100%;
  height: 100%;
  animation: cpRotateWood 60s linear infinite;
}

.cp-terroir-anim path {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2px;
  stroke-dasharray: 20 10; /* Effet de pointillé topographique */
  animation: cpMorph 20s ease-in-out infinite alternate;
}

@keyframes cpRotateWood {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes cpMorph {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

/* --- CONTENEUR ET GRILLE --- */
.cp-territory-premium__container {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* --- COLONNE GAUCHE (TEXTE) --- */
.cp-sur-titre {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FFFFFF !important; /* Forçage en blanc comme demandé */
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cp-asterisk { color: var(--cp-ocre); font-size: 16px; }

.cp-territory-premium__title {
  font-family: 'Playfair Display', serif; /* Garde la typo élégante */
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #FFFFFF !important;
  margin-bottom: 30px;
}

.cp-title-accent {
  color: var(--cp-ocre);
  font-style: italic;
  font-weight: 700;
}

.cp-territory-premium__text {
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 540px;
}

/* Bloc "Highlight" (Ligne Ocre) */
.cp-territory-premium__highlight {
  border-left: 2px solid var(--cp-ocre);
  padding-left: 24px;
  margin: 40px 0;
}

.cp-territory-premium__highlight p {
  font-size: 1.25rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.5;
  margin: 0;
}

/* Les Badges "Cultures" (Style Glassmorphism) */
.cp-territory-premium__fruits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 540px;
}

.cp-fruit-tag {
  background: rgba(255, 255, 255, 0.05); /* Fond blanc quasi transparent */
  backdrop-filter: blur(16px); /* L'effet verre dépoli */
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15); /* Bordure lumière plus visible */
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: default;
}

.cp-fruit-tag:hover {
  background: var(--cp-ocre);
  border-color: var(--cp-ocre);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(186, 117, 23, 0.3);
}

/* --- COLONNE DROITE (IMAGE & BADGE) --- */
.cp-territory-premium__visual {
  position: relative;
  display: flex;
  justify-content: flex-end; /* Aligne le bloc à droite sur PC */
}

/* Le wrapper qui protège la structure */
.cp-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px; /* Taille max de l'image */
}

/* Le cadre qui contient l'image et coupe les bords */
.cp-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* Ratio de l'image (Plus large que haut) */
  border-radius: 12px 100px 12px 12px; /* L'arrondi premium en haut à droite */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

/* L'image (Forçage pour annuler les styles Elementor) */
.cp-photo-frame__img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Filtre couleur par-dessus l'image pour l'intégrer au fond dark */
.cp-photo-frame__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--cp-forest-dark);
  opacity: 0.25; 
  mix-blend-mode: multiply;
  z-index: 2;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Interaction Hover Image */
.cp-visual-wrapper:hover .cp-photo-frame__img {
  transform: scale(1.05) !important;
}
.cp-visual-wrapper:hover .cp-photo-frame__overlay {
  opacity: 0.1; 
}

/* --- LE BADGE LOCALISATION (Hors du cadre) --- */
.cp-location-badge {
  position: absolute;
  bottom: 40px; /* Positionnement vertical par rapport au wrapper */
  left: -30px; /* Le fait déborder à gauche de l'image */
  background: #FFFFFF;
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: cpFloatBadge 6s ease-in-out infinite;
}

.cp-location-badge span {
  color: var(--cp-forest) !important;
  font-weight: 800 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  margin: 0 !important;
}

/* Le point clignotant Ocre */
.cp-location-badge__radar {
  width: 12px;
  height: 12px;
  background-color: var(--cp-ocre);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.cp-location-badge__radar::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 1.5px solid var(--cp-ocre);
  border-radius: 50%;
  animation: cpRadarPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Animations */
@keyframes cpFloatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes cpRadarPulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

/* --- RESPONSIVE BUREAU --- */
@media (min-width: 992px) {
  .cp-territory-premium__container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .cp-location-badge {
    left: 20px; /* Sur mobile, on le rentre vers l'intérieur pour éviter qu'il ne sorte de l'écran */
    bottom: -20px;
  }
}/* End custom CSS */