/* ============================================================
   MARKS METALL — BASE ELEMENT DEFAULTS & PRIMITIVE UTILITIES
   Lightweight. Applies the dark theme to bare HTML and provides
   a few brand primitives (.mm-eyebrow, .mm-container, .mm-rule).
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  margin: 0;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); letter-spacing: var(--ls-normal); }

p { margin: 0 0 var(--space-4); }
a { color: var(--accent); text-decoration: none; transition: color var(--dur) var(--ease-out); }
a:hover { color: var(--accent-hover); }
strong { color: var(--text-strong); font-weight: var(--fw-bold); }
hr { border: none; border-top: 1px solid var(--hairline); margin: var(--space-8) 0; }
::selection { background: var(--accent); color: var(--white); }

/* Eyebrow / kicker — the brand's signature label */
.mm-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.mm-eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--accent);
  display: inline-block;
}

/* Display headline helper */
.mm-display {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-display-lg);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--text-strong);
  text-transform: uppercase;
}

.mm-container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.mm-container-wide { max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--gutter); }

/* Accent rule — short laser line used under headings */
.mm-rule { width: 56px; height: 3px; background: var(--accent); border: none; margin: var(--space-5) 0; }

/* Technical caption / spec text */
.mm-spec {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-mono);
  color: var(--text-muted);
}
