* {
  box-sizing: border-box;
}

:root {
  --bg: #080808;
  --card: #111;
  --card-strong: #171717;
  --text: #f5f1eb;
  --muted: #b9afa5;
  --dim: #7f7770;
  --accent: #c61018;
  --border: #2a2522;
  --shadow: rgba(0, 0, 0, 0.28);
}

html {
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 0%, rgba(198, 16, 24, 0.2), transparent 32rem),
    linear-gradient(180deg, #0d0b0a 0%, var(--bg) 42rem);
}

a {
  color: #ff6268;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.hero {
  padding: 48px 0 34px;
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.updated {
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 0.95rem;
}

.card {
  margin: 22px 0;
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(145deg, var(--card), var(--card-strong));
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px var(--shadow);
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
}

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

ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

ol {
  margin: 0 0 14px;
  padding-left: 22px;
  color: var(--muted);
}

li {
  margin: 8px 0;
}

strong {
  color: var(--text);
  font-weight: 600;
}

.contact-card {
  border-color: rgba(198, 16, 24, 0.6);
}

.legal-links {
  margin-top: 18px;
}

.site-footer {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--dim);
  font-size: 0.92rem;
}

button {
  padding: 10px 18px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

button:hover {
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 920px);
    padding-top: 26px;
  }

  .hero {
    padding: 34px 0 24px;
  }

  .site-footer {
    width: min(100% - 24px, 920px);
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  body {
    background: #fff;
    color: #111;
  }

  .page-shell,
  .site-footer {
    width: 100%;
  }

  .card {
    break-inside: avoid;
    box-shadow: none;
    border-color: #ccc;
  }

  button {
    display: none;
  }
}
