/* 丹 (DAHN) — Brand Tokens */
/* 동양적 정갈함 × 비비드 원색 대비 */

:root {
  /* Primary — 주사홍(朱砂 vermillion). 이 브랜드의 심장. */
  --dahn-vermillion: #E63419;
  --dahn-vermillion-deep: #B21F0C;
  --dahn-vermillion-ink: #7A1607;

  /* Ink — 먹(墨). 진짜 검정이 아니라 먹빛. */
  --dahn-ink: #16110E;
  --dahn-ink-soft: #2A2320;

  /* Paper — 한지(韓紙). 시린 흰색 아님. */
  --dahn-paper: #F4EFE6;
  --dahn-paper-warm: #EAE1D0;

  /* Accent 비비드 — 볼드니스 10. 각각 단독으로 쓰임. */
  --dahn-celadon: #1E5C6B;      /* 유청(釉靑) — 청자 */
  --dahn-gardenia: #E8B923;     /* 치자(梔子) — 짙은 골드 옐로우 */
  --dahn-plum: #6B1E3F;         /* 자두(紫) — 심홍자 */
  --dahn-jade: #2F6B3A;         /* 옥(玉) — 짙은 녹 */

  /* Type — 시안별로 다른 페어링 (아래 3세트) */

  /* 시안 1 · Seal — 전통 · 정갈 */
  --font-hanja-seal: "Ma Shan Zheng", "Noto Serif KR", serif;
  --font-latin-seal: "Playfair Display", serif;

  /* 시안 2 · Monolith — 모던 프리미엄 */
  --font-hanja-mono: "Noto Serif KR", serif;
  --font-latin-mono: "Bodoni Moda", "Didot", serif;

  /* 시안 3 · Ink Bloom — 실험 · 발묵 × 산세리프 대비 */
  --font-hanja-bloom: "ZCOOL KuaiLe", "Noto Serif KR", serif;
  --font-latin-bloom: "Space Grotesk", sans-serif;

  /* 브랜드 시스템 카드용 (기본 폴백) */
  --font-hanja: "Noto Serif KR", serif;
  --font-latin-display: "Playfair Display", serif;
  --font-latin-body: "Playfair Display", serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

/* 한지 배경 — 실사 텍스처 */
.dahn-hanji {
  background-color: var(--dahn-paper);
  background-image: url("assets/hanji-paper.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* 한지 배경 — 같은 텍스처를 opacity로 미묘하게 */
.dahn-hanji-soft {
  position: relative;
  background-color: var(--dahn-paper);
  isolation: isolate;
}
.dahn-hanji-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/hanji-paper.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.dahn-hanji-soft > * { position: relative; z-index: 1; }
