*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--body-size);
  line-height: var(--body-lh);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; text-transform: uppercase; }
h1 { font-size: var(--h1-size); line-height: var(--h1-lh); letter-spacing: var(--h1-ls); font-weight: var(--h1-weight); }
h2 { font-size: var(--h2-size); line-height: var(--h2-lh); letter-spacing: var(--h2-ls); font-weight: var(--h2-weight); }
h3 { font-size: var(--h3-size); line-height: var(--h3-lh); letter-spacing: var(--h3-ls); font-weight: var(--h3-weight); }
h4 { font-size: var(--h4-size); line-height: var(--h4-lh); letter-spacing: var(--h4-ls); font-weight: var(--h4-weight); }
p { margin: 0 0 var(--space-4); }
a { color: var(--text-link); text-decoration: none; transition: color var(--dur-1) var(--ease-standard); }
a:hover { color: var(--text-link-hover); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: var(--border-w-strong) solid var(--red-500); outline-offset: 2px;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; }
::selection { background: var(--red-100); color: var(--ink-900); }
.ff-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.ff-label { font-family: var(--font-condensed); font-size: var(--label-size); letter-spacing: var(--label-ls); font-weight: var(--label-weight); text-transform: uppercase; }
.ff-mono { font-family: var(--font-mono); font-size: var(--mono-size); letter-spacing: var(--mono-ls); }
/* Section heading with the FireFrame red rule under it */
.ff-section-title { font-family: var(--font-display); font-size: var(--h1-size); line-height: var(--h1-lh); text-transform: uppercase; font-weight: 600; padding-bottom: var(--space-3); position: relative; }
.ff-section-title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: var(--border-w-accent); background: var(--red-500); }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; } }
