Europe tells a proud story: emissions down 40% and more since 2000. It is true — of the emissions we produce at home. But every one of us also consumes goods made elsewhere, and that pollution is ours too. Count it, and the story inverts: 28 of 29 European countries import more CO2 than they produce — and the nations with the greenest reputations outsource the most. This is the first entry in a new series measuring the distance between what we say we value and how we actually live: the Say-Do Gap.
And the pride is not baseless. Measured the usual way — the emissions released inside a country's own borders — the progress is real and large.
Since 2000, territorial emissions per person have fallen 53% in the United Kingdom, 52% in Denmark, 44% in Sweden, 41% in France. The public mood matches the policy: 93% of Europeans call climate change a serious problem, and support for the EU's 2050 climate-neutrality goal runs highest in Malta (94%) and Sweden (91%). This is the say — a continent that describes itself, sincerely, as the world's climate conscience.
There is only one problem with using emissions-at-home as the scoreboard. It measures where things are made, not where they are used. And over the same decades that Europe's factories went quiet, Europe kept buying — steel, phones, cars, clothes — made in furnaces somewhere else. Those emissions don't show up in the proud number. They still show up in the atmosphere.
Emissions-at-home measures where things are made. Not where they are used.
Consumption-based accounting — the standard method of the Global Carbon Project — adds the emissions embedded in imports and subtracts those in exports. It answers the honest question: how much CO2 does a European's way of life actually require?
The answer is uncomfortable. The EU consumes about 33% more CO2 than it produces — 7.3 tonnes per person against 5.5 produced at home. And while the production line fell steeply, the consumption line sagged only gently. So here is the insight, stated plainly: we didn't shrink our footprint nearly as much as we told ourselves — we mostly changed where the smoke comes out. The atmosphere doesn't care which border it happens behind.
What you're seeing: every country cut the emissions it makes faster than the ones it uses. The space between the two bars isn't pollution we ended. It's pollution we exported.
And then there is Switzerland, where the gap stops being a gap and becomes a confession. Between 2000 and 2023, Switzerland cut the emissions it produces at home by 41%. Over the same years, the emissions its consumption actually required rose 6%. A perfect domestic success story, and a real-world footprint that quietly grew.
The pattern has a punchline: the cleaner a country looks at home, the more of its carbon tends to be burned abroad on its behalf. And if almost everyone consumes more than they produce, someone must be producing more than they consume — there is essentially one such country in Europe, and it is the one the others quietly rely on.
Rank Europe by the share of each nation's footprint that is imported — emitted abroad on its behalf — and the league table is the opposite of the reputational one. The biggest outsourcers are among the greenest-branded economies on Earth: Switzerland (73%), Belgium (57%), Denmark (42%), Sweden (40%), the United Kingdom (37%). More than a third of the Swedish or British footprint is produced in someone else's country.
What you're seeing: the taller the bar, the more of a country's carbon is burned in someone else's country. The most climate-proud economies sit at the top of this table. Only one country — Poland — falls below the line.
At the very bottom sits the exception: Poland is the only European country that produces more CO2 than it consumes. The continent's remaining heavy industry — its steel, its coking coal, its manufacturing — runs largely here, making the goods that let cleaner-looking neighbours post cleaner-looking numbers. Poland is not Europe's polluter. It is Europe's factory floor, carrying emissions the rest of us consume and disown.
Poland isn't Europe's polluter. It's Europe's factory floor.
A necessary honesty: this is not simple hypocrisy. When an economy shifts from steelworks to software, its domestic emissions genuinely fall — and Swiss hydro and Swedish nuclear are genuinely clean. The gap is structural, not a lie. But structure is exactly the point. The number a country celebrates was shaped by an accounting boundary drawn at its own border. Move the boundary to where people actually live and buy, and the achievement shrinks. That distance — between the honest story and the flattering one — is the Say-Do Gap.
Where does Romania sit on a map like this? Somewhere that resists every easy story — including the flattering-in-reverse one.
Romania imports just 13% of its footprint — one of the lowest outsourcing shares in Europe. Its consumption emissions (4.1 tonnes per person) are the lowest in the EU, and they sit close to what it produces at home. Romania has not offshored its footprint, because it never fully deindustrialised and never grew rich enough to buy the world's output. It still, largely, makes what it uses.
This is worth sitting with, because it cuts against the reflex of these essays. A poorer country here is not the villain and not the saint — it is simply less able to hide. The wealthy economies that look cleanest are, in part, cleanest because they can afford to import the dirty part. Romania's honesty is not a virtue it chose. But it is a useful mirror: it shows what a footprint looks like before money lets you move it somewhere you can't see.
Values are cheap to declare and expensive to live. That is not a cynical observation — it is the reason measurement matters. A stated value that never touches behaviour isn't a value; it's a mood. And the only way to tell the difference is to put the two numbers next to each other and refuse to look away.
That is what this new series will do, one domain at a time: place the say — what surveys record us believing — beside the do — what statistics record us actually doing — and report the distance without flinching. Climate is the first, because it is where the gap is widest and best documented. It will not be the last.
Every figure here is computed from open data and reproducible; the method is in the note below, and you are invited to run it yourself. That invitation is the point. A number you can't check is a slogan. A number you can is an argument. This series only deals in the second kind.
— END · STORY 04 —
This is an original analysis, not a summary of someone else's report. The behavioural data is computed from the Global Carbon Project's consumption-based emissions accounts, as published and maintained by Our World in Data (2023 reference year, the latest with full European coverage). The full working dataset and calculation are reproducible from the public file.
# Every number in this essay comes out of this. Run it and check me.
import pandas as pd
df = pd.read_csv("https://raw.githubusercontent.com/owid/co2-data/master/owid-co2-data.csv")
d = df[df.year == 2023][["country", "co2_per_capita", "consumption_co2_per_capita"]].dropna()
# imported (outsourced) share of the footprint, %
d["imported"] = 100 * (d.consumption_co2_per_capita - d.co2_per_capita) / d.consumption_co2_per_capita
print(d.sort_values("imported", ascending=False))
| Country | Produced | Consumed | Imported |
|---|---|---|---|
| Malta * | 3.3 | 26.8 | +88% |
| Switzerland | 3.6 | 13.3 | +73% |
| Belgium | 7.2 | 16.8 | +57% |
| Latvia | 3.5 | 7.1 | +51% |
| Denmark | 4.8 | 8.3 | +42% |
| Sweden | 3.5 | 5.8 | +41% |
| Slovenia | 5.7 | 9.3 | +39% |
| Lithuania | 4.4 | 7.2 | +39% |
| United Kingdom | 4.5 | 7.1 | +37% |
| France | 4.1 | 6.1 | +34% |
| Finland | 5.7 | 8.5 | +33% |
| Estonia | 6.4 | 9.2 | +31% |
| Hungary | 4.2 | 5.9 | +29% |
| Italy | 5.2 | 7.2 | +27% |
| Austria | 6.2 | 8.4 | +26% |
| Germany | 7.0 | 9.1 | +23% |
| Greece | 5.1 | 6.6 | +23% |
| Croatia | 4.7 | 6.1 | +22% |
| Netherlands | 6.5 | 8.3 | +22% |
| Portugal | 3.6 | 4.5 | +21% |
| Ireland | 6.5 | 7.9 | +18% |
| Spain | 4.5 | 5.4 | +17% |
| Czechia | 7.7 | 9.3 | +17% |
| Cyprus | 5.3 | 6.4 | +17% |
| Romania | 3.5 | 4.1 | +13% |
| Slovakia | 5.6 | 6.3 | +12% |
| Luxembourg | 10.3 | 11.0 | +7% |
| Bulgaria | 5.1 | 5.2 | +2% |
| Norway | 7.0 | 7.1 | +0% |
| Poland | 7.3 | 7.1 | -3% |
Definitions. Production (territorial) emissions = CO2 released inside a country's borders. Consumption emissions = production + emissions embedded in imports − emissions embedded in exports; i.e. the footprint of what a country's residents actually consume. Imported (outsourced) share = (consumption − production) ÷ consumption, per capita. A positive value means a country is a net importer of emissions; negative means a net exporter.
Verbatim results (2023, per capita). EU-27: 5.5 t produced, 7.3 t consumed (consumption ≈ 33% above production). Of 29 European countries excluding Malta, 28 are net importers; mean imported share 26%. Biggest outsourcers: Switzerland 73%, Belgium 57%, Latvia 51%, Denmark 42%, Sweden 40%, Slovenia 39%, Lithuania 39%, UK 37%, France 34%. Only net exporter: Poland (−3%). Romania: 13% imported (4.1 t consumed, the EU's lowest). Trend 2000–2023: production fell more than consumption in every economy examined — UK −54% vs −43%, Denmark −52% vs −35%, France −41% vs −29%, Sweden −44% vs −39%, Germany −36% vs −33%; Switzerland −41% production vs +6% consumption.
Caveats, stated plainly. (1) Malta (88% imported) is excluded from the ranking as a small-economy outlier: consumption-based accounts are noisier for tiny, trade- and finance-dominated economies. (2) Consumption-based estimates carry wider uncertainty than territorial ones, because they model trade flows; the direction and rank order are robust and consistent across years, individual decimals less so. (3) The gap is structural, not moral: deindustrialisation and genuinely clean domestic power (Swiss hydro, Swedish and French nuclear) legitimately lower production emissions. The essay's claim is narrow and defensible — that the celebrated territorial number understates the true footprint, and does so most for the wealthiest, greenest-branded economies.
The "say" figures are from published Eurobarometer surveys: 93% of Europeans consider climate change a serious problem (Special Eurobarometer 538, 2023); support for 2050 climate-neutrality highest in Malta 94% and Sweden 91% (Eurobarometer, 2025). These are used to characterise stated attitudes, not correlated country-by-country against footprint.
Attribution, stated precisely. The consumption-based emissions used here are compiled by the Global Carbon Project and accessed via Our World in Data's open dataset. Global Carbon Project is the primary source; Our World in Data cleans and redistributes it but does not produce the figures. The consumption-based (footprint) estimates are themselves derived from multi-regional input–output modelling of emissions embedded in trade, which carries wider uncertainty than territorial accounting — so this essay leans on the direction and rank order of the numbers, which are stable across years, rather than on individual decimals.