@font-face {
  font-family: 'Anton';
  src: url('/assets/fonts/anton.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Special Elite';
  src: url('/assets/fonts/special-elite.woff2') format('woff2');
  font-display: swap;
}

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

:root {
  --black: #050505;
  --bone:  #d8d2c5;
  --blood: #c1121f;
  --muted: #6a6a6a;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--bone);
  font-family: 'Special Elite', monospace;
  font-size: 1rem;
  line-height: 1.7;
  padding: 2rem 1.5rem 4rem;
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.legal-back {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: var(--bone);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.legal-back:hover { opacity: 1; color: var(--blood); }

h1 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.4rem;
}

.legal-sub {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(193,18,31,0.5);
}

p { margin-bottom: 1rem; }
ul, ol { margin: 0.5rem 0 1.2rem 1.4rem; }
li { margin-bottom: 0.4rem; }

a { color: var(--blood); }
a:hover { text-decoration: underline; }

strong { color: #fff; font-weight: 400; }
