*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:   #0E0E0E;
  --coal:    #1E1E1E;
  --ash:     #2C2C2C;
  --muted:   #6B6B6B;
  --silver:  #A8A8A8;
  --offwhite:#F0EDE6;
  --white:   #FAFAF8;
  --fire:    #E85D24;
}
body {
  background: var(--black);
  color: var(--offwhite);
  font-family: 'Georgia', serif;
  line-height: 1.8;
  padding: 4rem 1.5rem 6rem;
}
.wrap { max-width: 720px; margin: 0 auto; }
.back {
  display: inline-block;
  margin-bottom: 3rem;
  color: var(--fire);
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.back:hover { text-decoration: underline; }
h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.updated {
  color: var(--muted);
  font-size: 0.875rem;
  font-family: 'Arial', sans-serif;
  margin-bottom: 3rem;
}
h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--offwhite);
  font-family: 'Arial', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
p { color: var(--silver); margin-bottom: 1rem; }
ul { color: var(--silver); padding-left: 1.5rem; margin-bottom: 1rem; }
ul li { margin-bottom: 0.4rem; }
a { color: var(--fire); }
a:hover { text-decoration: underline; }
hr { border: none; border-top: 1px solid var(--ash); margin: 2.5rem 0; }
.disclaimer-box {
  background: var(--coal);
  border-left: 3px solid var(--fire);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1rem 0 1.5rem;
}
.disclaimer-box p { margin: 0; font-size: 0.95rem; }
.contact-box {
  background: var(--coal);
  border: 1px solid var(--ash);
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.contact-box p { margin: 0; }
.legal-footer {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin-top: 2rem;
}
