/* Chinese Homepage — uses Noto Serif SC + Inter (Latin fallback) */

.lang-zh {
  font-family: 'Inter', 'PingFang SC', 'Noto Sans SC', -apple-system, sans-serif;
}

.lang-zh .zh-h2,
.lang-zh h2 {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.lang-zh h1 {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.lang-zh p {
  font-family: 'Inter', 'PingFang SC', 'Noto Sans SC', sans-serif;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.lang-zh .product-card-name {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', serif;
}

/* Language switcher */
.lang-switch {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em;
  border: 1px solid var(--line);
  padding: 0.5rem 0.85rem !important;
  text-decoration: none !important;
  color: var(--ink) !important;
  background: var(--cream-light);
  transition: all 0.2s ease;
}
.lang-switch:hover {
  background: var(--ink);
  color: var(--cream-light) !important;
  border-color: var(--ink);
}

/* Hero */
.zh-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 9rem var(--gutter) 5rem;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 80vh;
}
.zh-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--ink);
  margin-bottom: 2rem;
}
.zh-hero h1 .accent {
  color: var(--accent);
  font-style: normal;
}
.zh-hero p {
  font-size: 1.0625rem;
  color: var(--ink);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

/* Sections */
.zh-section {
  padding: 6rem 0;
}
.zh-section .zh-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.zh-two-col {
  padding: 6rem var(--gutter);
}

/* Numbered editions */
.zh-numbered {
  padding: 7rem var(--gutter);
  background: var(--ink);
  color: var(--cream-light);
}
.zh-numbered .eyebrow { color: var(--tan); }
.zh-numbered-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.zh-numbered h2 {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  margin: 1rem 0 2rem;
  color: var(--cream-light);
  letter-spacing: 0.02em;
  line-height: 1.35;
}
.zh-numbered p {
  font-size: 1.0625rem;
  color: var(--tan);
  margin-bottom: 1.5rem;
  line-height: 1.85;
}
.zh-numbered .btn-text { color: var(--tan); }
.zh-numbered .btn-text:hover { color: var(--cream-light); }

/* Testimonials */
.zh-testimonials .testimonial-quote {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', serif;
}

/* CTA */
.zh-cta {
  padding: 8rem var(--gutter);
  text-align: center;
  background: var(--cream-light);
}
.zh-cta h2 {
  font-family: 'Noto Serif SC', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.zh-note {
  margin-top: 2rem !important;
  font-size: 0.875rem !important;
  color: var(--muted) !important;
  font-family: 'Noto Serif SC', serif;
  font-style: normal;
}

@media (max-width: 768px) {
  .zh-hero {
    grid-template-columns: 1fr;
    padding: 6rem var(--gutter) 4rem;
    gap: 2.5rem;
    min-height: auto;
  }
  .zh-section { padding: 4rem 0; }
  .zh-two-col {
    padding: 4rem var(--gutter);
    display: block;
  }
  .zh-two-col > div + div { margin-top: 2.5rem; }
  .zh-numbered { padding: 5rem var(--gutter); }
}
