/* MAIN.CSS — Premium Educational Baijiu & Chinese Wine Website */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
   --text-xs: 0.9rem;
  --text-sm: 1.05rem;
  --text-md: 1.2rem;
  --text-lg: 1.35rem;
  --text-xl: 1.6rem;
  --ink:         #0D0D0D;
  --ink-2:       #3A3530;
  --ink-3:       #6B6358;
  --cream:       #FAF8F4;
  --cream-2:     #F2EFE8;
  --cream-3:     #E8E2D6;
  --red:         #8B1A1A;
  --red-dark:    #5C1010;
  --red-light:   #B22222;
  --gold:        #B8860B;
  --gold-light:  #D4A017;
  --border:      #DDD8CE;
  --white:       #FFFFFF;
}
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; font-size: var(--text-md); }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--red); color: #fff; }

/* ─── TYPOGRAPHY ─── */
.serif { font-family: 'Cormorant Garamond', 'Noto Serif SC', serif; }
h1 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.875rem, 6vw, 3.5rem); line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.5rem, 4vw, 2.5rem); line-height: 1.08; letter-spacing: -0.015em; }
h3 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(1.2rem, 3vw, 1.75rem); line-height: 1.15; }
h4 { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: var(--text-md); line-height: 1.3; letter-spacing: 0.01em; }
p { line-height: 1.65; }

.label {
  font-family: 'Outfit', sans-serif; font-size: var(--text-sm);
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--red); font-weight: 600;
}
.label-gold { color: var(--gold); }
.label-white { color: rgba(255,255,255,0.7); }
.lead { font-size: var(--text-md); color: var(--ink-2); line-height: 1.7; font-weight: 400; }
.body-sm { font-size: var(--text-md); color: var(--ink-3); line-height: 1.65; font-weight: 400; }
.zh-note { font-family: 'Noto Serif SC', serif; font-size: var(--text-sm); opacity: 0.55; margin-left: 0.35em; }

/* ─── LAYOUT ─── */
.wrapper { max-width: 1340px; margin: 0 auto; padding: 0 2rem; }
.wrapper-wide { max-width: 1640px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 768px) { .wrapper, .wrapper-wide { padding: 0 1.25rem; } }

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── NAVBAR ─── */
#main-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.6s, border-color 0.6s, color 0.6s;
}
#main-navbar.on-dark { background: transparent; color: #fff; }
#main-navbar.on-dark .nav-logo-img { filter: none; }
#main-navbar.light { background: rgba(250,248,244,0.96); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); color: var(--ink); }
#main-navbar.light .nav-logo-img { filter: none; }
#main-navbar.on-dark.scrolled { background: rgba(13,13,13,0.9); backdrop-filter: blur(16px); }

.navbar-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
@media (min-width: 768px) { .navbar-inner { height: 80px; padding: 0 3rem; } }

.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo-img { height: 44px; width: auto; }
@media (min-width: 768px) { .nav-logo-img { height: 52px; } }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: var(--text-md); font-weight: 500; letter-spacing: 0.04em; line-height: 1.1; }

.nav-center { display: none; align-items: center; gap: 0.1rem; }
@media (min-width: 1200px) { .nav-center { display: flex; } }
.nav-link {
  font-family: 'Outfit', sans-serif; font-size: var(--text-sm); font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; padding: 0.5rem 0.75rem;
  position: relative; white-space: nowrap; transition: color 0.3s;
}
.nav-link::after { content: ''; position: absolute; left: 0.75rem; right: 0.75rem; bottom: 0; height: 1px; width: 0; background: var(--red); transition: width 0.4s cubic-bezier(0.22,1,0.36,1); }
#main-navbar.on-dark .nav-link::after { background: var(--gold-light); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 1.5rem); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-switcher { display: flex; align-items: center; gap: 0.2rem; font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.2em; }
.lang-btn { background: none; border: none; cursor: pointer; text-transform: uppercase; padding: 0.3rem 0.4rem; opacity: 0.4; transition: opacity 0.3s; color: inherit; font-family: inherit; font-size: inherit; letter-spacing: inherit; font-weight: inherit; }
.lang-btn.active { opacity: 1; }
.lang-sep { opacity: 0.2; font-size: 20px; }

.hamburger { display: flex; flex-direction: column; gap: 5px; width: 28px; height: 28px; justify-content: center; background: none; border: none; cursor: pointer; padding: 2px; }
@media (min-width: 1200px) { .hamburger { display: none; } }
.hamburger span { display: block; height: 1px; background: currentColor; transition: all 0.35s; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

#mobile-menu { background: var(--white); overflow: hidden; max-height: 0; transition: max-height 0.6s cubic-bezier(0.22,1,0.36,1); border-bottom: 0 solid var(--border); }
#mobile-menu.open { max-height: 600px; border-bottom-width: 1px; }
.mobile-inner { padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-inner a { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 500; color: var(--ink); padding: 0.5rem 0; border-bottom: 1px solid var(--border); transition: color 0.3s; }
.mobile-inner a:hover { color: var(--red); }
.mobile-lang { display: flex; gap: 0.75rem; margin-top: 1.5rem; font-family: 'Outfit', sans-serif; font-size: 11px; letter-spacing: 0.2em; font-weight: 600; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 95vh; overflow: hidden;
  display: flex; align-items:flex-end;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(1px);}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.88) 0%, rgba(13,13,13,0.35) 50%, rgba(13,13,13,0.2) 100%); }
.hero-content { position: relative; z-index: 10; padding: 0 2rem 5rem; max-width: 1340px; margin: 0 auto; width: 100%; transform: translateY(2rem); }
@media (min-width: 768px) { .hero-content { padding: 0 3rem 5rem; } }
.hero-headline { color: #fff; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(2rem, 6vw, 5.5rem); line-height: 1.0; letter-spacing: -0.025em; max-width: 100rem; white-space: pre-line; }
.hero-sub { margin-top: 1.5rem; font-family: 'Outfit', sans-serif; font-size: var(--text-md); color: rgba(255,255,255,0.9); line-height: 1.6; max-width: 100%px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; align-items: center; }
@media (min-width: 768px) { .hero-actions { gap: 2rem; margin-top: 2.5rem; } }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Outfit', sans-serif; font-size: 0.875rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.9rem 1.75rem; cursor: pointer; transition: all 0.4s; border: 1px solid;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-white:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn-text { background: none; border-color: transparent; padding-left: 0; padding-right: 0; color: var(--red); }
.btn-text:hover { gap: 0.9rem; }

/* ─── STATS BAR ─── */
.stats-bar { background: rgb(32, 29, 27); color: #fff; padding: 2.5rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { padding: 1.5rem 2rem; border-right: 1px solid rgba(255, 255, 255, 0.031); border-bottom: 1px solid rgba(255,255,255,0.1); }
@media (min-width: 640px) { .stat-item:last-child { border-right: none; } .stat-item:nth-child(n+3) { border-bottom: none; } }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; color: var(--gold-light); line-height: 1; }
.stat-label { font-family: 'Outfit', sans-serif; font-size: var(--text-xs); letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.5rem; font-weight: 400; }

/* ─── SECTION ─── */
.section { padding: 3rem 0; }
.section-sm { padding: 2rem 0; }
.section-lg { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 5rem 0; } .section-sm { padding: 3rem 0; } .section-lg { padding: 7rem 0; } }
.section-dark { background: var(--ink); color: #fff; }
.section-cream { background: var(--cream-2); }
.section-cream2 { background: var(--cream-3); }

/* ─── GRID ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .grid-4 { grid-template-columns: 1fr; } }

/* ─── EDITORIAL IMAGE ─── */
.img-wrap { overflow: hidden; position: relative; }
.img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.22,1,0.36,1); display: block; }
.img-wrap:not(.no-zoom):hover img { transform: scale(1.04); }
.ratio-16-9 { aspect-ratio: 16/9; }
.ratio-4-3 { aspect-ratio: 4/3; }
.ratio-4-5 { aspect-ratio: 4/5; }
.ratio-1-1 { aspect-ratio: 1/1; }
.ratio-21-9 { aspect-ratio: 21/9; }
@media (max-width: 768px) { .ratio-21-9 { aspect-ratio: 16/9; } }

/* ─── CARD ─── */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); border-color: var(--cream-3); }
.card-body { padding: 1.25rem 1.5rem 1.5rem; }

/* ─── AROMA CARD ─── */
.aroma-card {
  background: #fff; border: 1px solid var(--border); border-radius: 4px;
  padding: 1.5rem; cursor: pointer; display: flex; flex-direction: column; gap: 0.75rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.aroma-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--aroma-color, var(--red)); transition: height 0.35s cubic-bezier(0.22,1,0.36,1); }
.aroma-card:hover::before, .aroma-card.active::before { height: 100%; }
.aroma-card:hover { border-color: var(--aroma-color, var(--red)); box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.aroma-card.active { border-color: var(--aroma-color, var(--red)); background: var(--cream-2); box-shadow: 0 6px 24px rgba(0,0,0,0.1); }
.aroma-card.hidden { display: none; }
.aroma-num { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.25em; color: var(--ink-3); text-transform: uppercase; }
.aroma-zh { font-family: 'Noto Serif SC', serif; font-size: var(--text-sm); color: var(--ink-3); }
.aroma-name { font-family: 'Cormorant Garamond', serif; font-size: var(--text-md); font-weight: 500; line-height: 1.1; }
.aroma-regions { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

/* ─── BAIJIU PAGE LAYOUT ─── */
.baijiu-layout { display: grid; grid-template-columns: 260px 1fr; gap: 0; align-items: start; }
@media (max-width: 960px) { .baijiu-layout { grid-template-columns: 1fr; } }

.region-sidebar {
  position: sticky; top: 96px; background: #fff;
  border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem;
}
@media (max-width: 960px) { .region-sidebar { position: static; } }
.region-sidebar-title { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; }
.region-btn {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 0.6rem 0.75rem; font-family: 'Outfit', sans-serif; font-size:var(--text-md);
  cursor: pointer; color: var(--ink-2); border-radius: 3px;
  transition: background 0.2s, color 0.2s; margin-bottom: 0.1rem; font-weight: 400;
}
.region-btn:hover { background: var(--cream-2); color: var(--ink); }
.region-btn.active { background: var(--red); color: #fff; font-weight: 600; }

.aroma-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 1200px) { .aroma-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .aroma-grid { grid-template-columns: 1fr; } }

/* ─── AROMA DETAIL PAGE ─── */
.aroma-detail-header { padding: 5rem 0 3rem; }
.aroma-hero-meta { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.aroma-color-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.aroma-region-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border: 1px solid var(--border);
  border-radius: 2px; color: var(--ink-3); background: var(--cream-2);
}

.producers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
@media (max-width: 640px) { .producers-grid { grid-template-columns: 1fr 1fr; } }
.producer-chip {
  background: var(--cream-2); border: 1px solid var(--border); padding: 1rem;
  border-radius: 3px; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500;
  transition: all 0.25s;
}
.producer-chip:hover { background: var(--red); color: #fff; border-color: var(--red); }

.video-embed { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 4px; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

.science-box {
  background: var(--ink); color: rgba(255,255,255,0.85); padding: 2rem 2.5rem;
  border-radius: 4px; border-left: 3px solid var(--gold);
}
.science-box h4 { color: var(--gold-light); font-family: 'Outfit', sans-serif; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 0.75rem; }
.science-box p { font-size: 0.9375rem; line-height: 1.7; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 0; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding: 0 0 2.5rem 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -4.5px; top: 0.375rem; width: 10px; height: 10px; border-radius: 50%; background: var(--red); border: 2px solid var(--cream); }
.timeline-year { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 0.35rem; }
.timeline-event { font-size: 0.9375rem; color: var(--ink-2); line-height: 1.6; }

/* ─── SECTION DIVIDER ─── */
.section-title-block { display: flex; align-items: baseline; gap: 1.5rem; margin-bottom: 2.5rem; }
.section-title-block .label { flex-shrink: 0; }
.divider-line { height: 1px; flex: 1; background: var(--border); }

/* ─── VS CARDS ─── */
.vs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 768px) { .vs-grid { grid-template-columns: 1fr; } }
.vs-cell { background: var(--cream); padding: 2rem; }
.vs-label { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--red); margin-bottom: 0.75rem; }
.vs-body { font-size: 0.9rem; color: var(--ink-2); line-height: 1.65; }

/* ─── PILLAR CARDS ─── */
.pillar-card {
  padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: 4px;
  transition: all 0.3s; cursor: pointer;
}
.pillar-card:hover { border-color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.pillar-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; margin-bottom: 0.75rem; }
.pillar-desc { font-size: 0.875rem; color: var(--ink-3); line-height: 1.65; }

/* ─── INTRO SECTION ─── */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 768px) { .intro-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ─── EVENTS / CHANGYU ─── */
.changyu-hero { background: var(--ink); color: #fff; padding: 5rem 0; }
.changyu-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.1); margin-top: 3rem; }
@media (max-width: 640px) { .changyu-stats { grid-template-columns: 1fr; } }
.changyu-stat { padding: 2rem; background: transparent; }
.changyu-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 500; color: var(--gold-light); line-height: 1; }
.changyu-stat-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.5rem; font-weight: 600; }

/* ─── EXPO PAGE ─── */
.expo-hero { position: relative; height: 65vh; min-height: 480px; overflow: hidden; }
.expo-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.expo-hero-overlay { position: absolute; inset: 0; background: rgba(13,13,13,0.55); display: flex; align-items: flex-end; padding: 3rem; }
.expo-hero-text { color: #fff; }

/* ─── GUIDE CARDS ─── */
.guide-card {
  padding: 1.75rem; background: #fff; border: 1px solid var(--border); border-radius: 4px;
  display: flex; flex-direction: column; gap: 0.75rem; transition: all 0.3s;
}
.guide-card:hover { border-color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.guide-tag { font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red); border: 1px solid var(--red); padding: 0.2rem 0.6rem; border-radius: 2px; display: inline-block; }
.guide-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; line-height: 1.2; }
.guide-desc { font-size: 0.875rem; color: var(--ink-3); line-height: 1.6; }
.acad-see-more { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); transition: color 0.2s; }
.guide-card:hover .acad-see-more { color: var(--red-dark); }
.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); background: transparent; display:inline-flex;align-items:center;justify-content:center;padding:0.7rem 1.5rem;font-size:0.8rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;border-radius:2px;transition:all 0.25s;cursor:pointer; }
.btn-outline-gold:hover { background: var(--gold); color: var(--ink); }

/* ─── WINE REGIONS ─── */
.wine-region-card {
  background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  transition: all 0.3s;
}
.wine-region-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); border-color: var(--cream-3); }
.wine-region-body { padding: 1.25rem 1.5rem 1.5rem; }
.wine-region-zh { font-family: 'Noto Serif SC', serif; font-size: var(--text-sm); color: var(--ink-3); }
.wine-brands-list { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.wine-brand-chip { font-size: var(--text-sm); font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 0.6rem; background: var(--cream-2); border: 1px solid var(--border); border-radius: 2px; color: var(--ink-3); }

/* ─── CONTACT ─── */
.contact-block { background: var(--cream-2); border: 1px solid var(--border); border-radius: 4px; padding: 3rem; max-width: 600px; margin: 0 auto; }
.contact-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; background: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 0.35rem; }
.contact-value { font-family: 'Cormorant Garamond', serif; font-size: var(--text-sm); font-weight: 500; color: var(--ink); }

/* ─── BACK LINK ─── */
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-3); transition: color 0.3s; margin-bottom: 2rem; }
.back-link:hover { color: var(--red); }

/* ─── FOOTER ─── */
#site-footer { background: var(--ink); color: #fff; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; }
.footer-tagline { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); color: rgba(255,255,255,0.55); line-height: 1.6; max-width: 22rem; }
.footer-nav-title { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav a { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-nav a:hover { color: #fff; }
.footer-email { font-family: 'Cormorant Garamond', serif; font-size: var(--text-sm); color: rgba(255,255,255,0.9); margin-bottom: 0.75rem; transition: color 0.3s; display: block; }
.footer-email:hover { color: var(--gold-light); }
.footer-copy { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy p { font-family: 'Outfit', sans-serif; font-size: var(--text-sm); color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ─── MISC UTILITIES ─── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.max-prose { max-width: 84rem; }
.max-prose-sm { max-width: 34rem; }

/* ─── PAGE ENTRY ─── */
.page-entry { padding-top: 80px; }

/* ─── EVENT CARDS ─── */
.event-card { padding: 2rem; background: #fff; border: 1px solid var(--border); border-radius: 4px; }
.event-date { font-family: 'Outfit', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.event-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 0.75rem; }
.event-desc { font-size: 0.875rem; color: var(--ink-3); line-height: 1.65; }

/* ─── RESPONSIVE HELPERS ─── */
@media (max-width: 768px) {
  .science-box { padding: 1.5rem; }
  .contact-block { padding: 1.75rem 1.25rem; }
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 0;
}
.breadcrumb-item { color: var(--ink-3); transition: color 0.2s; }
.breadcrumb-item:hover { color: var(--red); }
.breadcrumb-current { color: var(--ink); }
.breadcrumb-sep { color: var(--border); font-size: 13px; font-weight: 300; letter-spacing: 0; }

/* ─── AROMA INDEX BADGE ─── */
.aroma-index-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.15rem 0.5rem;
}

/* ─── FLAVOR PREV / NEXT NAV ─── */
.flavor-nav {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.flavor-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.flavor-nav-btn {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 45%;
  transition: color 0.2s;
}
.flavor-nav-btn:hover { color: var(--red); }
.flavor-nav-next { text-align: right; margin-left: auto; }
.flavor-nav-dir {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.flavor-nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.flavor-nav-btn:hover .flavor-nav-name { color: var(--red); }
@media (max-width: 640px) {
  .flavor-nav-name { font-size: 0.95rem; }
}

/* ─── DROPDOWN NAV ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
.nav-dropdown-arrow {
  font-size: var(--text-md);
  opacity: 0.6;
  transition: transform 0.25s;
  display: inline-block;
}
.nav-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Arrow pip */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.nav-dropdown-item:last-child { border-bottom: none; }
.nav-dropdown-item:hover { color: var(--red); background: var(--cream); }
.nav-dropdown-item.active { color: var(--red); }
/* On dark navbar, force light dropdown */
#main-navbar.on-dark .nav-dropdown-menu { background: rgba(13,13,13,0.95); border-color: rgba(255,255,255,0.12); }
#main-navbar.on-dark .nav-dropdown-menu::before { background: rgba(13,13,13,0.95); border-color: rgba(255,255,255,0.12); }
#main-navbar.on-dark .nav-dropdown-item { color: rgba(255,255,255,0.65); border-color: rgba(255,255,255,0.08); }
#main-navbar.on-dark .nav-dropdown-item:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }

/* ─── MOBILE NAV SUB-ITEMS ─── */
.mobile-section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 1.25rem 0 0.25rem;
  border-bottom: none !important;
}
.mobile-inner a.mobile-sub {
  font-size: 1.35rem;
  padding-left: 1rem;
  color: var(--ink-3);
  border-bottom-color: transparent;
}
.mobile-inner a.mobile-sub:nth-last-of-type(1) { border-bottom: 1px solid var(--border); }

/* ─── SCROLL TO TOP ─── */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#scroll-top:hover { background: var(--red); }
@media (max-width: 640px) {
  #scroll-top { bottom: 1.25rem; right: 1.25rem; width: 38px; height: 38px; font-size: var(--text-md); }
}

/* ── PRODUCT CARDS (producer page & product page similar section) ── */
.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: var(--cream-3);
  transform: translateY(-3px);
}
.product-card-img {
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  min-height: 180px;
}
.product-card-img img {
  max-height: 160px;
  max-width: 100%;
  object-fit: contain;
}
.product-card-body {
  padding: 1rem 1.25rem 1.5rem;
  flex: 1;
}

/* ── PRODUCT TASTING TABLE ── */
.product-tasting-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-tasting-row {
  display: grid;
  grid-template-columns: 1.5rem 1fr 1fr;
  gap: 0.75rem;
  align-items: baseline;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.product-tasting-row:first-child { border-top: 1px solid var(--border); }
.product-tasting-icon { color: var(--ink-3); font-size: 0.85rem; }
.product-tasting-key { font-weight: 600; color: var(--ink); }
.product-tasting-val { color: var(--ink-2); text-align: right; }

@media (max-width: 768px) {
  .product-tasting-row { grid-template-columns: 1.5rem 1fr; }
  .product-tasting-val { grid-column: 2; text-align: left; font-size: 0.8rem; color: var(--ink-3); }
}

/* ── BLOG GRID (Exposition & Événements) ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: #c8cfe0;
}

.blog-card-body {
  padding: 1.25rem 0 0.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-2, #888);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--red, #8b1a2e);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: var(--ink-2, #555);
  line-height: 1.7;
  flex: 1;
}

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   WINE REGION BUTTONS GRID
   ═══════════════════════════════════════════════════ */

.wine-regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.wine-region-btn {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.22s, border-color 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}

.wine-region-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--red-rgb, 139,26,46), 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.22s;
}

.wine-region-btn:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  border-color: var(--cream-3);
  transform: translateY(-2px);
}

.wine-region-btn:hover::before { opacity: 1; }

.wine-region-btn-icon {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  display: block;
}

.wine-region-btn-zh {
  font-family: 'Noto Serif SC', serif;
  font-size: var(--text-sm);
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

.wine-region-btn-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.wine-region-btn-climate {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  line-height: 1.4;
  flex: 1;
}

.wine-region-btn-arrow {
  margin-top: 1rem;
  color: var(--ink-3);
  transition: color 0.2s, transform 0.2s;
}

.wine-region-btn:hover .wine-region-btn-arrow {
  color: var(--red);
  transform: translateX(3px);
}

@media (max-width: 900px) {
  .wine-regions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .wine-regions-grid { grid-template-columns: 1fr; }
  .wine-region-btn { flex-direction: row; align-items: center; gap: 1rem; padding: 1.25rem; }
  .wine-region-btn-icon { font-size: 1.4rem; margin-bottom: 0; flex-shrink: 0; }
  .wine-region-btn-climate { display: none; }
}

/* ═══════════════════════════════════════════════════
   WINE REGION DETAIL PAGE
   ═══════════════════════════════════════════════════ */

.wine-region-fact {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  min-width: 200px;
}

.wine-region-fact-key {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}

.wine-region-fact-val {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.4;
}

.wine-estate-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}

.wine-estate-row:last-child {
  border-bottom: none;
}

.wine-estate-row:nth-child(even) {
  direction: rtl;
}

.wine-estate-row:nth-child(even) > * {
  direction: ltr;
}

.wine-estate-body {
  padding: 0.5rem 0;
}

.wine-flagship-tag {
  display: inline-flex;
  flex-direction: column;
  padding: 0.75rem 1rem;
  background: var(--cream-2);
  border-left: 2px solid var(--red);
  border-radius: 0 2px 2px 0;
}

@media (max-width: 900px) {
  .wine-estate-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr !important;
  }
  .wine-estate-row:nth-child(even) { direction: ltr; }
  .wine-estate-img { max-width: 520px; }
}

/* ═══════════════════════════════════════════════════
   ESTATE BUTTON CARDS (region detail page)
   ═══════════════════════════════════════════════════ */

.wine-estate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.wine-estate-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  overflow: hidden;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}

.wine-estate-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
  transform: translateY(-3px);
  border-color: var(--cream-3);
}

.wine-estate-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.wine-estate-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.wine-estate-card:hover .wine-estate-card-img img {
  transform: scale(1.06);
}

.wine-estate-card-body {
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.5rem 1.25rem;
  flex: 1;
  gap: 0.3rem;
}

.wine-estate-card-zh {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

.wine-estate-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

.wine-estate-card-founded {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0.1rem 0 0.5rem;
}

.wine-estate-card-desc {
  font-size: 0.82rem;
  color: var(--ink-2);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wine-estate-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.wine-estate-card-count {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.wine-estate-card-cta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap .2s;
}

.wine-estate-card:hover .wine-estate-card-cta { gap: 0.6rem; }

@media (max-width: 900px) {
  .wine-estate-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .wine-estate-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   REGION BUTTON — extra detail (estate names)
   ═══════════════════════════════════════════════════ */

.wine-region-btn-estates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: var(--ink-3);
  margin-top: 0.15rem;
  margin-bottom: 0.1rem;
}

.wine-region-btn-estates .sep {
  color: var(--border);
}

/* ═══════════════════════════════════════════════════
   PRODUCT CARDS (estate detail page)
   ═══════════════════════════════════════════════════ */

.wine-products-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.wine-product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.wine-product-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.wine-product-card-header {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
}

.wine-product-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.wine-product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wine-product-card-meta {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.wine-type-badge {
  display: inline-block;
  padding: 0.18rem 0.65rem;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  align-self: flex-start;
  margin-bottom: 0.2rem;
}

.wine-product-card-zh {
  font-family: 'Noto Serif SC', serif;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

.wine-product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin: 0.1rem 0;
}

.wine-product-card-vintage {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.wine-product-card-grapes {
  font-size: 0.82rem;
  color: var(--ink-2);
  margin-bottom: 0.25rem;
}

.wine-product-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
}

.wine-pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

.wine-fiche-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 2px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  transition: background .2s;
}

.wine-fiche-btn:hover { background: var(--red); }

/* ─── FICHE TECHNIQUE PANEL ─── */

.wine-fiche-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
  border-top: 0px solid var(--border);
}

.wine-fiche-panel.is-open {
  max-height: 800px;
  opacity: 1;
  border-top: 1px solid var(--border);
}

.wine-fiche-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.fiche-section {
  padding: 1.75rem 2rem;
  border-right: 1px solid var(--border);
}

.fiche-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fiche-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}

.fiche-row:last-child { border-bottom: none; }

.fiche-key {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 0.05rem;
}

.fiche-val {
  font-size: 0.82rem;
  color: var(--ink);
  line-height: 1.5;
}

.fiche-tasting {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  grid-column: 2;
}

.fiche-tasting-row {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

.fiche-tasting-row:last-child { border-bottom: none; }

.fiche-tasting-key {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.fiche-tasting-val {
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.65;
}

/* close button spans both columns */
.fiche-close-btn {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  background: var(--cream);
  border: none;
  border-top: 1px solid var(--border);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  cursor: pointer;
  transition: background .2s, color .2s;
}

.fiche-close-btn:hover { background: var(--cream-2); color: var(--ink); }

/* ─── Responsive ─── */

@media (max-width: 900px) {
  .wine-product-card-header { grid-template-columns: 1fr; }
  .wine-product-card-img { aspect-ratio: 16 / 7; }
  .wine-fiche-inner { grid-template-columns: 1fr; }
  .fiche-section { border-right: none; border-bottom: 1px solid var(--border); }
  .fiche-tasting { grid-column: 1; }
}

@media (max-width: 580px) {
  .wine-product-card-meta { padding: 1.25rem; }
  .fiche-section, .fiche-tasting { padding: 1.25rem; }
  .fiche-row { grid-template-columns: 110px 1fr; }
}

/* ── PRESS CARDS ── */
.press-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow .22s, transform .22s; }
.press-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.10); transform: translateY(-3px); }
.press-card-img-link { display: block; overflow: hidden; position: relative; }
.press-card-img { aspect-ratio: 16 / 9; overflow: hidden; }
.press-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.press-card:hover .press-card-img img { transform: scale(1.05); }
.press-card-badge { position: absolute; top: 1rem; left: 1rem; padding: 0.2rem 0.6rem; background: var(--red); color: #fff; font-family: 'Outfit',sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 2px; }
.press-card-body { display: flex; flex-direction: column; padding: 1.5rem; gap: 0.5rem; flex: 1; }
.press-card-date { font-family: 'Outfit',sans-serif; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); }
.press-card-title { font-family: 'Cormorant Garamond',serif; font-size: 1.25rem; font-weight: 500; line-height: 1.25; }
.press-card-title a { color: var(--ink); text-decoration: none; }
.press-card-title a:hover { color: var(--red); }
.press-card-excerpt { font-size: 0.85rem; color: var(--ink-2); line-height: 1.7; flex: 1; }
.press-card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem; font-family: 'Outfit',sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); text-decoration: none; transition: gap .2s; }
.press-card-link:hover { gap: 0.7rem; }

/* ── ARTICLE BODY ── */
.article-body { max-width: 720px; }
.article-body p { font-size: 1.05rem; line-height: 1.85; color: var(--ink-2); margin-bottom: 1.5rem; }
.article-body h2 { font-family: 'Cormorant Garamond',serif; font-size: 1.75rem; color: var(--ink); margin: 2.5rem 0 1rem; }
.article-body h3 { font-family: 'Cormorant Garamond',serif; font-size: 1.35rem; color: var(--ink); margin: 2rem 0 0.75rem; }
.article-body strong { color: var(--ink); font-weight: 600; }
/* ═══════════════════════════════════════════════════
   MOBILE-FIRST — Global Responsive Improvements
   ═══════════════════════════════════════════════════ */

/* Hero mobile */
@media (max-width: 640px) {
  .hero { min-height: 85vh; }
  .hero-content { padding: 0 1.25rem 3.5rem; }
  .hero-headline { font-size: clamp(1.85rem, 9vw, 2.5rem); white-space: normal; }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* Btn mobile */
@media (max-width: 640px) {
  .btn { padding: 0.85rem 1.4rem; font-size: 0.8rem; letter-spacing: 0.14em; }
}

/* Stats bar mobile */
@media (max-width: 480px) {
  .stat-item { padding: 1.25rem 1rem; }
  .stat-num { font-size: clamp(1.6rem, 8vw, 2.2rem); }
}

/* Grids mobile */
@media (max-width: 640px) {
  .grid-2, .grid-3, .aroma-grid { grid-template-columns: 1fr; }
}

/* Guide cards mobile */
@media (max-width: 640px) {
  .guide-card { padding: 1.25rem; }
  .guide-title { font-size: 1.1rem; }
}

/* Contact block mobile */
@media (max-width: 640px) {
  .contact-block { padding: 1.5rem 1rem; }
  .contact-item { gap: 1rem; padding: 1.25rem 0; }
}

/* Footer mobile */
@media (max-width: 480px) {
  #site-footer { padding: 3rem 0 1.5rem; }
  .footer-copy { flex-direction: column; gap: 0.25rem; text-align: center; }
}

/* Navbar mobile tweaks */
@media (max-width: 480px) {
  .navbar-inner { padding: 0 1rem; height: 64px; }
  .nav-logo-img { height: 36px; }
  .lang-btn { padding: 0.2rem 0.3rem; font-size: 9px; }
}

/* Mobile menu improvements */
.mobile-inner { padding: 1.5rem 1.25rem; }
@media (max-width: 480px) {
  .mobile-inner a { font-size: 1.5rem; padding: 0.4rem 0; }
}

/* Video embed responsive */
.yt-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
}
.yt-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* Section title block mobile */
@media (max-width: 640px) {
  .section-title-block { flex-direction: column; gap: 0.5rem; }
  .divider-line { display: none; }
}

/* Intro grid mobile */
@media (max-width: 640px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Pillar cards mobile */
@media (max-width: 480px) {
  .pillar-card { padding: 1.5rem; }
}

/* Timeline mobile */
@media (max-width: 640px) {
  .timeline-item { padding: 0 0 2rem 1.75rem; }
}

/* Scroll top button */
#scroll-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: #fff; border: none;
  font-size: 1.1rem; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.3s;
  display: flex; align-items: center; justify-content: center;
  z-index: 50; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
#scroll-top.visible { opacity: 1; pointer-events: auto; }
#scroll-top:hover { background: var(--red); }

/* Wine product card mobile */
@media (max-width: 640px) {
  .wine-product-card-meta { padding: 1rem; }
  .wine-product-card-name { font-size: 1.15rem; }
}

/* Baijiu layout mobile */
@media (max-width: 640px) {
  .baijiu-layout { grid-template-columns: 1fr; }
  .region-sidebar { position: static; }
}

/* Blog grid mobile */
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}