/* ============================================================
   KHZ ART — P1 Display Type (Zodiak / Fontshare, self-hosted)
   index.html のみで読み込む試作。承認後に全ページへ横展開。
   ============================================================ */

@font-face {
  font-family: 'Zodiak';
  src: url('../assets/fonts/Zodiak-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Zodiak';
  src: url('../assets/fonts/Zodiak-LightItalic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Zodiak';
  src: url('../assets/fonts/Zodiak-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --display: 'Zodiak', 'Cormorant Garamond', 'Baskerville', 'Hiragino Mincho ProN', serif;
}

/* 欧文ディスプレイのみ。日本語見出し・本文は現行のまま */
.hero__title {
  font-family: var(--display);
  letter-spacing: -.03em;
}
/* サブページの page-hero も index.html の hero__title と同格の
   誌面級ディスプレイタイポに揃える（P1展開） */
.page-hero__title {
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 200px);
  line-height: .86;
  letter-spacing: -.03em;
}
.section-label {
  font-family: var(--display);
  font-weight: 400;
}
.footer__logo {
  font-family: var(--display);
  font-weight: 400;
}
