/* ═══════════════════════════════════════════════════
   MODERNEAST Design System — Typography
   Cormorant Garamond (EN) + Noto Serif TC (CN heading) + Noto Sans TC (body)
   ═══════════════════════════════════════════════════ */

/* ── Tag / Label ── */
.tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: .35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* ── English Large Title ── */
.title-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: .05em;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--ink);
}

/* ── Chinese Large Title ── */
.title-lg {
  font-family: 'Noto Serif TC', serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.5;
  margin-bottom: var(--sp-md);
}

/* ── Section Title ── */
.title-md {
  font-family: 'Noto Serif TC', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  margin-bottom: var(--sp-sm);
}

/* ── Subtitle / Description ── */
.subtitle {
  font-size: 14px;
  color: var(--mute);
  line-height: 2;
  max-width: 520px;
}

/* ── Body Text ── */
.body-text {
  font-size: 14px;
  color: var(--mute);
  line-height: 2;
}

/* ── Meta / Small ── */
.meta {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: .1em;
  line-height: 1.8;
}

/* ── Divider ── */
.divider {
  width: 50px;
  height: 1px;
  background: var(--accent);
  margin: var(--sp-lg) 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Number Display (Cormorant) ── */
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--mute);
  letter-spacing: .15em;
  margin-top: var(--sp-sm);
}

/* ── Responsive Typography ── */
@media (max-width: 768px) {
  .title-en { font-size: 28px; }
  .title-lg { font-size: 24px; }
  .title-md { font-size: 18px; }
  .stat-number { font-size: 36px; }
  .tag { font-size: 11px; }
}
