/* ============================================================
   CNS Imports v2 — Design System
   Based on DESIGN_SPEC.md handoff (May 2026)
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700&family=Poppins:wght@700&family=Noto+Sans+SC:wght@400;500;700&display=swap');

/* ── Design tokens ── */
:root {
  --red:       #E11D2B;
  --red-dk:    #B8121E;
  --dark:      #2C2C2E;
  --dark-2:    #55555A;
  --gray:      #8A8A90;
  --line:      #E5E5E8;
  --soft:      #F6F6F8;
  --white:     #FFFFFF;
  --cream:     #EFE7D5;
  --wine:      #52171C;
  --gold:      #E5C896;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-cn:   'Noto Sans SC', sans-serif;

  --util-h:    44px;
  --nav-h:     100px;
  --radius-card: 8px;
  --radius-btn:  4px;
  --radius-pill: 22px;
  --radius-modal: 12px;

  --shadow-card-hover: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-modal: 0 28px 48px rgba(14,14,20,0.20);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(40px, 5vw, 64px); letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 3.5vw, 42px); letter-spacing: -0.3px; }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 19px; }
p { color: var(--dark-2); line-height: 1.7; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.text-red { color: var(--red); }
.text-muted { color: var(--dark-2); }
.text-gray { color: var(--gray); }

/* ── Layout ── */
.container {
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 64px;
}
.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 64px;
}

/* ── Utility Bar ── */
.util-bar {
  height: var(--util-h);
  background: var(--dark);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 101;
}
.util-bar__inner {
  width: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.util-bar__lang {
  display: none; /* TODO: re-enable once Chinese translations are reviewed */
  gap: 4px;
  align-items: center;
}
.util-lang-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #B8B8BE;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  transition: color 0.15s;
  font-family: var(--font-body);
}
.util-lang-btn.active, .util-lang-btn:hover { color: var(--white); }
.util-lang-sep { color: #B8B8BE; font-size: 12px; margin: 0 2px; }
.util-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #B8B8BE;
}
.util-bar__right a { color: #B8B8BE; transition: color 0.15s; }
.util-bar__right a:hover { color: var(--white); }
.util-sep { color: #3E3E42; }

/* ── Navigation ── */
.nav {
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: var(--util-h);
  z-index: 100;
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.nav__inner {
  height: 100%;
  max-width: 1312px;
  margin: 0 auto;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo img { height: 48px; object-fit: contain; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-2);
  letter-spacing: 0.2px;
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--dark); }
.nav__link.active { color: var(--dark); font-weight: 700; border-bottom-color: var(--red); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background 0.15s;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--red-dk); }

/* Mobile nav */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.2s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
  gap: 4px;
}
.nav__mobile .nav__link {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.nav__mobile .nav__link:last-of-type { border-bottom: none; }
.nav__mobile .nav__cta { margin-top: 12px; justify-content: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  transition: all 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover { background: var(--red-dk); border-color: var(--red-dk); }
.btn-secondary {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-secondary:hover { background: var(--dark); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-pill {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-pill);
}
.btn-pill:hover { background: var(--red-dk); }
.link-red {
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
}
.link-red:hover { gap: 8px; }

/* ── Hero ── */
.hero {
  padding: 100px 0 96px;
  text-align: center;
}
.hero__eyebrow { margin-bottom: 20px; }
.hero__title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 17px;
  color: var(--dark-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Dark hero */
.hero--dark { background: var(--dark); }
.hero--dark .hero__title, .hero--dark h1 { color: var(--white); }
.hero--dark .hero__sub, .hero--dark p { color: rgba(255,255,255,0.7); }

/* Wine hero */
.hero--wine { background: var(--wine); }
.hero--wine .hero__title, .hero--wine h1 { color: var(--white); }
.hero--wine .hero__sub, .hero--wine p { color: rgba(255,255,255,0.75); }
.hero--wine .eyebrow { color: var(--gold); }

/* ── Stats band ── */
.stats-band {
  background: var(--soft);
  padding: 56px 0;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-2);
}

/* ── Section ── */
.section { padding: 96px 0; }
.section--soft { background: var(--soft); }
.section--dark { background: var(--dark); }
.section--red { background: var(--red); }
.section--cream { background: var(--cream); }
.section__head { margin-bottom: 56px; }
.section__head .eyebrow { margin-bottom: 12px; }

/* ── Partner cards ── */
.partner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 40px 40px 36px;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.partner-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--dark);
}
.partner-card__icon {
  width: 48px;
  height: 48px;
  background: var(--soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.partner-card__icon svg { width: 22px; height: 22px; color: var(--red); }
.partner-card h3 { font-size: 22px; margin-bottom: 12px; }
.partner-card p { font-size: 15px; color: var(--dark-2); margin-bottom: 24px; }

/* ── Category breadth section ── */
.breadth-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.breadth-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px 20px 24px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  cursor: pointer;
}
.breadth-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--dark);
}
.breadth-card__tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 14px;
  margin-bottom: 16px;
}
.breadth-card h4 { font-size: 16px; margin-bottom: 8px; }
.breadth-card__brands { font-size: 13px; color: var(--gray); line-height: 1.6; }
.breadth-card__more {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.6px;
}
.breadth-card:hover .breadth-card__more { text-decoration: underline; }

/* ── Product card ── */
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--dark);
}
.product-card__photo {
  position: relative;
  height: 232px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card[data-category="baijiu"] .product-card__photo {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #FFD9B8 100%);
}
.product-card[data-category="whisky"] .product-card__photo {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #E8DEC4 100%);
}
.product-card[data-category="wine"] .product-card__photo {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #FAC8C8 100%);
}
.product-card[data-category="gin"] .product-card__photo {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #CCE6D2 100%);
}
.product-card[data-category="mezcal"] .product-card__photo {
  background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #F0DAA8 100%);
}
.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 14px;
}
.product-card__medals {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-card__medals img { width: 32px; height: 32px; object-fit: contain; }
.product-card__photo.has-medals { padding-right: 48px; }
.product-card__bottle {
  max-height: 170px;
  max-width: 90px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.product-card__body { padding: 16px 20px 4px; }
.product-card__name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
  line-height: 1.25;
}
.product-card__cn {
  font-family: var(--font-cn);
  font-size: 13px;
  color: var(--dark-2);
  margin-bottom: 6px;
}
.product-card__spec {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.product-card__divider { height: 1px; background: var(--line); margin: 12px 0; }
.product-card__view {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  padding: 0 20px 14px;
  transition: gap 0.15s;
}
.product-card:hover .product-card__view { gap: 10px; }
body.lang-zh .product-card__view { font-size: 0; color: transparent; }
body.lang-zh .product-card__view::after { content: '查看产品 →'; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }

/* ── Products page layout ── */
.products-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: start;
}

/* Filter sidebar */
.filter-sidebar {
  background: var(--cream);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  margin-bottom: 48px;
}
.filter-sidebar__top {
  border-top: 3px solid var(--red);
  padding: 32px 28px 24px;
}
.filter-sidebar__headline {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 16px;
}
.filter-sidebar__rule {
  width: 70px;
  height: 4px;
  background: var(--red);
  margin-bottom: 20px;
  border: none;
}
.filter-sidebar p { font-size: 14px; color: var(--dark-2); line-height: 1.65; }
.filter-sidebar__stats {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--dark-2);
  margin-top: 16px;
}
.filter-sidebar__divider { height: 1px; background: #D6CDB6; margin: 20px 0; }
.filter-categories {
  max-height: calc(100vh - 360px);
  min-height: 220px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.filter-categories::-webkit-scrollbar { width: 8px; }
.filter-categories::-webkit-scrollbar-track { background: transparent; }
.filter-categories::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 4px;
}
.filter-categories::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.32); }
.filter-categories { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.22) transparent; }
.filter-sidebar__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-2);
  margin-bottom: 8px;
}
.filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  padding: 0 28px;
  cursor: pointer;
  transition: background 0.12s;
}
.filter-row:hover { background: rgba(0,0,0,0.04); }
.filter-row.active { background: var(--white); border-left: 3px solid var(--red); padding-left: 25px; }
.filter-row__label { font-size: 14px; font-weight: 600; color: var(--dark-2); }
.filter-row.active .filter-row__label { color: var(--dark); }
.filter-row__right { display: flex; align-items: center; gap: 8px; }
.filter-row__count { font-size: 13px; color: var(--gray); }
.filter-row__caret { font-size: 12px; color: var(--gray); display: inline-block; transition: transform 0.2s ease; padding: 4px 8px; margin: -4px -8px; cursor: pointer; }
.filter-row.expanded .filter-row__caret { transform: rotate(90deg); }
.filter-brands {
  max-height: 0;
  overflow: hidden;
  background: rgba(0,0,0,0.03);
  transition: max-height 0.3s ease;
}
.filter-brands.open {
  max-height: 120px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 0 8px;
}
.filter-brands.open::-webkit-scrollbar { width: 8px; }
.filter-brands.open::-webkit-scrollbar-track { background: transparent; }
.filter-brands.open::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.18);
  border-radius: 4px;
}
.filter-brands.open::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.32); }
.filter-brands.open { scrollbar-width: thin; scrollbar-color: rgba(0,0,0,0.22) transparent; }
.filter-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 28px 6px 44px;
  cursor: pointer;
  transition: background 0.15s;
}
.filter-brand-row:hover { background: rgba(0,0,0,0.05); }
.filter-brand-row.active { background: var(--white); border-left: 3px solid var(--red); padding-left: 41px; }
.filter-brand-row__label { font-size: 13px; color: var(--dark-2); }
.filter-brand-row.active .filter-brand-row__label { color: var(--dark); font-weight: 600; }
.filter-brand-row__count { font-size: 12px; color: var(--gray); }
.filter-sidebar__catalog {
  padding: 20px 28px 28px;
  border-top: 1px solid #D6CDB6;
}
.filter-sidebar__catalog-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-2);
  margin-bottom: 4px;
}
.filter-sidebar__catalog-sub { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.filter-sidebar__catalog .btn { width: 100%; justify-content: center; font-size: 13px; }

/* Search + sort row */
.products-search-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.search-input {
  flex: 1;
  height: 48px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 0 20px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,29,43,0.08); }
.search-input::placeholder { color: var(--gray); }
.sort-select {
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 40px 0 12px;
  font-size: 13px;
  font-family: var(--font-body);
  color: var(--dark-2);
  background-color: var(--white);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%23888888' d='M0 0 L5 6 L10 0 Z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
}
.products-count-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--gray);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Product modal ── */
.modal-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,18,0.55);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.modal-scrim.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-modal);
  box-shadow: var(--shadow-modal);
  width: 90vw;
  max-width: 1120px;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 46% 54%;
  overflow: hidden;
  position: relative;
}
.modal__left {
  position: relative;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.modal__left[data-category="baijiu"] { background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #FFD9B8 100%); }
.modal__left[data-category="whisky"] { background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #E8DEC4 100%); }
.modal__left[data-category="wine"] { background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #FAC8C8 100%); }
.modal__left[data-category="gin"] { background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #CCE6D2 100%); }
.modal__left[data-category="mezcal"] { background: linear-gradient(to bottom, #FFFFFF 0%, #FFFFFF 35%, #F0DAA8 100%); }
.modal__left .product-card__tag { font-size: 13px; padding: 6px 14px; }
.modal__left .product-card__medals { flex-direction: column; }
.modal__left .product-card__medals img { width: 72px; height: 72px; }
.modal__bottle { max-height: 560px; max-width: 336px; object-fit: contain; }
.modal__right {
  padding: 40px 40px 36px;
  overflow-y: auto;
  min-height: 0;
  max-height: 90vh;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
  z-index: 10;
  transition: background 0.15s;
}
.modal__close:hover { background: rgba(0,0,0,0.12); }
.modal__eyebrow { display: none; }
.modal__title { font-size: 36px; letter-spacing: -0.3px; margin-bottom: 4px; }
.modal__subtitle { font-size: 20px; font-family: var(--font-head); color: var(--dark-2); margin: 0; }
.modal__subtitle-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.modal__spec-chip { font-size: 12px; font-weight: 600; color: var(--dark-2); background: var(--soft); border: 1px solid var(--line); border-radius: 20px; padding: 3px 10px; white-space: nowrap; }
.modal__rule { width: 60px; height: 4px; background: var(--red); border: none; margin-bottom: 16px; }
.modal__tagline { display: none; }
.modal__divider { height: 1px; background: var(--line); margin: 20px 0; }
.modal__awards-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.modal__tasting-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 12px; }
.modal__tasting-item { display: grid; grid-template-columns: 72px 1fr; gap: 6px 12px; margin-bottom: 8px; align-items: baseline; }
.modal__tasting-key { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); }
.modal__tasting-val { font-size: 14px; color: var(--dark-2); line-height: 1.5; }
.modal__brand-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.modal__brand-desc { font-size: 14px; color: var(--dark-2); line-height: 1.7; margin: 0; }
.brand-banner { background: var(--soft); border-left: 3px solid var(--red); border-radius: var(--radius-card); padding: 20px 24px; margin-bottom: 24px; }
.brand-banner__label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.brand-banner__desc { font-size: 14px; color: var(--dark-2); line-height: 1.7; margin: 0; }
.modal__award {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--dark-2);
}
.modal__award img { width: 20px; height: 20px; object-fit: contain; }
.modal__desc { font-size: 15px; color: var(--dark-2); line-height: 1.7; margin-bottom: 24px; }
.modal__ctas { display: flex; flex-direction: column; gap: 12px; }
.modal__ctas .btn { justify-content: center; }

/* ── Timeline ── */
.timeline {
  position: relative;
  padding: 0;
  list-style: none;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--red);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0 24px;
  align-items: center;
  margin-bottom: 64px;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; }
.timeline-dot {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 3px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  grid-column: 2;
  z-index: 1;
  justify-self: center;
}
.timeline-content { display: flex; align-items: flex-start; gap: 14px; }
.timeline-item:nth-child(odd) .timeline-content { flex-direction: row-reverse; }
.timeline-item:nth-child(even) .timeline-content { flex-direction: row; }
.timeline-content__img {
  flex: 0 0 80px;
  width: 80px;
  aspect-ratio: 374 / 480;
  object-fit: cover;
  border-radius: 4px;
  margin: 0;
}
.timeline-content__text { flex: 1; min-width: 0; }
.timeline-content__year { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 1px; margin-bottom: 4px; }
.timeline-content__title { font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }
.timeline-content p { font-size: 14px; }

/* ── Team cards ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: top center;
  background: var(--soft);
}
.team-card__body { padding: 20px 22px 22px; }
.team-card__role { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.team-card__name { font-family: var(--font-head); font-size: 18px; margin-bottom: 8px; }
.team-card p { font-size: 13px; color: var(--dark-2); margin-bottom: 14px; }
.team-card .link-red { font-size: 13px; }

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; color: var(--red); }
.values-grid h4 { font-size: 16px; margin-bottom: 8px; }
.values-grid p { font-size: 14px; }

/* ── Locations ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  border-left: 3px solid var(--red);
  padding: 28px 28px 24px;
}
.location-card__region { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.location-card__type { font-size: 15px; color: var(--gray); margin-bottom: 16px; }
.location-card__address { font-size: 15px; color: var(--dark-2); line-height: 1.7; margin-bottom: 16px; }
.location-card .link-red { font-size: 14px; }

/* ── Contact form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--dark-2); margin-bottom: 6px; }
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,43,0.08);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-rail {
  background: var(--soft);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}
.contact-rail__label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.contact-rail h3 { font-size: 20px; margin-bottom: 6px; }
.contact-rail__sub { font-size: 14px; color: var(--dark-2); margin-bottom: 28px; }
.step { display: flex; gap: 16px; margin-bottom: 24px; }
.step__num {
  width: 28px; height: 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.step__text { font-size: 14px; color: var(--dark-2); padding-top: 4px; }

/* ── Red CTA closer ── */
.cta-closer {
  background: var(--red);
  padding: 80px 0;
  text-align: center;
}
.cta-closer h2 { color: var(--white); margin-bottom: 12px; }
.cta-closer p { color: rgba(255,255,255,0.8); font-size: 16px; margin-bottom: 36px; }
.cta-closer .hero__actions { justify-content: center; }
.cta-closer--light { background: var(--white); }
.cta-closer--light h2 { color: var(--dark); }
.cta-closer--light p { color: var(--dark-2); }
.cta-closer--light p a { color: var(--red) !important; }

/* ── News cards ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
  height: 100%;
}
.news-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
  border-color: var(--dark);
}
.news-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--soft);
}
.news-card__body { padding: 20px 20px 16px; }
.news-card__source { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.news-card__title { font-family: var(--font-head); font-size: 16px; color: var(--dark); line-height: 1.35; margin-bottom: 12px; }
.news-card__divider { height: 1px; background: var(--line); margin-bottom: 12px; }
.news-card__read { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: 4px; }

/* ── Events ── */
.event-entry {
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.event-entry:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.event-entry__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.event-entry__title { font-size: clamp(22px, 3vw, 30px); }
.event-entry__year {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--red);
  background: rgba(225,29,43,0.08);
  padding: 3px 10px;
  border-radius: 12px;
}
.event-entry__desc { font-size: 15px; color: var(--dark-2); margin-bottom: 24px; max-width: 700px; }

.event-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.event-gallery__item {
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
  background: var(--soft);
}
.event-gallery__item--featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: unset;
}
.event-gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.25s;
}
.event-gallery__item:hover img { transform: scale(1.03); }
.event-gallery--small { grid-template-columns: repeat(3, 1fr); }
.event-gallery--tiny { grid-template-columns: 1fr; max-width: 480px; }

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 300;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lightbox__close { top: 20px; right: 20px; width: 40px; height: 40px; font-size: 18px; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,0.22); }
.lightbox__nav { width: 48px; height: 48px; font-size: 28px; top: 50%; transform: translateY(-50%); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 13px; }

/* ── Page header band ── */
.page-header {
  background: var(--soft);
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb { font-size: 12px; color: var(--gray); letter-spacing: 0.5px; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--dark); }
.page-header__title {
  font-family: var(--font-head);
  font-size: 24px;
  border-left: 4px solid var(--red);
  padding-left: 14px;
  line-height: 1.2;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer__logo img { height: 40px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.85; }
.footer__col-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8B8BE;
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__link {
  font-size: 14px;
  color: #8A8A90;
  transition: color 0.15s;
}
.footer__link:hover { color: var(--white); }
.footer__address { font-size: 13px; color: #8A8A90; line-height: 1.8; }
.footer__divider { height: 1px; background: #3E3E42; }
.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #8A8A90;
}

/* ── Age gate ── */
.age-gate {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 32px;
}
.age-gate__logo { height: 60px; object-fit: contain; margin-bottom: 32px; }
.age-gate h2 { font-family: var(--font-head); font-size: 28px; color: var(--white); margin-bottom: 12px; }
.age-gate p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 32px; }
.age-gate__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ── Services section ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-item { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--white); }
.service-item__icon { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--red); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-item__icon svg { width: 20px; height: 20px; color: var(--red); }
.service-item h4 { font-size: 17px; margin-bottom: 8px; }
.service-item p { font-size: 14px; }

/* ── Story / history section ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.story-thumb {
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}
.story-thumb:first-child { margin-top: 24px; }

/* ── Suppliers card ── */
.suppliers-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 48px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 48px;
  align-items: center;
}
.suppliers-card__img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; background: var(--soft); }
.suppliers-card__stats { display: flex; flex-direction: column; gap: 20px; }
.supplier-stat__num { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--red); line-height: 1; }
.supplier-stat__label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark-2); margin-top: 4px; }

/* ── Baijiu page ── */
.baijiu-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.baijiu-flavor-grid { display: flex; flex-wrap: wrap; justify-content: center; column-gap: 24px; row-gap: 48px; }
.flavor-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-card); padding: 28px 24px; border-top: 3px solid var(--red); flex: 0 1 340px; max-width: 340px; }
.flavor-card h4 { font-size: 17px; margin-bottom: 6px; }
.flavor-card p { font-size: 14px; }

/* ── Key brands grid (homepage) ── */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.18s, transform 0.18s, border-color 0.18s;
}
.brand-pill:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); border-color: var(--dark); }
.brand-pill img { height: 52px; object-fit: contain; margin: 0 auto 12px; display: block; }
.brand-pill__name { font-size: 13px; font-weight: 700; color: var(--dark); }
.brand-pill__cn { font-family: var(--font-cn); font-size: 12px; color: var(--gray); }

/* ── Utility ── */
.divider-rule { width: 64px; height: 4px; background: var(--red); border: none; }
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ── */
@media (max-width: 1023px) {
  .container, .container--narrow { padding: 0 32px; }
  .util-bar__inner { padding: 0 32px; }
  .nav__inner { padding: 0 32px; }
  .breadth-grid { grid-template-columns: repeat(3, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .suppliers-card { grid-template-columns: 1fr; }
  .baijiu-intro { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  :root { --nav-h: 68px; }
  .util-bar { display: none; }
  .nav { top: 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile.open { display: flex; }
  .breadth-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-cards { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .baijiu-flavor-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .modal { grid-template-columns: 1fr; width: 100%; height: 100%; max-height: 100vh; border-radius: 0; }
  .modal__left { min-height: 240px; }
  .footer__inner { grid-template-columns: 1fr; }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; flex-direction: row; }
  .timeline-item .timeline-empty { display: none; }
  .timeline-dot { grid-column: 1; }
}

/* ── Chinese mode ── */
body.lang-zh [data-lang-en] { display: none !important; }
body:not(.lang-zh) [data-lang-zh] { display: none !important; }
[data-lang-zh] { font-family: var(--font-cn); }
