As Seen On

Recognized By
Hate Crime Laws in Arizona: An Insight into the Legal Landscape By Tamou Law Group PLLC
In a society that values diversity, tolerance, and respect for individual rights, it’s disheartening when incidents arise that go against these core principles. One such breach of community harmony is hate crimes, offenses committed against a person or property which are motivated, in whole or part, by the offender’s bias against a race, religion, disability, sexual orientation, or ethnicity. In this post, we will delve into the hate crime laws in Arizona and understand their significance.
What Constitutes a Hate Crime in Arizona?
Arizona, unlike many states, does not have a standalone “hate crime” statute. Instead, the state handles such incidents by enhancing penalties for crimes where the victim was targeted due to bias. This means that if a person commits an offense like assault, and it is determined that the assault was motivated by prejudice, the penalty for that crime may be increased.The Arizona Revised Statutes (ARS) details numerous offenses where penalties may be enhanced if the crime was bias-motivated. For instance:
- ARS § 41-1750 (B)(15) mandates data collection on crimes that manifest evidence of prejudice based on race, religion, sexual orientation, gender, or disability.
- ARS § 13-701(D)(15) and ARS § 13-706 (F) both allow the courts to consider evidence of racial, color, religion, national origin, sexual orientation, gender or disability bias as an aggravating factor when sentencing for a felony. This can lead to a more severe penalty than if the crime had no bias motivation.
The Need for Hate Crime Laws
Some might wonder why there’s a need for enhancing penalties for bias-motivated crimes. The reason is simple: hate crimes don’t just affect the immediate victim; they send shockwaves throughout entire communities. When an individual is targeted because of their identity, it creates an environment of fear and mistrust, undermining community cohesion. By imposing stiffer penalties for such acts, the legal system sends a message that prejudice-driven violence is unacceptable and will be dealt with severely.
How are Hate Crimes Prosecuted in Arizona?
Given that Arizona does not have a specific hate crime statute, the process of prosecuting these crimes is somewhat unique. Prosecutors will first have to prove beyond a reasonable doubt the underlying crime (e.g., assault, vandalism). Then, they must show evidence that the offender was motivated by bias.Evidence of bias might include:
- The use of racial, religious, or derogatory slurs during the commission of the crime.
- Symbols of hate, such as swastikas or other hate group insignia, left at the crime scene.
- Any known affiliations the offender has with hate groups.
- Previous incidents or statements made by the offender that show a pattern of prejudice.
The Importance of Legal Counsel
If you or someone you know is a victim of a hate crime, it’s crucial to seek legal counsel immediately. Given the complexities surrounding hate crime prosecution in Arizona, having a knowledgeable lawyer by your side can make a significant difference in ensuring justice is served.Likewise, if you’re accused of a crime with an alleged bias motivation, having an attorney is paramount. The legal consequences of a conviction can be severe, especially when bias is considered an aggravating factor.
Contact Tamou Law Group PLLC
At Tamou Law Group PLLC, we deeply value the principles of justice and community harmony. If you have questions or need legal assistance concerning hate crime laws in Arizona or any other legal issue, do not hesitate to reach out. Call us today at 623-321-4699.
Awards & Recognition
Our recognition for Phoenix criminal defense defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix criminal defense lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Frequently Asked Questions
Is there a hate crime law in Arizona?
Arizona has no standalone hate crime statute. Instead, under A.R.S. 13-701(D)(15), committing an offense because of the victim’s race, religion, sexual orientation, gender, or disability is an aggravating factor that raises the sentence for the underlying crime.
What makes a crime a hate crime in Arizona?
A crime becomes a hate crime when the State proves it was motivated by bias against a victim’s protected characteristic, such as race, color, religion, national origin, sexual orientation, gender, or disability. The bias must be a real reason for the offense, not incidental.
How much can a hate crime add to a sentence in Arizona?
Bias motivation is an aggravating factor under A.R.S. 13-701, letting the judge sentence above the presumptive term for the underlying felony, up to the aggravated maximum. It does not create a separate charge, it makes the existing one worse.
What characteristics are protected under Arizona’s hate crime law?
Arizona’s bias aggravator covers race, color, religion, national origin, sexual orientation, gender, and disability. If the State proves the crime was motivated by bias against any of these, the sentencing enhancement applies.
Can you be charged with a hate crime for words alone in Arizona?
Generally no. Speech by itself is protected by the First Amendment. There must be an underlying crime, such as assault, threats, or criminal damage, and the bias motive then enhances the sentence for that crime.
Is a hate crime a felony in Arizona?
It depends on the underlying offense. The bias factor does not change the crime’s classification, so a hate-motivated assault or criminal damage is charged and graded as that crime, then sentenced more harshly because of the bias aggravator.
What is the difference between a state and federal hate crime?
Arizona treats bias as a sentencing aggravator on a state charge, while federal law (such as the Shepard-Byrd Act) creates standalone hate crime offenses. Serious or cross-jurisdictional cases can be prosecuted federally, with much harsher penalties.
How do you defend against a hate crime allegation in Arizona?
The defense attacks both the underlying charge and the alleged bias motive. Showing the offense was not motivated by the victim’s protected trait removes the aggravator and can lower the sentence. Call 623-321-4699, 24/7, for a free, confidential review.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






