:root {
  --forest-deep: #1A2E1A;
  --forest-mid: #2D4A2D;
  --tea-green: #5A7D5A;
  --tea-light: #8FBC8F;
  --earth-brown: #8B6F47;
  --rice-paper: #F7F3EC;
  --warm-cream: #FDFBF7;
  --charcoal: #2C2C2C;
  --stone: #6B6560;
  --mist: #E8E2D9;
  --gold-muted: #C4A35A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Noto Sans SC', 'Inter', sans-serif;
  color: var(--charcoal);
  background-color: var(--rice-paper);
  overflow-x: hidden;
  line-height: 1.75;
}

/* ===== Language switching ===== */
.txt-en { display: none; }
body.lang-en .txt-zh { display: none; }
body.lang-en .txt-en { display: inline; }
body.lang-en .block-zh { display: none; }
body.lang-en .block-en { display: block; }
.block-en { display: none; }

/* ===== Navigation ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 72px;
  background: rgba(26,46,26,0.95);
  backdrop-filter: blur(12px);
  transition: all 0.5s ease;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 8px; color: var(--rice-paper); text-decoration: none; }
.nav-logo .logo-cn { font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 600; }
.nav-logo .logo-en { font-family: 'Playfair Display', serif; font-size: 14px; opacity: 0.8; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  color: rgba(247,243,236,0.7); text-decoration: none; font-size: 14px;
  position: relative; transition: color 0.3s;
}
.nav-links a:hover { color: var(--rice-paper); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--tea-green); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-lang { display: flex; align-items: center; gap: 4px; }
.nav-lang button {
  background: none; border: none; cursor: pointer; font-size: 14px;
  color: rgba(247,243,236,0.5); transition: color 0.3s; padding: 4px 8px;
}
.nav-lang button:hover, .nav-lang button.active { color: var(--gold-muted); }
.nav-lang button.active { border-bottom: 1px solid var(--gold-muted); }
.nav-lang span { color: rgba(247,243,236,0.3); font-size: 14px; }

.nav-cta {
  display: inline-flex; align-items: center; padding: 8px 20px;
  border: 1px solid rgba(247,243,236,0.6); color: var(--rice-paper);
  text-decoration: none; font-size: 14px; transition: all 0.3s;
}
.nav-cta:hover { background: var(--rice-paper); color: var(--forest-deep); }

.mobile-toggle { display: none; color: var(--rice-paper); background: none; border: none; cursor: pointer; }

.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 40; background: var(--forest-deep);
  padding-top: 72px; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a { color: var(--rice-paper); text-decoration: none; font-size: 24px; font-family: 'Noto Serif SC', serif; }
.mobile-overlay a:hover { color: var(--tea-green); }
.mobile-lang { display: flex; gap: 16px; }
.mobile-lang button { background: none; border: none; color: var(--rice-paper); cursor: pointer; font-size: 18px; }
.mobile-lang button.active { color: var(--gold-muted); }

/* ===== Hero Section ===== */
.hero {
  position: relative; width: 100%; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  transform: scale(1.05);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0; background: rgba(26,46,26,0.45);
}

.hero-mist {
  position: absolute; inset: 0; z-index: 10;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(247,243,236,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 30% 90%, rgba(247,243,236,0.25) 0%, transparent 60%);
  animation: mistDrift 12s ease-in-out infinite alternate;
}

.hero-canopy {
  position: absolute; top: 0; left: 0; width: 100%; height: 35%; z-index: 15; opacity: 0.85;
  pointer-events: none;
}

.hero-leaves { position: absolute; inset: 0; z-index: 20; pointer-events: none; }

.hero-content {
  position: relative; z-index: 30; text-align: center; max-width: 800px; padding: 0 24px;
}

.hero-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(247,243,236,0.8); margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.hero-label::before, .hero-label::after {
  content: ''; width: 16px; height: 1px; background: var(--tea-green);
}

.hero-title {
  font-family: 'Noto Serif SC', 'Playfair Display', serif;
  font-size: clamp(40px, 8vw, 72px); font-weight: 700;
  color: var(--rice-paper); line-height: 1.1; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 3vw, 22px); color: rgba(247,243,236,0.85);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.6;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border: 1.5px solid var(--tea-green); color: var(--tea-green);
  background: transparent; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); cursor: pointer;
}
.btn-primary:hover { background: var(--tea-green); color: var(--rice-paper); }

.btn-primary-light {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border: 1.5px solid rgba(247,243,236,0.6); color: var(--rice-paper);
  background: transparent; text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); cursor: pointer;
}
.btn-primary-light:hover { background: var(--rice-paper); color: var(--forest-deep); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; background: var(--tea-green); color: var(--rice-paper);
  text-decoration: none; border: none;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); cursor: pointer;
}
.btn-secondary:hover { background: var(--forest-mid); }

/* ===== Common sections ===== */
.section-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--tea-green); font-weight: 500;
  display: flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 16px; height: 1px; background: var(--tea-green); }
.section-label.center { justify-content: center; }

.section-title {
  font-family: 'Noto Serif SC', 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 600;
  color: var(--forest-deep); line-height: 1.2;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Origin Section ===== */
.origin-section { padding: 100px 0; background: var(--rice-paper); }
.origin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.origin-img-main { border-radius: 4px; width: 100%; box-shadow: 0 10px 40px rgba(0,0,0,0.1); }
.origin-img-secondary {
  position: absolute; bottom: -32px; right: -24px;
  width: 220px; border-radius: 4px; border: 4px solid var(--rice-paper);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.origin-img-wrap { position: relative; }
.origin-caption { margin-top: 48px; font-size: 14px; color: var(--stone); font-style: italic; }
.origin-text p { color: var(--charcoal); opacity: 0.8; margin-bottom: 16px; line-height: 1.8; }
.origin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--mist); }
.origin-stat-value { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--forest-mid); }
.origin-stat-label { font-size: 12px; color: var(--stone); margin-top: 4px; }

/* ===== Story Section ===== */
.story-section { padding: 120px 0; background: var(--forest-deep); position: relative; overflow: hidden; }
.story-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5C20 5 10 15 10 25s10 20 20 20 20-10 20-20S40 5 30 5zm0 5c8 0 15 7 15 15s-7 15-15 15-15-7-15-15S22 10 30 10z' fill='%235A7D5A' fill-opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.story-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; padding: 0 24px; }
.story-quote-icon { width: 48px; height: 48px; color: rgba(90,125,90,0.3); margin: 0 auto 24px; }
.story-quote { font-family: 'Noto Serif SC', 'Playfair Display', serif; font-size: 18px; font-style: italic; color: rgba(247,243,236,0.9); line-height: 1.8; margin-bottom: 32px; }
.story-text { color: rgba(247,243,236,0.7); line-height: 1.8; max-width: 600px; margin: 0 auto 32px; }
.story-signature { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--tea-light); font-size: 14px; letter-spacing: 1px; }
.story-signature::before, .story-signature::after { content: ''; width: 32px; height: 1px; background: rgba(90,125,90,0.4); }
.story-img { max-width: 600px; margin: 48px auto 0; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

/* ===== Terroir Section ===== */
.terroir-section { padding: 100px 0; background: var(--warm-cream); }
.terroir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.terroir-card { background: var(--rice-paper); padding: 40px; border-radius: 4px; transition: all 0.4s; }
.terroir-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.terroir-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--forest-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--rice-paper); }
.terroir-card h3 { font-family: 'Noto Serif SC', serif; font-size: 20px; font-weight: 600; color: var(--forest-deep); margin-bottom: 12px; }
.terroir-card p { font-size: 14px; color: var(--charcoal); opacity: 0.7; line-height: 1.8; }
.terroir-card .divider { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--mist); width: 32px; height: 2px; background: rgba(90,125,90,0.4); }

/* ===== Products Section ===== */
.products-section { padding: 100px 0; background: var(--rice-paper); }
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; margin-top: 48px; }
.product-card { display: block; text-decoration: none; }
.product-img-wrap { overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; margin-bottom: 20px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img-wrap img { transform: scale(1.03); }
.product-badge { display: inline-block; padding: 4px 12px; background: var(--forest-deep); color: var(--rice-paper); font-size: 12px; border-radius: 2px; margin-bottom: 12px; }
.product-card h3 { font-family: 'Noto Serif SC', serif; font-size: 20px; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; transition: color 0.3s; }
.product-card:hover h3 { color: var(--tea-green); }
.product-card .desc { font-size: 14px; color: var(--charcoal); opacity: 0.7; line-height: 1.7; margin-bottom: 8px; }
.product-card .specs { font-size: 12px; color: var(--stone); }
.product-card .note { font-size: 14px; color: var(--tea-green); font-weight: 500; margin-top: 12px; }

/* ===== Wholesale Section ===== */
.wholesale-section { padding: 100px 0; background: var(--forest-deep); }
.wholesale-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.wholesale-section h2 { font-family: 'Noto Serif SC', serif; font-size: 32px; font-weight: 600; color: var(--rice-paper); margin-bottom: 20px; }
.wholesale-section p { color: rgba(247,243,236,0.7); line-height: 1.8; margin-bottom: 24px; }
.wholesale-bullets { list-style: none; margin-bottom: 32px; }
.wholesale-bullets li { display: flex; align-items: flex-start; gap: 12px; color: rgba(247,243,236,0.8); margin-bottom: 16px; font-size: 15px; }
.wholesale-bullets li svg { width: 20px; height: 20px; color: var(--tea-green); flex-shrink: 0; margin-top: 2px; }
.wholesale-badges { display: flex; gap: 24px; }
.wholesale-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.wholesale-badge .badge-circle { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(90,125,90,0.3); display: flex; align-items: center; justify-content: center; }
.wholesale-badge .badge-circle svg { width: 20px; height: 20px; color: var(--tea-green); }
.wholesale-badge span { font-size: 12px; color: rgba(247,243,236,0.6); text-align: center; }
.wholesale-img { position: relative; }
.wholesale-img img { border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); width: 100%; }
.wholesale-float-card {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--rice-paper); padding: 20px; border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); max-width: 220px;
}
.wholesale-float-card h4 { font-family: 'Noto Serif SC', serif; font-size: 14px; font-weight: 600; color: var(--forest-deep); margin-bottom: 4px; }
.wholesale-float-card p { color: var(--tea-green); font-size: 12px; font-weight: 500; margin: 0; }

/* ===== Contact Section ===== */
.contact-section { padding: 100px 0; background: var(--rice-paper); }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; }
.contact-card { background: var(--warm-cream); padding: 32px; border-radius: 4px; transition: all 0.4s; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.contact-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--forest-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--rice-paper); }
.contact-card h3 { font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 600; color: var(--forest-deep); margin-bottom: 12px; }
.contact-card .contact-value { color: var(--tea-green); font-size: 16px; text-decoration: none; transition: color 0.3s; }
.contact-card .contact-value:hover { color: var(--forest-mid); }
.contact-card .qr-placeholder { width: 128px; height: 128px; background: var(--mist); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 12px; }
.contact-card .qr-placeholder svg { width: 32px; height: 32px; color: var(--stone); margin-bottom: 8px; }
.contact-card .qr-placeholder span { font-size: 12px; color: var(--stone); }
.contact-info-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-row .info-icon { width: 40px; height: 40px; border-radius: 50%; background: rgba(26,46,26,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--tea-green); }
.contact-info-row h4 { font-weight: 500; color: var(--forest-deep); margin-bottom: 4px; font-size: 15px; }
.contact-info-row p { color: var(--charcoal); opacity: 0.7; font-size: 14px; }

.contact-banner {
  margin-top: 40px; background: var(--forest-deep); padding: 40px; border-radius: 4px; text-align: center;
}
.contact-banner h3 { font-family: 'Noto Serif SC', serif; font-size: 22px; color: var(--rice-paper); margin-bottom: 12px; }
.contact-banner p { color: rgba(247,243,236,0.7); margin-bottom: 24px; font-size: 15px; }

/* ===== Footer ===== */
footer { background: var(--forest-deep); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
footer .footer-logo { display: flex; align-items: center; gap: 8px; color: var(--rice-paper); text-decoration: none; margin-bottom: 16px; }
footer .footer-logo .logo-cn { font-family: 'Noto Serif SC', serif; font-size: 18px; font-weight: 600; }
footer .footer-logo .logo-en { font-family: 'Playfair Display', serif; font-size: 14px; opacity: 0.8; }
footer p { color: rgba(247,243,236,0.6); font-size: 14px; margin-bottom: 8px; }
footer p.small { font-size: 12px; color: rgba(247,243,236,0.4); }
footer h4 { color: var(--rice-paper); font-size: 14px; font-weight: 500; margin-bottom: 16px; letter-spacing: 1px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 12px; }
footer ul li a { color: rgba(247,243,236,0.6); text-decoration: none; font-size: 14px; transition: color 0.3s; }
footer ul li a:hover { color: var(--tea-green); }
footer .qr-small { width: 80px; height: 80px; background: rgba(232,226,217,0.2); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
footer .qr-small svg { width: 32px; height: 32px; color: rgba(247,243,236,0.3); }
.footer-bottom { border-top: 1px solid rgba(247,243,236,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 12px; color: rgba(247,243,236,0.3); }
.footer-bottom a { display: flex; align-items: center; gap: 8px; color: rgba(247,243,236,0.5); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--tea-green); }

/* ===== Product Detail Page ===== */
.pd-hero { padding: 100px 0; background: var(--warm-cream); border-bottom: 1px solid var(--mist); }
.pd-breadcrumb { padding: 16px 0; background: var(--warm-cream); border-bottom: 1px solid var(--mist); font-size: 14px; color: var(--stone); }
.pd-breadcrumb a { color: var(--stone); text-decoration: none; transition: color 0.3s; }
.pd-breadcrumb a:hover { color: var(--tea-green); }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.pd-main-img { border-radius: 4px; width: 100%; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.pd-thumb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.pd-thumb-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 4px; }
.pd-specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.pd-spec { background: var(--rice-paper); padding: 16px; border-radius: 4px; }
.pd-spec .label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--stone); margin-bottom: 4px; }
.pd-spec .value { font-weight: 600; color: var(--forest-deep); font-size: 16px; }
.pd-inquiry-box { background: var(--forest-deep); padding: 24px; border-radius: 4px; color: var(--rice-paper); margin-bottom: 32px; }
.pd-inquiry-box h4 { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.pd-inquiry-box p { color: rgba(247,243,236,0.7); font-size: 14px; margin-bottom: 16px; }
.pd-features { list-style: none; }
.pd-features li { display: flex; align-items: flex-start; gap: 12px; color: var(--charcoal); opacity: 0.8; margin-bottom: 12px; font-size: 14px; }
.pd-features li svg { width: 20px; height: 20px; color: var(--tea-green); flex-shrink: 0; margin-top: 2px; }

.brew-guide { padding: 80px 0; background: var(--rice-paper); }
.brew-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.brew-step { background: var(--warm-cream); padding: 32px; border-radius: 4px; text-align: center; }
.brew-step .step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--forest-deep); color: var(--rice-paper); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; margin: 0 auto 16px; }
.brew-step h3 { font-family: 'Noto Serif SC', serif; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; font-size: 16px; }
.brew-step p { color: var(--stone); font-size: 14px; }

.related-products { padding: 64px 0; background: var(--warm-cream); }
.related-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { text-decoration: none; }
.related-card .img-wrap { overflow: hidden; border-radius: 4px; aspect-ratio: 4/3; margin-bottom: 12px; }
.related-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.related-card:hover .img-wrap img { transform: scale(1.05); }
.related-card .badge { display: inline-block; padding: 2px 8px; background: var(--forest-deep); color: var(--rice-paper); font-size: 11px; border-radius: 2px; margin-bottom: 6px; }
.related-card h4 { font-family: 'Noto Serif SC', serif; font-size: 14px; color: var(--forest-deep); transition: color 0.3s; }
.related-card:hover h4 { color: var(--tea-green); }

/* ===== Blog/Xunmi Page ===== */
.xunmi-header { padding: 120px 0 80px; background: var(--forest-deep); text-align: center; }
.xunmi-header h1 { font-family: 'Noto Serif SC', serif; font-size: clamp(32px, 5vw, 48px); font-weight: 600; color: var(--rice-paper); margin-bottom: 16px; }
.xunmi-header p { color: rgba(247,243,236,0.7); max-width: 600px; margin: 0 auto; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; padding: 64px 0; }
.blog-card { display: block; background: var(--warm-cream); border-radius: 4px; overflow: hidden; text-decoration: none; transition: all 0.4s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.blog-card .blog-img { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-card .blog-body { padding: 24px; }
.blog-card .blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 12px; }
.blog-card .blog-meta .cat { display: flex; align-items: center; gap: 4px; color: var(--tea-green); }
.blog-card .blog-meta .date { display: flex; align-items: center; gap: 4px; color: var(--stone); }
.blog-card h3 { font-family: 'Noto Serif SC', serif; font-size: 17px; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; line-height: 1.4; transition: color 0.3s; }
.blog-card:hover h3 { color: var(--tea-green); }
.blog-card .blog-excerpt { font-size: 14px; color: var(--charcoal); opacity: 0.65; line-height: 1.7; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card .read-more { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: var(--tea-green); transition: gap 0.3s; }
.blog-card:hover .read-more { gap: 8px; }

/* ===== Blog Detail ===== */
.article-header { position: relative; height: 55vh; min-height: 400px; overflow: hidden; }
.article-header img { width: 100%; height: 100%; object-fit: cover; }
.article-header::after { content: ''; position: absolute; inset: 0; background: rgba(26,46,26,0.55); }
.article-header-content { position: absolute; inset: 0; display: flex; align-items: flex-end; z-index: 2; }
.article-header-inner { max-width: 800px; margin: 0 auto; padding: 0 24px 48px; width: 100%; }
.article-header-inner a { display: inline-flex; align-items: center; gap: 4px; color: rgba(247,243,236,0.7); text-decoration: none; font-size: 14px; margin-bottom: 16px; transition: color 0.3s; }
.article-header-inner a:hover { color: var(--rice-paper); }
.article-header-inner h1 { font-family: 'Noto Serif SC', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--rice-paper); margin-bottom: 16px; line-height: 1.2; }
.article-meta { display: flex; gap: 20px; color: rgba(247,243,236,0.7); font-size: 14px; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 6px; }

.article-body { max-width: 700px; margin: 0 auto; padding: 64px 24px; }
.article-body h2 { font-family: 'Noto Serif SC', serif; font-size: 24px; font-weight: 600; color: var(--forest-deep); margin: 48px 0 20px; }
.article-body p { color: var(--charcoal); opacity: 0.8; line-height: 1.9; margin-bottom: 20px; font-size: 15px; }
.article-body blockquote {
  border-left: 3px solid var(--tea-green); padding-left: 24px; margin: 32px 0;
  font-family: 'Noto Serif SC', serif; font-size: 18px; font-style: italic; color: var(--forest-deep); opacity: 0.85; line-height: 1.7;
}
.article-cta { background: var(--warm-cream); padding: 40px; border-radius: 4px; text-align: center; margin-top: 48px; }
.article-cta h3 { font-family: 'Noto Serif SC', serif; font-size: 20px; font-weight: 600; color: var(--forest-deep); margin-bottom: 12px; }
.article-cta p { color: var(--stone); margin-bottom: 24px; }
.article-cta .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Animations ===== */
@keyframes mistDrift {
  0% { transform: translateX(-2%) translateY(0); opacity: 0.6; }
  100% { transform: translateX(2%) translateY(-1%); opacity: 0.9; }
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 30;
  animation: bounceSubtle 2s ease-in-out infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; color: rgba(247,243,236,0.5); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .origin-grid, .wholesale-grid, .pd-grid, .contact-grid { grid-template-columns: 1fr; }
  .terroir-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-lang, .nav-cta { display: none; }
  .mobile-toggle { display: block; }
  .terroir-grid, .blog-grid, .related-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .origin-img-secondary { display: none; }
  .brew-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .wholesale-float-card { left: 16px; bottom: -16px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
