/* ============================================================
   TAURIST — base element defaults + a few utility primitives.
   Kept intentionally light; components own their own styling.
   ============================================================ */
:root {
  color-scheme: dark;
}

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-md);
  line-height: var(--lh-md);
  letter-spacing: var(--ls-md);
  color: var(--text-on-dark);
  background: var(--surface-base);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* The brand wordmark — always Audiowide, slightly loose tracking */
.taurist-wordmark {
  font-family: var(--font-logo);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/* Spectrum text — clip the signature gradient onto type */
.taurist-spectrum-text {
  background: var(--gradient-spectrum);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Eyebrow / overline label */
.taurist-eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-on-dark-soft);
}

::selection {
  background: var(--red-600);
  color: #fff;
}
