@hyperspell/openclaw-hyperspell 0.7.2 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -64
- package/index.ts +0 -7
- package/package.json +2 -5
- package/commands/wine.ts +0 -164
- package/lib/run-script.ts +0 -32
- package/sommeliagent/references/cross-domain-mappings.md +0 -63
- package/sommeliagent/scripts/auth.py +0 -222
- package/sommeliagent/scripts/history.py +0 -72
- package/sommeliagent/scripts/rate.py +0 -76
- package/sommeliagent/scripts/recommend.py +0 -777
- package/sommeliagent/scripts/test_recommend.py +0 -459
- package/sommeliagent/scripts/wine_db.py +0 -3224
- package/tools/sommelier.ts +0 -254
|
@@ -1,3224 +0,0 @@
|
|
|
1
|
-
"""
|
|
2
|
-
SommeliAgent Wine Database.
|
|
3
|
-
|
|
4
|
-
A curated collection of 200+ wines spanning the globe, profiled for
|
|
5
|
-
algorithmic pairing with Spotify listening data.
|
|
6
|
-
"""
|
|
7
|
-
|
|
8
|
-
from dataclasses import dataclass
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
# ──────────────────────────────────────────────
|
|
12
|
-
# Types
|
|
13
|
-
# ──────────────────────────────────────────────
|
|
14
|
-
|
|
15
|
-
@dataclass
|
|
16
|
-
class WineProfile:
|
|
17
|
-
body: float = 0.0
|
|
18
|
-
sweetness: float = 0.0
|
|
19
|
-
tannin: float = 0.0
|
|
20
|
-
acidity: float = 0.0
|
|
21
|
-
complexity: float = 0.0
|
|
22
|
-
fruitiness: float = 0.0
|
|
23
|
-
earthiness: float = 0.0
|
|
24
|
-
spiciness: float = 0.0
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
@dataclass
|
|
28
|
-
class Wine:
|
|
29
|
-
id: str
|
|
30
|
-
name: str
|
|
31
|
-
producer: str
|
|
32
|
-
region: str
|
|
33
|
-
country: str
|
|
34
|
-
varietal: str
|
|
35
|
-
color: str # "red", "white", "rose", "sparkling", "orange", "dessert"
|
|
36
|
-
profile: WineProfile
|
|
37
|
-
price_range: str # "budget", "mid", "premium", "luxury"
|
|
38
|
-
description: str
|
|
39
|
-
tags: list[str]
|
|
40
|
-
vintage: int | None = None
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
# ──────────────────────────────────────────────
|
|
44
|
-
# Helper
|
|
45
|
-
# ──────────────────────────────────────────────
|
|
46
|
-
|
|
47
|
-
def wp(body: float, sweetness: float, tannin: float, acidity: float,
|
|
48
|
-
complexity: float, fruitiness: float, earthiness: float,
|
|
49
|
-
spiciness: float) -> WineProfile:
|
|
50
|
-
return WineProfile(body=body, sweetness=sweetness, tannin=tannin,
|
|
51
|
-
acidity=acidity, complexity=complexity,
|
|
52
|
-
fruitiness=fruitiness, earthiness=earthiness,
|
|
53
|
-
spiciness=spiciness)
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
# ──────────────────────────────────────────────
|
|
57
|
-
# Wine Database
|
|
58
|
-
# ──────────────────────────────────────────────
|
|
59
|
-
|
|
60
|
-
WINE_DB: list[Wine] = [
|
|
61
|
-
|
|
62
|
-
# =====================================================================
|
|
63
|
-
# REDS
|
|
64
|
-
# =====================================================================
|
|
65
|
-
|
|
66
|
-
# ── France — Bordeaux Left Bank ──────────────────────────────────────
|
|
67
|
-
|
|
68
|
-
Wine(
|
|
69
|
-
id="red-fr-001",
|
|
70
|
-
name="Grand Vin de Château Latour",
|
|
71
|
-
producer="Château Latour",
|
|
72
|
-
region="Pauillac",
|
|
73
|
-
country="France",
|
|
74
|
-
varietal="Cabernet Sauvignon blend",
|
|
75
|
-
color="red",
|
|
76
|
-
profile=wp(0.95, 0.10, 0.92, 0.55, 0.98, 0.45, 0.70, 0.50),
|
|
77
|
-
price_range="luxury",
|
|
78
|
-
description="The monolith of Pauillac. Tasting this is like reading a novel that takes 30 years to finish — and every page is worth it.",
|
|
79
|
-
tags=["old-world", "age-worthy", "terroir-driven", "elegant"],
|
|
80
|
-
vintage=2010,
|
|
81
|
-
),
|
|
82
|
-
Wine(
|
|
83
|
-
id="red-fr-002",
|
|
84
|
-
name="Léoville Las Cases Grand Vin",
|
|
85
|
-
producer="Château Léoville Las Cases",
|
|
86
|
-
region="Saint-Julien",
|
|
87
|
-
country="France",
|
|
88
|
-
varietal="Cabernet Sauvignon blend",
|
|
89
|
-
color="red",
|
|
90
|
-
profile=wp(0.90, 0.10, 0.88, 0.58, 0.95, 0.48, 0.65, 0.45),
|
|
91
|
-
price_range="luxury",
|
|
92
|
-
description="The Super Second that drinks like a First Growth and has the intellectual heft of a doctoral thesis on terroir.",
|
|
93
|
-
tags=["old-world", "age-worthy", "terroir-driven", "elegant"],
|
|
94
|
-
vintage=2015,
|
|
95
|
-
),
|
|
96
|
-
Wine(
|
|
97
|
-
id="red-fr-003",
|
|
98
|
-
name="Château Palmer",
|
|
99
|
-
producer="Château Palmer",
|
|
100
|
-
region="Margaux",
|
|
101
|
-
country="France",
|
|
102
|
-
varietal="Cabernet Sauvignon/Merlot blend",
|
|
103
|
-
color="red",
|
|
104
|
-
profile=wp(0.85, 0.12, 0.80, 0.55, 0.95, 0.55, 0.60, 0.40),
|
|
105
|
-
price_range="luxury",
|
|
106
|
-
description="Margaux perfume in a bottle. Palmer seduces where other Bordeaux demands patience — silk and violets all the way down.",
|
|
107
|
-
tags=["old-world", "age-worthy", "elegant", "terroir-driven"],
|
|
108
|
-
vintage=2016,
|
|
109
|
-
),
|
|
110
|
-
|
|
111
|
-
# ── France — Bordeaux Right Bank ─────────────────────────────────────
|
|
112
|
-
|
|
113
|
-
Wine(
|
|
114
|
-
id="red-fr-004",
|
|
115
|
-
name="Château Canon",
|
|
116
|
-
producer="Château Canon",
|
|
117
|
-
region="Saint-Émilion",
|
|
118
|
-
country="France",
|
|
119
|
-
varietal="Merlot/Cabernet Franc",
|
|
120
|
-
color="red",
|
|
121
|
-
profile=wp(0.82, 0.15, 0.72, 0.55, 0.90, 0.60, 0.55, 0.35),
|
|
122
|
-
price_range="premium",
|
|
123
|
-
description="Limestone-kissed Merlot that moves like a dancer — precise, balanced, and impossible to ignore on the palate.",
|
|
124
|
-
tags=["old-world", "elegant", "terroir-driven", "age-worthy"],
|
|
125
|
-
vintage=2018,
|
|
126
|
-
),
|
|
127
|
-
Wine(
|
|
128
|
-
id="red-fr-005",
|
|
129
|
-
name="Château Lafleur",
|
|
130
|
-
producer="Château Lafleur",
|
|
131
|
-
region="Pomerol",
|
|
132
|
-
country="France",
|
|
133
|
-
varietal="Merlot/Cabernet Franc",
|
|
134
|
-
color="red",
|
|
135
|
-
profile=wp(0.88, 0.12, 0.78, 0.52, 0.96, 0.58, 0.65, 0.40),
|
|
136
|
-
price_range="luxury",
|
|
137
|
-
description="Tiny production, massive personality. Lafleur is the introverted genius of Pomerol — brooding violets and iron-fisted velvet.",
|
|
138
|
-
tags=["old-world", "age-worthy", "terroir-driven", "elegant"],
|
|
139
|
-
vintage=2015,
|
|
140
|
-
),
|
|
141
|
-
|
|
142
|
-
# ── France — Burgundy ────────────────────────────────────────────────
|
|
143
|
-
|
|
144
|
-
Wine(
|
|
145
|
-
id="red-fr-006",
|
|
146
|
-
name="Gevrey-Chambertin 1er Cru Clos Saint-Jacques",
|
|
147
|
-
producer="Domaine Armand Rousseau",
|
|
148
|
-
region="Gevrey-Chambertin",
|
|
149
|
-
country="France",
|
|
150
|
-
varietal="Pinot Noir",
|
|
151
|
-
color="red",
|
|
152
|
-
profile=wp(0.70, 0.08, 0.55, 0.72, 0.97, 0.60, 0.75, 0.40),
|
|
153
|
-
price_range="luxury",
|
|
154
|
-
description="Rousseau's Clos Saint-Jacques is the site that should have been Grand Cru. Haunting red fruit over ancient stone — goosebump wine.",
|
|
155
|
-
tags=["old-world", "terroir-driven", "elegant", "age-worthy"],
|
|
156
|
-
vintage=2019,
|
|
157
|
-
),
|
|
158
|
-
Wine(
|
|
159
|
-
id="red-fr-007",
|
|
160
|
-
name="Chambolle-Musigny Les Amoureuses",
|
|
161
|
-
producer="Domaine Georges Roumier",
|
|
162
|
-
region="Chambolle-Musigny",
|
|
163
|
-
country="France",
|
|
164
|
-
varietal="Pinot Noir",
|
|
165
|
-
color="red",
|
|
166
|
-
profile=wp(0.62, 0.08, 0.48, 0.75, 0.96, 0.65, 0.70, 0.30),
|
|
167
|
-
price_range="luxury",
|
|
168
|
-
description="The name means 'The Lovers' and honestly, it lives up to it. Ethereal rose petal, wild strawberry, and a finish that won't let go.",
|
|
169
|
-
tags=["old-world", "terroir-driven", "elegant", "age-worthy"],
|
|
170
|
-
vintage=2018,
|
|
171
|
-
),
|
|
172
|
-
Wine(
|
|
173
|
-
id="red-fr-008",
|
|
174
|
-
name="Volnay 1er Cru Taillepieds",
|
|
175
|
-
producer="Domaine de Montille",
|
|
176
|
-
region="Volnay",
|
|
177
|
-
country="France",
|
|
178
|
-
varietal="Pinot Noir",
|
|
179
|
-
color="red",
|
|
180
|
-
profile=wp(0.60, 0.08, 0.50, 0.74, 0.88, 0.62, 0.68, 0.30),
|
|
181
|
-
price_range="premium",
|
|
182
|
-
description="De Montille's Taillepieds is Volnay at its most graceful — cherries and chalk dust waltzing across the palate.",
|
|
183
|
-
tags=["old-world", "terroir-driven", "elegant"],
|
|
184
|
-
vintage=2020,
|
|
185
|
-
),
|
|
186
|
-
Wine(
|
|
187
|
-
id="red-fr-009",
|
|
188
|
-
name="Pommard 1er Cru Les Rugiens",
|
|
189
|
-
producer="Domaine de Courcel",
|
|
190
|
-
region="Pommard",
|
|
191
|
-
country="France",
|
|
192
|
-
varietal="Pinot Noir",
|
|
193
|
-
color="red",
|
|
194
|
-
profile=wp(0.72, 0.08, 0.60, 0.68, 0.88, 0.55, 0.72, 0.35),
|
|
195
|
-
price_range="premium",
|
|
196
|
-
description="Pommard's iron fist in a velvet glove. Rugiens delivers darker, more muscular Burgundy that rewards the patient.",
|
|
197
|
-
tags=["old-world", "terroir-driven", "age-worthy"],
|
|
198
|
-
vintage=2019,
|
|
199
|
-
),
|
|
200
|
-
|
|
201
|
-
# ── France — Northern Rhône ──────────────────────────────────────────
|
|
202
|
-
|
|
203
|
-
Wine(
|
|
204
|
-
id="red-fr-010",
|
|
205
|
-
name="Côte-Rôtie La Landonne",
|
|
206
|
-
producer="E. Guigal",
|
|
207
|
-
region="Côte-Rôtie",
|
|
208
|
-
country="France",
|
|
209
|
-
varietal="Syrah",
|
|
210
|
-
color="red",
|
|
211
|
-
profile=wp(0.92, 0.10, 0.82, 0.55, 0.96, 0.50, 0.70, 0.75),
|
|
212
|
-
price_range="luxury",
|
|
213
|
-
description="Guigal's La Landonne is Syrah turned up to eleven — smoked meat, crushed rocks, and violets, aged in new oak until it purrs.",
|
|
214
|
-
tags=["old-world", "age-worthy", "spicy", "terroir-driven"],
|
|
215
|
-
vintage=2017,
|
|
216
|
-
),
|
|
217
|
-
Wine(
|
|
218
|
-
id="red-fr-011",
|
|
219
|
-
name="Hermitage",
|
|
220
|
-
producer="Domaine Jean-Louis Chave",
|
|
221
|
-
region="Hermitage",
|
|
222
|
-
country="France",
|
|
223
|
-
varietal="Syrah",
|
|
224
|
-
color="red",
|
|
225
|
-
profile=wp(0.92, 0.10, 0.80, 0.52, 0.97, 0.48, 0.78, 0.72),
|
|
226
|
-
price_range="luxury",
|
|
227
|
-
description="The granite hill that launched a thousand Syrahs. Chave's Hermitage is a masterclass in place — dark, deep, and eternal.",
|
|
228
|
-
tags=["old-world", "age-worthy", "terroir-driven", "spicy"],
|
|
229
|
-
vintage=2018,
|
|
230
|
-
),
|
|
231
|
-
Wine(
|
|
232
|
-
id="red-fr-012",
|
|
233
|
-
name="Cornas Les Chailles",
|
|
234
|
-
producer="Domaine Thierry Allemand",
|
|
235
|
-
region="Cornas",
|
|
236
|
-
country="France",
|
|
237
|
-
varietal="Syrah",
|
|
238
|
-
color="red",
|
|
239
|
-
profile=wp(0.88, 0.08, 0.78, 0.55, 0.92, 0.45, 0.80, 0.70),
|
|
240
|
-
price_range="premium",
|
|
241
|
-
description="Allemand farms with a mule and makes wine that tastes like the mountain itself — wild, untamed Syrah with a granite soul.",
|
|
242
|
-
tags=["old-world", "terroir-driven", "spicy", "natural"],
|
|
243
|
-
vintage=2019,
|
|
244
|
-
),
|
|
245
|
-
Wine(
|
|
246
|
-
id="red-fr-013",
|
|
247
|
-
name="Saint-Joseph Vignes de l'Hospice",
|
|
248
|
-
producer="E. Guigal",
|
|
249
|
-
region="Saint-Joseph",
|
|
250
|
-
country="France",
|
|
251
|
-
varietal="Syrah",
|
|
252
|
-
color="red",
|
|
253
|
-
profile=wp(0.82, 0.10, 0.70, 0.58, 0.85, 0.55, 0.62, 0.65),
|
|
254
|
-
price_range="premium",
|
|
255
|
-
description="Saint-Joseph's answer to the big boys up the river. Pepper, blackberry, and a smoky wink that says 'I know what I'm doing.'",
|
|
256
|
-
tags=["old-world", "spicy", "terroir-driven"],
|
|
257
|
-
vintage=2019,
|
|
258
|
-
),
|
|
259
|
-
Wine(
|
|
260
|
-
id="red-fr-014",
|
|
261
|
-
name="Crozes-Hermitage Cuvée Christophe",
|
|
262
|
-
producer="Domaine Combier",
|
|
263
|
-
region="Crozes-Hermitage",
|
|
264
|
-
country="France",
|
|
265
|
-
varietal="Syrah",
|
|
266
|
-
color="red",
|
|
267
|
-
profile=wp(0.78, 0.10, 0.65, 0.60, 0.78, 0.60, 0.55, 0.60),
|
|
268
|
-
price_range="mid",
|
|
269
|
-
description="The gateway drug to Northern Rhône Syrah. Combier's top cuvée punches way above its weight — juicy, peppery, and deeply satisfying.",
|
|
270
|
-
tags=["old-world", "spicy", "approachable", "fruit-forward"],
|
|
271
|
-
vintage=2020,
|
|
272
|
-
),
|
|
273
|
-
|
|
274
|
-
# ── France — Southern Rhône ──────────────────────────────────────────
|
|
275
|
-
|
|
276
|
-
Wine(
|
|
277
|
-
id="red-fr-015",
|
|
278
|
-
name="Châteauneuf-du-Pape",
|
|
279
|
-
producer="Château Rayas",
|
|
280
|
-
region="Châteauneuf-du-Pape",
|
|
281
|
-
country="France",
|
|
282
|
-
varietal="Grenache",
|
|
283
|
-
color="red",
|
|
284
|
-
profile=wp(0.85, 0.12, 0.55, 0.50, 0.95, 0.65, 0.72, 0.55),
|
|
285
|
-
price_range="luxury",
|
|
286
|
-
description="The rebel of Châteauneuf — 100% Grenache from sandy soils, no new oak, minimal intervention. Ethereal and utterly unique.",
|
|
287
|
-
tags=["old-world", "terroir-driven", "elegant", "age-worthy"],
|
|
288
|
-
vintage=2016,
|
|
289
|
-
),
|
|
290
|
-
Wine(
|
|
291
|
-
id="red-fr-016",
|
|
292
|
-
name="Gigondas",
|
|
293
|
-
producer="Domaine Saint Cosme",
|
|
294
|
-
region="Gigondas",
|
|
295
|
-
country="France",
|
|
296
|
-
varietal="Grenache/Syrah",
|
|
297
|
-
color="red",
|
|
298
|
-
profile=wp(0.82, 0.12, 0.62, 0.50, 0.82, 0.62, 0.60, 0.58),
|
|
299
|
-
price_range="mid",
|
|
300
|
-
description="Gigondas at its most charming — dark berries, garrigue herbs, and that sun-soaked Southern Rhône warmth that wraps around you.",
|
|
301
|
-
tags=["old-world", "mediterranean", "spicy", "approachable"],
|
|
302
|
-
vintage=2020,
|
|
303
|
-
),
|
|
304
|
-
|
|
305
|
-
# ── France — Beaujolais ──────────────────────────────────────────────
|
|
306
|
-
|
|
307
|
-
Wine(
|
|
308
|
-
id="red-fr-017",
|
|
309
|
-
name="Morgon Côte du Py",
|
|
310
|
-
producer="Jean Foillard",
|
|
311
|
-
region="Morgon",
|
|
312
|
-
country="France",
|
|
313
|
-
varietal="Gamay",
|
|
314
|
-
color="red",
|
|
315
|
-
profile=wp(0.58, 0.10, 0.40, 0.72, 0.80, 0.75, 0.55, 0.30),
|
|
316
|
-
price_range="mid",
|
|
317
|
-
description="The wine that proved Beaujolais could be serious without losing its soul. Volcanic soil meets Gamay — crunchy, deep, electric.",
|
|
318
|
-
tags=["old-world", "natural", "fruit-forward", "light-bodied"],
|
|
319
|
-
vintage=2021,
|
|
320
|
-
),
|
|
321
|
-
Wine(
|
|
322
|
-
id="red-fr-018",
|
|
323
|
-
name="Fleurie",
|
|
324
|
-
producer="Domaine Julien Sunier",
|
|
325
|
-
region="Fleurie",
|
|
326
|
-
country="France",
|
|
327
|
-
varietal="Gamay",
|
|
328
|
-
color="red",
|
|
329
|
-
profile=wp(0.48, 0.10, 0.32, 0.75, 0.72, 0.82, 0.40, 0.22),
|
|
330
|
-
price_range="mid",
|
|
331
|
-
description="Flowers in liquid form. Sunier's Fleurie is pure silk and petals — serve it slightly chilled and watch it disappear.",
|
|
332
|
-
tags=["old-world", "natural", "fruit-forward", "light-bodied", "elegant", "fun"],
|
|
333
|
-
vintage=2022,
|
|
334
|
-
),
|
|
335
|
-
Wine(
|
|
336
|
-
id="red-fr-019",
|
|
337
|
-
name="Moulin-à-Vent Les Thorins",
|
|
338
|
-
producer="Château du Moulin-à-Vent",
|
|
339
|
-
region="Moulin-à-Vent",
|
|
340
|
-
country="France",
|
|
341
|
-
varietal="Gamay",
|
|
342
|
-
color="red",
|
|
343
|
-
profile=wp(0.65, 0.10, 0.48, 0.68, 0.80, 0.68, 0.58, 0.35),
|
|
344
|
-
price_range="mid",
|
|
345
|
-
description="The most Burgundian of all Beaujolais. Manganese-rich soils give this Gamay a spine that makes it age like Pinot — don't sleep on it.",
|
|
346
|
-
tags=["old-world", "terroir-driven", "age-worthy"],
|
|
347
|
-
vintage=2020,
|
|
348
|
-
),
|
|
349
|
-
|
|
350
|
-
# ── France — Loire (reds) ────────────────────────────────────────────
|
|
351
|
-
|
|
352
|
-
Wine(
|
|
353
|
-
id="red-fr-020",
|
|
354
|
-
name="Chinon Les Picasses",
|
|
355
|
-
producer="Domaine Olga Raffault",
|
|
356
|
-
region="Chinon",
|
|
357
|
-
country="France",
|
|
358
|
-
varietal="Cabernet Franc",
|
|
359
|
-
color="red",
|
|
360
|
-
profile=wp(0.60, 0.08, 0.55, 0.72, 0.78, 0.62, 0.60, 0.35),
|
|
361
|
-
price_range="mid",
|
|
362
|
-
description="Loire Cab Franc at its savory best — pencil shavings, raspberry, and that unmistakable tuffeau limestone lift.",
|
|
363
|
-
tags=["old-world", "terroir-driven", "elegant", "light-bodied"],
|
|
364
|
-
vintage=2020,
|
|
365
|
-
),
|
|
366
|
-
Wine(
|
|
367
|
-
id="red-fr-021",
|
|
368
|
-
name="Bourgueil Les Perrières",
|
|
369
|
-
producer="Domaine de la Butte",
|
|
370
|
-
region="Bourgueil",
|
|
371
|
-
country="France",
|
|
372
|
-
varietal="Cabernet Franc",
|
|
373
|
-
color="red",
|
|
374
|
-
profile=wp(0.62, 0.08, 0.58, 0.70, 0.75, 0.60, 0.62, 0.38),
|
|
375
|
-
price_range="mid",
|
|
376
|
-
description="Think Chinon's slightly bolder cousin. Deeper fruit, chalkier tannins, same knife-edge freshness. A great Tuesday night wine.",
|
|
377
|
-
tags=["old-world", "terroir-driven", "approachable"],
|
|
378
|
-
vintage=2021,
|
|
379
|
-
),
|
|
380
|
-
|
|
381
|
-
# ── France — Languedoc, Cahors, Bandol, Madiran, Jura, Corsica ──────
|
|
382
|
-
|
|
383
|
-
Wine(
|
|
384
|
-
id="red-fr-022",
|
|
385
|
-
name="Mas de Daumas Gassac Rouge",
|
|
386
|
-
producer="Mas de Daumas Gassac",
|
|
387
|
-
region="Languedoc",
|
|
388
|
-
country="France",
|
|
389
|
-
varietal="Cabernet Sauvignon blend",
|
|
390
|
-
color="red",
|
|
391
|
-
profile=wp(0.82, 0.10, 0.72, 0.55, 0.85, 0.52, 0.62, 0.48),
|
|
392
|
-
price_range="mid",
|
|
393
|
-
description="The Grand Cru of the Languedoc. Cabernet-led but Mediterranean in spirit — garrigue, cassis, and wild herb poetry.",
|
|
394
|
-
tags=["old-world", "terroir-driven", "mediterranean"],
|
|
395
|
-
vintage=2019,
|
|
396
|
-
),
|
|
397
|
-
Wine(
|
|
398
|
-
id="red-fr-023",
|
|
399
|
-
name="Cahors Le Cèdre",
|
|
400
|
-
producer="Château du Cèdre",
|
|
401
|
-
region="Cahors",
|
|
402
|
-
country="France",
|
|
403
|
-
varietal="Malbec",
|
|
404
|
-
color="red",
|
|
405
|
-
profile=wp(0.88, 0.10, 0.78, 0.52, 0.82, 0.55, 0.68, 0.42),
|
|
406
|
-
price_range="mid",
|
|
407
|
-
description="Forget Argentina for a moment — this is where Malbec was born. Dark as ink, tannic as tradition, and unapologetically French.",
|
|
408
|
-
tags=["old-world", "terroir-driven", "age-worthy"],
|
|
409
|
-
vintage=2018,
|
|
410
|
-
),
|
|
411
|
-
Wine(
|
|
412
|
-
id="red-fr-024",
|
|
413
|
-
name="Bandol Rouge",
|
|
414
|
-
producer="Domaine Tempier",
|
|
415
|
-
region="Bandol",
|
|
416
|
-
country="France",
|
|
417
|
-
varietal="Mourvèdre",
|
|
418
|
-
color="red",
|
|
419
|
-
profile=wp(0.85, 0.08, 0.75, 0.52, 0.88, 0.48, 0.72, 0.65),
|
|
420
|
-
price_range="premium",
|
|
421
|
-
description="Tempier is the cathedral of Mourvèdre. Leather, wild herbs, black fruit, and the unmistakable perfume of Provençal hillsides.",
|
|
422
|
-
tags=["old-world", "terroir-driven", "spicy", "age-worthy", "mediterranean"],
|
|
423
|
-
vintage=2019,
|
|
424
|
-
),
|
|
425
|
-
Wine(
|
|
426
|
-
id="red-fr-025",
|
|
427
|
-
name="Madiran",
|
|
428
|
-
producer="Château Montus",
|
|
429
|
-
region="Madiran",
|
|
430
|
-
country="France",
|
|
431
|
-
varietal="Tannat",
|
|
432
|
-
color="red",
|
|
433
|
-
profile=wp(0.92, 0.08, 0.90, 0.50, 0.80, 0.45, 0.65, 0.50),
|
|
434
|
-
price_range="mid",
|
|
435
|
-
description="Tannat is the grape that bites back. Montus tames it just enough — massive structure, dark fruit, and tannins that could hold up a bridge.",
|
|
436
|
-
tags=["old-world", "age-worthy", "terroir-driven"],
|
|
437
|
-
vintage=2018,
|
|
438
|
-
),
|
|
439
|
-
Wine(
|
|
440
|
-
id="red-fr-026",
|
|
441
|
-
name="Trousseau Les Corvées",
|
|
442
|
-
producer="Domaine des Miroirs",
|
|
443
|
-
region="Jura",
|
|
444
|
-
country="France",
|
|
445
|
-
varietal="Trousseau",
|
|
446
|
-
color="red",
|
|
447
|
-
profile=wp(0.45, 0.08, 0.35, 0.75, 0.78, 0.68, 0.58, 0.30),
|
|
448
|
-
price_range="mid",
|
|
449
|
-
description="Jura's red secret. Translucent, haunting, like a half-remembered dream you're not sure you want to wake from. The Jura does things to your expectations that you'll thank it for later.",
|
|
450
|
-
tags=["old-world", "natural", "light-bodied", "obscure-varietal", "fun"],
|
|
451
|
-
vintage=2021,
|
|
452
|
-
),
|
|
453
|
-
Wine(
|
|
454
|
-
id="red-fr-027",
|
|
455
|
-
name="Patrimonio Rouge",
|
|
456
|
-
producer="Domaine Antoine Arena",
|
|
457
|
-
region="Corsica",
|
|
458
|
-
country="France",
|
|
459
|
-
varietal="Nielluccio",
|
|
460
|
-
color="red",
|
|
461
|
-
profile=wp(0.72, 0.08, 0.62, 0.62, 0.78, 0.58, 0.60, 0.45),
|
|
462
|
-
price_range="mid",
|
|
463
|
-
description="Corsica's answer to Sangiovese (they're the same grape, shh). Herb-scented, sun-warmed, and wild like the maquis.",
|
|
464
|
-
tags=["old-world", "mediterranean", "terroir-driven", "obscure-varietal"],
|
|
465
|
-
vintage=2020,
|
|
466
|
-
),
|
|
467
|
-
|
|
468
|
-
# ── Italy — Piedmont ─────────────────────────────────────────────────
|
|
469
|
-
|
|
470
|
-
Wine(
|
|
471
|
-
id="red-it-001",
|
|
472
|
-
name="Barolo Monfortino Riserva",
|
|
473
|
-
producer="Giacomo Conterno",
|
|
474
|
-
region="Barolo",
|
|
475
|
-
country="Italy",
|
|
476
|
-
varietal="Nebbiolo",
|
|
477
|
-
color="red",
|
|
478
|
-
profile=wp(0.88, 0.05, 0.95, 0.78, 0.98, 0.42, 0.80, 0.55),
|
|
479
|
-
price_range="luxury",
|
|
480
|
-
description="The king of Italian wine. Monfortino needs decades but rewards with tar, roses, and the slow devastation of something that knows exactly how good it is. You don't drink this — you submit to it.",
|
|
481
|
-
tags=["old-world", "age-worthy", "terroir-driven", "elegant"],
|
|
482
|
-
vintage=2014,
|
|
483
|
-
),
|
|
484
|
-
Wine(
|
|
485
|
-
id="red-it-002",
|
|
486
|
-
name="Barbaresco Sorì San Lorenzo",
|
|
487
|
-
producer="Gaja",
|
|
488
|
-
region="Barbaresco",
|
|
489
|
-
country="Italy",
|
|
490
|
-
varietal="Nebbiolo",
|
|
491
|
-
color="red",
|
|
492
|
-
profile=wp(0.82, 0.05, 0.88, 0.78, 0.95, 0.50, 0.72, 0.52),
|
|
493
|
-
price_range="luxury",
|
|
494
|
-
description="Gaja made Barbaresco famous, and this single vineyard is why. Perfumed, powerful, and precisely crafted — like couture for your palate. Every sip is a decision someone made.",
|
|
495
|
-
tags=["old-world", "age-worthy", "terroir-driven", "elegant"],
|
|
496
|
-
vintage=2017,
|
|
497
|
-
),
|
|
498
|
-
Wine(
|
|
499
|
-
id="red-it-003",
|
|
500
|
-
name="Barbera d'Asti Superiore La Luna e i Falò",
|
|
501
|
-
producer="Braida",
|
|
502
|
-
region="Barbera d'Asti",
|
|
503
|
-
country="Italy",
|
|
504
|
-
varietal="Barbera",
|
|
505
|
-
color="red",
|
|
506
|
-
profile=wp(0.78, 0.10, 0.42, 0.80, 0.78, 0.72, 0.45, 0.35),
|
|
507
|
-
price_range="mid",
|
|
508
|
-
description="Braida put Barbera on the map. Bright acidity, dark cherry, a lick of oak — this is the everyday red you'll never get tired of.",
|
|
509
|
-
tags=["old-world", "fruit-forward", "approachable"],
|
|
510
|
-
vintage=2020,
|
|
511
|
-
),
|
|
512
|
-
Wine(
|
|
513
|
-
id="red-it-004",
|
|
514
|
-
name="Dolcetto d'Alba",
|
|
515
|
-
producer="Massolino",
|
|
516
|
-
region="Piedmont",
|
|
517
|
-
country="Italy",
|
|
518
|
-
varietal="Dolcetto",
|
|
519
|
-
color="red",
|
|
520
|
-
profile=wp(0.65, 0.12, 0.50, 0.55, 0.60, 0.70, 0.40, 0.25),
|
|
521
|
-
price_range="budget",
|
|
522
|
-
description="Piedmont's weeknight red. Soft, grapey, slightly bitter on the finish in the best way — like a good espresso after dinner.",
|
|
523
|
-
tags=["old-world", "approachable", "fruit-forward", "fun"],
|
|
524
|
-
vintage=2022,
|
|
525
|
-
),
|
|
526
|
-
|
|
527
|
-
# ── Italy — Tuscany ──────────────────────────────────────────────────
|
|
528
|
-
|
|
529
|
-
Wine(
|
|
530
|
-
id="red-it-005",
|
|
531
|
-
name="Chianti Classico Riserva",
|
|
532
|
-
producer="Fontodi",
|
|
533
|
-
region="Chianti Classico",
|
|
534
|
-
country="Italy",
|
|
535
|
-
varietal="Sangiovese",
|
|
536
|
-
color="red",
|
|
537
|
-
profile=wp(0.78, 0.08, 0.72, 0.75, 0.85, 0.58, 0.65, 0.40),
|
|
538
|
-
price_range="mid",
|
|
539
|
-
description="The Chianti that converts skeptics. Fontodi's organic Sangiovese tastes like Tuscan hillsides — sour cherry, dried herbs, warm earth.",
|
|
540
|
-
tags=["old-world", "terroir-driven", "mediterranean"],
|
|
541
|
-
vintage=2019,
|
|
542
|
-
),
|
|
543
|
-
Wine(
|
|
544
|
-
id="red-it-006",
|
|
545
|
-
name="Brunello di Montalcino",
|
|
546
|
-
producer="Biondi-Santi",
|
|
547
|
-
region="Brunello di Montalcino",
|
|
548
|
-
country="Italy",
|
|
549
|
-
varietal="Sangiovese Grosso",
|
|
550
|
-
color="red",
|
|
551
|
-
profile=wp(0.82, 0.05, 0.82, 0.75, 0.92, 0.45, 0.75, 0.42),
|
|
552
|
-
price_range="luxury",
|
|
553
|
-
description="The family that invented Brunello. Austere, traditional, and built for the long haul — this is Sangiovese in its most regal form.",
|
|
554
|
-
tags=["old-world", "age-worthy", "terroir-driven", "elegant"],
|
|
555
|
-
vintage=2016,
|
|
556
|
-
),
|
|
557
|
-
Wine(
|
|
558
|
-
id="red-it-007",
|
|
559
|
-
name="Sassicaia",
|
|
560
|
-
producer="Tenuta San Guido",
|
|
561
|
-
region="Bolgheri",
|
|
562
|
-
country="Italy",
|
|
563
|
-
varietal="Cabernet Sauvignon/Cabernet Franc",
|
|
564
|
-
color="red",
|
|
565
|
-
profile=wp(0.88, 0.10, 0.80, 0.58, 0.92, 0.55, 0.55, 0.45),
|
|
566
|
-
price_range="luxury",
|
|
567
|
-
description="The original Super Tuscan. Born from a bet that Cabernet could thrive on the Tuscan coast — spoiler: it won spectacularly.",
|
|
568
|
-
tags=["old-world", "age-worthy", "elegant", "oaky"],
|
|
569
|
-
vintage=2018,
|
|
570
|
-
),
|
|
571
|
-
Wine(
|
|
572
|
-
id="red-it-008",
|
|
573
|
-
name="Vino Nobile di Montepulciano",
|
|
574
|
-
producer="Avignonesi",
|
|
575
|
-
region="Vino Nobile di Montepulciano",
|
|
576
|
-
country="Italy",
|
|
577
|
-
varietal="Sangiovese (Prugnolo Gentile)",
|
|
578
|
-
color="red",
|
|
579
|
-
profile=wp(0.75, 0.08, 0.68, 0.72, 0.78, 0.58, 0.62, 0.38),
|
|
580
|
-
price_range="mid",
|
|
581
|
-
description="Brunello's approachable neighbor. Avignonesi's biodynamic Nobile delivers cherry, leather, and Tuscan sunshine at a friendlier price.",
|
|
582
|
-
tags=["old-world", "biodynamic", "terroir-driven", "approachable"],
|
|
583
|
-
vintage=2019,
|
|
584
|
-
),
|
|
585
|
-
|
|
586
|
-
# ── Italy — Veneto ───────────────────────────────────────────────────
|
|
587
|
-
|
|
588
|
-
Wine(
|
|
589
|
-
id="red-it-009",
|
|
590
|
-
name="Amarone della Valpolicella Classico",
|
|
591
|
-
producer="Giuseppe Quintarelli",
|
|
592
|
-
region="Veneto",
|
|
593
|
-
country="Italy",
|
|
594
|
-
varietal="Corvina/Rondinella/Molinara",
|
|
595
|
-
color="red",
|
|
596
|
-
profile=wp(0.95, 0.25, 0.72, 0.48, 0.92, 0.65, 0.55, 0.50),
|
|
597
|
-
price_range="luxury",
|
|
598
|
-
description="Quintarelli's Amarone is a meditation — dried grapes, decades of patience, and a richness that borders on decadent without tipping over.",
|
|
599
|
-
tags=["old-world", "age-worthy", "terroir-driven"],
|
|
600
|
-
vintage=2012,
|
|
601
|
-
),
|
|
602
|
-
Wine(
|
|
603
|
-
id="red-it-010",
|
|
604
|
-
name="Valpolicella Ripasso Superiore",
|
|
605
|
-
producer="Allegrini",
|
|
606
|
-
region="Veneto",
|
|
607
|
-
country="Italy",
|
|
608
|
-
varietal="Corvina/Rondinella",
|
|
609
|
-
color="red",
|
|
610
|
-
profile=wp(0.80, 0.18, 0.58, 0.52, 0.72, 0.68, 0.48, 0.38),
|
|
611
|
-
price_range="mid",
|
|
612
|
-
description="Baby Amarone, they call it. Repassed over dried grape skins for extra body — cherry compote, spice, and crowd-pleasing charm.",
|
|
613
|
-
tags=["old-world", "fruit-forward", "approachable"],
|
|
614
|
-
vintage=2020,
|
|
615
|
-
),
|
|
616
|
-
|
|
617
|
-
# ── Italy — Sicily ───────────────────────────────────────────────────
|
|
618
|
-
|
|
619
|
-
Wine(
|
|
620
|
-
id="red-it-011",
|
|
621
|
-
name="Nero d'Avola Santa Cecilia",
|
|
622
|
-
producer="Planeta",
|
|
623
|
-
region="Sicily",
|
|
624
|
-
country="Italy",
|
|
625
|
-
varietal="Nero d'Avola",
|
|
626
|
-
color="red",
|
|
627
|
-
profile=wp(0.82, 0.12, 0.62, 0.52, 0.75, 0.70, 0.48, 0.42),
|
|
628
|
-
price_range="mid",
|
|
629
|
-
description="Sicily's flagship grape at its most polished. Dark plum, chocolate, and Mediterranean herbs — like a summer night in Noto.",
|
|
630
|
-
tags=["old-world", "fruit-forward", "mediterranean"],
|
|
631
|
-
vintage=2020,
|
|
632
|
-
),
|
|
633
|
-
Wine(
|
|
634
|
-
id="red-it-012",
|
|
635
|
-
name="Etna Rosso Feudo di Mezzo",
|
|
636
|
-
producer="Girolamo Ferrara",
|
|
637
|
-
region="Etna",
|
|
638
|
-
country="Italy",
|
|
639
|
-
varietal="Nerello Mascalese",
|
|
640
|
-
color="red",
|
|
641
|
-
profile=wp(0.58, 0.05, 0.55, 0.78, 0.82, 0.55, 0.72, 0.38),
|
|
642
|
-
price_range="mid",
|
|
643
|
-
description="Volcano wine. Nerello Mascalese on lava soils produces something eerily Burgundian — pale, perfumed, and hauntingly mineral.",
|
|
644
|
-
tags=["old-world", "terroir-driven", "elegant", "light-bodied"],
|
|
645
|
-
vintage=2021,
|
|
646
|
-
),
|
|
647
|
-
|
|
648
|
-
# ── Italy — Sardinia, Campania, Puglia ───────────────────────────────
|
|
649
|
-
|
|
650
|
-
Wine(
|
|
651
|
-
id="red-it-013",
|
|
652
|
-
name="Cannonau di Sardegna Riserva",
|
|
653
|
-
producer="Sella & Mosca",
|
|
654
|
-
region="Sardinia",
|
|
655
|
-
country="Italy",
|
|
656
|
-
varietal="Cannonau (Grenache)",
|
|
657
|
-
color="red",
|
|
658
|
-
profile=wp(0.78, 0.12, 0.55, 0.52, 0.68, 0.65, 0.55, 0.45),
|
|
659
|
-
price_range="budget",
|
|
660
|
-
description="Sardinian Grenache with wild herb character and that island rusticity. Pairs perfectly with roasted lamb and sea breezes.",
|
|
661
|
-
tags=["old-world", "mediterranean", "approachable"],
|
|
662
|
-
vintage=2020,
|
|
663
|
-
),
|
|
664
|
-
Wine(
|
|
665
|
-
id="red-it-014",
|
|
666
|
-
name="Taurasi Radici Riserva",
|
|
667
|
-
producer="Mastroberardino",
|
|
668
|
-
region="Campania",
|
|
669
|
-
country="Italy",
|
|
670
|
-
varietal="Aglianico",
|
|
671
|
-
color="red",
|
|
672
|
-
profile=wp(0.88, 0.05, 0.88, 0.68, 0.88, 0.42, 0.75, 0.55),
|
|
673
|
-
price_range="premium",
|
|
674
|
-
description="Aglianico is southern Italy's answer to Nebbiolo — savage tannins, volcanic minerality, and the patience to age for decades.",
|
|
675
|
-
tags=["old-world", "age-worthy", "terroir-driven"],
|
|
676
|
-
vintage=2016,
|
|
677
|
-
),
|
|
678
|
-
Wine(
|
|
679
|
-
id="red-it-015",
|
|
680
|
-
name="Primitivo di Manduria Es",
|
|
681
|
-
producer="Gianfranco Fino",
|
|
682
|
-
region="Puglia",
|
|
683
|
-
country="Italy",
|
|
684
|
-
varietal="Primitivo",
|
|
685
|
-
color="red",
|
|
686
|
-
profile=wp(0.90, 0.20, 0.58, 0.45, 0.75, 0.80, 0.35, 0.42),
|
|
687
|
-
price_range="mid",
|
|
688
|
-
description="Old-vine Primitivo that explodes with ripe fruit and warmth. It's big, bold, and completely unapologetic about it.",
|
|
689
|
-
tags=["old-world", "fruit-forward", "mediterranean"],
|
|
690
|
-
vintage=2021,
|
|
691
|
-
),
|
|
692
|
-
|
|
693
|
-
# ── Spain ────────────────────────────────────────────────────────────
|
|
694
|
-
|
|
695
|
-
Wine(
|
|
696
|
-
id="red-es-001",
|
|
697
|
-
name="Viña Tondonia Reserva",
|
|
698
|
-
producer="R. López de Heredia",
|
|
699
|
-
region="Rioja",
|
|
700
|
-
country="Spain",
|
|
701
|
-
varietal="Tempranillo/Garnacha/Graciano",
|
|
702
|
-
color="red",
|
|
703
|
-
profile=wp(0.72, 0.08, 0.65, 0.68, 0.90, 0.45, 0.78, 0.42),
|
|
704
|
-
price_range="mid",
|
|
705
|
-
description="Time-capsule wine. López de Heredia ages their wines until they're ready, not until the market wants them. Oxidative, leathery, transcendent.",
|
|
706
|
-
tags=["old-world", "terroir-driven", "age-worthy", "elegant"],
|
|
707
|
-
vintage=2011,
|
|
708
|
-
),
|
|
709
|
-
Wine(
|
|
710
|
-
id="red-es-002",
|
|
711
|
-
name="Unico",
|
|
712
|
-
producer="Vega Sicilia",
|
|
713
|
-
region="Ribera del Duero",
|
|
714
|
-
country="Spain",
|
|
715
|
-
varietal="Tempranillo/Cabernet Sauvignon",
|
|
716
|
-
color="red",
|
|
717
|
-
profile=wp(0.90, 0.08, 0.82, 0.55, 0.96, 0.48, 0.72, 0.52),
|
|
718
|
-
price_range="luxury",
|
|
719
|
-
description="Spain's most legendary wine. A decade in barrel and bottle before release. Complex doesn't begin to describe it — this is vinous architecture.",
|
|
720
|
-
tags=["old-world", "age-worthy", "terroir-driven", "elegant"],
|
|
721
|
-
vintage=2011,
|
|
722
|
-
),
|
|
723
|
-
Wine(
|
|
724
|
-
id="red-es-003",
|
|
725
|
-
name="Clos Erasmus",
|
|
726
|
-
producer="Clos Erasmus",
|
|
727
|
-
region="Priorat",
|
|
728
|
-
country="Spain",
|
|
729
|
-
varietal="Garnacha/Syrah/Cabernet Sauvignon",
|
|
730
|
-
color="red",
|
|
731
|
-
profile=wp(0.92, 0.10, 0.78, 0.50, 0.90, 0.55, 0.70, 0.62),
|
|
732
|
-
price_range="luxury",
|
|
733
|
-
description="Priorat's llicorella slate soils produce wines of staggering concentration. This is power with poise — mineral, dark, profound.",
|
|
734
|
-
tags=["old-world", "terroir-driven", "age-worthy", "spicy"],
|
|
735
|
-
vintage=2018,
|
|
736
|
-
),
|
|
737
|
-
Wine(
|
|
738
|
-
id="red-es-004",
|
|
739
|
-
name="Jumilla Monastrell Old Vines",
|
|
740
|
-
producer="Juan Gil",
|
|
741
|
-
region="Jumilla",
|
|
742
|
-
country="Spain",
|
|
743
|
-
varietal="Monastrell (Mourvèdre)",
|
|
744
|
-
color="red",
|
|
745
|
-
profile=wp(0.85, 0.15, 0.60, 0.48, 0.65, 0.70, 0.50, 0.55),
|
|
746
|
-
price_range="budget",
|
|
747
|
-
description="Impossibly good value. Old-vine Monastrell delivers blackberry jam, smoke, and dark chocolate at a price that should be illegal.",
|
|
748
|
-
tags=["old-world", "fruit-forward", "approachable", "mediterranean"],
|
|
749
|
-
vintage=2021,
|
|
750
|
-
),
|
|
751
|
-
Wine(
|
|
752
|
-
id="red-es-005",
|
|
753
|
-
name="Pétalos del Bierzo",
|
|
754
|
-
producer="Descendientes de J. Palacios",
|
|
755
|
-
region="Bierzo",
|
|
756
|
-
country="Spain",
|
|
757
|
-
varietal="Mencía",
|
|
758
|
-
color="red",
|
|
759
|
-
profile=wp(0.62, 0.08, 0.52, 0.68, 0.78, 0.65, 0.62, 0.35),
|
|
760
|
-
price_range="mid",
|
|
761
|
-
description="Mencía is Spain's Pinot Noir moment — floral, mineral, light on its feet. Palacios turned this forgotten region into a revelation.",
|
|
762
|
-
tags=["old-world", "terroir-driven", "elegant", "light-bodied"],
|
|
763
|
-
vintage=2021,
|
|
764
|
-
),
|
|
765
|
-
Wine(
|
|
766
|
-
id="red-es-006",
|
|
767
|
-
name="Numanthia",
|
|
768
|
-
producer="Numanthia",
|
|
769
|
-
region="Toro",
|
|
770
|
-
country="Spain",
|
|
771
|
-
varietal="Tinta de Toro (Tempranillo)",
|
|
772
|
-
color="red",
|
|
773
|
-
profile=wp(0.92, 0.12, 0.80, 0.48, 0.80, 0.58, 0.55, 0.48),
|
|
774
|
-
price_range="mid",
|
|
775
|
-
description="Toro Tempranillo is Tempranillo with the volume knob broken off. Massive fruit, massive tannins, massive everything.",
|
|
776
|
-
tags=["old-world", "fruit-forward", "age-worthy"],
|
|
777
|
-
vintage=2019,
|
|
778
|
-
),
|
|
779
|
-
Wine(
|
|
780
|
-
id="red-es-007",
|
|
781
|
-
name="Borsao Tres Picos Garnacha",
|
|
782
|
-
producer="Bodegas Borsao",
|
|
783
|
-
region="Campo de Borja",
|
|
784
|
-
country="Spain",
|
|
785
|
-
varietal="Garnacha",
|
|
786
|
-
color="red",
|
|
787
|
-
profile=wp(0.78, 0.12, 0.48, 0.52, 0.65, 0.75, 0.42, 0.42),
|
|
788
|
-
price_range="budget",
|
|
789
|
-
description="Campo de Borja old-vine Garnacha at a steal. Raspberry, licorice, a dusting of spice — the best bang-for-buck red in Spain.",
|
|
790
|
-
tags=["old-world", "fruit-forward", "approachable", "fun"],
|
|
791
|
-
vintage=2021,
|
|
792
|
-
),
|
|
793
|
-
|
|
794
|
-
# ── Portugal ──────────────────────────────────────────────────────────
|
|
795
|
-
|
|
796
|
-
Wine(
|
|
797
|
-
id="red-pt-001",
|
|
798
|
-
name="Redoma Tinto",
|
|
799
|
-
producer="Niepoort",
|
|
800
|
-
region="Douro",
|
|
801
|
-
country="Portugal",
|
|
802
|
-
varietal="Touriga Nacional/Tinta Roriz blend",
|
|
803
|
-
color="red",
|
|
804
|
-
profile=wp(0.80, 0.10, 0.68, 0.62, 0.85, 0.58, 0.65, 0.52),
|
|
805
|
-
price_range="mid",
|
|
806
|
-
description="Niepoort's still Douro red is what happens when a Port house channels finesse. Floral, complex, and wildly undervalued.",
|
|
807
|
-
tags=["old-world", "terroir-driven", "elegant"],
|
|
808
|
-
vintage=2020,
|
|
809
|
-
),
|
|
810
|
-
Wine(
|
|
811
|
-
id="red-pt-002",
|
|
812
|
-
name="Quinta dos Roques Reserva",
|
|
813
|
-
producer="Quinta dos Roques",
|
|
814
|
-
region="Dão",
|
|
815
|
-
country="Portugal",
|
|
816
|
-
varietal="Touriga Nacional/Alfrocheiro",
|
|
817
|
-
color="red",
|
|
818
|
-
profile=wp(0.75, 0.10, 0.62, 0.62, 0.78, 0.58, 0.60, 0.42),
|
|
819
|
-
price_range="mid",
|
|
820
|
-
description="Dão is Portugal's Burgundy — granite soils, elegant reds, zero hype. This Reserva delivers structure and floral charm in equal measure.",
|
|
821
|
-
tags=["old-world", "terroir-driven", "elegant"],
|
|
822
|
-
vintage=2019,
|
|
823
|
-
),
|
|
824
|
-
Wine(
|
|
825
|
-
id="red-pt-003",
|
|
826
|
-
name="Monte da Peceguina Tinto",
|
|
827
|
-
producer="Herdade da Malhadinha Nova",
|
|
828
|
-
region="Alentejo",
|
|
829
|
-
country="Portugal",
|
|
830
|
-
varietal="Aragonez/Alicante Bouschet",
|
|
831
|
-
color="red",
|
|
832
|
-
profile=wp(0.82, 0.12, 0.62, 0.50, 0.72, 0.68, 0.50, 0.45),
|
|
833
|
-
price_range="mid",
|
|
834
|
-
description="Sun-drenched Alentejo at its most polished. Ripe dark fruit, warm spice, and enough structure to hold up to a big grilled steak.",
|
|
835
|
-
tags=["old-world", "fruit-forward", "mediterranean", "approachable"],
|
|
836
|
-
vintage=2020,
|
|
837
|
-
),
|
|
838
|
-
Wine(
|
|
839
|
-
id="red-pt-004",
|
|
840
|
-
name="Sidónio de Sousa Baga",
|
|
841
|
-
producer="Sidónio de Sousa",
|
|
842
|
-
region="Bairrada",
|
|
843
|
-
country="Portugal",
|
|
844
|
-
varietal="Baga",
|
|
845
|
-
color="red",
|
|
846
|
-
profile=wp(0.72, 0.05, 0.75, 0.72, 0.80, 0.42, 0.68, 0.38),
|
|
847
|
-
price_range="mid",
|
|
848
|
-
description="Baga is Portugal's most misunderstood grape — tannic, acidic, and when done right (like this), hauntingly good. Think Nebbiolo meets the Atlantic.",
|
|
849
|
-
tags=["old-world", "terroir-driven", "age-worthy", "obscure-varietal"],
|
|
850
|
-
vintage=2018,
|
|
851
|
-
),
|
|
852
|
-
|
|
853
|
-
# ── Greece ────────────────────────────────────────────────────────────
|
|
854
|
-
|
|
855
|
-
Wine(
|
|
856
|
-
id="red-gr-001",
|
|
857
|
-
name="Xinomavro Ramnista",
|
|
858
|
-
producer="Kir-Yianni",
|
|
859
|
-
region="Naoussa",
|
|
860
|
-
country="Greece",
|
|
861
|
-
varietal="Xinomavro",
|
|
862
|
-
color="red",
|
|
863
|
-
profile=wp(0.75, 0.05, 0.78, 0.78, 0.82, 0.42, 0.72, 0.45),
|
|
864
|
-
price_range="mid",
|
|
865
|
-
description="Greece's answer to Nebbiolo — high acid, grippy tannins, dried tomato, and olive. Ages beautifully and confuses blind tasters regularly.",
|
|
866
|
-
tags=["old-world", "terroir-driven", "age-worthy", "obscure-varietal"],
|
|
867
|
-
vintage=2018,
|
|
868
|
-
),
|
|
869
|
-
Wine(
|
|
870
|
-
id="red-gr-002",
|
|
871
|
-
name="Nemea Agiorgitiko",
|
|
872
|
-
producer="Domaine Skouras",
|
|
873
|
-
region="Nemea",
|
|
874
|
-
country="Greece",
|
|
875
|
-
varietal="Agiorgitiko",
|
|
876
|
-
color="red",
|
|
877
|
-
profile=wp(0.75, 0.12, 0.55, 0.55, 0.70, 0.68, 0.48, 0.38),
|
|
878
|
-
price_range="mid",
|
|
879
|
-
description="The Saint George grape of Nemea — plush red fruit, soft tannins, and easygoing Mediterranean charm. Greece's crowd-pleaser.",
|
|
880
|
-
tags=["old-world", "fruit-forward", "approachable", "mediterranean"],
|
|
881
|
-
vintage=2020,
|
|
882
|
-
),
|
|
883
|
-
Wine(
|
|
884
|
-
id="red-gr-003",
|
|
885
|
-
name="Mavrodaphne of Patras",
|
|
886
|
-
producer="Achaia Clauss",
|
|
887
|
-
region="Patras",
|
|
888
|
-
country="Greece",
|
|
889
|
-
varietal="Mavrodaphne",
|
|
890
|
-
color="red",
|
|
891
|
-
profile=wp(0.80, 0.45, 0.52, 0.48, 0.72, 0.62, 0.42, 0.35),
|
|
892
|
-
price_range="budget",
|
|
893
|
-
description="Sweet, fortified, and deeply old-school Greek. Fig, raisin, molasses — this is the wine your yiayia kept on the top shelf.",
|
|
894
|
-
tags=["old-world", "sweet-ish", "fortified", "obscure-varietal"],
|
|
895
|
-
vintage=None,
|
|
896
|
-
),
|
|
897
|
-
|
|
898
|
-
# ── Germany / Austria ────────────────────────────────────────────────
|
|
899
|
-
|
|
900
|
-
Wine(
|
|
901
|
-
id="red-de-001",
|
|
902
|
-
name="Spätburgunder Réserve",
|
|
903
|
-
producer="Meyer-Näkel",
|
|
904
|
-
region="Ahr",
|
|
905
|
-
country="Germany",
|
|
906
|
-
varietal="Spätburgunder (Pinot Noir)",
|
|
907
|
-
color="red",
|
|
908
|
-
profile=wp(0.62, 0.08, 0.48, 0.72, 0.80, 0.62, 0.60, 0.30),
|
|
909
|
-
price_range="premium",
|
|
910
|
-
description="Germany does Pinot Noir? Yes, and it's shockingly good. The Ahr valley's slate soils produce something delicate, earthy, and entirely its own.",
|
|
911
|
-
tags=["old-world", "terroir-driven", "elegant", "light-bodied"],
|
|
912
|
-
vintage=2020,
|
|
913
|
-
),
|
|
914
|
-
Wine(
|
|
915
|
-
id="red-at-001",
|
|
916
|
-
name="Blaufränkisch Ried Mariental",
|
|
917
|
-
producer="Ernst Triebaumer",
|
|
918
|
-
region="Burgenland",
|
|
919
|
-
country="Austria",
|
|
920
|
-
varietal="Blaufränkisch",
|
|
921
|
-
color="red",
|
|
922
|
-
profile=wp(0.75, 0.05, 0.68, 0.72, 0.82, 0.52, 0.65, 0.48),
|
|
923
|
-
price_range="mid",
|
|
924
|
-
description="Austria's noble red. Triebaumer's Mariental site produces Blaufränkisch with Bordeaux-like structure and a cool, peppery edge.",
|
|
925
|
-
tags=["old-world", "terroir-driven", "spicy", "age-worthy"],
|
|
926
|
-
vintage=2019,
|
|
927
|
-
),
|
|
928
|
-
Wine(
|
|
929
|
-
id="red-at-002",
|
|
930
|
-
name="Zweigelt Classic",
|
|
931
|
-
producer="Laurenz V.",
|
|
932
|
-
region="Burgenland",
|
|
933
|
-
country="Austria",
|
|
934
|
-
varietal="Zweigelt",
|
|
935
|
-
color="red",
|
|
936
|
-
profile=wp(0.62, 0.10, 0.42, 0.62, 0.58, 0.72, 0.40, 0.30),
|
|
937
|
-
price_range="budget",
|
|
938
|
-
description="Austria's everyday red. Cherry-driven, soft, and unpretentious — the wine equivalent of a good playlist on shuffle.",
|
|
939
|
-
tags=["old-world", "fruit-forward", "approachable", "fun", "light-bodied"],
|
|
940
|
-
vintage=2022,
|
|
941
|
-
),
|
|
942
|
-
|
|
943
|
-
# ── USA ──────────────────────────────────────────────────────────────
|
|
944
|
-
|
|
945
|
-
Wine(
|
|
946
|
-
id="red-us-001",
|
|
947
|
-
name="Opus One",
|
|
948
|
-
producer="Opus One",
|
|
949
|
-
region="Napa Valley",
|
|
950
|
-
country="USA",
|
|
951
|
-
varietal="Cabernet Sauvignon blend",
|
|
952
|
-
color="red",
|
|
953
|
-
profile=wp(0.90, 0.12, 0.82, 0.50, 0.90, 0.60, 0.50, 0.45),
|
|
954
|
-
price_range="luxury",
|
|
955
|
-
description="The Franco-American alliance in wine form. Polished, powerful, and produced with the kind of budget that shows in every sip.",
|
|
956
|
-
tags=["new-world", "oaky", "elegant", "age-worthy"],
|
|
957
|
-
vintage=2019,
|
|
958
|
-
),
|
|
959
|
-
Wine(
|
|
960
|
-
id="red-us-002",
|
|
961
|
-
name="Hirsch Vineyards San Andreas Fault Pinot Noir",
|
|
962
|
-
producer="Hirsch Vineyards",
|
|
963
|
-
region="Sonoma Coast",
|
|
964
|
-
country="USA",
|
|
965
|
-
varietal="Pinot Noir",
|
|
966
|
-
color="red",
|
|
967
|
-
profile=wp(0.62, 0.08, 0.45, 0.72, 0.88, 0.62, 0.65, 0.30),
|
|
968
|
-
price_range="premium",
|
|
969
|
-
description="Literally grown on the San Andreas Fault. This is extreme-coast Pinot — wind-battered, fog-kissed, and electrifyingly mineral.",
|
|
970
|
-
tags=["new-world", "terroir-driven", "elegant"],
|
|
971
|
-
vintage=2020,
|
|
972
|
-
),
|
|
973
|
-
Wine(
|
|
974
|
-
id="red-us-003",
|
|
975
|
-
name="Bedrock Old Vine Zinfandel",
|
|
976
|
-
producer="Bedrock Wine Co.",
|
|
977
|
-
region="Sonoma Valley",
|
|
978
|
-
country="USA",
|
|
979
|
-
varietal="Zinfandel",
|
|
980
|
-
color="red",
|
|
981
|
-
profile=wp(0.82, 0.15, 0.55, 0.55, 0.78, 0.78, 0.42, 0.52),
|
|
982
|
-
price_range="mid",
|
|
983
|
-
description="Heritage vines, some over a century old. Bedrock's Zin is brambly, spiced, and a love letter to California's viticultural history.",
|
|
984
|
-
tags=["new-world", "fruit-forward", "spicy", "approachable"],
|
|
985
|
-
vintage=2021,
|
|
986
|
-
),
|
|
987
|
-
Wine(
|
|
988
|
-
id="red-us-004",
|
|
989
|
-
name="Beaux Frères Pinot Noir",
|
|
990
|
-
producer="Beaux Frères",
|
|
991
|
-
region="Willamette Valley",
|
|
992
|
-
country="USA",
|
|
993
|
-
varietal="Pinot Noir",
|
|
994
|
-
color="red",
|
|
995
|
-
profile=wp(0.62, 0.08, 0.45, 0.70, 0.85, 0.65, 0.58, 0.28),
|
|
996
|
-
price_range="premium",
|
|
997
|
-
description="Oregon Pinot at its most lush and complete. Red and black fruit, forest floor, and a silky texture that keeps the glass tilting.",
|
|
998
|
-
tags=["new-world", "elegant", "terroir-driven"],
|
|
999
|
-
vintage=2020,
|
|
1000
|
-
),
|
|
1001
|
-
Wine(
|
|
1002
|
-
id="red-us-005",
|
|
1003
|
-
name="Cayuse Syrah En Chamberlin",
|
|
1004
|
-
producer="Cayuse Vineyards",
|
|
1005
|
-
region="Walla Walla Valley",
|
|
1006
|
-
country="USA",
|
|
1007
|
-
varietal="Syrah",
|
|
1008
|
-
color="red",
|
|
1009
|
-
profile=wp(0.88, 0.10, 0.72, 0.55, 0.90, 0.55, 0.68, 0.72),
|
|
1010
|
-
price_range="premium",
|
|
1011
|
-
description="Biodynamic Syrah from Washington's cobblestone soils. Meaty, smoky, peppery — this is New World Syrah that thinks it's Northern Rhône.",
|
|
1012
|
-
tags=["new-world", "biodynamic", "spicy", "terroir-driven"],
|
|
1013
|
-
vintage=2019,
|
|
1014
|
-
),
|
|
1015
|
-
Wine(
|
|
1016
|
-
id="red-us-006",
|
|
1017
|
-
name="Au Bon Climat Pinot Noir",
|
|
1018
|
-
producer="Au Bon Climat",
|
|
1019
|
-
region="Santa Barbara County",
|
|
1020
|
-
country="USA",
|
|
1021
|
-
varietal="Pinot Noir",
|
|
1022
|
-
color="red",
|
|
1023
|
-
profile=wp(0.58, 0.08, 0.42, 0.68, 0.78, 0.65, 0.52, 0.25),
|
|
1024
|
-
price_range="mid",
|
|
1025
|
-
description="Jim Clendenen's Burgundy-inspired Santa Barbara Pinot. Restrained, earthy, and a rebuke to the more-is-more California school.",
|
|
1026
|
-
tags=["new-world", "elegant", "terroir-driven", "light-bodied"],
|
|
1027
|
-
vintage=2021,
|
|
1028
|
-
),
|
|
1029
|
-
Wine(
|
|
1030
|
-
id="red-us-007",
|
|
1031
|
-
name="Tablas Creek Esprit de Tablas Rouge",
|
|
1032
|
-
producer="Tablas Creek Vineyard",
|
|
1033
|
-
region="Paso Robles",
|
|
1034
|
-
country="USA",
|
|
1035
|
-
varietal="Mourvèdre/Grenache/Syrah",
|
|
1036
|
-
color="red",
|
|
1037
|
-
profile=wp(0.82, 0.10, 0.65, 0.55, 0.82, 0.58, 0.62, 0.58),
|
|
1038
|
-
price_range="mid",
|
|
1039
|
-
description="A Châteauneuf-du-Pape transplant in Paso Robles, courtesy of the Perrin family connection. Mediterranean soul, California sunshine.",
|
|
1040
|
-
tags=["new-world", "biodynamic", "spicy", "mediterranean"],
|
|
1041
|
-
vintage=2020,
|
|
1042
|
-
),
|
|
1043
|
-
Wine(
|
|
1044
|
-
id="red-us-008",
|
|
1045
|
-
name="Ravines Cabernet Franc",
|
|
1046
|
-
producer="Ravines Wine Cellars",
|
|
1047
|
-
region="Finger Lakes",
|
|
1048
|
-
country="USA",
|
|
1049
|
-
varietal="Cabernet Franc",
|
|
1050
|
-
color="red",
|
|
1051
|
-
profile=wp(0.62, 0.08, 0.55, 0.68, 0.72, 0.58, 0.58, 0.35),
|
|
1052
|
-
price_range="mid",
|
|
1053
|
-
description="Finger Lakes Cab Franc with Loire-like precision. Green pepper haters, relax — this is all raspberry, graphite, and cool-climate finesse.",
|
|
1054
|
-
tags=["new-world", "terroir-driven", "elegant", "light-bodied"],
|
|
1055
|
-
vintage=2021,
|
|
1056
|
-
),
|
|
1057
|
-
|
|
1058
|
-
# ── South America ────────────────────────────────────────────────────
|
|
1059
|
-
|
|
1060
|
-
Wine(
|
|
1061
|
-
id="red-ar-001",
|
|
1062
|
-
name="Catena Zapata Malbec Argentino",
|
|
1063
|
-
producer="Catena Zapata",
|
|
1064
|
-
region="Mendoza",
|
|
1065
|
-
country="Argentina",
|
|
1066
|
-
varietal="Malbec",
|
|
1067
|
-
color="red",
|
|
1068
|
-
profile=wp(0.88, 0.12, 0.68, 0.50, 0.85, 0.72, 0.45, 0.48),
|
|
1069
|
-
price_range="premium",
|
|
1070
|
-
description="The wine that made the world take Argentine Malbec seriously. Bold, dark fruit, and the kind of easy confidence that makes you suspicious — but Catena earns it. The altitude isn't a gimmick; it's why this has actual structure instead of just biceps.",
|
|
1071
|
-
tags=["new-world", "fruit-forward", "oaky", "age-worthy"],
|
|
1072
|
-
vintage=2019,
|
|
1073
|
-
),
|
|
1074
|
-
Wine(
|
|
1075
|
-
id="red-ar-002",
|
|
1076
|
-
name="Zuccardi Finca Piedra Infinita Malbec",
|
|
1077
|
-
producer="Zuccardi",
|
|
1078
|
-
region="Paraje Altamira, Mendoza",
|
|
1079
|
-
country="Argentina",
|
|
1080
|
-
varietal="Malbec",
|
|
1081
|
-
color="red",
|
|
1082
|
-
profile=wp(0.82, 0.10, 0.70, 0.58, 0.88, 0.58, 0.68, 0.45),
|
|
1083
|
-
price_range="premium",
|
|
1084
|
-
description="Terroir-obsessed Malbec from limestone soils at altitude. This is Argentina's statement that Malbec can be about place, not just power.",
|
|
1085
|
-
tags=["new-world", "terroir-driven", "elegant", "age-worthy"],
|
|
1086
|
-
vintage=2019,
|
|
1087
|
-
),
|
|
1088
|
-
Wine(
|
|
1089
|
-
id="red-cl-001",
|
|
1090
|
-
name="Carménère Reserva",
|
|
1091
|
-
producer="Montes",
|
|
1092
|
-
region="Colchagua Valley",
|
|
1093
|
-
country="Chile",
|
|
1094
|
-
varietal="Carménère",
|
|
1095
|
-
color="red",
|
|
1096
|
-
profile=wp(0.78, 0.12, 0.60, 0.50, 0.72, 0.65, 0.52, 0.48),
|
|
1097
|
-
price_range="mid",
|
|
1098
|
-
description="Chile's signature grape — smoky bell pepper meets dark berry with a herbal twist. Montes does it with reliable polish.",
|
|
1099
|
-
tags=["new-world", "fruit-forward", "spicy", "approachable"],
|
|
1100
|
-
vintage=2021,
|
|
1101
|
-
),
|
|
1102
|
-
Wine(
|
|
1103
|
-
id="red-cl-002",
|
|
1104
|
-
name="País A Los Viñateros Bravos",
|
|
1105
|
-
producer="A Los Viñateros Bravos",
|
|
1106
|
-
region="Itata Valley",
|
|
1107
|
-
country="Chile",
|
|
1108
|
-
varietal="País (Listán Prieto)",
|
|
1109
|
-
color="red",
|
|
1110
|
-
profile=wp(0.45, 0.08, 0.35, 0.72, 0.72, 0.62, 0.55, 0.25),
|
|
1111
|
-
price_range="mid",
|
|
1112
|
-
description="Ancient País vines making radical, delicious wine. Light, tart, earthy — Chile's answer to the natural wine movement, with 400-year-old roots.",
|
|
1113
|
-
tags=["new-world", "natural", "light-bodied", "obscure-varietal", "fun"],
|
|
1114
|
-
vintage=2022,
|
|
1115
|
-
),
|
|
1116
|
-
Wine(
|
|
1117
|
-
id="red-uy-001",
|
|
1118
|
-
name="Tannat Reserva",
|
|
1119
|
-
producer="Bouza",
|
|
1120
|
-
region="Montevideo",
|
|
1121
|
-
country="Uruguay",
|
|
1122
|
-
varietal="Tannat",
|
|
1123
|
-
color="red",
|
|
1124
|
-
profile=wp(0.88, 0.10, 0.85, 0.52, 0.75, 0.55, 0.55, 0.48),
|
|
1125
|
-
price_range="mid",
|
|
1126
|
-
description="Uruguay took France's gnarliest grape and made it their own. Dark, tannic, brooding — with a lush fruit core that softens the blow.",
|
|
1127
|
-
tags=["new-world", "age-worthy", "fruit-forward"],
|
|
1128
|
-
vintage=2020,
|
|
1129
|
-
),
|
|
1130
|
-
Wine(
|
|
1131
|
-
id="red-ar-003",
|
|
1132
|
-
name="Bonarda Clásica",
|
|
1133
|
-
producer="Weinert",
|
|
1134
|
-
region="Mendoza",
|
|
1135
|
-
country="Argentina",
|
|
1136
|
-
varietal="Bonarda",
|
|
1137
|
-
color="red",
|
|
1138
|
-
profile=wp(0.72, 0.12, 0.50, 0.55, 0.65, 0.72, 0.42, 0.30),
|
|
1139
|
-
price_range="budget",
|
|
1140
|
-
description="Argentina's second grape deserves more love. Plummy, juicy, easygoing — the reliable friend who always shows up with pizza.",
|
|
1141
|
-
tags=["new-world", "fruit-forward", "approachable", "fun"],
|
|
1142
|
-
vintage=2021,
|
|
1143
|
-
),
|
|
1144
|
-
|
|
1145
|
-
# ── Australia / New Zealand ──────────────────────────────────────────
|
|
1146
|
-
|
|
1147
|
-
Wine(
|
|
1148
|
-
id="red-au-001",
|
|
1149
|
-
name="Hill of Grace Shiraz",
|
|
1150
|
-
producer="Henschke",
|
|
1151
|
-
region="Barossa Valley",
|
|
1152
|
-
country="Australia",
|
|
1153
|
-
varietal="Shiraz",
|
|
1154
|
-
color="red",
|
|
1155
|
-
profile=wp(0.95, 0.12, 0.78, 0.48, 0.95, 0.65, 0.58, 0.68),
|
|
1156
|
-
price_range="luxury",
|
|
1157
|
-
description="Single-vineyard Shiraz from vines planted in the 1860s. Blackberry, dark chocolate, smoked meat — Australia's greatest red, full stop.",
|
|
1158
|
-
tags=["new-world", "age-worthy", "spicy", "fruit-forward"],
|
|
1159
|
-
vintage=2016,
|
|
1160
|
-
),
|
|
1161
|
-
Wine(
|
|
1162
|
-
id="red-au-002",
|
|
1163
|
-
name="Grenache",
|
|
1164
|
-
producer="S.C. Pannell",
|
|
1165
|
-
region="McLaren Vale",
|
|
1166
|
-
country="Australia",
|
|
1167
|
-
varietal="Grenache",
|
|
1168
|
-
color="red",
|
|
1169
|
-
profile=wp(0.72, 0.12, 0.42, 0.55, 0.78, 0.78, 0.48, 0.42),
|
|
1170
|
-
price_range="mid",
|
|
1171
|
-
description="Old-vine McLaren Vale Grenache — raspberry, dried herb, and a silky texture that makes you rethink everything you knew about Aussie reds.",
|
|
1172
|
-
tags=["new-world", "fruit-forward", "elegant", "mediterranean"],
|
|
1173
|
-
vintage=2021,
|
|
1174
|
-
),
|
|
1175
|
-
Wine(
|
|
1176
|
-
id="red-au-003",
|
|
1177
|
-
name="Pinot Noir",
|
|
1178
|
-
producer="Giant Steps",
|
|
1179
|
-
region="Yarra Valley",
|
|
1180
|
-
country="Australia",
|
|
1181
|
-
varietal="Pinot Noir",
|
|
1182
|
-
color="red",
|
|
1183
|
-
profile=wp(0.58, 0.08, 0.42, 0.70, 0.78, 0.68, 0.52, 0.25),
|
|
1184
|
-
price_range="mid",
|
|
1185
|
-
description="Cool-climate Australian Pinot done right. Cherry, spice, fine-grained tannins — the Yarra Valley's cool mornings shine through.",
|
|
1186
|
-
tags=["new-world", "elegant", "fruit-forward"],
|
|
1187
|
-
vintage=2022,
|
|
1188
|
-
),
|
|
1189
|
-
Wine(
|
|
1190
|
-
id="red-nz-001",
|
|
1191
|
-
name="Pinot Noir",
|
|
1192
|
-
producer="Felton Road",
|
|
1193
|
-
region="Central Otago",
|
|
1194
|
-
country="New Zealand",
|
|
1195
|
-
varietal="Pinot Noir",
|
|
1196
|
-
color="red",
|
|
1197
|
-
profile=wp(0.62, 0.08, 0.45, 0.68, 0.85, 0.68, 0.58, 0.28),
|
|
1198
|
-
price_range="premium",
|
|
1199
|
-
description="Central Otago — the world's southernmost wine region. Felton Road's Pinot is pure, focused, and tastes like cold mountain air and dark cherries.",
|
|
1200
|
-
tags=["new-world", "terroir-driven", "elegant", "biodynamic"],
|
|
1201
|
-
vintage=2021,
|
|
1202
|
-
),
|
|
1203
|
-
Wine(
|
|
1204
|
-
id="red-au-004",
|
|
1205
|
-
name="Cabernet Sauvignon",
|
|
1206
|
-
producer="Vasse Felix",
|
|
1207
|
-
region="Margaret River",
|
|
1208
|
-
country="Australia",
|
|
1209
|
-
varietal="Cabernet Sauvignon",
|
|
1210
|
-
color="red",
|
|
1211
|
-
profile=wp(0.85, 0.10, 0.78, 0.55, 0.85, 0.58, 0.55, 0.42),
|
|
1212
|
-
price_range="mid",
|
|
1213
|
-
description="Margaret River Cab at its most classical — cassis, cedar, bay leaf, and the kind of poise that made this region Australia's Bordeaux.",
|
|
1214
|
-
tags=["new-world", "elegant", "age-worthy", "oaky"],
|
|
1215
|
-
vintage=2020,
|
|
1216
|
-
),
|
|
1217
|
-
|
|
1218
|
-
# ── South Africa ─────────────────────────────────────────────────────
|
|
1219
|
-
|
|
1220
|
-
Wine(
|
|
1221
|
-
id="red-za-001",
|
|
1222
|
-
name="The Chocolate Block",
|
|
1223
|
-
producer="Boekenhoutskloof",
|
|
1224
|
-
region="Stellenbosch",
|
|
1225
|
-
country="South Africa",
|
|
1226
|
-
varietal="Syrah/Grenache/Cabernet Sauvignon blend",
|
|
1227
|
-
color="red",
|
|
1228
|
-
profile=wp(0.85, 0.15, 0.65, 0.50, 0.75, 0.70, 0.45, 0.55),
|
|
1229
|
-
price_range="mid",
|
|
1230
|
-
description="The name is cheeky but the wine is legit. Rich, dark-fruited, and spicy — South Africa's crowd-pleasing blockbuster red.",
|
|
1231
|
-
tags=["new-world", "fruit-forward", "spicy", "approachable"],
|
|
1232
|
-
vintage=2021,
|
|
1233
|
-
),
|
|
1234
|
-
Wine(
|
|
1235
|
-
id="red-za-002",
|
|
1236
|
-
name="Columella",
|
|
1237
|
-
producer="The Sadie Family Wines",
|
|
1238
|
-
region="Swartland",
|
|
1239
|
-
country="South Africa",
|
|
1240
|
-
varietal="Syrah/Mourvèdre",
|
|
1241
|
-
color="red",
|
|
1242
|
-
profile=wp(0.82, 0.08, 0.72, 0.58, 0.90, 0.52, 0.72, 0.65),
|
|
1243
|
-
price_range="premium",
|
|
1244
|
-
description="Eben Sadie's magnum opus. Old-vine Swartland Syrah and Mourvèdre blended with a winemaker's obsessive attention to terroir. World-class.",
|
|
1245
|
-
tags=["new-world", "terroir-driven", "spicy", "age-worthy"],
|
|
1246
|
-
vintage=2019,
|
|
1247
|
-
),
|
|
1248
|
-
Wine(
|
|
1249
|
-
id="red-za-003",
|
|
1250
|
-
name="Cinsault",
|
|
1251
|
-
producer="Badenhorst Family Wines",
|
|
1252
|
-
region="Swartland",
|
|
1253
|
-
country="South Africa",
|
|
1254
|
-
varietal="Cinsault",
|
|
1255
|
-
color="red",
|
|
1256
|
-
profile=wp(0.45, 0.10, 0.30, 0.68, 0.72, 0.75, 0.45, 0.22),
|
|
1257
|
-
price_range="mid",
|
|
1258
|
-
description="Old-vine Cinsault is South Africa's secret weapon — pale, perfumed, and crushable. Like Beaujolais went on safari.",
|
|
1259
|
-
tags=["new-world", "natural", "light-bodied", "fun", "fruit-forward"],
|
|
1260
|
-
vintage=2022,
|
|
1261
|
-
),
|
|
1262
|
-
|
|
1263
|
-
# ── Rest of World — Reds ─────────────────────────────────────────────
|
|
1264
|
-
|
|
1265
|
-
Wine(
|
|
1266
|
-
id="red-ge-001",
|
|
1267
|
-
name="Saperavi",
|
|
1268
|
-
producer="Pheasant's Tears",
|
|
1269
|
-
region="Kakheti",
|
|
1270
|
-
country="Georgia",
|
|
1271
|
-
varietal="Saperavi",
|
|
1272
|
-
color="red",
|
|
1273
|
-
profile=wp(0.82, 0.08, 0.72, 0.62, 0.78, 0.55, 0.68, 0.42),
|
|
1274
|
-
price_range="mid",
|
|
1275
|
-
description="Georgia's flagship red, made with 8,000 years of tradition behind it. Dark, tannic, slightly wild — the OG of wine culture.",
|
|
1276
|
-
tags=["old-world", "natural", "terroir-driven", "obscure-varietal"],
|
|
1277
|
-
vintage=2021,
|
|
1278
|
-
),
|
|
1279
|
-
Wine(
|
|
1280
|
-
id="red-lb-001",
|
|
1281
|
-
name="Château Musar",
|
|
1282
|
-
producer="Château Musar",
|
|
1283
|
-
region="Bekaa Valley",
|
|
1284
|
-
country="Lebanon",
|
|
1285
|
-
varietal="Cabernet Sauvignon/Carignan/Cinsault",
|
|
1286
|
-
color="red",
|
|
1287
|
-
profile=wp(0.80, 0.10, 0.60, 0.55, 0.90, 0.52, 0.72, 0.55),
|
|
1288
|
-
price_range="mid",
|
|
1289
|
-
description="Made during civil wars and never missed a vintage. Musar is oxidative, spicy, and profoundly weird in the best possible way.",
|
|
1290
|
-
tags=["old-world", "terroir-driven", "age-worthy", "spicy"],
|
|
1291
|
-
vintage=2017,
|
|
1292
|
-
),
|
|
1293
|
-
Wine(
|
|
1294
|
-
id="red-hr-001",
|
|
1295
|
-
name="Plavac Mali",
|
|
1296
|
-
producer="Saints Hills",
|
|
1297
|
-
region="Pelješac Peninsula",
|
|
1298
|
-
country="Croatia",
|
|
1299
|
-
varietal="Plavac Mali",
|
|
1300
|
-
color="red",
|
|
1301
|
-
profile=wp(0.82, 0.12, 0.68, 0.52, 0.72, 0.62, 0.52, 0.45),
|
|
1302
|
-
price_range="mid",
|
|
1303
|
-
description="Zinfandel's Croatian ancestor, grown on Adriatic cliffsides. Dark, intense, sun-baked — the Dalmatian coast in a glass.",
|
|
1304
|
-
tags=["old-world", "mediterranean", "fruit-forward", "obscure-varietal"],
|
|
1305
|
-
vintage=2019,
|
|
1306
|
-
),
|
|
1307
|
-
Wine(
|
|
1308
|
-
id="red-hu-001",
|
|
1309
|
-
name="Kékfrankos",
|
|
1310
|
-
producer="Heimann",
|
|
1311
|
-
region="Szekszárd",
|
|
1312
|
-
country="Hungary",
|
|
1313
|
-
varietal="Kékfrankos (Blaufränkisch)",
|
|
1314
|
-
color="red",
|
|
1315
|
-
profile=wp(0.68, 0.08, 0.58, 0.68, 0.72, 0.58, 0.55, 0.42),
|
|
1316
|
-
price_range="budget",
|
|
1317
|
-
description="Hungary's workhorse red — peppery, tart cherry, and honest as the day is long. Criminally underpriced for the quality.",
|
|
1318
|
-
tags=["old-world", "terroir-driven", "approachable", "spicy"],
|
|
1319
|
-
vintage=2021,
|
|
1320
|
-
),
|
|
1321
|
-
Wine(
|
|
1322
|
-
id="red-jp-001",
|
|
1323
|
-
name="Muscat Bailey A",
|
|
1324
|
-
producer="Grace Wine (Chuo Budoshu)",
|
|
1325
|
-
region="Yamanashi",
|
|
1326
|
-
country="Japan",
|
|
1327
|
-
varietal="Muscat Bailey A",
|
|
1328
|
-
color="red",
|
|
1329
|
-
profile=wp(0.48, 0.15, 0.30, 0.58, 0.58, 0.78, 0.30, 0.18),
|
|
1330
|
-
price_range="mid",
|
|
1331
|
-
description="Japan's hybrid grape makes a charming light red — strawberry candy, gentle tannins, and the precision you'd expect from Japanese winemaking.",
|
|
1332
|
-
tags=["new-world", "fruit-forward", "light-bodied", "approachable", "obscure-varietal"],
|
|
1333
|
-
vintage=2022,
|
|
1334
|
-
),
|
|
1335
|
-
Wine(
|
|
1336
|
-
id="red-tr-001",
|
|
1337
|
-
name="Öküzgözü",
|
|
1338
|
-
producer="Kayra",
|
|
1339
|
-
region="Eastern Anatolia",
|
|
1340
|
-
country="Turkey",
|
|
1341
|
-
varietal="Öküzgözü",
|
|
1342
|
-
color="red",
|
|
1343
|
-
profile=wp(0.65, 0.10, 0.50, 0.62, 0.65, 0.68, 0.48, 0.38),
|
|
1344
|
-
price_range="budget",
|
|
1345
|
-
description="'Bull's Eye' grape from one of wine's birthplaces. Cherry, pomegranate, soft spice — Turkey's most food-friendly red is a genuine discovery.",
|
|
1346
|
-
tags=["old-world", "fruit-forward", "approachable", "obscure-varietal"],
|
|
1347
|
-
vintage=2021,
|
|
1348
|
-
),
|
|
1349
|
-
|
|
1350
|
-
# =====================================================================
|
|
1351
|
-
# WHITES
|
|
1352
|
-
# =====================================================================
|
|
1353
|
-
|
|
1354
|
-
# ── France — Burgundy (whites) ───────────────────────────────────────
|
|
1355
|
-
|
|
1356
|
-
Wine(
|
|
1357
|
-
id="wht-fr-001",
|
|
1358
|
-
name="Chablis Grand Cru Les Clos",
|
|
1359
|
-
producer="Domaine William Fèvre",
|
|
1360
|
-
region="Chablis",
|
|
1361
|
-
country="France",
|
|
1362
|
-
varietal="Chardonnay",
|
|
1363
|
-
color="white",
|
|
1364
|
-
profile=wp(0.65, 0.08, 0.05, 0.85, 0.90, 0.45, 0.72, 0.15),
|
|
1365
|
-
price_range="premium",
|
|
1366
|
-
description="The purest expression of Chardonnay and Kimmeridgian limestone. Steel, oyster shell, and laser-cut citrus — Chablis doesn't get more serious.",
|
|
1367
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
1368
|
-
vintage=2020,
|
|
1369
|
-
),
|
|
1370
|
-
Wine(
|
|
1371
|
-
id="wht-fr-002",
|
|
1372
|
-
name="Meursault Les Perrières 1er Cru",
|
|
1373
|
-
producer="Domaine Coche-Dury",
|
|
1374
|
-
region="Meursault",
|
|
1375
|
-
country="France",
|
|
1376
|
-
varietal="Chardonnay",
|
|
1377
|
-
color="white",
|
|
1378
|
-
profile=wp(0.78, 0.10, 0.05, 0.72, 0.98, 0.50, 0.68, 0.20),
|
|
1379
|
-
price_range="luxury",
|
|
1380
|
-
description="The holy grail of white Burgundy. Hazelnut, citrus oil, and stone — a wine people build cellars for and marriages around. If you ever get a bottle, open it. Life's too short to save the good ones.",
|
|
1381
|
-
tags=["old-world", "terroir-driven", "elegant", "age-worthy", "mineral"],
|
|
1382
|
-
vintage=2019,
|
|
1383
|
-
),
|
|
1384
|
-
Wine(
|
|
1385
|
-
id="wht-fr-003",
|
|
1386
|
-
name="Puligny-Montrachet 1er Cru Les Combettes",
|
|
1387
|
-
producer="Domaine Leflaive",
|
|
1388
|
-
region="Puligny-Montrachet",
|
|
1389
|
-
country="France",
|
|
1390
|
-
varietal="Chardonnay",
|
|
1391
|
-
color="white",
|
|
1392
|
-
profile=wp(0.72, 0.08, 0.05, 0.78, 0.95, 0.52, 0.65, 0.18),
|
|
1393
|
-
price_range="luxury",
|
|
1394
|
-
description="Leflaive defines biodynamic Burgundy. Combettes is all white flowers, crushed chalk, and a finish that vibrates with energy.",
|
|
1395
|
-
tags=["old-world", "biodynamic", "terroir-driven", "elegant", "mineral"],
|
|
1396
|
-
vintage=2020,
|
|
1397
|
-
),
|
|
1398
|
-
Wine(
|
|
1399
|
-
id="wht-fr-004",
|
|
1400
|
-
name="Mâcon-Villages",
|
|
1401
|
-
producer="Domaine Lafon",
|
|
1402
|
-
region="Mâconnais",
|
|
1403
|
-
country="France",
|
|
1404
|
-
varietal="Chardonnay",
|
|
1405
|
-
color="white",
|
|
1406
|
-
profile=wp(0.58, 0.10, 0.05, 0.68, 0.65, 0.62, 0.45, 0.12),
|
|
1407
|
-
price_range="mid",
|
|
1408
|
-
description="Lafon slumming it in the Mâconnais — except this drinks like wine three times its price. Apple, stone, and an absurd amount of pleasure.",
|
|
1409
|
-
tags=["old-world", "approachable", "fruit-forward"],
|
|
1410
|
-
vintage=2022,
|
|
1411
|
-
),
|
|
1412
|
-
|
|
1413
|
-
# ── France — Alsace ──────────────────────────────────────────────────
|
|
1414
|
-
|
|
1415
|
-
Wine(
|
|
1416
|
-
id="wht-fr-005",
|
|
1417
|
-
name="Riesling Grand Cru Schlossberg",
|
|
1418
|
-
producer="Domaine Weinbach",
|
|
1419
|
-
region="Alsace",
|
|
1420
|
-
country="France",
|
|
1421
|
-
varietal="Riesling",
|
|
1422
|
-
color="white",
|
|
1423
|
-
profile=wp(0.55, 0.12, 0.05, 0.88, 0.90, 0.62, 0.65, 0.20),
|
|
1424
|
-
price_range="premium",
|
|
1425
|
-
description="Weinbach's Schlossberg is granite-born Riesling — citrus, white peach, and a stony backbone that goes on for days.",
|
|
1426
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant", "age-worthy"],
|
|
1427
|
-
vintage=2020,
|
|
1428
|
-
),
|
|
1429
|
-
Wine(
|
|
1430
|
-
id="wht-fr-006",
|
|
1431
|
-
name="Gewürztraminer Grand Cru Hengst",
|
|
1432
|
-
producer="Domaine Josmeyer",
|
|
1433
|
-
region="Alsace",
|
|
1434
|
-
country="France",
|
|
1435
|
-
varietal="Gewürztraminer",
|
|
1436
|
-
color="white",
|
|
1437
|
-
profile=wp(0.72, 0.30, 0.05, 0.55, 0.82, 0.72, 0.42, 0.65),
|
|
1438
|
-
price_range="mid",
|
|
1439
|
-
description="Love it or leave it — Gewürz is the divisive diva of Alsace. Lychee, rose petal, ginger, and a perfume that fills the room.",
|
|
1440
|
-
tags=["old-world", "spicy", "sweet-ish", "terroir-driven"],
|
|
1441
|
-
vintage=2020,
|
|
1442
|
-
),
|
|
1443
|
-
Wine(
|
|
1444
|
-
id="wht-fr-007",
|
|
1445
|
-
name="Pinot Gris Réserve",
|
|
1446
|
-
producer="Domaine Zind-Humbrecht",
|
|
1447
|
-
region="Alsace",
|
|
1448
|
-
country="France",
|
|
1449
|
-
varietal="Pinot Gris",
|
|
1450
|
-
color="white",
|
|
1451
|
-
profile=wp(0.72, 0.22, 0.05, 0.62, 0.78, 0.65, 0.48, 0.30),
|
|
1452
|
-
price_range="mid",
|
|
1453
|
-
description="Alsatian Pinot Gris is what Pinot Grigio wants to be when it grows up — rich, smoky, honeyed, with serious biodynamic credentials.",
|
|
1454
|
-
tags=["old-world", "biodynamic", "terroir-driven"],
|
|
1455
|
-
vintage=2021,
|
|
1456
|
-
),
|
|
1457
|
-
|
|
1458
|
-
# ── France — Loire (whites) ──────────────────────────────────────────
|
|
1459
|
-
|
|
1460
|
-
Wine(
|
|
1461
|
-
id="wht-fr-008",
|
|
1462
|
-
name="Muscadet Sèvre et Maine Sur Lie Clisson",
|
|
1463
|
-
producer="Domaine de la Pépière",
|
|
1464
|
-
region="Muscadet",
|
|
1465
|
-
country="France",
|
|
1466
|
-
varietal="Melon de Bourgogne",
|
|
1467
|
-
color="white",
|
|
1468
|
-
profile=wp(0.45, 0.05, 0.05, 0.85, 0.72, 0.42, 0.68, 0.10),
|
|
1469
|
-
price_range="budget",
|
|
1470
|
-
description="The ultimate oyster wine. Bone-dry, saline, and energetic — Muscadet Clisson proves this humble grape can age and astonish.",
|
|
1471
|
-
tags=["old-world", "terroir-driven", "mineral", "approachable"],
|
|
1472
|
-
vintage=2019,
|
|
1473
|
-
),
|
|
1474
|
-
Wine(
|
|
1475
|
-
id="wht-fr-009",
|
|
1476
|
-
name="Sancerre Le Chêne Marchand",
|
|
1477
|
-
producer="Domaine Lucien Crochet",
|
|
1478
|
-
region="Sancerre",
|
|
1479
|
-
country="France",
|
|
1480
|
-
varietal="Sauvignon Blanc",
|
|
1481
|
-
color="white",
|
|
1482
|
-
profile=wp(0.52, 0.05, 0.05, 0.82, 0.78, 0.58, 0.62, 0.15),
|
|
1483
|
-
price_range="mid",
|
|
1484
|
-
description="Sancerre that actually tastes like the limestone it grows in, not just grapefruit. Crochet's single-vineyard shows what Sauvignon Blanc can really do.",
|
|
1485
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
1486
|
-
vintage=2022,
|
|
1487
|
-
),
|
|
1488
|
-
Wine(
|
|
1489
|
-
id="wht-fr-010",
|
|
1490
|
-
name="Vouvray Demi-Sec Le Haut-Lieu",
|
|
1491
|
-
producer="Domaine Huet",
|
|
1492
|
-
region="Vouvray",
|
|
1493
|
-
country="France",
|
|
1494
|
-
varietal="Chenin Blanc",
|
|
1495
|
-
color="white",
|
|
1496
|
-
profile=wp(0.62, 0.40, 0.05, 0.82, 0.90, 0.68, 0.55, 0.15),
|
|
1497
|
-
price_range="mid",
|
|
1498
|
-
description="Huet is the soul of Vouvray. This demi-sec Chenin balances honey and acid like a tightrope walker — mesmerizing and ageless.",
|
|
1499
|
-
tags=["old-world", "biodynamic", "terroir-driven", "sweet-ish", "age-worthy"],
|
|
1500
|
-
vintage=2020,
|
|
1501
|
-
),
|
|
1502
|
-
|
|
1503
|
-
# ── France — Other whites ────────────────────────────────────────────
|
|
1504
|
-
|
|
1505
|
-
Wine(
|
|
1506
|
-
id="wht-fr-011",
|
|
1507
|
-
name="Savagnin Ouillé",
|
|
1508
|
-
producer="Domaine Tissot",
|
|
1509
|
-
region="Jura",
|
|
1510
|
-
country="France",
|
|
1511
|
-
varietal="Savagnin",
|
|
1512
|
-
color="white",
|
|
1513
|
-
profile=wp(0.65, 0.05, 0.05, 0.78, 0.85, 0.38, 0.78, 0.22),
|
|
1514
|
-
price_range="mid",
|
|
1515
|
-
description="Non-oxidative Savagnin from Jura's master. Waxy, nutty, mineral, and utterly distinct — the grape geeks' white wine.",
|
|
1516
|
-
tags=["old-world", "terroir-driven", "mineral", "natural", "obscure-varietal"],
|
|
1517
|
-
vintage=2021,
|
|
1518
|
-
),
|
|
1519
|
-
Wine(
|
|
1520
|
-
id="wht-fr-012",
|
|
1521
|
-
name="Condrieu La Doriane",
|
|
1522
|
-
producer="E. Guigal",
|
|
1523
|
-
region="Condrieu",
|
|
1524
|
-
country="France",
|
|
1525
|
-
varietal="Viognier",
|
|
1526
|
-
color="white",
|
|
1527
|
-
profile=wp(0.82, 0.15, 0.05, 0.48, 0.82, 0.72, 0.35, 0.30),
|
|
1528
|
-
price_range="premium",
|
|
1529
|
-
description="Viognier's spiritual home. Apricot, honeysuckle, and beeswax from steep granite terraces — opulent but never clumsy.",
|
|
1530
|
-
tags=["old-world", "fruit-forward", "elegant"],
|
|
1531
|
-
vintage=2021,
|
|
1532
|
-
),
|
|
1533
|
-
Wine(
|
|
1534
|
-
id="wht-fr-013",
|
|
1535
|
-
name="Châteauneuf-du-Pape Blanc Vieilles Vignes",
|
|
1536
|
-
producer="Château la Nerthe",
|
|
1537
|
-
region="Châteauneuf-du-Pape",
|
|
1538
|
-
country="France",
|
|
1539
|
-
varietal="Roussanne/Grenache Blanc/Clairette",
|
|
1540
|
-
color="white",
|
|
1541
|
-
profile=wp(0.78, 0.12, 0.05, 0.55, 0.80, 0.58, 0.52, 0.28),
|
|
1542
|
-
price_range="premium",
|
|
1543
|
-
description="White Châteauneuf is one of wine's best-kept secrets. Rich, waxy, herbal — like white Burgundy went on vacation to Provence.",
|
|
1544
|
-
tags=["old-world", "terroir-driven", "mediterranean"],
|
|
1545
|
-
vintage=2021,
|
|
1546
|
-
),
|
|
1547
|
-
Wine(
|
|
1548
|
-
id="wht-fr-014",
|
|
1549
|
-
name="Clos Nicrosi Vermentino",
|
|
1550
|
-
producer="Clos Nicrosi",
|
|
1551
|
-
region="Corsica",
|
|
1552
|
-
country="France",
|
|
1553
|
-
varietal="Vermentino",
|
|
1554
|
-
color="white",
|
|
1555
|
-
profile=wp(0.55, 0.08, 0.05, 0.72, 0.68, 0.58, 0.55, 0.18),
|
|
1556
|
-
price_range="mid",
|
|
1557
|
-
description="Corsican Vermentino with a salty Mediterranean breeze. Citrus, white flowers, and a saline finish that screams 'grilled fish, now.'",
|
|
1558
|
-
tags=["old-world", "mediterranean", "approachable", "summer"],
|
|
1559
|
-
vintage=2022,
|
|
1560
|
-
),
|
|
1561
|
-
|
|
1562
|
-
# ── Italy — Whites ───────────────────────────────────────────────────
|
|
1563
|
-
|
|
1564
|
-
Wine(
|
|
1565
|
-
id="wht-it-001",
|
|
1566
|
-
name="Soave Classico",
|
|
1567
|
-
producer="Pieropan",
|
|
1568
|
-
region="Soave",
|
|
1569
|
-
country="Italy",
|
|
1570
|
-
varietal="Garganega",
|
|
1571
|
-
color="white",
|
|
1572
|
-
profile=wp(0.52, 0.10, 0.05, 0.72, 0.72, 0.58, 0.55, 0.12),
|
|
1573
|
-
price_range="budget",
|
|
1574
|
-
description="Pieropan proved Soave isn't just bulk wine. Almond, white peach, and volcanic mineral — a revelation at any price, let alone this one.",
|
|
1575
|
-
tags=["old-world", "terroir-driven", "approachable", "mineral"],
|
|
1576
|
-
vintage=2022,
|
|
1577
|
-
),
|
|
1578
|
-
Wine(
|
|
1579
|
-
id="wht-it-002",
|
|
1580
|
-
name="Verdicchio dei Castelli di Jesi Classico Superiore Bucci",
|
|
1581
|
-
producer="Bucci",
|
|
1582
|
-
region="Marche",
|
|
1583
|
-
country="Italy",
|
|
1584
|
-
varietal="Verdicchio",
|
|
1585
|
-
color="white",
|
|
1586
|
-
profile=wp(0.58, 0.08, 0.05, 0.78, 0.78, 0.55, 0.62, 0.15),
|
|
1587
|
-
price_range="mid",
|
|
1588
|
-
description="Verdicchio at its most serious — lemon zest, green almond, and a bitter finish that pairs perfectly with fritto misto.",
|
|
1589
|
-
tags=["old-world", "terroir-driven", "mineral"],
|
|
1590
|
-
vintage=2021,
|
|
1591
|
-
),
|
|
1592
|
-
Wine(
|
|
1593
|
-
id="wht-it-003",
|
|
1594
|
-
name="Fiano di Avellino",
|
|
1595
|
-
producer="Ciro Picariello",
|
|
1596
|
-
region="Campania",
|
|
1597
|
-
country="Italy",
|
|
1598
|
-
varietal="Fiano",
|
|
1599
|
-
color="white",
|
|
1600
|
-
profile=wp(0.62, 0.08, 0.05, 0.75, 0.80, 0.55, 0.65, 0.18),
|
|
1601
|
-
price_range="mid",
|
|
1602
|
-
description="Campania's volcanic soils give Fiano a smoky, honeyed intensity that ages surprisingly well. Italy's most underrated white grape.",
|
|
1603
|
-
tags=["old-world", "terroir-driven", "mineral", "age-worthy"],
|
|
1604
|
-
vintage=2021,
|
|
1605
|
-
),
|
|
1606
|
-
Wine(
|
|
1607
|
-
id="wht-it-004",
|
|
1608
|
-
name="Etna Bianco",
|
|
1609
|
-
producer="Benanti",
|
|
1610
|
-
region="Etna",
|
|
1611
|
-
country="Italy",
|
|
1612
|
-
varietal="Carricante",
|
|
1613
|
-
color="white",
|
|
1614
|
-
profile=wp(0.55, 0.05, 0.05, 0.82, 0.78, 0.52, 0.70, 0.15),
|
|
1615
|
-
price_range="mid",
|
|
1616
|
-
description="White wine from a volcano. Carricante's razor-sharp acidity and smoky mineral character make this Etna's thrilling white secret.",
|
|
1617
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
1618
|
-
vintage=2022,
|
|
1619
|
-
),
|
|
1620
|
-
Wine(
|
|
1621
|
-
id="wht-it-005",
|
|
1622
|
-
name="Vermentino di Sardegna",
|
|
1623
|
-
producer="Argiolas",
|
|
1624
|
-
region="Sardinia",
|
|
1625
|
-
country="Italy",
|
|
1626
|
-
varietal="Vermentino",
|
|
1627
|
-
color="white",
|
|
1628
|
-
profile=wp(0.52, 0.08, 0.05, 0.70, 0.60, 0.62, 0.48, 0.15),
|
|
1629
|
-
price_range="budget",
|
|
1630
|
-
description="Island Vermentino at its breeziest — herbs, citrus, sea salt. Drink it cold on a hot day and pretend you're on a Sardinian beach.",
|
|
1631
|
-
tags=["old-world", "mediterranean", "approachable", "summer", "fun"],
|
|
1632
|
-
vintage=2023,
|
|
1633
|
-
),
|
|
1634
|
-
Wine(
|
|
1635
|
-
id="wht-it-006",
|
|
1636
|
-
name="Roero Arneis",
|
|
1637
|
-
producer="Bruno Giacosa",
|
|
1638
|
-
region="Roero",
|
|
1639
|
-
country="Italy",
|
|
1640
|
-
varietal="Arneis",
|
|
1641
|
-
color="white",
|
|
1642
|
-
profile=wp(0.55, 0.10, 0.05, 0.68, 0.70, 0.62, 0.45, 0.12),
|
|
1643
|
-
price_range="mid",
|
|
1644
|
-
description="Piedmont's white grape, rescued from near-extinction. Pear, almond blossom, and a gentle herbaceousness — elegant and fleeting.",
|
|
1645
|
-
tags=["old-world", "elegant", "approachable"],
|
|
1646
|
-
vintage=2022,
|
|
1647
|
-
),
|
|
1648
|
-
Wine(
|
|
1649
|
-
id="wht-it-007",
|
|
1650
|
-
name="Gavi di Gavi",
|
|
1651
|
-
producer="La Scolca",
|
|
1652
|
-
region="Gavi",
|
|
1653
|
-
country="Italy",
|
|
1654
|
-
varietal="Cortese",
|
|
1655
|
-
color="white",
|
|
1656
|
-
profile=wp(0.50, 0.08, 0.05, 0.75, 0.68, 0.55, 0.52, 0.10),
|
|
1657
|
-
price_range="mid",
|
|
1658
|
-
description="Gavi at its most refined. La Scolca pioneered this style — crisp, mineral, delicate, and perfect with a plate of pesto trofie.",
|
|
1659
|
-
tags=["old-world", "mineral", "elegant", "approachable"],
|
|
1660
|
-
vintage=2022,
|
|
1661
|
-
),
|
|
1662
|
-
Wine(
|
|
1663
|
-
id="wht-it-008",
|
|
1664
|
-
name="Falanghina del Sannio",
|
|
1665
|
-
producer="Mustilli",
|
|
1666
|
-
region="Campania",
|
|
1667
|
-
country="Italy",
|
|
1668
|
-
varietal="Falanghina",
|
|
1669
|
-
color="white",
|
|
1670
|
-
profile=wp(0.55, 0.10, 0.05, 0.70, 0.62, 0.65, 0.42, 0.15),
|
|
1671
|
-
price_range="budget",
|
|
1672
|
-
description="Southern Italy's friendliest white. Peach, citrus blossom, and an easy charm that makes it vanish from the bottle alarmingly fast.",
|
|
1673
|
-
tags=["old-world", "fruit-forward", "approachable", "fun", "summer"],
|
|
1674
|
-
vintage=2023,
|
|
1675
|
-
),
|
|
1676
|
-
Wine(
|
|
1677
|
-
id="wht-it-009",
|
|
1678
|
-
name="Trebbiano d'Abruzzo",
|
|
1679
|
-
producer="Valentini",
|
|
1680
|
-
region="Abruzzo",
|
|
1681
|
-
country="Italy",
|
|
1682
|
-
varietal="Trebbiano",
|
|
1683
|
-
color="white",
|
|
1684
|
-
profile=wp(0.65, 0.08, 0.05, 0.72, 0.88, 0.48, 0.68, 0.18),
|
|
1685
|
-
price_range="premium",
|
|
1686
|
-
description="Valentini transforms humble Trebbiano into one of Italy's greatest whites. Waxy, complex, and built to age — the unicorn of Abruzzo.",
|
|
1687
|
-
tags=["old-world", "terroir-driven", "age-worthy", "mineral"],
|
|
1688
|
-
vintage=2018,
|
|
1689
|
-
),
|
|
1690
|
-
Wine(
|
|
1691
|
-
id="wht-it-010",
|
|
1692
|
-
name="Lugana Superiore",
|
|
1693
|
-
producer="Cà dei Frati",
|
|
1694
|
-
region="Lugana",
|
|
1695
|
-
country="Italy",
|
|
1696
|
-
varietal="Turbiana (Trebbiano di Lugana)",
|
|
1697
|
-
color="white",
|
|
1698
|
-
profile=wp(0.58, 0.10, 0.05, 0.72, 0.70, 0.60, 0.50, 0.12),
|
|
1699
|
-
price_range="mid",
|
|
1700
|
-
description="Lake Garda's signature white — almond, citrus, and a creamy texture that belies its freshness. The perfect aperitivo wine.",
|
|
1701
|
-
tags=["old-world", "approachable", "elegant", "summer"],
|
|
1702
|
-
vintage=2022,
|
|
1703
|
-
),
|
|
1704
|
-
|
|
1705
|
-
# ── Spain — Whites ───────────────────────────────────────────────────
|
|
1706
|
-
|
|
1707
|
-
Wine(
|
|
1708
|
-
id="wht-es-001",
|
|
1709
|
-
name="Albariño Do Ferreiro",
|
|
1710
|
-
producer="Do Ferreiro",
|
|
1711
|
-
region="Rías Baixas",
|
|
1712
|
-
country="Spain",
|
|
1713
|
-
varietal="Albariño",
|
|
1714
|
-
color="white",
|
|
1715
|
-
profile=wp(0.55, 0.08, 0.05, 0.80, 0.78, 0.62, 0.58, 0.12),
|
|
1716
|
-
price_range="mid",
|
|
1717
|
-
description="Galician Albariño from old vines and granite soils. Peach, saline, and electric — this is the white wine for seafood obsessives.",
|
|
1718
|
-
tags=["old-world", "terroir-driven", "mineral", "approachable"],
|
|
1719
|
-
vintage=2022,
|
|
1720
|
-
),
|
|
1721
|
-
Wine(
|
|
1722
|
-
id="wht-es-002",
|
|
1723
|
-
name="Godello Sobre Lías",
|
|
1724
|
-
producer="Rafael Palacios",
|
|
1725
|
-
region="Valdeorras",
|
|
1726
|
-
country="Spain",
|
|
1727
|
-
varietal="Godello",
|
|
1728
|
-
color="white",
|
|
1729
|
-
profile=wp(0.62, 0.08, 0.05, 0.72, 0.82, 0.55, 0.62, 0.15),
|
|
1730
|
-
price_range="mid",
|
|
1731
|
-
description="Rafael Palacios is making Godello that rivals white Burgundy. Textured, complex, and from old vines on slate — Spain's white wine renaissance.",
|
|
1732
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
1733
|
-
vintage=2021,
|
|
1734
|
-
),
|
|
1735
|
-
Wine(
|
|
1736
|
-
id="wht-es-003",
|
|
1737
|
-
name="Txakoli",
|
|
1738
|
-
producer="Ameztoi",
|
|
1739
|
-
region="Getariako Txakolina",
|
|
1740
|
-
country="Spain",
|
|
1741
|
-
varietal="Hondarrabi Zuri",
|
|
1742
|
-
color="white",
|
|
1743
|
-
profile=wp(0.35, 0.05, 0.05, 0.88, 0.55, 0.52, 0.48, 0.10),
|
|
1744
|
-
price_range="budget",
|
|
1745
|
-
description="Razor-thin, slightly spritzy, and bone-dry. Basque Txakoli is the ultimate pintxos wine — pour it from a height and don't overthink it.",
|
|
1746
|
-
tags=["old-world", "light-bodied", "fun", "summer", "approachable"],
|
|
1747
|
-
vintage=2023,
|
|
1748
|
-
),
|
|
1749
|
-
Wine(
|
|
1750
|
-
id="wht-es-004",
|
|
1751
|
-
name="Verdejo",
|
|
1752
|
-
producer="José Pariente",
|
|
1753
|
-
region="Rueda",
|
|
1754
|
-
country="Spain",
|
|
1755
|
-
varietal="Verdejo",
|
|
1756
|
-
color="white",
|
|
1757
|
-
profile=wp(0.52, 0.08, 0.05, 0.75, 0.65, 0.65, 0.42, 0.15),
|
|
1758
|
-
price_range="budget",
|
|
1759
|
-
description="Rueda Verdejo — herbal, fennel-scented, and briskly refreshing. Spain's answer to Sauvignon Blanc, but with more personality.",
|
|
1760
|
-
tags=["old-world", "approachable", "fun", "summer"],
|
|
1761
|
-
vintage=2023,
|
|
1762
|
-
),
|
|
1763
|
-
|
|
1764
|
-
# ── Portugal — Whites ────────────────────────────────────────────────
|
|
1765
|
-
|
|
1766
|
-
Wine(
|
|
1767
|
-
id="wht-pt-001",
|
|
1768
|
-
name="Vinho Verde Alvarinho",
|
|
1769
|
-
producer="Soalheiro",
|
|
1770
|
-
region="Monção e Melgaço",
|
|
1771
|
-
country="Portugal",
|
|
1772
|
-
varietal="Alvarinho",
|
|
1773
|
-
color="white",
|
|
1774
|
-
profile=wp(0.48, 0.08, 0.05, 0.82, 0.68, 0.62, 0.48, 0.12),
|
|
1775
|
-
price_range="budget",
|
|
1776
|
-
description="Not the sweet stuff in the blue bottle — this is the real Vinho Verde. Crisp, aromatic, and crackling with Atlantic energy.",
|
|
1777
|
-
tags=["old-world", "approachable", "fun", "summer", "light-bodied"],
|
|
1778
|
-
vintage=2023,
|
|
1779
|
-
),
|
|
1780
|
-
Wine(
|
|
1781
|
-
id="wht-pt-002",
|
|
1782
|
-
name="Alvarinho Reserva",
|
|
1783
|
-
producer="Anselmo Mendes",
|
|
1784
|
-
region="Monção e Melgaço",
|
|
1785
|
-
country="Portugal",
|
|
1786
|
-
varietal="Alvarinho",
|
|
1787
|
-
color="white",
|
|
1788
|
-
profile=wp(0.62, 0.10, 0.05, 0.78, 0.78, 0.62, 0.55, 0.15),
|
|
1789
|
-
price_range="mid",
|
|
1790
|
-
description="Anselmo Mendes is the maestro of Alvarinho. Lees-aged for extra texture — peach, citrus, and a mineral depth that surprises.",
|
|
1791
|
-
tags=["old-world", "terroir-driven", "elegant"],
|
|
1792
|
-
vintage=2021,
|
|
1793
|
-
),
|
|
1794
|
-
Wine(
|
|
1795
|
-
id="wht-pt-003",
|
|
1796
|
-
name="Dão Encruzado",
|
|
1797
|
-
producer="Álvaro Castro",
|
|
1798
|
-
region="Dão",
|
|
1799
|
-
country="Portugal",
|
|
1800
|
-
varietal="Encruzado",
|
|
1801
|
-
color="white",
|
|
1802
|
-
profile=wp(0.65, 0.08, 0.05, 0.72, 0.80, 0.52, 0.62, 0.18),
|
|
1803
|
-
price_range="mid",
|
|
1804
|
-
description="Portugal's noble white grape from granite soils. Encruzado gives Burgundian weight and mineral complexity at a fraction of the price.",
|
|
1805
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
1806
|
-
vintage=2021,
|
|
1807
|
-
),
|
|
1808
|
-
|
|
1809
|
-
# ── Germany — Whites ─────────────────────────────────────────────────
|
|
1810
|
-
|
|
1811
|
-
Wine(
|
|
1812
|
-
id="wht-de-001",
|
|
1813
|
-
name="Ürziger Würzgarten Riesling Kabinett",
|
|
1814
|
-
producer="Markus Molitor",
|
|
1815
|
-
region="Mosel",
|
|
1816
|
-
country="Germany",
|
|
1817
|
-
varietal="Riesling",
|
|
1818
|
-
color="white",
|
|
1819
|
-
profile=wp(0.38, 0.35, 0.05, 0.92, 0.82, 0.72, 0.55, 0.22),
|
|
1820
|
-
price_range="mid",
|
|
1821
|
-
description="Mosel Kabinett is the most miraculous style in wine — featherweight body, sky-high acid, and a sweetness that makes your synapses dance.",
|
|
1822
|
-
tags=["old-world", "sweet-ish", "light-bodied", "terroir-driven", "elegant"],
|
|
1823
|
-
vintage=2022,
|
|
1824
|
-
),
|
|
1825
|
-
Wine(
|
|
1826
|
-
id="wht-de-002",
|
|
1827
|
-
name="Rheingau Riesling Trocken",
|
|
1828
|
-
producer="Robert Weil",
|
|
1829
|
-
region="Rheingau",
|
|
1830
|
-
country="Germany",
|
|
1831
|
-
varietal="Riesling",
|
|
1832
|
-
color="white",
|
|
1833
|
-
profile=wp(0.52, 0.08, 0.05, 0.85, 0.80, 0.60, 0.62, 0.15),
|
|
1834
|
-
price_range="mid",
|
|
1835
|
-
description="Bone-dry Rheingau Riesling — slate, lime, and white peach with Germanic precision. The wine world's most undervalued style.",
|
|
1836
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
1837
|
-
vintage=2022,
|
|
1838
|
-
),
|
|
1839
|
-
Wine(
|
|
1840
|
-
id="wht-de-003",
|
|
1841
|
-
name="Pfalz Riesling Trocken",
|
|
1842
|
-
producer="Müller-Catoir",
|
|
1843
|
-
region="Pfalz",
|
|
1844
|
-
country="Germany",
|
|
1845
|
-
varietal="Riesling",
|
|
1846
|
-
color="white",
|
|
1847
|
-
profile=wp(0.55, 0.10, 0.05, 0.82, 0.78, 0.65, 0.55, 0.18),
|
|
1848
|
-
price_range="mid",
|
|
1849
|
-
description="Pfalz Riesling is Germany's sunniest — riper, rounder, but still knife-edged. Müller-Catoir makes it sing with tropical precision.",
|
|
1850
|
-
tags=["old-world", "terroir-driven", "fruit-forward"],
|
|
1851
|
-
vintage=2022,
|
|
1852
|
-
),
|
|
1853
|
-
Wine(
|
|
1854
|
-
id="wht-de-004",
|
|
1855
|
-
name="Franken Silvaner",
|
|
1856
|
-
producer="Horst Sauer",
|
|
1857
|
-
region="Franken",
|
|
1858
|
-
country="Germany",
|
|
1859
|
-
varietal="Silvaner",
|
|
1860
|
-
color="white",
|
|
1861
|
-
profile=wp(0.52, 0.08, 0.05, 0.72, 0.70, 0.52, 0.58, 0.12),
|
|
1862
|
-
price_range="mid",
|
|
1863
|
-
description="Silvaner in its Bocksbeutel bottle — earthy, herbal, and quietly authoritative. Franken's answer to why terroir trumps varietal fame.",
|
|
1864
|
-
tags=["old-world", "terroir-driven", "mineral", "approachable"],
|
|
1865
|
-
vintage=2022,
|
|
1866
|
-
),
|
|
1867
|
-
|
|
1868
|
-
# ── Austria — Whites ─────────────────────────────────────────────────
|
|
1869
|
-
|
|
1870
|
-
Wine(
|
|
1871
|
-
id="wht-at-001",
|
|
1872
|
-
name="Grüner Veltliner Federspiel Terrassen",
|
|
1873
|
-
producer="Domäne Wachau",
|
|
1874
|
-
region="Wachau",
|
|
1875
|
-
country="Austria",
|
|
1876
|
-
varietal="Grüner Veltliner",
|
|
1877
|
-
color="white",
|
|
1878
|
-
profile=wp(0.50, 0.08, 0.05, 0.78, 0.68, 0.58, 0.55, 0.22),
|
|
1879
|
-
price_range="mid",
|
|
1880
|
-
description="Federspiel is the Goldilocks of GrüVe — not too light, not too heavy. White pepper, green apple, and Danube-valley freshness.",
|
|
1881
|
-
tags=["old-world", "approachable", "spicy", "mineral"],
|
|
1882
|
-
vintage=2022,
|
|
1883
|
-
),
|
|
1884
|
-
Wine(
|
|
1885
|
-
id="wht-at-002",
|
|
1886
|
-
name="Grüner Veltliner Smaragd Achleiten",
|
|
1887
|
-
producer="F.X. Pichler",
|
|
1888
|
-
region="Wachau",
|
|
1889
|
-
country="Austria",
|
|
1890
|
-
varietal="Grüner Veltliner",
|
|
1891
|
-
color="white",
|
|
1892
|
-
profile=wp(0.72, 0.08, 0.05, 0.75, 0.88, 0.52, 0.68, 0.30),
|
|
1893
|
-
price_range="premium",
|
|
1894
|
-
description="Smaragd is the top tier of Wachau — rich, powerful GrüVe with mineral depth. Pichler's Achleiten is a terroir masterpiece.",
|
|
1895
|
-
tags=["old-world", "terroir-driven", "mineral", "age-worthy", "elegant"],
|
|
1896
|
-
vintage=2021,
|
|
1897
|
-
),
|
|
1898
|
-
Wine(
|
|
1899
|
-
id="wht-at-003",
|
|
1900
|
-
name="Riesling Smaragd Kellerberg",
|
|
1901
|
-
producer="F.X. Pichler",
|
|
1902
|
-
region="Wachau",
|
|
1903
|
-
country="Austria",
|
|
1904
|
-
varietal="Riesling",
|
|
1905
|
-
color="white",
|
|
1906
|
-
profile=wp(0.62, 0.08, 0.05, 0.85, 0.90, 0.55, 0.70, 0.18),
|
|
1907
|
-
price_range="premium",
|
|
1908
|
-
description="Austrian Riesling at its most monumental. Kellerberg faces the Danube and soaks up every drop of warmth — mandarin, stone, and power.",
|
|
1909
|
-
tags=["old-world", "terroir-driven", "mineral", "age-worthy", "elegant"],
|
|
1910
|
-
vintage=2020,
|
|
1911
|
-
),
|
|
1912
|
-
|
|
1913
|
-
# ── Greece — Whites ──────────────────────────────────────────────────
|
|
1914
|
-
|
|
1915
|
-
Wine(
|
|
1916
|
-
id="wht-gr-001",
|
|
1917
|
-
name="Santorini Assyrtiko",
|
|
1918
|
-
producer="Domaine Sigalas",
|
|
1919
|
-
region="Santorini",
|
|
1920
|
-
country="Greece",
|
|
1921
|
-
varietal="Assyrtiko",
|
|
1922
|
-
color="white",
|
|
1923
|
-
profile=wp(0.62, 0.05, 0.05, 0.90, 0.82, 0.48, 0.75, 0.15),
|
|
1924
|
-
price_range="mid",
|
|
1925
|
-
description="Volcanic ash, sea spray, lemon zest. Santorini Assyrtiko is the most thrillingly mineral white wine on earth — and Sigalas is its standard-bearer.",
|
|
1926
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
1927
|
-
vintage=2022,
|
|
1928
|
-
),
|
|
1929
|
-
Wine(
|
|
1930
|
-
id="wht-gr-002",
|
|
1931
|
-
name="Moschofilero",
|
|
1932
|
-
producer="Domaine Tselepos",
|
|
1933
|
-
region="Mantinia",
|
|
1934
|
-
country="Greece",
|
|
1935
|
-
varietal="Moschofilero",
|
|
1936
|
-
color="white",
|
|
1937
|
-
profile=wp(0.42, 0.10, 0.05, 0.78, 0.60, 0.68, 0.35, 0.20),
|
|
1938
|
-
price_range="budget",
|
|
1939
|
-
description="Pink-skinned but white-vinified. Aromatic, floral, with a gingery lift — Greece's most charming apéritif white.",
|
|
1940
|
-
tags=["old-world", "approachable", "fun", "light-bodied", "obscure-varietal"],
|
|
1941
|
-
vintage=2023,
|
|
1942
|
-
),
|
|
1943
|
-
Wine(
|
|
1944
|
-
id="wht-gr-003",
|
|
1945
|
-
name="Malagousia",
|
|
1946
|
-
producer="Domaine Gerovassiliou",
|
|
1947
|
-
region="Thessaloniki",
|
|
1948
|
-
country="Greece",
|
|
1949
|
-
varietal="Malagousia",
|
|
1950
|
-
color="white",
|
|
1951
|
-
profile=wp(0.58, 0.12, 0.05, 0.68, 0.72, 0.72, 0.40, 0.22),
|
|
1952
|
-
price_range="mid",
|
|
1953
|
-
description="Saved from extinction by one man (Gerovassiliou). Aromatic, peachy, slightly exotic — Greece's most exciting rediscovered grape.",
|
|
1954
|
-
tags=["old-world", "fruit-forward", "approachable", "obscure-varietal"],
|
|
1955
|
-
vintage=2022,
|
|
1956
|
-
),
|
|
1957
|
-
|
|
1958
|
-
# ── USA — Whites ─────────────────────────────────────────────────────
|
|
1959
|
-
|
|
1960
|
-
Wine(
|
|
1961
|
-
id="wht-us-001",
|
|
1962
|
-
name="Chardonnay Les Pierres",
|
|
1963
|
-
producer="Sonoma-Cutrer",
|
|
1964
|
-
region="Sonoma Coast",
|
|
1965
|
-
country="USA",
|
|
1966
|
-
varietal="Chardonnay",
|
|
1967
|
-
color="white",
|
|
1968
|
-
profile=wp(0.72, 0.10, 0.05, 0.62, 0.78, 0.62, 0.48, 0.15),
|
|
1969
|
-
price_range="mid",
|
|
1970
|
-
description="California Chardonnay done with restraint. Les Pierres vineyard gives stony, citrus-driven Chard that won't overpower your palate.",
|
|
1971
|
-
tags=["new-world", "elegant", "oaky"],
|
|
1972
|
-
vintage=2021,
|
|
1973
|
-
),
|
|
1974
|
-
Wine(
|
|
1975
|
-
id="wht-us-002",
|
|
1976
|
-
name="Dry Riesling",
|
|
1977
|
-
producer="Hermann J. Wiemer",
|
|
1978
|
-
region="Finger Lakes",
|
|
1979
|
-
country="USA",
|
|
1980
|
-
varietal="Riesling",
|
|
1981
|
-
color="white",
|
|
1982
|
-
profile=wp(0.48, 0.10, 0.05, 0.85, 0.75, 0.65, 0.55, 0.15),
|
|
1983
|
-
price_range="mid",
|
|
1984
|
-
description="The Finger Lakes' Riesling champion. Lime, petrol hints, and razor acidity — proof that great Riesling doesn't need a German passport.",
|
|
1985
|
-
tags=["new-world", "terroir-driven", "mineral", "elegant"],
|
|
1986
|
-
vintage=2022,
|
|
1987
|
-
),
|
|
1988
|
-
Wine(
|
|
1989
|
-
id="wht-us-003",
|
|
1990
|
-
name="Pinot Gris",
|
|
1991
|
-
producer="King Estate",
|
|
1992
|
-
region="Willamette Valley",
|
|
1993
|
-
country="USA",
|
|
1994
|
-
varietal="Pinot Gris",
|
|
1995
|
-
color="white",
|
|
1996
|
-
profile=wp(0.55, 0.12, 0.05, 0.68, 0.62, 0.65, 0.38, 0.12),
|
|
1997
|
-
price_range="mid",
|
|
1998
|
-
description="Oregon does Pinot Gris with more body and orchard fruit than its Italian cousin, but keeps the refreshing finish. A patio staple.",
|
|
1999
|
-
tags=["new-world", "fruit-forward", "approachable", "summer"],
|
|
2000
|
-
vintage=2022,
|
|
2001
|
-
),
|
|
2002
|
-
Wine(
|
|
2003
|
-
id="wht-us-004",
|
|
2004
|
-
name="Bien Nacido Vineyard Chardonnay",
|
|
2005
|
-
producer="Au Bon Climat",
|
|
2006
|
-
region="Santa Barbara County",
|
|
2007
|
-
country="USA",
|
|
2008
|
-
varietal="Chardonnay",
|
|
2009
|
-
color="white",
|
|
2010
|
-
profile=wp(0.68, 0.08, 0.05, 0.70, 0.82, 0.58, 0.52, 0.15),
|
|
2011
|
-
price_range="mid",
|
|
2012
|
-
description="Burgundy-obsessed Santa Barbara Chardonnay. Mineral, nutty, and age-worthy — the anti-butter-bomb California Chard.",
|
|
2013
|
-
tags=["new-world", "terroir-driven", "elegant"],
|
|
2014
|
-
vintage=2021,
|
|
2015
|
-
),
|
|
2016
|
-
|
|
2017
|
-
# ── New World — Whites ───────────────────────────────────────────────
|
|
2018
|
-
|
|
2019
|
-
Wine(
|
|
2020
|
-
id="wht-nz-001",
|
|
2021
|
-
name="Sauvignon Blanc",
|
|
2022
|
-
producer="Cloudy Bay",
|
|
2023
|
-
region="Marlborough",
|
|
2024
|
-
country="New Zealand",
|
|
2025
|
-
varietal="Sauvignon Blanc",
|
|
2026
|
-
color="white",
|
|
2027
|
-
profile=wp(0.48, 0.08, 0.05, 0.82, 0.65, 0.75, 0.38, 0.12),
|
|
2028
|
-
price_range="mid",
|
|
2029
|
-
description="The wine that launched a thousand imitators. Passionfruit, cut grass, and gooseberry — Marlborough Sauv Blanc is a genre unto itself.",
|
|
2030
|
-
tags=["new-world", "fruit-forward", "approachable", "summer"],
|
|
2031
|
-
vintage=2023,
|
|
2032
|
-
),
|
|
2033
|
-
Wine(
|
|
2034
|
-
id="wht-au-001",
|
|
2035
|
-
name="Riesling Watervale",
|
|
2036
|
-
producer="Grosset",
|
|
2037
|
-
region="Clare Valley",
|
|
2038
|
-
country="Australia",
|
|
2039
|
-
varietal="Riesling",
|
|
2040
|
-
color="white",
|
|
2041
|
-
profile=wp(0.50, 0.10, 0.05, 0.88, 0.82, 0.60, 0.60, 0.15),
|
|
2042
|
-
price_range="mid",
|
|
2043
|
-
description="Clare Valley Riesling — lime juice, slate, and gasoline in the best possible way. Grosset's Watervale ages beautifully under screwcap.",
|
|
2044
|
-
tags=["new-world", "terroir-driven", "mineral", "age-worthy"],
|
|
2045
|
-
vintage=2022,
|
|
2046
|
-
),
|
|
2047
|
-
Wine(
|
|
2048
|
-
id="wht-au-002",
|
|
2049
|
-
name="Semillon",
|
|
2050
|
-
producer="Tyrrell's",
|
|
2051
|
-
region="Hunter Valley",
|
|
2052
|
-
country="Australia",
|
|
2053
|
-
varietal="Semillon",
|
|
2054
|
-
color="white",
|
|
2055
|
-
profile=wp(0.42, 0.05, 0.05, 0.85, 0.80, 0.48, 0.60, 0.10),
|
|
2056
|
-
price_range="mid",
|
|
2057
|
-
description="Picked at 10.5% alcohol, aged for a decade, and emerges tasting like liquid toast and lime. Hunter Semillon is magic you have to trust.",
|
|
2058
|
-
tags=["new-world", "terroir-driven", "age-worthy", "mineral", "light-bodied"],
|
|
2059
|
-
vintage=2017,
|
|
2060
|
-
),
|
|
2061
|
-
Wine(
|
|
2062
|
-
id="wht-za-001",
|
|
2063
|
-
name="Chenin Blanc",
|
|
2064
|
-
producer="Ken Forrester",
|
|
2065
|
-
region="Stellenbosch",
|
|
2066
|
-
country="South Africa",
|
|
2067
|
-
varietal="Chenin Blanc",
|
|
2068
|
-
color="white",
|
|
2069
|
-
profile=wp(0.58, 0.12, 0.05, 0.72, 0.70, 0.68, 0.42, 0.15),
|
|
2070
|
-
price_range="budget",
|
|
2071
|
-
description="South Africa owns Chenin Blanc — more planted here than anywhere else. Ken Forrester's is tropical, round, and ridiculously easy to drink.",
|
|
2072
|
-
tags=["new-world", "fruit-forward", "approachable", "summer"],
|
|
2073
|
-
vintage=2023,
|
|
2074
|
-
),
|
|
2075
|
-
Wine(
|
|
2076
|
-
id="wht-za-002",
|
|
2077
|
-
name="Old Vine Chenin Blanc",
|
|
2078
|
-
producer="The Sadie Family Wines (Palladius)",
|
|
2079
|
-
region="Swartland",
|
|
2080
|
-
country="South Africa",
|
|
2081
|
-
varietal="Chenin Blanc blend",
|
|
2082
|
-
color="white",
|
|
2083
|
-
profile=wp(0.72, 0.10, 0.05, 0.68, 0.90, 0.55, 0.65, 0.22),
|
|
2084
|
-
price_range="premium",
|
|
2085
|
-
description="Eben Sadie's white masterpiece — old-vine Chenin with supporting cast, fermented with terroir obsession. This is South Africa's grand cru blanc.",
|
|
2086
|
-
tags=["new-world", "terroir-driven", "age-worthy", "elegant"],
|
|
2087
|
-
vintage=2021,
|
|
2088
|
-
),
|
|
2089
|
-
Wine(
|
|
2090
|
-
id="wht-ar-001",
|
|
2091
|
-
name="Torrontés",
|
|
2092
|
-
producer="Colomé",
|
|
2093
|
-
region="Calchaquí Valley, Salta",
|
|
2094
|
-
country="Argentina",
|
|
2095
|
-
varietal="Torrontés",
|
|
2096
|
-
color="white",
|
|
2097
|
-
profile=wp(0.52, 0.12, 0.05, 0.65, 0.60, 0.75, 0.32, 0.22),
|
|
2098
|
-
price_range="budget",
|
|
2099
|
-
description="Argentina's aromatic white — Muscat's high-altitude cousin. Rose petal, grapefruit, and a floral exuberance that's impossible to resist.",
|
|
2100
|
-
tags=["new-world", "fruit-forward", "approachable", "fun"],
|
|
2101
|
-
vintage=2023,
|
|
2102
|
-
),
|
|
2103
|
-
Wine(
|
|
2104
|
-
id="wht-cl-001",
|
|
2105
|
-
name="Sauvignon Blanc Reserva",
|
|
2106
|
-
producer="Casas del Bosque",
|
|
2107
|
-
region="Casablanca Valley",
|
|
2108
|
-
country="Chile",
|
|
2109
|
-
varietal="Sauvignon Blanc",
|
|
2110
|
-
color="white",
|
|
2111
|
-
profile=wp(0.48, 0.08, 0.05, 0.80, 0.65, 0.70, 0.40, 0.12),
|
|
2112
|
-
price_range="budget",
|
|
2113
|
-
description="Casablanca's coastal fog gives Chilean Sauv Blanc a cooler, zippier edge. Green apple, lime, herbs — excellent value.",
|
|
2114
|
-
tags=["new-world", "fruit-forward", "approachable", "summer"],
|
|
2115
|
-
vintage=2023,
|
|
2116
|
-
),
|
|
2117
|
-
Wine(
|
|
2118
|
-
id="wht-za-003",
|
|
2119
|
-
name="Secateurs Chenin Blanc",
|
|
2120
|
-
producer="Badenhorst Family Wines",
|
|
2121
|
-
region="Swartland",
|
|
2122
|
-
country="South Africa",
|
|
2123
|
-
varietal="Chenin Blanc",
|
|
2124
|
-
color="white",
|
|
2125
|
-
profile=wp(0.55, 0.10, 0.05, 0.72, 0.72, 0.62, 0.48, 0.15),
|
|
2126
|
-
price_range="budget",
|
|
2127
|
-
description="Old bush vine Chenin at a price that makes you wonder what everyone else is doing wrong. Quince, honey, stone — pure Swartland joy.",
|
|
2128
|
-
tags=["new-world", "natural", "approachable", "fruit-forward", "fun"],
|
|
2129
|
-
vintage=2023,
|
|
2130
|
-
),
|
|
2131
|
-
|
|
2132
|
-
# ── Rest of World — Whites ───────────────────────────────────────────
|
|
2133
|
-
|
|
2134
|
-
Wine(
|
|
2135
|
-
id="wht-ge-001",
|
|
2136
|
-
name="Rkatsiteli",
|
|
2137
|
-
producer="Teliani Valley",
|
|
2138
|
-
region="Kakheti",
|
|
2139
|
-
country="Georgia",
|
|
2140
|
-
varietal="Rkatsiteli",
|
|
2141
|
-
color="white",
|
|
2142
|
-
profile=wp(0.55, 0.08, 0.10, 0.72, 0.65, 0.52, 0.58, 0.18),
|
|
2143
|
-
price_range="budget",
|
|
2144
|
-
description="Georgia's most-planted white — crisp, mineral, and ancient. This conventionally vinified version is clean and food-friendly.",
|
|
2145
|
-
tags=["old-world", "approachable", "terroir-driven", "obscure-varietal"],
|
|
2146
|
-
vintage=2022,
|
|
2147
|
-
),
|
|
2148
|
-
Wine(
|
|
2149
|
-
id="wht-hu-001",
|
|
2150
|
-
name="Furmint Dry",
|
|
2151
|
-
producer="Royal Tokaji",
|
|
2152
|
-
region="Tokaj",
|
|
2153
|
-
country="Hungary",
|
|
2154
|
-
varietal="Furmint",
|
|
2155
|
-
color="white",
|
|
2156
|
-
profile=wp(0.58, 0.08, 0.05, 0.82, 0.78, 0.52, 0.65, 0.18),
|
|
2157
|
-
price_range="mid",
|
|
2158
|
-
description="Furmint isn't just for sweet wine. Dry, it's stony, smoky, and lip-smackingly tart — Hungary's most exciting white grape reborn.",
|
|
2159
|
-
tags=["old-world", "terroir-driven", "mineral", "obscure-varietal"],
|
|
2160
|
-
vintage=2021,
|
|
2161
|
-
),
|
|
2162
|
-
Wine(
|
|
2163
|
-
id="wht-si-001",
|
|
2164
|
-
name="Rebula",
|
|
2165
|
-
producer="Marjan Simčič",
|
|
2166
|
-
region="Goriška Brda",
|
|
2167
|
-
country="Slovenia",
|
|
2168
|
-
varietal="Rebula (Ribolla Gialla)",
|
|
2169
|
-
color="white",
|
|
2170
|
-
profile=wp(0.58, 0.08, 0.05, 0.75, 0.75, 0.55, 0.58, 0.15),
|
|
2171
|
-
price_range="mid",
|
|
2172
|
-
description="Slovenian Rebula on the Italian border — mineral, textured, and made by one of the region's great names. The still version is pristine.",
|
|
2173
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
2174
|
-
vintage=2021,
|
|
2175
|
-
),
|
|
2176
|
-
Wine(
|
|
2177
|
-
id="wht-jp-001",
|
|
2178
|
-
name="Koshu",
|
|
2179
|
-
producer="Grace Wine (Chuo Budoshu)",
|
|
2180
|
-
region="Yamanashi",
|
|
2181
|
-
country="Japan",
|
|
2182
|
-
varietal="Koshu",
|
|
2183
|
-
color="white",
|
|
2184
|
-
profile=wp(0.40, 0.08, 0.05, 0.72, 0.62, 0.52, 0.45, 0.12),
|
|
2185
|
-
price_range="mid",
|
|
2186
|
-
description="Japan's indigenous grape — delicate, ethereal, and with a subtlety that demands your attention. Think washi paper in wine form.",
|
|
2187
|
-
tags=["new-world", "light-bodied", "elegant", "approachable", "obscure-varietal"],
|
|
2188
|
-
vintage=2022,
|
|
2189
|
-
),
|
|
2190
|
-
Wine(
|
|
2191
|
-
id="wht-ch-001",
|
|
2192
|
-
name="Chasselas Dézaley Grand Cru",
|
|
2193
|
-
producer="Louis Bovard",
|
|
2194
|
-
region="Lavaux, Vaud",
|
|
2195
|
-
country="Switzerland",
|
|
2196
|
-
varietal="Chasselas",
|
|
2197
|
-
color="white",
|
|
2198
|
-
profile=wp(0.50, 0.08, 0.05, 0.72, 0.72, 0.50, 0.62, 0.12),
|
|
2199
|
-
price_range="mid",
|
|
2200
|
-
description="Switzerland's signature grape on UNESCO-terraced vineyards above Lake Geneva. Subtle, mineral, and completely impossible to export. Worth seeking.",
|
|
2201
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant", "obscure-varietal"],
|
|
2202
|
-
vintage=2022,
|
|
2203
|
-
),
|
|
2204
|
-
Wine(
|
|
2205
|
-
id="wht-hr-001",
|
|
2206
|
-
name="Pošip",
|
|
2207
|
-
producer="Korta Katarina",
|
|
2208
|
-
region="Korčula",
|
|
2209
|
-
country="Croatia",
|
|
2210
|
-
varietal="Pošip",
|
|
2211
|
-
color="white",
|
|
2212
|
-
profile=wp(0.55, 0.10, 0.05, 0.70, 0.65, 0.62, 0.48, 0.15),
|
|
2213
|
-
price_range="mid",
|
|
2214
|
-
description="Dalmatian white at its most captivating — stone fruit, herbs, Adriatic salt. Pairs with grilled fish and a sunset over the islands.",
|
|
2215
|
-
tags=["old-world", "mediterranean", "approachable", "obscure-varietal", "summer"],
|
|
2216
|
-
vintage=2022,
|
|
2217
|
-
),
|
|
2218
|
-
Wine(
|
|
2219
|
-
id="wht-lb-001",
|
|
2220
|
-
name="Obaideh",
|
|
2221
|
-
producer="Château Musar",
|
|
2222
|
-
region="Bekaa Valley",
|
|
2223
|
-
country="Lebanon",
|
|
2224
|
-
varietal="Obaideh",
|
|
2225
|
-
color="white",
|
|
2226
|
-
profile=wp(0.68, 0.10, 0.05, 0.58, 0.80, 0.52, 0.62, 0.22),
|
|
2227
|
-
price_range="mid",
|
|
2228
|
-
description="Musar's white is as maverick as its red — Obaideh (local Chardonnay relative) aged to oxidative glory. Honey, spice, and ancient terroir.",
|
|
2229
|
-
tags=["old-world", "terroir-driven", "age-worthy", "obscure-varietal"],
|
|
2230
|
-
vintage=2017,
|
|
2231
|
-
),
|
|
2232
|
-
|
|
2233
|
-
# =====================================================================
|
|
2234
|
-
# ROSÉ
|
|
2235
|
-
# =====================================================================
|
|
2236
|
-
|
|
2237
|
-
Wine(
|
|
2238
|
-
id="ros-fr-001",
|
|
2239
|
-
name="Whispering Angel",
|
|
2240
|
-
producer="Château d'Esclans",
|
|
2241
|
-
region="Provence",
|
|
2242
|
-
country="France",
|
|
2243
|
-
varietal="Grenache/Cinsault/Rolle",
|
|
2244
|
-
color="rose",
|
|
2245
|
-
profile=wp(0.42, 0.12, 0.08, 0.68, 0.55, 0.65, 0.30, 0.12),
|
|
2246
|
-
price_range="mid",
|
|
2247
|
-
description="The rosé that launched an empire. Pale, pretty, and endlessly crushable — it's a vibe more than a wine, and that's fine.",
|
|
2248
|
-
tags=["old-world", "approachable", "fun", "summer"],
|
|
2249
|
-
vintage=2023,
|
|
2250
|
-
),
|
|
2251
|
-
Wine(
|
|
2252
|
-
id="ros-fr-002",
|
|
2253
|
-
name="Château Simone Rosé",
|
|
2254
|
-
producer="Château Simone",
|
|
2255
|
-
region="Palette, Provence",
|
|
2256
|
-
country="France",
|
|
2257
|
-
varietal="Grenache/Mourvèdre/Cinsault",
|
|
2258
|
-
color="rose",
|
|
2259
|
-
profile=wp(0.55, 0.08, 0.12, 0.72, 0.80, 0.52, 0.58, 0.22),
|
|
2260
|
-
price_range="premium",
|
|
2261
|
-
description="The anti-Whispering Angel. Château Simone makes rosé for people who think pink wine can be profound — and proves it every vintage.",
|
|
2262
|
-
tags=["old-world", "terroir-driven", "elegant", "age-worthy"],
|
|
2263
|
-
vintage=2022,
|
|
2264
|
-
),
|
|
2265
|
-
Wine(
|
|
2266
|
-
id="ros-fr-003",
|
|
2267
|
-
name="Tavel",
|
|
2268
|
-
producer="Domaine de la Mordorée",
|
|
2269
|
-
region="Tavel",
|
|
2270
|
-
country="France",
|
|
2271
|
-
varietal="Grenache/Cinsault/Clairette",
|
|
2272
|
-
color="rose",
|
|
2273
|
-
profile=wp(0.62, 0.10, 0.15, 0.62, 0.72, 0.62, 0.45, 0.30),
|
|
2274
|
-
price_range="mid",
|
|
2275
|
-
description="The only AOC in France dedicated entirely to rosé. Darker, richer, and more gastronomic than Provence — Tavel is pink wine with backbone.",
|
|
2276
|
-
tags=["old-world", "mediterranean", "terroir-driven"],
|
|
2277
|
-
vintage=2022,
|
|
2278
|
-
),
|
|
2279
|
-
Wine(
|
|
2280
|
-
id="ros-fr-004",
|
|
2281
|
-
name="Bandol Rosé",
|
|
2282
|
-
producer="Domaine Tempier",
|
|
2283
|
-
region="Bandol",
|
|
2284
|
-
country="France",
|
|
2285
|
-
varietal="Mourvèdre/Grenache/Cinsault",
|
|
2286
|
-
color="rose",
|
|
2287
|
-
profile=wp(0.55, 0.08, 0.15, 0.68, 0.78, 0.58, 0.52, 0.30),
|
|
2288
|
-
price_range="mid",
|
|
2289
|
-
description="Tempier's rosé is as legendary as its reds. Mourvèdre-based pink with herbal depth and a savory finish — the sommelier's rosé.",
|
|
2290
|
-
tags=["old-world", "terroir-driven", "elegant", "mediterranean"],
|
|
2291
|
-
vintage=2023,
|
|
2292
|
-
),
|
|
2293
|
-
Wine(
|
|
2294
|
-
id="ros-es-001",
|
|
2295
|
-
name="Rosado de Lágrima",
|
|
2296
|
-
producer="Chivite",
|
|
2297
|
-
region="Navarra",
|
|
2298
|
-
country="Spain",
|
|
2299
|
-
varietal="Garnacha",
|
|
2300
|
-
color="rose",
|
|
2301
|
-
profile=wp(0.48, 0.10, 0.08, 0.65, 0.60, 0.68, 0.32, 0.15),
|
|
2302
|
-
price_range="budget",
|
|
2303
|
-
description="Navarra Garnacha rosado — strawberry, watermelon, and good times. Spain's pink wine tradition predates the Provence craze by decades.",
|
|
2304
|
-
tags=["old-world", "fruit-forward", "fun", "summer", "approachable"],
|
|
2305
|
-
vintage=2023,
|
|
2306
|
-
),
|
|
2307
|
-
Wine(
|
|
2308
|
-
id="ros-it-001",
|
|
2309
|
-
name="Cerasuolo d'Abruzzo",
|
|
2310
|
-
producer="Cataldi Madonna",
|
|
2311
|
-
region="Abruzzo",
|
|
2312
|
-
country="Italy",
|
|
2313
|
-
varietal="Montepulciano",
|
|
2314
|
-
color="rose",
|
|
2315
|
-
profile=wp(0.52, 0.08, 0.12, 0.68, 0.62, 0.68, 0.38, 0.18),
|
|
2316
|
-
price_range="budget",
|
|
2317
|
-
description="Cherry-pink, cherry-tasting, and cherry-priced. Italian rosé that drinks like a light red — perfect with charcuterie al fresco.",
|
|
2318
|
-
tags=["old-world", "fruit-forward", "approachable", "fun", "summer"],
|
|
2319
|
-
vintage=2023,
|
|
2320
|
-
),
|
|
2321
|
-
Wine(
|
|
2322
|
-
id="ros-it-002",
|
|
2323
|
-
name="Chiaretto di Bardolino",
|
|
2324
|
-
producer="Cavalchina",
|
|
2325
|
-
region="Bardolino",
|
|
2326
|
-
country="Italy",
|
|
2327
|
-
varietal="Corvina/Rondinella",
|
|
2328
|
-
color="rose",
|
|
2329
|
-
profile=wp(0.42, 0.08, 0.08, 0.72, 0.58, 0.62, 0.35, 0.12),
|
|
2330
|
-
price_range="budget",
|
|
2331
|
-
description="Lake Garda rosé — pale, delicate, and the essence of an Italian aperitivo. Serve it ice-cold with a view of the water.",
|
|
2332
|
-
tags=["old-world", "light-bodied", "approachable", "fun", "summer"],
|
|
2333
|
-
vintage=2023,
|
|
2334
|
-
),
|
|
2335
|
-
Wine(
|
|
2336
|
-
id="ros-gr-001",
|
|
2337
|
-
name="Xinomavro Rosé",
|
|
2338
|
-
producer="Alpha Estate",
|
|
2339
|
-
region="Amyndeon",
|
|
2340
|
-
country="Greece",
|
|
2341
|
-
varietal="Xinomavro",
|
|
2342
|
-
color="rose",
|
|
2343
|
-
profile=wp(0.48, 0.08, 0.12, 0.72, 0.65, 0.58, 0.42, 0.18),
|
|
2344
|
-
price_range="budget",
|
|
2345
|
-
description="Xinomavro rosé from northern Greece — tart, herbal, and structured enough to pair with food. Not your average pink sipper.",
|
|
2346
|
-
tags=["old-world", "terroir-driven", "approachable", "obscure-varietal"],
|
|
2347
|
-
vintage=2023,
|
|
2348
|
-
),
|
|
2349
|
-
Wine(
|
|
2350
|
-
id="ros-za-001",
|
|
2351
|
-
name="Rosé of Mourvèdre",
|
|
2352
|
-
producer="Mullineux",
|
|
2353
|
-
region="Swartland",
|
|
2354
|
-
country="South Africa",
|
|
2355
|
-
varietal="Mourvèdre",
|
|
2356
|
-
color="rose",
|
|
2357
|
-
profile=wp(0.50, 0.08, 0.10, 0.68, 0.72, 0.60, 0.48, 0.25),
|
|
2358
|
-
price_range="mid",
|
|
2359
|
-
description="Mourvèdre rosé from old Swartland vines — savory, textured, and serious about being pink. Mullineux doesn't do things halfway.",
|
|
2360
|
-
tags=["new-world", "terroir-driven", "elegant"],
|
|
2361
|
-
vintage=2023,
|
|
2362
|
-
),
|
|
2363
|
-
Wine(
|
|
2364
|
-
id="ros-us-001",
|
|
2365
|
-
name="Rosé of Pinot Noir",
|
|
2366
|
-
producer="Domaine Carneros",
|
|
2367
|
-
region="Carneros, California",
|
|
2368
|
-
country="USA",
|
|
2369
|
-
varietal="Pinot Noir",
|
|
2370
|
-
color="rose",
|
|
2371
|
-
profile=wp(0.45, 0.10, 0.08, 0.68, 0.62, 0.68, 0.30, 0.12),
|
|
2372
|
-
price_range="mid",
|
|
2373
|
-
description="California rosé at its most elegant. Carneros fog gives this Pinot rosé a cooler, more restrained style than you'd expect from the Golden State.",
|
|
2374
|
-
tags=["new-world", "fruit-forward", "elegant", "summer"],
|
|
2375
|
-
vintage=2023,
|
|
2376
|
-
),
|
|
2377
|
-
Wine(
|
|
2378
|
-
id="ros-fr-005",
|
|
2379
|
-
name="Sancerre Rosé",
|
|
2380
|
-
producer="Domaine Vacheron",
|
|
2381
|
-
region="Sancerre",
|
|
2382
|
-
country="France",
|
|
2383
|
-
varietal="Pinot Noir",
|
|
2384
|
-
color="rose",
|
|
2385
|
-
profile=wp(0.42, 0.05, 0.08, 0.78, 0.70, 0.60, 0.48, 0.12),
|
|
2386
|
-
price_range="mid",
|
|
2387
|
-
description="Sancerre in pink — racy, mineral, and bone-dry. Vacheron's biodynamic Pinot Noir makes a rosé that takes itself seriously (in a good way).",
|
|
2388
|
-
tags=["old-world", "terroir-driven", "biodynamic", "mineral", "elegant"],
|
|
2389
|
-
vintage=2023,
|
|
2390
|
-
),
|
|
2391
|
-
Wine(
|
|
2392
|
-
id="ros-us-002",
|
|
2393
|
-
name="Rosé of Merlot",
|
|
2394
|
-
producer="Wölffer Estate",
|
|
2395
|
-
region="Long Island",
|
|
2396
|
-
country="USA",
|
|
2397
|
-
varietal="Merlot",
|
|
2398
|
-
color="rose",
|
|
2399
|
-
profile=wp(0.45, 0.12, 0.08, 0.65, 0.58, 0.65, 0.30, 0.12),
|
|
2400
|
-
price_range="mid",
|
|
2401
|
-
description="The Hamptons' house rosé. Wölffer's pink is crisp, pretty, and pairs perfectly with lobster rolls and ocean breezes.",
|
|
2402
|
-
tags=["new-world", "fruit-forward", "fun", "summer", "approachable"],
|
|
2403
|
-
vintage=2023,
|
|
2404
|
-
),
|
|
2405
|
-
Wine(
|
|
2406
|
-
id="ros-au-001",
|
|
2407
|
-
name="Rosé",
|
|
2408
|
-
producer="Turkey Flat",
|
|
2409
|
-
region="Barossa Valley",
|
|
2410
|
-
country="Australia",
|
|
2411
|
-
varietal="Grenache",
|
|
2412
|
-
color="rose",
|
|
2413
|
-
profile=wp(0.48, 0.10, 0.08, 0.65, 0.60, 0.70, 0.35, 0.15),
|
|
2414
|
-
price_range="budget",
|
|
2415
|
-
description="Barossa Grenache rosé — slightly richer and more generous than Provence style. Strawberry, cream, and a warmth that's unmistakably Australian.",
|
|
2416
|
-
tags=["new-world", "fruit-forward", "approachable", "fun", "summer"],
|
|
2417
|
-
vintage=2023,
|
|
2418
|
-
),
|
|
2419
|
-
Wine(
|
|
2420
|
-
id="ros-tr-001",
|
|
2421
|
-
name="Kalecik Karası Rosé",
|
|
2422
|
-
producer="Vinkara",
|
|
2423
|
-
region="Ankara",
|
|
2424
|
-
country="Turkey",
|
|
2425
|
-
varietal="Kalecik Karası",
|
|
2426
|
-
color="rose",
|
|
2427
|
-
profile=wp(0.42, 0.10, 0.08, 0.68, 0.55, 0.65, 0.35, 0.15),
|
|
2428
|
-
price_range="budget",
|
|
2429
|
-
description="Turkish rosé from an indigenous grape — pale, fresh, and with a delicate strawberry character. A delightful surprise from Anatolia.",
|
|
2430
|
-
tags=["old-world", "approachable", "light-bodied", "fun", "obscure-varietal"],
|
|
2431
|
-
vintage=2023,
|
|
2432
|
-
),
|
|
2433
|
-
Wine(
|
|
2434
|
-
id="ros-fr-006",
|
|
2435
|
-
name="Corsican Rosé",
|
|
2436
|
-
producer="Domaine Comte Abbatucci",
|
|
2437
|
-
region="Ajaccio, Corsica",
|
|
2438
|
-
country="France",
|
|
2439
|
-
varietal="Sciaccarello",
|
|
2440
|
-
color="rose",
|
|
2441
|
-
profile=wp(0.48, 0.08, 0.10, 0.70, 0.70, 0.60, 0.48, 0.20),
|
|
2442
|
-
price_range="mid",
|
|
2443
|
-
description="Biodynamic Corsican rosé from ancient Sciaccarello vines. Herbal, peppery, and with more terroir character than any pink wine has a right to have.",
|
|
2444
|
-
tags=["old-world", "biodynamic", "natural", "terroir-driven", "mediterranean"],
|
|
2445
|
-
vintage=2023,
|
|
2446
|
-
),
|
|
2447
|
-
Wine(
|
|
2448
|
-
id="ros-mx-001",
|
|
2449
|
-
name="Rosa Morada",
|
|
2450
|
-
producer="Adobe Guadalupe",
|
|
2451
|
-
region="Valle de Guadalupe",
|
|
2452
|
-
country="Mexico",
|
|
2453
|
-
varietal="Grenache/Tempranillo",
|
|
2454
|
-
color="rose",
|
|
2455
|
-
profile=wp(0.48, 0.12, 0.08, 0.62, 0.55, 0.68, 0.32, 0.15),
|
|
2456
|
-
price_range="mid",
|
|
2457
|
-
description="Baja California rosé — yes, Mexico makes wine, and it's charming. Watermelon, herbs, and desert-breeze freshness.",
|
|
2458
|
-
tags=["new-world", "fruit-forward", "fun", "summer", "approachable"],
|
|
2459
|
-
vintage=2023,
|
|
2460
|
-
),
|
|
2461
|
-
|
|
2462
|
-
# =====================================================================
|
|
2463
|
-
# SPARKLING
|
|
2464
|
-
# =====================================================================
|
|
2465
|
-
|
|
2466
|
-
# ── Champagne ────────────────────────────────────────────────────────
|
|
2467
|
-
|
|
2468
|
-
Wine(
|
|
2469
|
-
id="spk-fr-001",
|
|
2470
|
-
name="Krug Grande Cuvée",
|
|
2471
|
-
producer="Krug",
|
|
2472
|
-
region="Champagne",
|
|
2473
|
-
country="France",
|
|
2474
|
-
varietal="Chardonnay/Pinot Noir/Pinot Meunier",
|
|
2475
|
-
color="sparkling",
|
|
2476
|
-
profile=wp(0.72, 0.15, 0.08, 0.82, 0.98, 0.55, 0.58, 0.25),
|
|
2477
|
-
price_range="luxury",
|
|
2478
|
-
description="The Rolls-Royce of Champagne. Multiple vintages blended into something that transcends time — toasted brioche, citrus, and pure luxury.",
|
|
2479
|
-
tags=["old-world", "age-worthy", "elegant"],
|
|
2480
|
-
vintage=None,
|
|
2481
|
-
),
|
|
2482
|
-
Wine(
|
|
2483
|
-
id="spk-fr-002",
|
|
2484
|
-
name="Fleuron Blanc de Blancs 1er Cru",
|
|
2485
|
-
producer="Pierre Gimonnet & Fils",
|
|
2486
|
-
region="Champagne",
|
|
2487
|
-
country="France",
|
|
2488
|
-
varietal="Chardonnay",
|
|
2489
|
-
color="sparkling",
|
|
2490
|
-
profile=wp(0.55, 0.12, 0.05, 0.88, 0.85, 0.55, 0.55, 0.15),
|
|
2491
|
-
price_range="mid",
|
|
2492
|
-
description="Grower Champagne — the indie label of sparkling wine. Gimonnet's Chardonnay-only cuvée is nervy, precise, and deeply individual. Drinking big-house Champagne after this is like going back to fast fashion after McQueen.",
|
|
2493
|
-
tags=["old-world", "terroir-driven", "elegant", "mineral"],
|
|
2494
|
-
vintage=None,
|
|
2495
|
-
),
|
|
2496
|
-
Wine(
|
|
2497
|
-
id="spk-fr-003",
|
|
2498
|
-
name="Blanc de Blancs Grand Cru",
|
|
2499
|
-
producer="Salon",
|
|
2500
|
-
region="Champagne",
|
|
2501
|
-
country="France",
|
|
2502
|
-
varietal="Chardonnay",
|
|
2503
|
-
color="sparkling",
|
|
2504
|
-
profile=wp(0.62, 0.10, 0.05, 0.90, 0.96, 0.48, 0.65, 0.15),
|
|
2505
|
-
price_range="luxury",
|
|
2506
|
-
description="Only made in exceptional years, from a single village (Le Mesnil). Salon is Champagne reduced to its purest, most crystalline essence.",
|
|
2507
|
-
tags=["old-world", "terroir-driven", "elegant", "age-worthy", "mineral"],
|
|
2508
|
-
vintage=2012,
|
|
2509
|
-
),
|
|
2510
|
-
Wine(
|
|
2511
|
-
id="spk-fr-004",
|
|
2512
|
-
name="Blanc de Noirs Grand Cru",
|
|
2513
|
-
producer="Egly-Ouriet",
|
|
2514
|
-
region="Champagne",
|
|
2515
|
-
country="France",
|
|
2516
|
-
varietal="Pinot Noir",
|
|
2517
|
-
color="sparkling",
|
|
2518
|
-
profile=wp(0.68, 0.12, 0.05, 0.82, 0.88, 0.58, 0.55, 0.20),
|
|
2519
|
-
price_range="premium",
|
|
2520
|
-
description="All Pinot Noir, maximum vinosity. Egly-Ouriet's Blanc de Noirs has the weight of a great Burgundy with bubbles — red fruit, brioche, power.",
|
|
2521
|
-
tags=["old-world", "terroir-driven", "elegant"],
|
|
2522
|
-
vintage=None,
|
|
2523
|
-
),
|
|
2524
|
-
Wine(
|
|
2525
|
-
id="spk-fr-005",
|
|
2526
|
-
name="Rosé Brut",
|
|
2527
|
-
producer="Billecart-Salmon",
|
|
2528
|
-
region="Champagne",
|
|
2529
|
-
country="France",
|
|
2530
|
-
varietal="Chardonnay/Pinot Noir/Pinot Meunier",
|
|
2531
|
-
color="sparkling",
|
|
2532
|
-
profile=wp(0.58, 0.12, 0.05, 0.82, 0.85, 0.65, 0.42, 0.15),
|
|
2533
|
-
price_range="premium",
|
|
2534
|
-
description="The benchmark rosé Champagne. Salmon pink, red berry delicacy, and a persistent mousse — celebrations deserve this bottle.",
|
|
2535
|
-
tags=["old-world", "elegant", "fruit-forward"],
|
|
2536
|
-
vintage=None,
|
|
2537
|
-
),
|
|
2538
|
-
|
|
2539
|
-
# ── Crémant ──────────────────────────────────────────────────────────
|
|
2540
|
-
|
|
2541
|
-
Wine(
|
|
2542
|
-
id="spk-fr-006",
|
|
2543
|
-
name="Crémant d'Alsace Brut",
|
|
2544
|
-
producer="Domaine Albert Mann",
|
|
2545
|
-
region="Alsace",
|
|
2546
|
-
country="France",
|
|
2547
|
-
varietal="Pinot Blanc/Auxerrois/Riesling",
|
|
2548
|
-
color="sparkling",
|
|
2549
|
-
profile=wp(0.48, 0.10, 0.05, 0.78, 0.68, 0.58, 0.42, 0.12),
|
|
2550
|
-
price_range="budget",
|
|
2551
|
-
description="Champagne quality at Crémant prices. Albert Mann's biodynamic bubbles are apple-fresh, toasty, and absurdly good for the money.",
|
|
2552
|
-
tags=["old-world", "biodynamic", "approachable", "fun"],
|
|
2553
|
-
vintage=None,
|
|
2554
|
-
),
|
|
2555
|
-
Wine(
|
|
2556
|
-
id="spk-fr-007",
|
|
2557
|
-
name="Crémant de Loire Brut",
|
|
2558
|
-
producer="Domaine des Baumard",
|
|
2559
|
-
region="Loire Valley",
|
|
2560
|
-
country="France",
|
|
2561
|
-
varietal="Chenin Blanc/Chardonnay",
|
|
2562
|
-
color="sparkling",
|
|
2563
|
-
profile=wp(0.48, 0.10, 0.05, 0.78, 0.65, 0.60, 0.40, 0.10),
|
|
2564
|
-
price_range="budget",
|
|
2565
|
-
description="Loire Crémant — Chenin Blanc bubbles with honey and apple character. The smart money alternative to Champagne at your next party.",
|
|
2566
|
-
tags=["old-world", "approachable", "fun"],
|
|
2567
|
-
vintage=None,
|
|
2568
|
-
),
|
|
2569
|
-
Wine(
|
|
2570
|
-
id="spk-fr-008",
|
|
2571
|
-
name="Crémant de Bourgogne Blanc de Blancs",
|
|
2572
|
-
producer="Domaine Bailly Lapierre",
|
|
2573
|
-
region="Burgundy",
|
|
2574
|
-
country="France",
|
|
2575
|
-
varietal="Chardonnay",
|
|
2576
|
-
color="sparkling",
|
|
2577
|
-
profile=wp(0.50, 0.10, 0.05, 0.78, 0.68, 0.55, 0.45, 0.12),
|
|
2578
|
-
price_range="budget",
|
|
2579
|
-
description="Burgundian Chardonnay with bubbles — what's not to love? Crisp, nutty, and the ultimate 'looks expensive, isn't' sparkling.",
|
|
2580
|
-
tags=["old-world", "approachable", "elegant"],
|
|
2581
|
-
vintage=None,
|
|
2582
|
-
),
|
|
2583
|
-
Wine(
|
|
2584
|
-
id="spk-fr-009",
|
|
2585
|
-
name="Crémant du Jura",
|
|
2586
|
-
producer="Domaine Labet",
|
|
2587
|
-
region="Jura",
|
|
2588
|
-
country="France",
|
|
2589
|
-
varietal="Chardonnay/Savagnin",
|
|
2590
|
-
color="sparkling",
|
|
2591
|
-
profile=wp(0.52, 0.08, 0.05, 0.80, 0.72, 0.50, 0.55, 0.15),
|
|
2592
|
-
price_range="mid",
|
|
2593
|
-
description="Jura Crémant with a wild edge — Savagnin adds a nutty, oxidative note that makes these bubbles more interesting than most Champagne.",
|
|
2594
|
-
tags=["old-world", "natural", "terroir-driven"],
|
|
2595
|
-
vintage=None,
|
|
2596
|
-
),
|
|
2597
|
-
|
|
2598
|
-
# ── Other Sparkling ──────────────────────────────────────────────────
|
|
2599
|
-
|
|
2600
|
-
Wine(
|
|
2601
|
-
id="spk-es-001",
|
|
2602
|
-
name="Cava Gran Reserva",
|
|
2603
|
-
producer="Gramona",
|
|
2604
|
-
region="Penedès",
|
|
2605
|
-
country="Spain",
|
|
2606
|
-
varietal="Xarel-lo/Macabeo/Parellada",
|
|
2607
|
-
color="sparkling",
|
|
2608
|
-
profile=wp(0.58, 0.10, 0.05, 0.78, 0.78, 0.52, 0.55, 0.15),
|
|
2609
|
-
price_range="mid",
|
|
2610
|
-
description="Gramona proves Cava can be world-class. Extended aging, organic viticulture, and a complexity that shames many Champagnes at twice the price.",
|
|
2611
|
-
tags=["old-world", "terroir-driven", "age-worthy", "elegant"],
|
|
2612
|
-
vintage=2016,
|
|
2613
|
-
),
|
|
2614
|
-
Wine(
|
|
2615
|
-
id="spk-it-001",
|
|
2616
|
-
name="Prosecco Superiore Cartizze",
|
|
2617
|
-
producer="Bisol",
|
|
2618
|
-
region="Valdobbiadene",
|
|
2619
|
-
country="Italy",
|
|
2620
|
-
varietal="Glera",
|
|
2621
|
-
color="sparkling",
|
|
2622
|
-
profile=wp(0.40, 0.18, 0.05, 0.68, 0.58, 0.72, 0.28, 0.10),
|
|
2623
|
-
price_range="mid",
|
|
2624
|
-
description="The Grand Cru of Prosecco. Bisol's Cartizze is apple, pear, wisteria, and a gentle sweetness that makes it the perfect aperitivo.",
|
|
2625
|
-
tags=["old-world", "fruit-forward", "approachable", "sweet-ish", "fun"],
|
|
2626
|
-
vintage=None,
|
|
2627
|
-
),
|
|
2628
|
-
Wine(
|
|
2629
|
-
id="spk-it-002",
|
|
2630
|
-
name="Franciacorta Satèn",
|
|
2631
|
-
producer="Ca' del Bosco",
|
|
2632
|
-
region="Franciacorta",
|
|
2633
|
-
country="Italy",
|
|
2634
|
-
varietal="Chardonnay",
|
|
2635
|
-
color="sparkling",
|
|
2636
|
-
profile=wp(0.58, 0.10, 0.05, 0.78, 0.82, 0.58, 0.48, 0.15),
|
|
2637
|
-
price_range="premium",
|
|
2638
|
-
description="Italy's answer to Champagne, and a damn good one. Satèn is lower pressure for a creamier mousse — silk bubbles with hazelnut and citrus.",
|
|
2639
|
-
tags=["old-world", "elegant", "terroir-driven"],
|
|
2640
|
-
vintage=None,
|
|
2641
|
-
),
|
|
2642
|
-
Wine(
|
|
2643
|
-
id="spk-uk-001",
|
|
2644
|
-
name="Blanc de Blancs",
|
|
2645
|
-
producer="Nyetimber",
|
|
2646
|
-
region="Sussex",
|
|
2647
|
-
country="England",
|
|
2648
|
-
varietal="Chardonnay",
|
|
2649
|
-
color="sparkling",
|
|
2650
|
-
profile=wp(0.55, 0.10, 0.05, 0.82, 0.80, 0.52, 0.52, 0.12),
|
|
2651
|
-
price_range="premium",
|
|
2652
|
-
description="English sparkling is no joke. Nyetimber's chalk soils mirror Champagne, producing precise, toasty bubbles that hold their own against the French.",
|
|
2653
|
-
tags=["old-world", "terroir-driven", "elegant", "mineral"],
|
|
2654
|
-
vintage=2015,
|
|
2655
|
-
),
|
|
2656
|
-
Wine(
|
|
2657
|
-
id="spk-za-001",
|
|
2658
|
-
name="Cap Classique Brut",
|
|
2659
|
-
producer="Graham Beck",
|
|
2660
|
-
region="Robertson",
|
|
2661
|
-
country="South Africa",
|
|
2662
|
-
varietal="Chardonnay/Pinot Noir",
|
|
2663
|
-
color="sparkling",
|
|
2664
|
-
profile=wp(0.52, 0.10, 0.05, 0.75, 0.72, 0.60, 0.40, 0.12),
|
|
2665
|
-
price_range="mid",
|
|
2666
|
-
description="South Africa's traditional-method sparkler. Graham Beck makes bubbles that punch above their weight — crisp, creamy, and celebratory.",
|
|
2667
|
-
tags=["new-world", "approachable", "elegant"],
|
|
2668
|
-
vintage=None,
|
|
2669
|
-
),
|
|
2670
|
-
Wine(
|
|
2671
|
-
id="spk-fr-010",
|
|
2672
|
-
name="Pét-Nat 'Bulle Naturelle'",
|
|
2673
|
-
producer="Domaine de la Garrelière",
|
|
2674
|
-
region="Touraine",
|
|
2675
|
-
country="France",
|
|
2676
|
-
varietal="Chenin Blanc",
|
|
2677
|
-
color="sparkling",
|
|
2678
|
-
profile=wp(0.42, 0.10, 0.05, 0.75, 0.58, 0.62, 0.42, 0.10),
|
|
2679
|
-
price_range="budget",
|
|
2680
|
-
description="Ancestral-method bubbles — cloudy, funky, and alive. This is the sparkling wine for people who think Champagne is too corporate.",
|
|
2681
|
-
tags=["old-world", "natural", "pet-nat", "fun", "approachable"],
|
|
2682
|
-
vintage=2023,
|
|
2683
|
-
),
|
|
2684
|
-
Wine(
|
|
2685
|
-
id="spk-us-001",
|
|
2686
|
-
name="Pét-Nat Rosé",
|
|
2687
|
-
producer="Scribe Winery",
|
|
2688
|
-
region="Sonoma",
|
|
2689
|
-
country="USA",
|
|
2690
|
-
varietal="Pinot Noir",
|
|
2691
|
-
color="sparkling",
|
|
2692
|
-
profile=wp(0.40, 0.12, 0.05, 0.72, 0.55, 0.68, 0.32, 0.10),
|
|
2693
|
-
price_range="mid",
|
|
2694
|
-
description="California pét-nat for the natural wine crowd. Pink, fizzy, a little wild — pour it at a picnic and watch it become everyone's favorite.",
|
|
2695
|
-
tags=["new-world", "natural", "pet-nat", "fun", "fruit-forward"],
|
|
2696
|
-
vintage=2023,
|
|
2697
|
-
),
|
|
2698
|
-
Wine(
|
|
2699
|
-
id="spk-au-001",
|
|
2700
|
-
name="Pétillant Naturel",
|
|
2701
|
-
producer="Lucy Margaux",
|
|
2702
|
-
region="Adelaide Hills",
|
|
2703
|
-
country="Australia",
|
|
2704
|
-
varietal="Various",
|
|
2705
|
-
color="sparkling",
|
|
2706
|
-
profile=wp(0.38, 0.10, 0.05, 0.75, 0.60, 0.65, 0.38, 0.10),
|
|
2707
|
-
price_range="mid",
|
|
2708
|
-
description="Anton van Klopper's pét-nats are wild, minimal, and completely unfiltered — in every sense. Australian natural wine at its most adventurous.",
|
|
2709
|
-
tags=["new-world", "natural", "pet-nat", "fun"],
|
|
2710
|
-
vintage=2023,
|
|
2711
|
-
),
|
|
2712
|
-
Wine(
|
|
2713
|
-
id="spk-de-001",
|
|
2714
|
-
name="Riesling Sekt Brut",
|
|
2715
|
-
producer="Griesel & Compagnie",
|
|
2716
|
-
region="Hessische Bergstraße",
|
|
2717
|
-
country="Germany",
|
|
2718
|
-
varietal="Riesling",
|
|
2719
|
-
color="sparkling",
|
|
2720
|
-
profile=wp(0.48, 0.10, 0.05, 0.85, 0.72, 0.58, 0.52, 0.15),
|
|
2721
|
-
price_range="mid",
|
|
2722
|
-
description="German Riesling Sekt is staging a comeback. Griesel's traditional-method version is racy, citrus-driven, and dangerously refreshing.",
|
|
2723
|
-
tags=["old-world", "terroir-driven", "mineral", "elegant"],
|
|
2724
|
-
vintage=None,
|
|
2725
|
-
),
|
|
2726
|
-
Wine(
|
|
2727
|
-
id="spk-it-003",
|
|
2728
|
-
name="Lambrusco di Sorbara",
|
|
2729
|
-
producer="Cleto Chiarli",
|
|
2730
|
-
region="Emilia-Romagna",
|
|
2731
|
-
country="Italy",
|
|
2732
|
-
varietal="Lambrusco di Sorbara",
|
|
2733
|
-
color="sparkling",
|
|
2734
|
-
profile=wp(0.38, 0.15, 0.15, 0.72, 0.55, 0.72, 0.28, 0.12),
|
|
2735
|
-
price_range="budget",
|
|
2736
|
-
description="Not your grandmother's sweet Lambrusco. Dry, fizzy, and magenta-hued — chill it down, pair with mortadella, and embrace the joy.",
|
|
2737
|
-
tags=["old-world", "fruit-forward", "fun", "light-bodied", "approachable"],
|
|
2738
|
-
vintage=None,
|
|
2739
|
-
),
|
|
2740
|
-
Wine(
|
|
2741
|
-
id="spk-fr-011",
|
|
2742
|
-
name="Blanquette de Limoux",
|
|
2743
|
-
producer="Domaine J. Laurens",
|
|
2744
|
-
region="Limoux",
|
|
2745
|
-
country="France",
|
|
2746
|
-
varietal="Mauzac/Chardonnay/Chenin Blanc",
|
|
2747
|
-
color="sparkling",
|
|
2748
|
-
profile=wp(0.45, 0.10, 0.05, 0.72, 0.62, 0.58, 0.42, 0.10),
|
|
2749
|
-
price_range="budget",
|
|
2750
|
-
description="Possibly the world's oldest sparkling wine — Limoux claims bubbles before Champagne. Apple, pear, and honest value in every sip.",
|
|
2751
|
-
tags=["old-world", "approachable", "fun"],
|
|
2752
|
-
vintage=None,
|
|
2753
|
-
),
|
|
2754
|
-
Wine(
|
|
2755
|
-
id="spk-au-002",
|
|
2756
|
-
name="Sparkling Shiraz",
|
|
2757
|
-
producer="Rockford",
|
|
2758
|
-
region="Barossa Valley",
|
|
2759
|
-
country="Australia",
|
|
2760
|
-
varietal="Shiraz",
|
|
2761
|
-
color="sparkling",
|
|
2762
|
-
profile=wp(0.82, 0.18, 0.45, 0.52, 0.75, 0.70, 0.48, 0.55),
|
|
2763
|
-
price_range="mid",
|
|
2764
|
-
description="Red, fizzy, and uniquely Australian. Rockford's Sparkling Shiraz is dark berry, chocolate, and bubbles — Barossa excess at its most fun.",
|
|
2765
|
-
tags=["new-world", "fruit-forward", "spicy", "fun"],
|
|
2766
|
-
vintage=None,
|
|
2767
|
-
),
|
|
2768
|
-
|
|
2769
|
-
# =====================================================================
|
|
2770
|
-
# ORANGE / SKIN-CONTACT
|
|
2771
|
-
# =====================================================================
|
|
2772
|
-
|
|
2773
|
-
Wine(
|
|
2774
|
-
id="org-ge-001",
|
|
2775
|
-
name="Rkatsiteli Qvevri",
|
|
2776
|
-
producer="Pheasant's Tears",
|
|
2777
|
-
region="Kakheti",
|
|
2778
|
-
country="Georgia",
|
|
2779
|
-
varietal="Rkatsiteli",
|
|
2780
|
-
color="orange",
|
|
2781
|
-
profile=wp(0.68, 0.08, 0.32, 0.68, 0.80, 0.48, 0.72, 0.28),
|
|
2782
|
-
price_range="mid",
|
|
2783
|
-
description="The original orange wine — Rkatsiteli fermented in buried clay qvevri for months. Amber, tannic, tea-like, and tasting of 8,000 years of tradition.",
|
|
2784
|
-
tags=["old-world", "natural", "orange-wine", "terroir-driven"],
|
|
2785
|
-
vintage=2021,
|
|
2786
|
-
),
|
|
2787
|
-
Wine(
|
|
2788
|
-
id="org-ge-002",
|
|
2789
|
-
name="Mtsvane Qvevri",
|
|
2790
|
-
producer="Iago's Wine",
|
|
2791
|
-
region="Kartli",
|
|
2792
|
-
country="Georgia",
|
|
2793
|
-
varietal="Mtsvane",
|
|
2794
|
-
color="orange",
|
|
2795
|
-
profile=wp(0.62, 0.08, 0.28, 0.72, 0.78, 0.52, 0.68, 0.22),
|
|
2796
|
-
price_range="mid",
|
|
2797
|
-
description="Single-varietal qvevri wine from a garage producer. Iago's Mtsvane is golden, textured, and carries the weight of Georgian winemaking philosophy.",
|
|
2798
|
-
tags=["old-world", "natural", "orange-wine", "terroir-driven", "obscure-varietal"],
|
|
2799
|
-
vintage=2021,
|
|
2800
|
-
),
|
|
2801
|
-
Wine(
|
|
2802
|
-
id="org-it-001",
|
|
2803
|
-
name="Ribolla Gialla Anfora",
|
|
2804
|
-
producer="Gravner",
|
|
2805
|
-
region="Friuli Venezia Giulia",
|
|
2806
|
-
country="Italy",
|
|
2807
|
-
varietal="Ribolla Gialla",
|
|
2808
|
-
color="orange",
|
|
2809
|
-
profile=wp(0.72, 0.05, 0.35, 0.68, 0.90, 0.38, 0.78, 0.28),
|
|
2810
|
-
price_range="premium",
|
|
2811
|
-
description="Gravner started the Italian orange wine movement by burying Georgian amphorae in Friuli soil. Radical, profound, and polarizing — you'll never forget it.",
|
|
2812
|
-
tags=["old-world", "natural", "orange-wine", "terroir-driven", "age-worthy"],
|
|
2813
|
-
vintage=2015,
|
|
2814
|
-
),
|
|
2815
|
-
Wine(
|
|
2816
|
-
id="org-it-002",
|
|
2817
|
-
name="Oslavje",
|
|
2818
|
-
producer="Radikon",
|
|
2819
|
-
region="Friuli Venezia Giulia",
|
|
2820
|
-
country="Italy",
|
|
2821
|
-
varietal="Chardonnay/Sauvignon/Pinot Grigio",
|
|
2822
|
-
color="orange",
|
|
2823
|
-
profile=wp(0.72, 0.05, 0.30, 0.65, 0.88, 0.42, 0.75, 0.25),
|
|
2824
|
-
price_range="premium",
|
|
2825
|
-
description="Radikon's amber-hued blend spends years on skins. Beautiful and unsettling — like McQueen on a runway. The wine equivalent of torn chiffon over sharp tailoring.",
|
|
2826
|
-
tags=["old-world", "natural", "orange-wine", "terroir-driven", "age-worthy"],
|
|
2827
|
-
vintage=2017,
|
|
2828
|
-
),
|
|
2829
|
-
Wine(
|
|
2830
|
-
id="org-si-001",
|
|
2831
|
-
name="Rebula Selekcija",
|
|
2832
|
-
producer="Movia",
|
|
2833
|
-
region="Goriška Brda",
|
|
2834
|
-
country="Slovenia",
|
|
2835
|
-
varietal="Rebula (Ribolla Gialla)",
|
|
2836
|
-
color="orange",
|
|
2837
|
-
profile=wp(0.68, 0.08, 0.30, 0.68, 0.82, 0.45, 0.72, 0.22),
|
|
2838
|
-
price_range="mid",
|
|
2839
|
-
description="Movia's skin-contact Rebula — golden, textured, and served unfiltered. Slovenian orange wine with a punk attitude and classical depth.",
|
|
2840
|
-
tags=["old-world", "natural", "orange-wine", "terroir-driven"],
|
|
2841
|
-
vintage=2019,
|
|
2842
|
-
),
|
|
2843
|
-
Wine(
|
|
2844
|
-
id="org-fr-001",
|
|
2845
|
-
name="Savagnin Macération",
|
|
2846
|
-
producer="Domaine de la Tournelle",
|
|
2847
|
-
region="Jura",
|
|
2848
|
-
country="France",
|
|
2849
|
-
varietal="Savagnin",
|
|
2850
|
-
color="orange",
|
|
2851
|
-
profile=wp(0.65, 0.05, 0.28, 0.75, 0.82, 0.42, 0.75, 0.22),
|
|
2852
|
-
price_range="mid",
|
|
2853
|
-
description="Jura Savagnin with skin contact — nutty, amber, and with that unmistakable Jura wildness. Orange wine with a French accent.",
|
|
2854
|
-
tags=["old-world", "natural", "orange-wine", "terroir-driven"],
|
|
2855
|
-
vintage=2021,
|
|
2856
|
-
),
|
|
2857
|
-
Wine(
|
|
2858
|
-
id="org-fr-002",
|
|
2859
|
-
name="Pinot Gris Macération",
|
|
2860
|
-
producer="Christian Binner",
|
|
2861
|
-
region="Alsace",
|
|
2862
|
-
country="France",
|
|
2863
|
-
varietal="Pinot Gris",
|
|
2864
|
-
color="orange",
|
|
2865
|
-
profile=wp(0.68, 0.12, 0.25, 0.62, 0.75, 0.55, 0.62, 0.25),
|
|
2866
|
-
price_range="mid",
|
|
2867
|
-
description="Alsatian Pinot Gris gone orange — smoky, honeyed, tannic, and completely wild. Binner's natural approach turns conventions upside down.",
|
|
2868
|
-
tags=["old-world", "natural", "orange-wine", "biodynamic"],
|
|
2869
|
-
vintage=2021,
|
|
2870
|
-
),
|
|
2871
|
-
Wine(
|
|
2872
|
-
id="org-at-001",
|
|
2873
|
-
name="Gemischter Satz Skin Contact",
|
|
2874
|
-
producer="Gut Oggau",
|
|
2875
|
-
region="Burgenland",
|
|
2876
|
-
country="Austria",
|
|
2877
|
-
varietal="Grüner Veltliner/Welschriesling",
|
|
2878
|
-
color="orange",
|
|
2879
|
-
profile=wp(0.62, 0.08, 0.25, 0.72, 0.75, 0.50, 0.62, 0.22),
|
|
2880
|
-
price_range="mid",
|
|
2881
|
-
description="Gut Oggau's eccentric label art matches the wine inside — skin-contact field blend that's textured, funky, and full of personality.",
|
|
2882
|
-
tags=["old-world", "natural", "biodynamic", "orange-wine", "fun"],
|
|
2883
|
-
vintage=2022,
|
|
2884
|
-
),
|
|
2885
|
-
Wine(
|
|
2886
|
-
id="org-au-001",
|
|
2887
|
-
name="Amber",
|
|
2888
|
-
producer="BK Wines",
|
|
2889
|
-
region="Adelaide Hills",
|
|
2890
|
-
country="Australia",
|
|
2891
|
-
varietal="Pinot Gris",
|
|
2892
|
-
color="orange",
|
|
2893
|
-
profile=wp(0.58, 0.08, 0.22, 0.68, 0.65, 0.55, 0.52, 0.18),
|
|
2894
|
-
price_range="mid",
|
|
2895
|
-
description="Australian skin-contact Pinot Gris — coppery, spiced, and with enough grip to surprise. Orange wine for sunny southern hemisphere days.",
|
|
2896
|
-
tags=["new-world", "natural", "orange-wine", "fun"],
|
|
2897
|
-
vintage=2022,
|
|
2898
|
-
),
|
|
2899
|
-
Wine(
|
|
2900
|
-
id="org-us-001",
|
|
2901
|
-
name="Skin-Fermented Pinot Gris",
|
|
2902
|
-
producer="Division Winemaking Company",
|
|
2903
|
-
region="Willamette Valley",
|
|
2904
|
-
country="USA",
|
|
2905
|
-
varietal="Pinot Gris",
|
|
2906
|
-
color="orange",
|
|
2907
|
-
profile=wp(0.58, 0.08, 0.22, 0.70, 0.65, 0.58, 0.48, 0.18),
|
|
2908
|
-
price_range="mid",
|
|
2909
|
-
description="Portland's favorite orange wine. Division's skin-fermented Pinot Gris is funky, fresh, and tastes like the natural wine bar where you discovered it.",
|
|
2910
|
-
tags=["new-world", "natural", "orange-wine", "fun", "approachable"],
|
|
2911
|
-
vintage=2023,
|
|
2912
|
-
),
|
|
2913
|
-
Wine(
|
|
2914
|
-
id="org-es-001",
|
|
2915
|
-
name="Naranja",
|
|
2916
|
-
producer="Bodegas Cráneo",
|
|
2917
|
-
region="Jumilla",
|
|
2918
|
-
country="Spain",
|
|
2919
|
-
varietal="Macabeo",
|
|
2920
|
-
color="orange",
|
|
2921
|
-
profile=wp(0.58, 0.08, 0.22, 0.65, 0.62, 0.55, 0.52, 0.20),
|
|
2922
|
-
price_range="budget",
|
|
2923
|
-
description="Spanish orange wine at an entry-level price. Macabeo on skins gives amber color, tea-like tannins, and an invitation to explore the style.",
|
|
2924
|
-
tags=["old-world", "natural", "orange-wine", "approachable", "fun"],
|
|
2925
|
-
vintage=2022,
|
|
2926
|
-
),
|
|
2927
|
-
Wine(
|
|
2928
|
-
id="org-hr-001",
|
|
2929
|
-
name="Pošip Orange",
|
|
2930
|
-
producer="Stina",
|
|
2931
|
-
region="Brač",
|
|
2932
|
-
country="Croatia",
|
|
2933
|
-
varietal="Pošip",
|
|
2934
|
-
color="orange",
|
|
2935
|
-
profile=wp(0.60, 0.08, 0.25, 0.68, 0.68, 0.52, 0.58, 0.18),
|
|
2936
|
-
price_range="mid",
|
|
2937
|
-
description="Dalmatian Pošip with skin contact — the Adriatic meets the amphora tradition. Golden, textured, and tasting of island limestone.",
|
|
2938
|
-
tags=["old-world", "natural", "orange-wine", "mediterranean", "obscure-varietal"],
|
|
2939
|
-
vintage=2022,
|
|
2940
|
-
),
|
|
2941
|
-
|
|
2942
|
-
# =====================================================================
|
|
2943
|
-
# DESSERT & FORTIFIED
|
|
2944
|
-
# =====================================================================
|
|
2945
|
-
|
|
2946
|
-
Wine(
|
|
2947
|
-
id="des-fr-001",
|
|
2948
|
-
name="Château d'Yquem",
|
|
2949
|
-
producer="Château d'Yquem",
|
|
2950
|
-
region="Sauternes",
|
|
2951
|
-
country="France",
|
|
2952
|
-
varietal="Sémillon/Sauvignon Blanc",
|
|
2953
|
-
color="dessert",
|
|
2954
|
-
profile=wp(0.82, 0.92, 0.05, 0.78, 0.98, 0.72, 0.42, 0.25),
|
|
2955
|
-
price_range="luxury",
|
|
2956
|
-
description="The greatest sweet wine on earth. Botrytized Sémillon distilled to liquid gold — honey, saffron, and an immortal finish. One glass changes you.",
|
|
2957
|
-
tags=["old-world", "dessert-wine", "age-worthy", "elegant", "terroir-driven"],
|
|
2958
|
-
vintage=2015,
|
|
2959
|
-
),
|
|
2960
|
-
Wine(
|
|
2961
|
-
id="des-hu-001",
|
|
2962
|
-
name="Tokaji Aszú 5 Puttonyos",
|
|
2963
|
-
producer="Royal Tokaji",
|
|
2964
|
-
region="Tokaj",
|
|
2965
|
-
country="Hungary",
|
|
2966
|
-
varietal="Furmint/Hárslevelű",
|
|
2967
|
-
color="dessert",
|
|
2968
|
-
profile=wp(0.72, 0.88, 0.05, 0.82, 0.92, 0.68, 0.52, 0.22),
|
|
2969
|
-
price_range="premium",
|
|
2970
|
-
description="Hungary's liquid treasure — botrytized Furmint with apricot, marmalade, and electric acidity. Sweet wine that never feels heavy.",
|
|
2971
|
-
tags=["old-world", "dessert-wine", "age-worthy", "terroir-driven"],
|
|
2972
|
-
vintage=2017,
|
|
2973
|
-
),
|
|
2974
|
-
|
|
2975
|
-
# ── Port ─────────────────────────────────────────────────────────────
|
|
2976
|
-
|
|
2977
|
-
Wine(
|
|
2978
|
-
id="des-pt-001",
|
|
2979
|
-
name="Vintage Port",
|
|
2980
|
-
producer="Graham's",
|
|
2981
|
-
region="Douro",
|
|
2982
|
-
country="Portugal",
|
|
2983
|
-
varietal="Touriga Nacional/Touriga Franca/Tinta Roriz",
|
|
2984
|
-
color="dessert",
|
|
2985
|
-
profile=wp(0.92, 0.72, 0.65, 0.45, 0.82, 0.65, 0.48, 0.42),
|
|
2986
|
-
price_range="premium",
|
|
2987
|
-
description="Vintage Port is the gateway to the deep end — dark fruit, chocolate, and structure that unfolds over decades in the cellar.",
|
|
2988
|
-
tags=["old-world", "fortified", "age-worthy", "sweet-ish"],
|
|
2989
|
-
vintage=2016,
|
|
2990
|
-
),
|
|
2991
|
-
Wine(
|
|
2992
|
-
id="des-pt-002",
|
|
2993
|
-
name="20 Year Old Tawny Port",
|
|
2994
|
-
producer="Taylor's",
|
|
2995
|
-
region="Douro",
|
|
2996
|
-
country="Portugal",
|
|
2997
|
-
varietal="Touriga Nacional/Touriga Franca/Tinta Roriz",
|
|
2998
|
-
color="dessert",
|
|
2999
|
-
profile=wp(0.78, 0.65, 0.30, 0.52, 0.90, 0.52, 0.62, 0.45),
|
|
3000
|
-
price_range="premium",
|
|
3001
|
-
description="Twenty years of oxidative aging create caramel, walnut, and dried orange peel. Taylor's Tawny is the after-dinner drink that ends all arguments.",
|
|
3002
|
-
tags=["old-world", "fortified", "age-worthy", "elegant"],
|
|
3003
|
-
vintage=None,
|
|
3004
|
-
),
|
|
3005
|
-
Wine(
|
|
3006
|
-
id="des-pt-003",
|
|
3007
|
-
name="White Port",
|
|
3008
|
-
producer="Niepoort",
|
|
3009
|
-
region="Douro",
|
|
3010
|
-
country="Portugal",
|
|
3011
|
-
varietal="Rabigato/Viosinho/Códega do Larinho",
|
|
3012
|
-
color="dessert",
|
|
3013
|
-
profile=wp(0.58, 0.42, 0.05, 0.55, 0.62, 0.55, 0.38, 0.18),
|
|
3014
|
-
price_range="budget",
|
|
3015
|
-
description="White Port and tonic is Portugal's best-kept cocktail secret. On its own, it's honeyed, nutty, and a gorgeous apéritif chilled on ice.",
|
|
3016
|
-
tags=["old-world", "fortified", "sweet-ish", "fun", "approachable"],
|
|
3017
|
-
vintage=None,
|
|
3018
|
-
),
|
|
3019
|
-
|
|
3020
|
-
# ── Sherry ───────────────────────────────────────────────────────────
|
|
3021
|
-
|
|
3022
|
-
Wine(
|
|
3023
|
-
id="des-es-001",
|
|
3024
|
-
name="Fino En Rama",
|
|
3025
|
-
producer="González Byass (Tio Pepe)",
|
|
3026
|
-
region="Jerez",
|
|
3027
|
-
country="Spain",
|
|
3028
|
-
varietal="Palomino Fino",
|
|
3029
|
-
color="dessert",
|
|
3030
|
-
profile=wp(0.52, 0.05, 0.05, 0.82, 0.85, 0.25, 0.82, 0.22),
|
|
3031
|
-
price_range="budget",
|
|
3032
|
-
description="Bone-dry, briny, and aged under a veil of flor yeast. Fino Sherry is the most misunderstood great wine — serve it ice-cold with almonds.",
|
|
3033
|
-
tags=["old-world", "fortified", "terroir-driven", "mineral"],
|
|
3034
|
-
vintage=None,
|
|
3035
|
-
),
|
|
3036
|
-
Wine(
|
|
3037
|
-
id="des-es-002",
|
|
3038
|
-
name="Manzanilla La Gitana",
|
|
3039
|
-
producer="Hidalgo",
|
|
3040
|
-
region="Sanlúcar de Barrameda",
|
|
3041
|
-
country="Spain",
|
|
3042
|
-
varietal="Palomino Fino",
|
|
3043
|
-
color="dessert",
|
|
3044
|
-
profile=wp(0.48, 0.05, 0.05, 0.85, 0.82, 0.22, 0.85, 0.18),
|
|
3045
|
-
price_range="budget",
|
|
3046
|
-
description="Even drier and saltier than Fino — Manzanilla's seaside aging adds ocean air to every sip. The definitive tapas wine.",
|
|
3047
|
-
tags=["old-world", "fortified", "terroir-driven", "mineral", "light-bodied"],
|
|
3048
|
-
vintage=None,
|
|
3049
|
-
),
|
|
3050
|
-
Wine(
|
|
3051
|
-
id="des-es-003",
|
|
3052
|
-
name="Amontillado Napoleon",
|
|
3053
|
-
producer="Hidalgo",
|
|
3054
|
-
region="Jerez",
|
|
3055
|
-
country="Spain",
|
|
3056
|
-
varietal="Palomino Fino",
|
|
3057
|
-
color="dessert",
|
|
3058
|
-
profile=wp(0.62, 0.08, 0.05, 0.78, 0.90, 0.28, 0.82, 0.30),
|
|
3059
|
-
price_range="mid",
|
|
3060
|
-
description="The bridge between Fino and Oloroso — nutty, amber, bone-dry, and devastatingly complex. Amontillado is the sherry connoisseur's sherry.",
|
|
3061
|
-
tags=["old-world", "fortified", "terroir-driven", "elegant", "age-worthy"],
|
|
3062
|
-
vintage=None,
|
|
3063
|
-
),
|
|
3064
|
-
Wine(
|
|
3065
|
-
id="des-es-004",
|
|
3066
|
-
name="Oloroso Seco",
|
|
3067
|
-
producer="Lustau",
|
|
3068
|
-
region="Jerez",
|
|
3069
|
-
country="Spain",
|
|
3070
|
-
varietal="Palomino Fino",
|
|
3071
|
-
color="dessert",
|
|
3072
|
-
profile=wp(0.78, 0.12, 0.05, 0.62, 0.88, 0.30, 0.80, 0.35),
|
|
3073
|
-
price_range="mid",
|
|
3074
|
-
description="Oxidative sherry at its darkest and most brooding. Walnut, coffee, leather — Oloroso is the thinking person's after-dinner drink.",
|
|
3075
|
-
tags=["old-world", "fortified", "terroir-driven", "age-worthy"],
|
|
3076
|
-
vintage=None,
|
|
3077
|
-
),
|
|
3078
|
-
Wine(
|
|
3079
|
-
id="des-es-005",
|
|
3080
|
-
name="Pedro Ximénez San Emilio",
|
|
3081
|
-
producer="Lustau",
|
|
3082
|
-
region="Jerez",
|
|
3083
|
-
country="Spain",
|
|
3084
|
-
varietal="Pedro Ximénez",
|
|
3085
|
-
color="dessert",
|
|
3086
|
-
profile=wp(0.90, 0.98, 0.05, 0.35, 0.75, 0.78, 0.35, 0.22),
|
|
3087
|
-
price_range="mid",
|
|
3088
|
-
description="Liquid raisins. PX is the most decadently sweet wine in existence — molasses, fig, dates — pour it over vanilla ice cream and transcend.",
|
|
3089
|
-
tags=["old-world", "fortified", "dessert-wine", "sweet-ish"],
|
|
3090
|
-
vintage=None,
|
|
3091
|
-
),
|
|
3092
|
-
|
|
3093
|
-
# ── Madeira ──────────────────────────────────────────────────────────
|
|
3094
|
-
|
|
3095
|
-
Wine(
|
|
3096
|
-
id="des-pt-004",
|
|
3097
|
-
name="Sercial 10 Years Old",
|
|
3098
|
-
producer="Blandy's",
|
|
3099
|
-
region="Madeira",
|
|
3100
|
-
country="Portugal",
|
|
3101
|
-
varietal="Sercial",
|
|
3102
|
-
color="dessert",
|
|
3103
|
-
profile=wp(0.55, 0.18, 0.05, 0.88, 0.88, 0.35, 0.78, 0.25),
|
|
3104
|
-
price_range="mid",
|
|
3105
|
-
description="The driest Madeira style — citrus peel, caramel, and an acidity that could etch glass. Practically immortal and utterly unique.",
|
|
3106
|
-
tags=["old-world", "fortified", "age-worthy", "terroir-driven", "mineral"],
|
|
3107
|
-
vintage=None,
|
|
3108
|
-
),
|
|
3109
|
-
Wine(
|
|
3110
|
-
id="des-pt-005",
|
|
3111
|
-
name="Malmsey 10 Years Old",
|
|
3112
|
-
producer="Blandy's",
|
|
3113
|
-
region="Madeira",
|
|
3114
|
-
country="Portugal",
|
|
3115
|
-
varietal="Malvasia",
|
|
3116
|
-
color="dessert",
|
|
3117
|
-
profile=wp(0.75, 0.78, 0.05, 0.72, 0.88, 0.62, 0.58, 0.28),
|
|
3118
|
-
price_range="mid",
|
|
3119
|
-
description="The richest Madeira style — caramel, coffee, burnt orange, and a finish that lasts until next Tuesday. Indestructible and addictive.",
|
|
3120
|
-
tags=["old-world", "fortified", "dessert-wine", "age-worthy"],
|
|
3121
|
-
vintage=None,
|
|
3122
|
-
),
|
|
3123
|
-
|
|
3124
|
-
# ── Other Dessert / Fortified ────────────────────────────────────────
|
|
3125
|
-
|
|
3126
|
-
Wine(
|
|
3127
|
-
id="des-it-001",
|
|
3128
|
-
name="Vin Santo del Chianti Classico",
|
|
3129
|
-
producer="Isole e Olena",
|
|
3130
|
-
region="Tuscany",
|
|
3131
|
-
country="Italy",
|
|
3132
|
-
varietal="Trebbiano/Malvasia",
|
|
3133
|
-
color="dessert",
|
|
3134
|
-
profile=wp(0.72, 0.75, 0.05, 0.62, 0.85, 0.58, 0.55, 0.22),
|
|
3135
|
-
price_range="premium",
|
|
3136
|
-
description="Dried grapes, years in small barrels, and Tuscan patience. Isole e Olena's Vin Santo is amber nectar — hazelnut, honey, caramel, and dried apricot.",
|
|
3137
|
-
tags=["old-world", "dessert-wine", "age-worthy", "terroir-driven"],
|
|
3138
|
-
vintage=2013,
|
|
3139
|
-
),
|
|
3140
|
-
Wine(
|
|
3141
|
-
id="des-fr-002",
|
|
3142
|
-
name="Muscat de Beaumes-de-Venise",
|
|
3143
|
-
producer="Domaine de Durban",
|
|
3144
|
-
region="Rhône Valley",
|
|
3145
|
-
country="France",
|
|
3146
|
-
varietal="Muscat à Petits Grains",
|
|
3147
|
-
color="dessert",
|
|
3148
|
-
profile=wp(0.62, 0.72, 0.05, 0.55, 0.68, 0.82, 0.28, 0.18),
|
|
3149
|
-
price_range="mid",
|
|
3150
|
-
description="Southern Rhône's golden dessert wine. Orange blossom, peach, and honey — not too sweet, not too heavy, and always a graceful finish.",
|
|
3151
|
-
tags=["old-world", "dessert-wine", "fruit-forward", "sweet-ish"],
|
|
3152
|
-
vintage=2021,
|
|
3153
|
-
),
|
|
3154
|
-
Wine(
|
|
3155
|
-
id="des-au-001",
|
|
3156
|
-
name="Rutherglen Grand Muscat",
|
|
3157
|
-
producer="Chambers Rosewood",
|
|
3158
|
-
region="Rutherglen",
|
|
3159
|
-
country="Australia",
|
|
3160
|
-
varietal="Muscat à Petits Grains",
|
|
3161
|
-
color="dessert",
|
|
3162
|
-
profile=wp(0.88, 0.92, 0.05, 0.38, 0.85, 0.72, 0.48, 0.28),
|
|
3163
|
-
price_range="mid",
|
|
3164
|
-
description="Australia's liquid toffee. Rutherglen Muscat is aged for decades in a solera system — raisin, molasses, Christmas pudding in a glass.",
|
|
3165
|
-
tags=["new-world", "fortified", "dessert-wine", "age-worthy"],
|
|
3166
|
-
vintage=None,
|
|
3167
|
-
),
|
|
3168
|
-
Wine(
|
|
3169
|
-
id="des-ca-001",
|
|
3170
|
-
name="Icewine Vidal",
|
|
3171
|
-
producer="Inniskillin",
|
|
3172
|
-
region="Niagara Peninsula",
|
|
3173
|
-
country="Canada",
|
|
3174
|
-
varietal="Vidal",
|
|
3175
|
-
color="dessert",
|
|
3176
|
-
profile=wp(0.65, 0.90, 0.05, 0.82, 0.78, 0.82, 0.28, 0.15),
|
|
3177
|
-
price_range="premium",
|
|
3178
|
-
description="Frozen grapes, Canadian winters, and liquid gold. Inniskillin's Icewine is apricot, mango, and honey with electrifying acidity.",
|
|
3179
|
-
tags=["new-world", "dessert-wine", "age-worthy"],
|
|
3180
|
-
vintage=2019,
|
|
3181
|
-
),
|
|
3182
|
-
Wine(
|
|
3183
|
-
id="des-fr-003",
|
|
3184
|
-
name="Banyuls Rimage",
|
|
3185
|
-
producer="Domaine de la Rectorie",
|
|
3186
|
-
region="Banyuls",
|
|
3187
|
-
country="France",
|
|
3188
|
-
varietal="Grenache Noir",
|
|
3189
|
-
color="dessert",
|
|
3190
|
-
profile=wp(0.82, 0.62, 0.35, 0.45, 0.78, 0.62, 0.48, 0.35),
|
|
3191
|
-
price_range="mid",
|
|
3192
|
-
description="France's answer to Port — sun-drenched Grenache from schist terraces above the Mediterranean. Dark cherry, chocolate, and a salty mineral edge.",
|
|
3193
|
-
tags=["old-world", "fortified", "dessert-wine", "mediterranean"],
|
|
3194
|
-
vintage=2020,
|
|
3195
|
-
),
|
|
3196
|
-
Wine(
|
|
3197
|
-
id="des-it-002",
|
|
3198
|
-
name="Recioto della Valpolicella",
|
|
3199
|
-
producer="Giuseppe Quintarelli",
|
|
3200
|
-
region="Veneto",
|
|
3201
|
-
country="Italy",
|
|
3202
|
-
varietal="Corvina/Rondinella/Molinara",
|
|
3203
|
-
color="dessert",
|
|
3204
|
-
profile=wp(0.85, 0.78, 0.48, 0.48, 0.88, 0.72, 0.45, 0.35),
|
|
3205
|
-
price_range="luxury",
|
|
3206
|
-
description="Amarone's sweet sibling — dried grapes taken to their richest extreme. Quintarelli's Recioto is black cherry, chocolate, and pure velvet indulgence.",
|
|
3207
|
-
tags=["old-world", "dessert-wine", "age-worthy", "terroir-driven"],
|
|
3208
|
-
vintage=2015,
|
|
3209
|
-
),
|
|
3210
|
-
Wine(
|
|
3211
|
-
id="des-cy-001",
|
|
3212
|
-
name="Commandaria",
|
|
3213
|
-
producer="KEO",
|
|
3214
|
-
region="Limassol",
|
|
3215
|
-
country="Cyprus",
|
|
3216
|
-
varietal="Xynisteri/Mavro",
|
|
3217
|
-
color="dessert",
|
|
3218
|
-
profile=wp(0.75, 0.80, 0.10, 0.48, 0.72, 0.65, 0.45, 0.22),
|
|
3219
|
-
price_range="budget",
|
|
3220
|
-
description="Possibly the world's oldest named wine — crusader knights drank this. Sun-dried grapes, caramel, and 5,000 years of history in every sip.",
|
|
3221
|
-
tags=["old-world", "dessert-wine", "fortified", "obscure-varietal"],
|
|
3222
|
-
vintage=None,
|
|
3223
|
-
),
|
|
3224
|
-
]
|