/* Design tokens - set from templates/barbershop/_extracted/barbershop-hair-salon-html-template
   taxonomy.json anchors (vintage-Americana barbershop, muted taupe palette).
   Fonts swapped from the taxonomy's Latin faces (Prata/Lato/Work Sans) to
   Japanese-supporting Noto families since all copy on this site is in
   Japanese. */

:root {
  /* anchors.palette */
  --color-bg: #fcf9f5;
  --color-surface: #e9e4dc;
  --color-ink: #303133;
  --color-muted: #897666;
  --color-accent: #9e8a78;
  --color-accent-2: #222227;

  /* anchors.fonts - Noto Serif JP / Noto Sans JP stand in for Prata/Lato so
     Japanese glyphs render correctly; both keep a similar quiet, humanist
     character to the originals. */
  --font-display: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  --font-ui: "Noto Sans JP", "Hiragino Sans", sans-serif;

  /* anchors.type_scale_ratio */
  --type-scale: 1.35;
  --font-size-base: 1rem;
  --font-size-h1: calc(var(--font-size-base) * var(--type-scale) * var(--type-scale) * var(--type-scale));
  --font-size-h2: calc(var(--font-size-base) * var(--type-scale) * var(--type-scale));
  --font-size-h3: calc(var(--font-size-base) * var(--type-scale));

  /* anchors.corner_radius_px / shadow_depth / border_style */
  --radius: 0px;
  --shadow: 0 1px 3px rgba(34, 34, 39, 0.08);
  --shadow-md: 0 6px 24px rgba(34, 34, 39, 0.12);
  --border: 1px solid rgba(137, 118, 102, 0.35);

  /* anchors.layout_width */
  --content-width: 1320px;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  /* motion durations - motion dial: 2 (restrained, deliberate, not showy) */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 200ms;
  --dur-mid: 500ms;
  --dur-slow: 900ms;
}
