@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ============================================================
   LONGGUO BANQUET — UNIFIED STYLESHEET
   Premium Sauce Aroma Distillery · Maotai Town, Guizhou
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold:           #D4AF37;
  --gold-light:     #F1D592;
  --gold-dark:      #996515;
  --ink:            #0D0A06;
  --card-bg:        #16120D;
  --text-main:      #FDF8F0;
  --text-muted:     #A69580;
  --border:         rgba(212, 175, 55, 0.25);
  --shadow:         0 20px 50px rgba(0,0,0,0.5);
  --transition:     all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --shimmer:        linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  --white:          #FDF8F0;
  --dark:           #0D0A06;
  --text-inv:       #0D0A06;
  --primary:        #D4AF37;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', Georgia, serif;
  color: var(--text-main) !important;
  background: var(--ink) !important;
  line-height: 1.8;
}

.home-page {
  background: var(--ink);
  position: relative;
}

.home-page::before {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 1000px; height: 1000px;
  background: var(--shimmer);
  pointer-events: none;
  transform: translateY(-50%);
  z-index: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── CLEAN HERO ── */
.hero-clean {
  position: relative;
  aspect-ratio: 1920 / 880;
  margin-top: 80px;
  overflow: hidden;
}

.hero-clean .hc-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-clean .hc-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}

.hero-clean .hc-slide.active { opacity: 1; }

.hero-clean::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(13,10,6,0.28) 100%);
  z-index: 1;
  pointer-events: none;
}

.hc-dots {
  position: absolute;
  right: 40px; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(212,175,55,0.3);
  border: 1px solid rgba(212,175,55,0.65);
  cursor: pointer;
  transition: all .3s ease;
  padding: 0;
}

.hc-dot.active { background: var(--gold); transform: scale(1.5); }

.hc-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.8s;
}

.hc-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

/* ── PRODUCTS GRID — 4 columns ── */
.prod-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media(max-width: 1100px) { .prod-4 { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px) { .prod-4 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .prod-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── PRODUCTS GRID — 5 columns ── */
.prod-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media(max-width: 1250px) { .prod-5 { grid-template-columns: repeat(4, 1fr); } }
@media(max-width: 1000px) { .prod-5 { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px) { .prod-5 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .prod-5 { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ── NEWS GRID — 4 columns ── */
.news-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media(max-width: 1100px) { .news-4 { grid-template-columns: repeat(3, 1fr); } }
@media(max-width: 768px) { .news-4 { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .news-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.nc { background: var(--card-bg); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; transition: var(--transition); }
.nc:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(212,175,55,0.12); }
.nc img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; transition: transform .5s ease; }
.nc:hover img { transform: scale(1.05); }
.nc-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
@media(max-width: 480px) { .nc-body { padding: 10px; gap: 4px; } }
.nc-date { font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 2px; color: var(--gold); }
@media(max-width: 480px) { .nc-date { font-size: 9px; letter-spacing: 1px; } }
.nc-title { font-size: 13px; font-weight: 600; color: var(--text-main); line-height: 1.5; letter-spacing: .5px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; transition: color .3s; }
@media(max-width: 480px) { .nc-title { font-size: 11px; -webkit-line-clamp: 2; } }
.nc:hover .nc-title { color: var(--primary); }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,10,6,0.95) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.3) !important;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(13,10,6,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo:hover { opacity: 0.9; }

.logo-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--gold), #8b6400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 20px rgba(212,175,55,0.4);
  flex-shrink: 0;
}

.logo-text { display: flex; flex-direction: column; }

.logo-cn {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px; line-height: 1.2;
}

.logo-en {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: rgba(212,175,55,0.6);
  letter-spacing: 3px;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

nav a {
  color: rgba(255,255,255,0.85);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  white-space: nowrap;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%; height: 1px;
  background: var(--gold);
  transition: transform 0.3s ease;
}

nav a:hover,
nav a.active { color: var(--gold); }

nav a:hover::after,
nav a.active::after { transform: translateX(-50%) scaleX(1); }

.header-phone {
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1px;
  flex-shrink: 0;
  white-space: nowrap;
  margin-left: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(13,10,6,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(212,175,55,0.1);
  transition: all 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); padding-left: 8px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), #a07010);
  color: var(--text-inv);
  font-family: 'Cinzel', serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.3);
  clip-path: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center; justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  aspect-ratio: 1920 / 600;
  background: var(--ink);
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--shimmer);
  z-index: 1;
}

.page-banner-content { position: relative; z-index: 2; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  font-family: 'Cinzel', serif;
}

.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

.page-banner h1 {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  color: var(--white);
  letter-spacing: 8px; font-weight: 700;
}

.page-banner-line {
  width: 60px; height: 3px;
  background: var(--gold);
  margin-top: 20px;
}

/* ===== LOGO IMAGE ===== */
.logo-icon-img {
  height: 64px;
  min-width: 120px;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

header.scrolled .logo-icon-img {
  height: 48px;
}

/* ===== PAGE BANNER — logo watermark ===== */
.page-banner::before {
  content: '';
  position: absolute;
  right: 8%;
  width: 280px; height: 280px;
  background: url('https://www.longguoyan.com/_20191224/1514189302.png') center/contain no-repeat;
  opacity: 0.06;
  top: 50%; transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(0deg);
}

/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-slider {
  position: absolute; inset: 0;
  z-index: -2;
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.slider-dots {
  position: absolute;
  bottom: 100px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 12px;
  z-index: 3;
}

.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(212,175,55,0.4);
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(13,10,6,0.85) 100%);
  z-index: -1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 8px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 700; letter-spacing: 12px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #f0c84a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero-divider {
  width: 120px; height: 2px;
  background: var(--gold);
  margin: 32px auto;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.7s;
}

.hero-desc {
  font-size: 18px;
  color: rgba(232,224,213,0.7);
  line-height: 2; margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

.hero-actions {
  display: flex; gap: 24px;
  justify-content: center; flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 1.1s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 4px;
  color: var(--gold); text-align: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.5s;
}

.hero-scroll .scroll-line {
  width: 1px; height: 60px;
  background: var(--gold);
  margin: 0 auto 12px;
  position: relative;
}

.hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION HEADINGS ===== */
.section-head { text-align: center; margin-bottom: 64px; }

.section-en {
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 8px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; letter-spacing: 6px;
  color: var(--text-main); margin-bottom: 16px;
}

.section-line {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 0 auto;
}

.section-line::before,
.section-line::after {
  content: '';
  flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.section-line::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.section-line span { color: var(--gold); font-size: 18px; }

/* ===== PRODUCT CARDS — UPDATED WITH ALIGNMENT FIX ===== */
.products-section {
  padding: 120px 0;
  background: var(--ink);
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 800px; height: 800px;
  background: var(--shimmer);
  pointer-events: none;
  transform: rotate(180deg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: var(--transition);
  z-index: 1;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(212,175,55,0.15);
}

.product-card:hover::before { border-color: var(--gold); }

.product-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--card-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.product-img .img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 16px;
  background: linear-gradient(135deg, var(--ink), var(--card-bg));
}

.product-img .img-placeholder .placeholder-icon {
  font-size: 64px;
  opacity: 0.6;
}

.product-img .img-placeholder .placeholder-text {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(212,175,55,0.5);
  text-transform: uppercase;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-img img.missing { display: none; }

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

.product-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  padding: 4px 12px;
  z-index: 2;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  flex: 1;
}

@media(max-width: 480px) {
  .product-info { padding: 12px; }
}

.product-series {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media(max-width: 480px) {
  .product-series { font-size: 8px; letter-spacing: 2px; margin-bottom: 4px; }
}

.product-name {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 2px;
  margin-bottom: 10px;
  min-height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

@media(max-width: 480px) {
  .product-name { font-size: 13px; min-height: 36px; margin-bottom: 6px; letter-spacing: 1px; }
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: gap 0.3s ease, color 0.3s ease;
  margin-top: auto;
  padding-top: 8px;
}

.product-link:hover {
  gap: 14px;
  color: var(--gold-light);
}

/* ===== HERITAGE & STORY SECTION ===== */
.heritage-story {
  padding: 160px 0 120px;
  background: var(--ink) !important;
  color: var(--text-muted);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.heritage-story::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 800px; height: 800px;
  background: var(--shimmer);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap .main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--card-bg), var(--ink));
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-img-placeholder .placeholder-icon { font-size: 80px; opacity: 0.4; }
.about-img-placeholder .placeholder-text {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(212,175,55,0.4);
  text-transform: uppercase;
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), #6b4500);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid rgba(212,175,55,0.3);
}

.about-badge .years {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.about-badge .label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

.heritage-story .section-head { text-align: left; margin-bottom: 32px; }
.heritage-story .section-line { justify-content: flex-start; }
.heritage-story .section-line::before { display: none; }
.heritage-story .section-title { color: var(--text-main); }

.heritage-video-wrap {
  margin-top: 100px;
  padding-top: 80px;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.heritage-video-wrap .section-head { text-align: center; margin-bottom: 50px; }
.heritage-video-wrap .section-line { justify-content: center; }

.about-text {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.about-milestones {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.milestone { display: flex; gap: 20px; align-items: flex-start; }

.milestone-year {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 100px;
}

.milestone-text {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  border-left: 1px solid var(--border);
  padding-left: 20px;
  line-height: 1.6;
}

/* ===== NEWS SECTION ===== */
.news-section {
  padding: 120px 0;
  background: var(--ink);
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  background: var(--shimmer);
  pointer-events: none;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.news-featured {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}

.news-featured .img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--card-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.news-featured .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news-featured:hover .img-wrap img { transform: scale(1.05); }

.news-featured-body {
  padding: 28px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
}

.news-date {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}

.news-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-featured:hover .news-title { color: var(--gold); }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover { padding-left: 8px; background: rgba(212, 175, 55, 0.05); }

.news-item-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
}

.news-item-day {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.news-item-month {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-top: 4px;
}

.news-item-content { flex: 1; }

.news-item-title {
  font-size: 14px;
  color: var(--text-main);
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.news-item:hover .news-item-title { color: var(--gold); }

.news-item-arrow {
  color: var(--gold);
  font-size: 20px;
  transition: transform 0.3s ease;
  align-self: center;
  flex-shrink: 0;
}

.news-item:hover .news-item-arrow { transform: translateX(4px); }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding: 100px 0 80px;
  background-color: var(--ink) !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 60px;
  align-items: center;
}

.ft-content .section-en { color: var(--gold-light); }
.ft-content .section-title { color: var(--white); margin-bottom: 24px; text-align: left; }
.ft-content .section-line { justify-content: flex-start; margin: 0 0 32px; }
.ft-content .section-line::before { display: none; }

.ft-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 550px;
}

.ft-contact-social {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ft-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

@media(max-width: 480px) {
  .ft-social-links { gap: 10px; }
}

.ft-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: var(--transition);
}

@media(max-width: 480px) {
  .ft-social-link { padding: 10px; width: 44px; height: 44px; justify-content: center; }
  .ft-social-link svg { width: 20px; height: 20px; }
  .ft-social-link span { display: none; }
}

.ft-social-link:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.ft-contact-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.ft-phone {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 700;
}

.ft-qr-card {
  background: #fff;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  position: relative;
  max-width: 220px;
  margin: 0 auto;
}

@media(max-width: 480px) {
  .ft-qr-card { padding: 15px; max-width: 180px; }
}

.ft-qr-card img {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  border: 1px solid #eee;
}

@media(max-width: 480px) {
  .ft-qr-card img { width: 120px; height: 120px; margin-bottom: 8px; }
}

.ft-qr-label span {
  display: block;
  font-size: 14px;
  color: var(--ink);
  font-weight: 600;
}

@media(max-width: 480px) {
  .ft-qr-label span { font-size: 11px; }
}

.ft-qr-label span:last-child {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  color: var(--gold-dark);
  margin-top: 5px;
  letter-spacing: 1px;
}

.footer-main {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand .logo-cn {
  font-family: 'Noto Serif SC', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.footer-brand-text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-address {
  font-size: 13px;
  line-height: 1.8;
  font-style: normal;
  color: rgba(255,255,255,0.4);
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 15px; }

.footer-col ul li a {
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.3);
}

.footer-links { display: flex; gap: 30px; }
.footer-links a:hover { color: var(--gold); }

/* ===== PRODUCTS PAGE ===== */
.product-listing-page {
  background: var(--ink);
  position: relative;
}

.product-listing-page::before {
  content: '';
  position: absolute;
  top: 5%; right: -5%;
  width: 600px; height: 600px;
  background: var(--shimmer);
  pointer-events: none;
}

.products-page { padding: 80px 0 120px; }

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== ABOUT PAGE ===== */
.about-page-body {
  background: var(--ink);
  position: relative;
}

.about-page-body::before {
  content: '';
  position: absolute;
  top: 10%; left: -5%;
  width: 500px; height: 500px;
  background: var(--shimmer);
  pointer-events: none;
}

.about-page { padding: 80px 0 120px; }

.about-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-page-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.about-page-content h2 {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: var(--text-main);
  letter-spacing: 4px;
  margin-bottom: 24px;
}

.about-page-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* ===== NEWS PAGE ===== */
.news-listing-page {
  background: var(--ink);
  position: relative;
}

.news-listing-page::before {
  content: '';
  position: absolute;
  top: 10%; left: -5%;
  width: 500px; height: 500px;
  background: var(--shimmer);
  pointer-events: none;
}

.news-page { padding: 80px 0 120px; }

.news-page-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media(max-width: 1100px) {
  .news-page-list { grid-template-columns: repeat(3, 1fr); }
}

@media(max-width: 768px) {
  .news-page-list { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 480px) {
  .news-page-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.news-page-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: var(--transition);
}

.news-page-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(212,175,55,0.12);
}

.news-page-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink), var(--card-bg));
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-page-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-page-item:hover .news-page-img-wrap img { transform: scale(1.05); }

.news-page-content {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media(max-width: 480px) {
  .news-page-content { padding: 10px; gap: 4px; }
}

.news-page-date {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
}

@media(max-width: 480px) {
  .news-page-date { font-size: 9px; letter-spacing: 1px; }
}

.news-page-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  letter-spacing: .5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .3s;
}

@media(max-width: 480px) {
  .news-page-title { font-size: 11px; -webkit-line-clamp: 2; }
}

.news-page-item:hover .news-page-title { color: var(--gold); }

.news-page-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media(max-width: 480px) {
  .news-page-excerpt { display: none; }
}

/* ===== CONTACT PAGE ===== */
.contact-page-body {
  background: var(--ink);
  position: relative;
}

.contact-page-body::before {
  content: '';
  position: absolute;
  bottom: 10%; right: -5%;
  width: 500px; height: 500px;
  background: var(--shimmer);
  pointer-events: none;
  transform: rotate(180deg);
}

.contact-page { padding: 80px 0 120px; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-info-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-info-block h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--text-main);
  letter-spacing: 3px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), #8b6400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--text-main);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-info-text p {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.7;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-form h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: var(--text-main);
  letter-spacing: 3px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group label .required-mark { color: var(--gold); margin-left: 2px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-main);
  font-family: 'Noto Serif SC', serif;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  letter-spacing: 1px;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--gold);
}

.form-group .error-msg {
  display: none;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-top: 6px;
}

.form-group .error-msg.show { display: block; }
.form-group textarea { height: 140px; resize: vertical; }

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}

.form-success.show { display: block; }
.form-success .success-icon { font-size: 64px; margin-bottom: 20px; }
.form-success h4 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: var(--text-main);
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.8;
}

/* ===== COOPERATION PAGE ===== */
.cooperation-page {
  background: var(--ink);
  position: relative;
}

.cooperation-page::before {
  content: '';
  position: absolute;
  top: 15%; left: -5%;
  width: 600px; height: 600px;
  background: var(--shimmer);
  pointer-events: none;
}

.coop-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 60px 0;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
}

@media (max-width: 560px) {
  .benefit-card { padding: 20px 12px; }
  .benefit-title { font-size: 13px; margin-bottom: 8px; }
  .benefit-text { font-size: 11px; line-height: 1.5; }
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
}

.benefit-icon { font-size: 48px; margin-bottom: 20px; }

.benefit-title {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--text-main);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 14px;
}

.benefit-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  letter-spacing: 1px;
}

.steps {
  display: flex;
  gap: 0;
  margin: 60px 0;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 0;
}

.step { flex: 1; text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), #8b6400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 auto 20px;
}

.step-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--text-main);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-text {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

/* ===== CAREERS PAGE ===== */
.human-page {
  background: var(--ink);
  position: relative;
}

.human-page::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 600px; height: 600px;
  background: var(--shimmer);
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.value-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(212,175,55,0.08);
}

.value-icon { font-size: 44px; margin-bottom: 16px; }

.value-name {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--text-main);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  line-height: 1.7;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.job-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-bottom: none;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.job-item:last-child { border-bottom: 1px solid var(--border); }

.job-item:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--gold);
  padding-left: 40px;
}

.job-title {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  color: var(--text-main);
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.job-item:hover .job-title { color: var(--gold); }

.job-meta { display: flex; gap: 12px; flex-wrap: wrap; }

.job-tag {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  background: var(--ink);
  padding: 4px 12px;
  border: 1px solid var(--border);
  font-family: 'Cinzel', serif;
}

.job-arrow {
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.job-item:hover .job-arrow { transform: translateX(6px); }

/* ===== HONOR / AWARD CARDS ===== */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.honor-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.honor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.1);
  border-color: var(--gold);
}

.honor-icon { font-size: 48px; margin-bottom: 16px; }

.honor-name {
  font-size: 14px;
  color: var(--text-main);
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.5;
}

.honor-year {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn   { to { opacity: 1; } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: 0.1s; }
.rd2 { transition-delay: 0.2s; }
.rd3 { transition-delay: 0.3s; }
.rd4 { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 900px) {
  .products-grid, .products-page-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .about-page-grid, .news-grid, .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { bottom: -16px; right: 16px; }
  .coop-benefits { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .honor-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 32px; }
  .steps::before { display: none; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .ft-content .section-title { text-align: center; }
  .ft-content .section-line { justify-content: center; }
  .ft-desc { margin: 0 auto 40px; }
  .ft-social-links { justify-content: center; }
  .ft-contact-cta { justify-content: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; }
  .ft-qr-card { max-width: 200px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .products-grid, .products-page-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-strip .contact-inner { flex-direction: column; text-align: center; }
  .hero-title { letter-spacing: 6px; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .coop-benefits { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-clean {
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: unset;
  }
  .pd-main-img {
    aspect-ratio: 1 / 1;
    max-height: 400px;
  }
  .pd-thumb {
    aspect-ratio: 1 / 1;
  }
  .page-banner h1 { font-size: 24px; letter-spacing: 2px; }
  .page-banner { aspect-ratio: 3 / 2; height: auto; }
  .products-grid, .products-page-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .honor-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge {
    width: 90px; height: 90px;
    bottom: -10px; right: 5px;
  }
  .about-badge .years { font-size: 28px; }
  .about-badge .label { font-size: 8px; }
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section {
  padding: 100px 0;
  background: var(--ink);
}

.video-wrapper {
  margin: 60px auto 0;
  max-width: 900px;
  position: relative;
}

.video-poster {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  aspect-ratio: 16/9;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.video-poster:hover img { transform: scale(1.03); }

.video-overlay-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
  text-align: left;
}

.video-label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 6px;
}

.video-title-txt {
  display: block;
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.video-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(212,175,55,0.9);
  border: 3px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 10px rgba(212,175,55,0.25);
}

.play-btn:hover {
  background: var(--gold);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 16px rgba(212,175,55,0.2);
}

.play-icon {
  font-size: 24px;
  color: var(--white);
  margin-left: 5px;
  line-height: 1;
}

.brand-video {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  display: block;
  background: #000;
}

.video-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.vf-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--transition);
}

.vf-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.12);
}

.vf-icon { font-size: 32px; margin-bottom: 14px; }

.vf-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.vf-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

@media (max-width: 480px) {
  .video-features { grid-template-columns: 1fr; }
  .play-btn { width: 60px; height: 60px; }
  .play-icon { font-size: 18px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13,10,6,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.cookie-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }

.cookie-text p {
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.5px;
}

.cookie-text strong { color: var(--white); }

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-link:hover { color: var(--gold-light); }

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cookie-accept {
  background: var(--gold);
  color: var(--text-main);
  border-color: var(--gold);
  font-weight: 600;
}

.cookie-accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 768px) {
  .cookie-inner { flex-direction: column; gap: 18px; }
  .cookie-actions { width: 100%; justify-content: flex-end; }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page {
  padding: 140px 0 80px;
  background: #f8f8f8;
}

.legal-content {
  max-width: 900px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 42px 36px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.legal-content h1 { margin-bottom: 12px; }

.legal-meta {
  margin-bottom: 26px;
  color: #666;
}

.legal-content h2 {
  margin: 26px 0 10px;
  font-size: 1.28rem;
}

.legal-content p,
.legal-content li {
  line-height: 1.8;
  color: #333;
}

.legal-content ul {
  margin: 0;
  padding-left: 22px;
}

@media (max-width: 768px) {
  .legal-page { padding: 110px 0 54px; }
  .legal-content { padding: 30px 22px; }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail-page {
  background: var(--ink);
  position: relative;
}

.product-detail-page::before {
  content: '';
  position: absolute;
  top: 10%; right: -5%;
  width: 500px; height: 500px;
  background: var(--shimmer);
  pointer-events: none;
}

.pd-section {
  padding: 80px 0 100px;
  background: var(--ink);
}

.pd-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: flex-start;
  margin-bottom: 80px;
}

.pd-gallery { position: sticky; top: 100px; }

.pd-main-img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink);
  aspect-ratio: 4/5;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.pd-main-img:hover img { transform: scale(1.04); }

.pd-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--text-main);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  padding: 6px 14px;
  font-weight: 700;
}

.pd-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.pd-thumb {
  flex: 1;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease;
  background: none;
  padding: 0;
}

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

.pd-thumb:hover img { transform: scale(1.08); }
.pd-thumb.active { border-color: var(--gold); }
.pd-thumb:hover { border-color: rgba(212,175,55,0.6); }

.pd-series {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

.pd-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 6px;
}

.pd-name em {
  font-style: normal;
  font-size: 20px;
  color: var(--gold);
  display: block;
}

.pd-name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pd-divider {
  color: var(--gold);
  font-size: 16px;
  margin: 20px 0;
  letter-spacing: 8px;
}

.pd-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 30px;
}

.pd-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 30px;
}

.pd-spec {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pd-spec:nth-child(odd) { border-right: 1px solid var(--border); }
.pd-spec:nth-last-child(-n+2) { border-bottom: none; }

.pd-spec-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pd-spec-value {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pd-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pd-btn-enquire, .pd-btn-msg {
  flex: 1;
  text-align: center;
  min-width: 180px;
}

.pd-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-trust-item {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-tabs {
  margin-bottom: 80px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.pd-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  overflow-x: auto;
}

.pd-tab-btn {
  flex: 1;
  padding: 18px 24px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.pd-tab-btn:hover { color: var(--gold); }
.pd-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: var(--card-bg);
}

.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; }

.pd-tab-content { padding: 50px; }

.pd-tab-content h4 {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.pd-tab-content p {
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 18px;
}

.pd-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.pd-highlight {
  text-align: center;
  padding: 24px 16px;
  background: var(--ink);
  border: 1px solid var(--border);
}

.pd-hl-num {
  font-family: 'Cinzel', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.pd-hl-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1.5px;
}

.tasting-notes { display: flex; flex-direction: column; gap: 0; }

.tasting-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

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

.tasting-label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
}

.tasting-value {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.craft-steps { display: flex; flex-direction: column; gap: 0; }

.craft-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.craft-step:last-child { border-bottom: none; }

.craft-num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(212,175,55,0.3);
  flex-shrink: 0;
  width: 50px;
  line-height: 1;
  margin-top: 4px;
}

.craft-body strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--text-main);
  margin-bottom: 10px;
}

.craft-body p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.pairing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}

.pairing-item {
  padding: 24px;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: var(--transition);
}

.pairing-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.1);
}

.pairing-icon { font-size: 28px; margin-bottom: 12px; }

.pairing-item strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
}

.pairing-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.pd-related { margin-top: 20px; }

@media (max-width: 1024px) {
  .pd-top { grid-template-columns: 1fr; gap: 40px; }
  .pd-gallery { position: static; }
}

@media (max-width: 768px) {
  .pd-tab-content { padding: 30px 20px; }
  .pd-highlights { grid-template-columns: repeat(2, 1fr); }
  .pairing-grid { grid-template-columns: 1fr; }
  .tasting-row { grid-template-columns: 1fr; gap: 6px; }
  .pd-specs { grid-template-columns: 1fr; }
  .pd-spec:nth-child(odd) { border-right: none; }
  .pd-spec:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .pd-spec:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .pd-highlights { grid-template-columns: repeat(2, 1fr); }
  .pd-actions { flex-direction: column; }
}

/* ============================================================
   PERFORMANCE: lazy image fade-in
   ============================================================ */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded { opacity: 1; }
/* ── CHATBOT ── */
.ag-chat-open {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--text-main);
  border: none;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ag-chat-open:hover { transform: scale(1.1); background: var(--gold-light); }

.ag-chat-window {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  height: 500px;
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  z-index: 1001;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  overflow: hidden;
}
.ag-chat-window.hidden { display: none; }

.ag-chat-header {
  padding: 15px 20px;
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ag-chat-title { font-family: 'Cinzel', serif; font-size: 14px; color: var(--gold); font-weight: 600; }
.ag-chat-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; }

.ag-chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.msg { max-width: 85%; padding: 10px 15px; border-radius: 8px; font-size: 14px; line-height: 1.5; }
.msg.user { align-self: flex-end; background: var(--gold); color: var(--text-main); }
.msg.bot { align-self: flex-start; background: var(--card-bg); color: var(--text-muted); border: 1px solid var(--border); }
.msg.bot p { margin-bottom: 8px; }
.msg.bot p:last-child { margin-bottom: 0; }

.ag-chat-input-area {
  padding: 15px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
}
.ag-chat-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
  outline: none;
}
.ag-chat-send { background: var(--gold); color: var(--text-main); border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; font-family: 'Cinzel', serif; font-size: 12px; }

.ag-chat-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 5px; }
.ag-chat-opt-btn { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 5px 10px; border-radius: 20px; font-size: 11px; cursor: pointer; transition: 0.3s; }
.ag-chat-opt-btn:hover { background: var(--gold); color: var(--text-main); }

@media (max-width: 480px) {
  .ag-chat-window { width: calc(100% - 40px); right: 20px; bottom: 90px; }
}

/* ── FORMSPREE STATES ── */
[data-fs-success], [data-fs-error] {
  display: none;
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

[data-fs-success]:not(:empty) {
  display: block;
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border: 1px solid rgba(46, 204, 113, 0.3);
}

[data-fs-error]:not(:empty) {
  display: block;
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.form-field-error {
  color: #e74c3c;
  font-size: 11px;
  margin-top: 4px;
  display: block;
}

[aria-invalid="true"] {
  border-color: #e74c3c !important;
}
