:root {
  color-scheme: dark;
  --black: #090607;
  --charcoal: #12090a;
  --panel: #211113;
  --panel-light: #2c171a;
  --crimson: #8b0000;
  --crimson-bright: #b41521;
  --gold: #d9b45b;
  --text: #f4ecec;
  --muted: #bda9ab;
  --line: #4b2023;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% -10%, rgba(139, 0, 0, 0.3), transparent 34rem),
    linear-gradient(180deg, var(--black), var(--charcoal));
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

a {
  color: var(--gold);
}

a:hover {
  color: #f2d98c;
}

.site-header,
footer {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.23em;
}

.brand:hover {
  color: white;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(3, 7px);
  grid-template-rows: repeat(3, 7px);
  gap: 2px;
}

.brand-mark span {
  border: 1px solid #5b292d;
  background: #190d0f;
}

.brand-mark .victim {
  border-color: var(--gold);
  background: var(--crimson);
  box-shadow: 0 0 10px rgba(180, 21, 33, 0.8);
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
}

main {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.hero {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

h1,
h2 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero .eyebrow {
  margin-bottom: 28px;
}

.hero-copy,
.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
}

.button.primary {
  border-color: var(--crimson-bright);
  background: var(--crimson);
  color: white;
}

.button.primary:hover {
  background: var(--crimson-bright);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 80px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.panel {
  min-height: 260px;
  padding: 38px;
  background: var(--panel);
}

.panel-number {
  margin-bottom: 55px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.panel h2,
.case-file h2,
.document-card h2 {
  font-size: 1.65rem;
}

.panel p,
.case-file p,
.document-card p,
.document-card li {
  color: var(--muted);
}

.case-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 100px;
  padding: 50px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(139, 0, 0, 0.17), transparent 55%),
    var(--panel);
}

.case-file h2 {
  margin: 12px 0 14px;
  font-size: 2.4rem;
}

.case-file p {
  max-width: 650px;
  margin-bottom: 0;
}

.case-stamp {
  min-width: 148px;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  transform: rotate(-3deg);
  color: var(--gold);
}

.case-stamp strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.case-stamp span {
  margin-top: 8px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.document {
  max-width: 860px;
  padding: 90px 0 110px;
}

.document > h1 {
  margin: 16px 0 16px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.effective-date {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 700;
}

.document .lead {
  margin-bottom: 48px;
}

.document-card {
  margin-top: 18px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.document-card h2 {
  margin-bottom: 14px;
}

.document-card p:last-child,
.document-card ul:last-child {
  margin-bottom: 0;
}

.contact-card .button {
  margin-top: 10px;
}

.legal-note {
  margin-top: 34px;
  color: #8f7c7e;
  font-size: 0.82rem;
}

footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  color: #8f7c7e;
  font-size: 0.82rem;
}

footer div {
  display: flex;
  gap: 20px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    padding: 85px 0;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .case-file {
    align-items: flex-start;
    flex-direction: column;
    padding: 34px;
  }

  .document {
    padding-top: 65px;
  }

  .document-card {
    padding: 25px 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 25px 0;
  }
}
