1978 Romanée-Conti 傳奇年份勃艮第頂級紅酒

友誠酒藏呈獻獲滿分評價的傳奇1978年份羅曼尼·康帝(DRC)。探索這款世紀之酒的完美結構與深邃風味。頂級收藏家與投資者的終極目標。立即洽詢,珍藏歷史。

HK$159,949.60
class SpzCustomDiscountFlashsale extends SPZ.BaseElement { constructor(element) { super(element); this.xhr_ = SPZServices.xhrFor(this.win); this.getFlashSaleApi = "\/api\/storefront\/promotion\/flashsale\/display_setting\/product_setting"; this.timer = null; this.variantId = "2f790b6c-e6e8-4924-bda5-3d1040a4ae9f"; // 促销活动数据 this.flashsaleData = {} } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.templates_ = SPZServices.templatesForDoc(); this.viewport_ = this.getViewport(); // 挂载bind函数 解决this指向问题 this.render = this.render.bind(this); this.resize = this.resize.bind(this); this.switchVariant = this.switchVariant.bind(this); } mountCallback() { // 获取数据 this.getData(); this.element.onclick = (e) => { const cur = this.win.document.querySelector(".app_discount_flashsale_desc"); if (this.flashsaleData.product_setting.is_redirection && appDiscountUtils.inProductBody(this.element) && e.target !== cur) { this.win.open(`/promotions/discount-default/${this.flashsaleData.discount_info.id}`); } } // 绑定 this.viewport_.onResize(this.resize); // 监听子款式切换,重新渲染 this.win.document.addEventListener('dj.variantChange', this.switchVariant); } unmountCallback() { // 解绑 this.viewport_.removeResize(this.resize); this.win.document.removeEventListener('dj.variantChange', this.switchVariant); // 清除定时器 if (this.timer) { clearTimeout(this.timer); this.timer = null; } } resize() { if (this.timer) { clearTimeout(this.timer) this.timer = null; } this.timer = setTimeout(() => { this.render(); }, 200) } switchVariant(event) { const variant = event.detail.selected; if (variant.product_id == '05ab0d70-53b4-424c-8ccf-15a591b25f35' && variant.id != this.variantId) { this.variantId = variant.id; this.getData(); } } getData() { const reqBody = { product_id: "05ab0d70-53b4-424c-8ccf-15a591b25f35", product_type: "default", variant_id: this.variantId } this.flashsaleData = {}; this.win.fetch(this.getFlashSaleApi, { method: "POST", body: JSON.stringify(reqBody), headers: { "Content-Type": "application/json" } }).then(async (response) => { if (response.ok) { this.flashsaleData = await response.json(); this.render(); } else { this.clearDom(); } }).catch(err => { this.clearDom(); }); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } render() { this.templates_ .findAndRenderTemplate(this.element, { isMobile: appDiscountUtils.judgeMobile(), isRTL: appDiscountUtils.judgeRTL(), inProductDetail: appDiscountUtils.inProductBody(this.element), flashsaleData: this.flashsaleData, image_domain: this.win.SHOPLAZZA.image_domain, }) .then((el) => { this.clearDom(); this.element.appendChild(el); }) } } SPZ.defineElement('spz-custom-discount-flashsale', SpzCustomDiscountFlashsale);
const TAG = "spz-custom-product-automatic"; class SpzCustomProductAutomatic extends SPZ.BaseElement { constructor(element) { super(element); this.variant_id = '2f790b6c-e6e8-4924-bda5-3d1040a4ae9f'; this.isRTL = SPZ.win.document.dir === 'rtl'; this.isAddingToCart_ = false; // 加购中状态 } static deferredMount() { return false; } buildCallback() { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback() { this.init(); // 监听事件 this.bindEvent_(); } async init() { this.handleFitTheme(); const data = await this.getDiscountList(); this.renderApiData_(data); } async getDiscountList() { const productId = '05ab0d70-53b4-424c-8ccf-15a591b25f35'; const variantId = this.variant_id; const productType = 'default'; const reqBody = { product_id: productId, variant_id: variantId, discount_method: "DM_AUTOMATIC", customer: { customer_id: window.C_SETTINGS.customer.customer_id, email: window.C_SETTINGS.customer.customer_email }, product_type: productType } const url = `/api/storefront/promotion/display_setting/text/list`; const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then(res => { return res; }).catch(err => { this.setContainerDisabled(false); }) return data; } async renderDiscountList() { this.setContainerDisabled(true); const data = await this.getDiscountList(); this.setContainerDisabled(false); // 重新渲染 抖动问题处理 this.renderApiData_(data); } clearDom() { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); } async renderApiData_(data) { const parentDiv = document.querySelector('.automatic_discount_container'); const newTplDom = await this.getRenderTemplate(data); if (parentDiv) { parentDiv.innerHTML = ''; parentDiv.appendChild(newTplDom); } else { console.log('automatic_discount_container is null'); } } doRender_(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { this.clearDom(); this.element.appendChild(el); }); } async getRenderTemplate(data) { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, { ...renderData, isRTL: this.isRTL }) .then((el) => { this.clearDom(); return el; }); } setContainerDisabled(isDisable) { const automaticDiscountEl = document.querySelector('.automatic_discount_container_outer'); if(isDisable) { automaticDiscountEl.setAttribute('disabled', ''); } else { automaticDiscountEl.removeAttribute('disabled'); } } // 绑定事件 bindEvent_() { window.addEventListener('click', (e) => { let containerNodes = document.querySelectorAll(".automatic-container .panel"); let bool; Array.from(containerNodes).forEach((node) => { if(node.contains(e.target)){ bool = true; } }) // 是否popover面板点击范围 if (bool) { return; } if(e.target.classList.contains('drowdown-icon') || e.target.parentNode.classList.contains('drowdown-icon')){ return; } const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { node.classList.remove('open-dropdown'); }) // 兼容主题 this.toggleProductSticky(true); }) // 监听变体变化 document.addEventListener('dj.variantChange', async(event) => { // 重新渲染 const variant = event.detail.selected; if (variant.product_id == '05ab0d70-53b4-424c-8ccf-15a591b25f35' && variant.id != this.variant_id) { this.variant_id = variant.id; this.renderDiscountList(); } }); } // 兼容主题 handleFitTheme() { // top 属性影响抖动 let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ productInfoEl.classList.add('force-top-auto'); } } // 兼容 wind/flash /hero 主题 (sticky属性影响 popover 层级展示, 会被其他元素覆盖) toggleProductSticky(isSticky) { let productInfoEl = null; if (window.SHOPLAZZA.theme.merchant_theme_name === 'Wind' || window.SHOPLAZZA.theme.merchant_theme_name === 'Flash') { productInfoEl = document.querySelector('.product-info-body .product-sticky-container'); } else if (window.SHOPLAZZA.theme.merchant_theme_name === 'Hero') { productInfoEl = document.querySelector('.product__info-wrapper .properties-content'); } if(productInfoEl){ if(isSticky) { // 还原该主题原有的sticky属性值 productInfoEl.classList.remove('force-position-static'); return; } productInfoEl.classList.toggle('force-position-static'); } } setupAction_() { this.registerAction('handleDropdown', (invocation) => { const discount_id = invocation.args.discount_id; const nodes = document.querySelectorAll('.automatic-container'); Array.from(nodes).forEach((node) => { if(node.getAttribute('id') != `automatic-${discount_id}`) { node.classList.remove('open-dropdown'); } }) const $discount_item = document.querySelector(`#automatic-${discount_id}`); $discount_item && $discount_item.classList.toggle('open-dropdown'); // 兼容主题 this.toggleProductSticky(); }); // 加购事件 this.registerAction('handleAddToCart', (invocation) => { // 阻止事件冒泡 const event = invocation.event; if (event) { event.stopPropagation(); event.preventDefault(); } // 如果正在加购中,直接返回 if (this.isAddingToCart_) { return; } const quantity = invocation.args.quantity || 1; this.addToCart(quantity); }); } // 加购方法 async addToCart(quantity) { // 设置加购中状态 this.isAddingToCart_ = true; const productId = '05ab0d70-53b4-424c-8ccf-15a591b25f35'; const variantId = this.variant_id; const url = '/api/cart'; const reqBody = { product_id: productId, variant_id: variantId, quantity: quantity }; try { const data = await this.xhr_.fetchJson(url, { method: 'POST', body: reqBody }); // 触发加购成功提示 this.triggerAddToCartToast_(); return data; } catch (error) { error.then(err=>{ this.showToast_(err?.message || err?.errors?.[0] || 'Unknown error'); }) } finally { // 无论成功失败,都重置加购状态 this.isAddingToCart_ = false; } } showToast_(message) { const toastEl = document.querySelector("#apps-match-drawer-add_to_cart_toast"); if (toastEl) { SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast(message); }); } } // 触发加购成功提示 triggerAddToCartToast_() { // 如果主题有自己的加购提示,则不显示 const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy'); if (themeAddToCartToastEl) return; // 显示应用的加购成功提示 this.showToast_("添加成功"); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomProductAutomatic);
class SpzCustomDiscountBundle extends SPZ.BaseElement { constructor(element) { super(element); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } mountCallback() {} unmountCallback() {} setupAction_() { this.registerAction('showAddToCartToast', () => { const themeAddToCartToastEl = document.querySelector('#add-cart-event-proxy') if(themeAddToCartToastEl) return const toastEl = document.querySelector('#apps-match-drawer-add_to_cart_toast') SPZ.whenApiDefined(toastEl).then((apis) => { apis.showToast("添加成功"); }); }); } buildCallback() { this.setupAction_(); }; } SPZ.defineElement('spz-custom-discount-toast', SpzCustomDiscountBundle);
/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1539149753700').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);
24小時在線咨詢
買滿$10,000我哋就直送上門
質量保證 如實描述
客戶隱私保障

描述

1978年 羅曼尼·康帝特級園紅酒 (Romanée-Conti Grand Cru)

酒款介紹:世紀傳奇,完美年份

【友誠酒藏】隆重呈獻 1978年 Romanée-Conti 羅曼尼·康帝特級園紅酒。1978年是勃艮第(Burgundy)近代史上最偉大的傳奇年份之一。經歷了涼爽的春夏季後,一個乾燥、溫暖而陽光普照的秋季奇蹟般地降臨,賦予了葡萄完美的成熟度和驚人的濃縮風味。羅曼尼康帝酒莊(DRC)在該年份釀造出的酒款,被全球酒評家與收藏家譽為「世紀之酒」,是力量與優雅完美結合的典範。

品飲筆記:力量、複雜與深邃的交響曲

這款已進入巔峰適飲期的1978年份DRC,展現了令人心醉神迷的複雜層次:

  • 色澤:呈現成熟的石榴紅色,核心深邃,邊緣閃爍著琥珀色的光澤,見證了其非凡的陳年潛力。
  • 香氣:香氣極其宏大且富有戲劇性,初聞是陳年的紅色與黑色水果香氣,隨後展現出松露、雪茄盒、濕潤森林地表、甘草、紫羅蘭以及一絲迷人的野味與香料氣息。
  • 口感:酒體飽滿,結構雄偉。口感如頂級絲綢般順滑,天鵝絨般的單寧已完全融入酒體,與完美的酸度交織出無與倫比的平衡感。
  • 餘韻:餘韻幾乎無盡悠長,口中充滿了複雜的風味變化,層層遞進,直至最終的昇華,令人動容。

權威酒評家讚譽 (Critical Acclaim)

這款酒的卓越品質獲得了世界頂級酒評家的一致肯定,奠定其不朽的傳奇地位:

  • Allen Meadows (Burghound.com): 100分

    「這是一款令人驚豔的葡萄酒,香氣的純淨度與複雜性簡直無與倫比... 口感強勁而有力,同時又如芭蕾舞者般優雅。餘韻持續數分鐘之久,這是一次超凡脫俗的體驗,也是我品嚐過最偉大的年輕勃艮第紅酒之一。」

  • The Wine Advocate (Robert Parker): 99分

    「這是一款接近完美的葡萄酒,擁有驚人的濃郁度和多層次的風味... 它代表了釀酒藝術的頂峰。如果您有幸品嚐,這將是一次難忘的經歷。」

收藏價值與潛力

1978年份的Romanée-Conti是全球葡萄酒拍賣市場上的頂級瑰寶,其價值不僅在於飲用,更在於其歷史地位和投資潛力。

  • 指標性年份:作為20世紀最頂級的年份之一,1978 DRC是衡量其他年份的標竿,也是所有頂級收藏家酒窖中的鎮窖之寶。
  • 市場認可:歷年來在各大酒評機構均獲得近乎滿分的評價,市場需求極高,價格持續穩健增長,是極為可靠的藍籌股投資品。
  • 極致稀缺:經過數十年的消耗,完美保存至今的1978年份已是鳳毛麟角,每一瓶都是流動的歷史藝術品。

深度鑑賞:1978 羅曼尼·康帝 (DRC) 的風土與靈魂

🍷 1978年勃艮第:上帝眷顧的奇蹟年份

1978 年被譽為勃艮第上世紀最偉大的「奇蹟年份」之一。該年份的氣候極具戲劇性,春季寒冷多雨導致花期推遲,夏季涼爽,原本預示著平庸的收成。然而,9月至10月迎來了史上罕見的完美乾燥與溫暖天氣,讓黑皮諾(Pinot Noir)葡萄達到了極致的成熟度與濃縮度。這種「晚收」賦予了 1978 年 DRC 獨有的深邃結構與驚人的陳年潛力,這也是為何它在 40 多年後依然活力充沛、價格居高不下的核心原因。


📊 專家級技術規格 (Technical Specifications)

為了讓收藏家更精準地了解這款稀世珍釀,我們整理了詳細的技術參數:

規格項目 (Item) 詳細數據 (Details) 備註 (Notes)
酒莊 (Producer) Domaine de la Romanée-Conti (DRC) 勃艮第唯一特級獨佔園 (Monopole)
產區 (Region) Vosne-Romanée, Côte de Nuits 勃艮第夜丘核心地帶
等級 (Classification) Grand Cru (特級園) 僅佔勃艮第產量不到 2% 的頂級地塊
葡萄品種 (Variety) 100% Pinot Noir (黑皮諾) 採用古老且低產量的 DRC 獨家克隆品種
葡萄園面積 (Area) 1.81 公頃 全球最小、最珍貴的紅酒產地之一
1978年產量 (Yield) 極低產量 (約 5,800 - 6,000 瓶) 由於當年氣候因素,產量遠低於平均水平
土壤構成 (Terroir) 侏羅紀石灰岩、富含鐵質的紅黏土 賦予酒體絲絨般的質感與複雜礦物味
陳年潛力 (Aging) 50 - 70 年+ 目前正處於最佳適飲期與收藏巔峰期
酒精濃度 (ABV) 約 13% - 13.5% 平衡優雅,展現古典勃艮第風格

💎 投資價值與市場稀缺性分析

1978 年的 Romanée-Conti 不僅僅是一瓶酒,更是頂級資產配置的標的。以下是其與其他年份的稀缺性對比:

比較維度 1978 年 (本酒款) 一般年份 (如 1980s 普通年份) 投資建議
帕克評分 (RP) 99 分 (接近滿分) 90 - 94 分 高分年份通常具有更強的抗跌性
市場流通量 極度稀缺 (全球存世量極低) 尚有少量流通 1978年存世量隨開瓶逐年遞減,價值具不可逆的增長性
拍賣會表現 屢創天價紀錄 價格波動較大 拍賣行的硬通貨,深受亞洲及全球藏家追捧
適飲狀態 完美成熟期 (Peak Maturity) 可能已過巔峰 現在正是品嚐傳奇的最佳時刻,亦可繼續陳放

🗝️ 侍酒指南與收藏建議 (Serving & Storage Guide)

對於如此珍貴的陳年老酒,錯誤的侍酒方式將是巨大的浪費。友誠酒藏建議如下:

  • 靜置恢復: 收到酒後,請務必讓酒瓶直立靜置至少 48-72 小時,讓陳年沉澱物完全沉降至瓶底。

  • 開瓶工具: 強烈建議使用 老酒開瓶器 (Ah-So) 配合螺旋刀,避免脆弱的老軟木塞斷裂。

  • 醒酒建議: 1978 年份酒體細膩,不建議使用醒酒器劇烈氧化。建議「原瓶透氣」 (Audouze method) 1-2 小時,或僅在杯中醒酒,感受香氣在杯中從森林地表、松露到乾燥玫瑰的層層變化。

  • 最佳飲用溫度: 15°C - 16°C。溫度過高會放大酒精感,過低則鎖住香氣。

  • 食物搭配: 避免過於重口味的醬汁。最適合搭配慢燉野味(如野雞、乳鴿)、黑松露料理或簡單烹調的頂級和牛,以襯托其複雜的香料與大地氣息。


🛡️ 友誠酒藏的真品承諾 (Provenance Guarantee)

針對 HK$999,999.00 級別的藏品,我們提供超越行業標準的保障:

  1. 來源追溯: 此瓶 1978 DRC 源自歐洲知名私人酒窖,擁有清晰的保存歷史紀錄。

  2. 狀態檢驗: 由我們專業團隊檢查水位 (Ullage)、酒標 (Label) 完整性及瓶封 (Capsule) 狀態,確保處於極佳水平。

  3. 專業溫控: 全程恆溫恆濕運輸與倉儲,確保酒質未受熱損傷。


❓ 常見問題 (FAQ) - 關於 1978 DRC

Q: 為什麼 1978 年的 Romanée-Conti 價格如此昂貴? A: 除了 DRC 本身的品牌光環,1978 年是勃艮第 20 世紀最傳奇的年份之一,加上當年產量受氣候影響極低,且經過 40 多年的消耗,現存於世且保存完好的完美品項已是鳳毛麟角。

Q: 這款酒現在還能喝嗎?會不會太老? A: 絕對不會。1978 年是著名的「長壽年份」。Allen Meadows (Burghound) 給予其 100 分滿分,意味著它具有穿越時間的魔力。目前它正處於香氣最複雜、單寧最絲滑的巔峰狀態。

Q: 購買後如何安排運送? A: 針對此類頂級酒款,我們提供專人專車直送服務(香港地區),或使用專業保險的高端物流,確保萬無一失。

為何選擇友誠酒藏?

【友誠酒藏】的每一瓶珍稀酒款,都經過我們專家團隊的嚴格把關:

  • 來源保證:我們確保酒款來源清晰可溯,讓您安心收藏。
  • 完美窖藏:所有酒款均存放於恆溫恆濕的專業酒窖中,確保其處於最佳狀態。
  • 專業服務:提供一對一的收藏與投資諮詢,助您做出最明智的選擇。

立即洽詢

📲 WhatsApp 諮詢及訂購:852 92976199

關於友誠酒藏

友誠酒藏以誠信為本,致力於為香港及澳門的客戶搜羅全球頂級佳釀。我們用心挑選每一款酒,不僅提供廣受歡迎的經典酒款,更積極發掘獨具特色的小眾精品。我們堅持所有酒品來源可靠,確保正品,並提供具競爭力的價格。瀏覽我們的精選酒單,或直接聯繫我們,讓友誠酒藏為您推薦心儀的佳釀。

有趣的知識

查看全部