/* ============================================================
   MONTEITH CONSTRUCTION — BASE LAYER
   Light element defaults + a few signature brand utility classes.
   Tokens live in tokens/*.css; this file only consumes them.
   ============================================================ */

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--red-100); color: var(--ink-900); }

a { color: var(--brand); text-decoration: none; }

/* --- Signature brand utilities --- */

/* Eyebrow / kicker — light, uppercase, wide tracking (logo voice) */
.mont-eyebrow {
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
/* Numbered section index, e.g. "01 / Who we are" */
.mont-index {
  font-family: var(--font-mono);
  font-size: var(--text-body-sm);
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
}
.mont-index b { color: var(--brand); font-weight: var(--weight-600, 600); }

/* Display headline — heavy, tight, often uppercase */
.mont-display {
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tighter);
  color: var(--text-strong);
  text-wrap: balance;
}

/* The red rule — a 3px brand underline used beneath headings/labels */
.mont-rule {
  display: block;
  width: 56px;
  height: var(--rule-accent);
  background: var(--brand);
  border: 0;
}

/* Mono metadata tag, e.g. CMAR / DESIGN-BUILD / $48M */
.mont-meta {
  font-family: var(--font-mono);
  font-size: var(--text-caption);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
