/* ============================================================
   BASE — Kizuna Japan Travel
   Light resets + helpful brand utility classes. Components use
   tokens directly; these classes are for cards, kits & docs.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: rgba(199, 162, 78, 0.30); color: var(--ivory); }

/* ---- Brand utility classes ---- */
.kz-eyebrow {
  font-family: var(--font-brand);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
}

.kz-display {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  color: var(--text-primary);
}

.kz-hero {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-hero);
}

.kz-gold-text { color: var(--gold); }

/* Thin gold rule used as a section flourish */
.kz-rule {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: 0;
}
.kz-rule--center {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
