        :root {
            --primary: #005f27; /* Vert plus profond, plus premium */
            --accent: #009432;
            --text-main: #121212;
            --text-muted: #555555;
            --bg-site: #ffffff;
            --bg-alt: #f8f9fa;
            --border-color: #ececec;
            --sidebar-width: 300px;
            --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body { 
            font-family: 'Georgia', serif; /* Look plus "presse" pour les titres */
            background-color: var(--bg-site);
            color: var(--text-main);
            overflow-x: hidden;
            line-height: 1.5;
        }

        h1, h2, h3, .logo { font-family: 'Helvetica Neue', Arial, sans-serif; font-weight: 900; }
        
        p, a, span, div { font-family: 'Helvetica Neue', Arial, sans-serif; }

        a { text-decoration: none; color: inherit; transition: var(--transition); }
.article-content a,.chapo-content a,.category-text a  { text-decoration: underline; font-weight:bold;color:var(--primary); }
        /* --- UTILS --- */
        .container { width: 95%; max-width: 1200px; margin: 0 auto; }
        .flex { display: flex; align-items: center; }
        .grid { display: grid; gap: 20px; }

        /* --- TOP BAR --- */
        .top-bar {
            background: var(--bg-alt);
            border-bottom: 1px solid var(--border-color);
            padding: 8px 0;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }
        .top-bar-flex { display: flex; justify-content: space-between; align-items: center; }

        /* --- MAIN HEADER --- */
        header {
            padding: 15px 0;
            border-bottom: 4px solid var(--primary);
            background: #fff;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-main {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: 20px;
        }

        .logo {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .logo img {
            max-height: 50px;
            width: auto;
            max-width: 100%; /* Relative design pour mobile */
            height: auto;
        }

        .menu-trigger {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 800;
            text-transform: uppercase;
            font-size: 14px;
            background: none;
            border: none;
            color: var(--primary); /* Changement de noir vers --primary */
            transition: var(--transition);
        }
        .menu-trigger:hover {
            opacity: 0.8;
        }

        .burger-icon {
            width: 20px;
            height: 2px;
            background: var(--primary); /* Changement de noir vers --primary */
            position: relative;
        }
        .burger-icon::before, .burger-icon::after {
            content: "";
            position: absolute;
            width: 100%;
            height: 2px;
            background: var(--primary); /* Changement de noir vers --primary */
            left: 0;
        }
        .burger-icon::before { top: -6px; }
        .burger-icon::after { top: 6px; }

        .btn-subscribe {
            background: var(--primary);
            color: white;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: bold;
            border-radius: 2px;
        }

        /* --- SIDEBAR ACCORDION MENU --- */
        .side-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: var(--sidebar-width);
            height: 100vh;
            background: #fff;
            z-index: 1001;
            box-shadow: 20px 0 50px rgba(0,0,0,0.1);
            transition: var(--transition);
            overflow-y: auto;
            padding: 40px 20px;
        }
        .side-menu.active { left: 0; }

        .overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.4);
            z-index: 1000;
            display: none;
            backdrop-filter: blur(4px);
        }
        .overlay.active { display: block; }

        .menu-close {
            position: absolute;
            top: 15px; right: 15px;
            font-size: 24px; cursor: pointer;
            color: var(--primary);
        }

        /* Accordion Style */
        .nav-list { margin-top: 30px; }
        .nav-item { border-bottom: 1px solid var(--border-color); }
        
        .nav-btn {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 15px 0;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: bold;
            color: var(--text-main);
            cursor: pointer;
            text-transform: uppercase;
        }
        .nav-btn:hover { color: var(--primary); }

        .nav-btn .icon { font-size: 12px; transition: transform 0.3s; }
        .nav-btn.active .icon { transform: rotate(180deg); color: var(--primary); }

        .nav-collapse {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background: var(--bg-alt);
        }
        .nav-collapse.open { max-height: 500px; }
        .nav-collapse a {
            display: block;
            padding: 10px 20px;
            font-size: 14px;
            color: var(--text-muted);
        }
        .nav-collapse a:hover { color: var(--primary); background: #eee; }

        /* --- HERO SECTION --- */
        .hero {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 40px 0;
        }

        @media (min-width: 1024px) {
            .hero { grid-template-columns: 2.5fr 1fr; }
        }

        .main-article {
            position: relative;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 30px;
        }
        .main-img {
            width: 100%;
            aspect-ratio: 16/9;
            background: #eee;
            object-fit: cover;
            margin-bottom: 20px;
        }
        .main-article h1 { font-size: 42px; margin: 15px 0; line-height: 1.1; }
        .titlearth { font-size: 42px; margin: 15px 0; line-height: 1.1; }
        .main-article p { font-size: 18px; color: var(--text-muted); margin-bottom: 20px; }
        
        .meta { display: flex; gap: 15px; font-size: 12px; font-weight: bold; text-transform: uppercase; color: var(--primary); }

        /* Sidebar info */
        .feed-card {
            background: var(--bg-alt);
            padding: 25px;
        }
        .feed-card h2 { font-size: 18px; margin-bottom: 20px; border-bottom: 2px solid var(--primary); display: inline-block; }
        
        .feed-item {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .feed-item:last-child { border: none; }
        .feed-time { font-size: 11px; font-weight: bold; color: var(--accent); }
        .feed-title { font-size: 14px; font-weight: 600; margin-top: 5px; cursor: pointer; }
        .feed-title:hover { color: var(--primary); }

        /* --- ARTICLE GRID --- */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 30px;
            border-bottom: 2px solid var(--text-main);
            padding-bottom: 10px;
        }
        .section-header h2 { font-size: 24px; text-transform: uppercase; }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .card-article {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .card-img {
            width: 100%;
            aspect-ratio: 16/9;
            background: #eee;
            object-fit: cover;
            transition: var(--transition);
        }
        .card-article:hover .card-img { opacity: 0.8; }
        .card-article h3 { font-size: 20px; line-height: 1.3; }
        .card-article .titlehd { font-size: 20px; line-height: 1.3; }
        .card-article .category { font-size: 11px; color: var(--primary); font-weight: 800; text-transform: uppercase; }
        .card-article .excerpt { font-size: 14px; color: var(--text-muted); font-family: 'Helvetica Neue', sans-serif; }

        /* --- FOOTER --- */
        footer {
            background: var(--text-main);
            color: #fff;
            padding: 60px 0;
            margin-top: 50px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
        }
        .footer-logo { font-size: 24px; color: var(--accent); font-weight: bold; margin-bottom: 20px; }
        .footer-links a { display: block; margin-bottom: 10px; color: #aaa; font-size: 14px; }
        .footer-links a:hover { color: #fff; }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 1024px) {
            .logo img { max-height: 40px; } /* On réduit un peu le logo sur tablette */
        }
        
        @media (max-width: 768px) {
            .header-main { 
                grid-template-columns: auto 1fr; /* On enlève le bouton s'abonner sur petit mobile pour laisser de la place au logo */
            }
            .btn-subscribe { display: none; }
            .main-article h1 { font-size: 28px; }
            .titlearth { font-size: 28px; }
            .logo img { max-height: 35px; } /* On réduit encore un peu sur mobile */
        }
        
        @media (max-width: 480px) {
             .logo img { max-height: 30px; }
        }
		
		        .pagination { display: flex; justify-content: center; gap: 10px; margin-bottom: 60px; }
        .page-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border-color); font-weight: bold; }
        .page-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }
        .page-link:hover:not(.active) { background: var(--bg-alt); border-color: var(--primary); color: var(--primary); }
		
        .category-header { padding: 40px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .breadcrumbs { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 15px; }
        .breadcrumbs a:hover { color: var(--primary); }
        .category-header h1 { font-size: 48px; margin-bottom: 15px; letter-spacing: -1px; }
        .category-description { max-width: 700px; font-size: 18px; color: var(--text-muted); font-family: 'Georgia', serif; font-style: italic; }


        /* --- GALLERY HEADER --- */
        .gallery-intro { padding: 60px 0 40px; background: var(--bg-alt); border-bottom: 1px solid var(--border-color); margin-bottom: 40px; }
        .gallery-intro h1 { font-size: 42px; margin-bottom: 10px; color: var(--primary); letter-spacing: -1px; }
        .gallery-intro p { font-family: 'Georgia', serif; font-size: 18px; color: var(--text-muted); font-style: italic; max-width: 800px; }

        /* --- GALLERY GRID --- */
        .photo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .photo-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            overflow: hidden;
            transition: var(--transition);
        }
        .photo-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

        .photo-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 3 / 2;
            overflow: hidden;
            background: #eee;
            cursor: pointer;
        }
        .photo-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            user-select: none;
            pointer-events: auto;
        }
        .photo-card:hover .photo-wrapper img { transform: scale(1.05); }

        /* Filigrane (Watermark) */
        .watermark {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 80px;
            opacity: 0.4;
            pointer-events: none;
            user-select: none;
            z-index: 5;
        }

        .photo-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0, 95, 39, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 10;
        }
        .photo-card:hover .photo-overlay { opacity: 1; }

        .photo-info { padding: 20px; }
        .photo-title { font-size: 16px; font-weight: 800; margin-bottom: 5px; color: var(--text-main); }
        .photo-ref { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }

        .buy-action {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--border-color);
            padding-top: 15px;
        }
        .photo-price { font-size: 18px; font-weight: 900; color: var(--primary); }
        
        .btn-buy {
            background: var(--accent);
            color: white;
            padding: 8px 16px;
            font-size: 12px;
            font-weight: 800;
            border-radius: 2px;
            text-transform: uppercase;
        }
        .btn-buy:hover { background: var(--primary); }

        /* --- LIGHTBOX (Visionneuse) --- */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 5000;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 20px;
            cursor: zoom-out;
        }
        .lightbox.active { display: flex; }

        .lightbox-container {
            position: relative;
            max-width: 90%;
            max-height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            border: 4px solid #fff;
            box-shadow: 0 0 30px rgba(0,0,0,0.5);
            cursor: default;
        }

        .lightbox-watermark {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 120px;
            opacity: 0.3;
            pointer-events: none;
        }

        .lightbox-close {
            position: absolute;
            top: -40px; right: 0;
            color: #fff; font-size: 30px; font-weight: bold; cursor: pointer;
        }

        .lightbox-caption {
            color: #fff;
            margin-top: 20px;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            font-family: 'Helvetica Neue', sans-serif;
        }

        /* --- ARTICLE CORE --- */
        .article-header { padding: 40px 0 20px; position: relative; z-index: 10; }
        .breadcrumbs { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); font-weight: 800; margin-bottom: 20px; }
        .article-header h1 { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: clamp(32px, 5vw, 54px); line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 30px; }
        
        /* Chapeau */
        .chapo { 
            font-family: 'Georgia', serif; 
            font-size: 22px; 
            line-height: 1.5; 
            color: var(--text-main); 
            font-weight: 400; 
            font-style: italic; 
            margin-bottom: 40px; 
            border-left: 4px solid var(--accent); 
            padding-left: 25px; 
        }

        /* Bloc Auteur */
        .author-box { 
            display: flex; 
            align-items: center; 
            gap: 15px; 
            padding: 25px 0; 
            border-top: 1px solid var(--border-color); 
            border-bottom: 1px solid var(--border-color); 
            margin-bottom: 40px; 
        }
        .author-avatar { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-color); }
        .author-info { display: flex; flex-direction: column; }
        .author-name { font-weight: 800; font-size: 14px; text-transform: uppercase; color: var(--primary); }
        .article-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

        /* Image 16/9 */
        .main-photo-wrapper { margin-bottom: 15px;max-width:1200px;margin:auto; }
        .main-photo { 
            width: 100%; 
            aspect-ratio: 16 / 9; 
            object-fit: cover; 
            background: #eee; 
            border-radius: 4px; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .photo-caption { font-size: 13px; color: var(--text-muted); margin-top: 12px; font-family: 'Helvetica Neue', sans-serif; text-align: left; border-left: 2px solid var(--border-color); padding-left: 10px; }

        /* Contenu de l'article */
        .article-content { 
            font-family: 'Georgia', serif; 
            font-size: 20px; 
            color: #222; 
            line-height: 1.7;
			text-align:justify;
        }
        .article-content p { margin-bottom: 30px; }
        .article-content h2 { 
            font-family: 'Helvetica Neue', sans-serif; 
            font-size: 32px; 
            margin: 50px 0 25px; 
            color: var(--primary); 
            letter-spacing: -0.5px;
        }
        .article-content h3 {
            font-family: 'Helvetica Neue', sans-serif;
            font-size: 24px;
            margin: 35px 0 15px;
            color: var(--text-main);
        }

        /* Bloc de Citation */
        .quote-block {
            margin: 45px 0;
            padding: 30px;
            background: var(--bg-alt);
            border-radius: 8px;
            text-align: center;
        }
        .quote-text {
            font-family: 'Georgia', serif;
            font-style: italic;
            font-size: 24px;
            color: var(--primary);
            display: block;
            margin-bottom: 15px;
        }
        .quote-author {
            font-size: 13px;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 1px;
        }		
        @media (max-width: 768px) {
            .header-main { grid-template-columns: auto 1fr; }
            .btn-subscribe { display: none; }
            .article-header h1 { font-size: 34px; }
            .chapo { font-size: 19px; }
            .article-content { font-size: 18px; }
        }		
		        @media (max-width: 768px) {
            .gallery-intro h1 { font-size: 32px; }
            .photo-grid { grid-template-columns: 1fr; gap: 20px; }
            .header-main { grid-template-columns: auto 1fr; }
            .btn-subscribe { display: none; }
            .lightbox-container { max-width: 100%; }
        }
		