:root {
  --ink: #080604;
  --gold: #e6a83b;
  --amber: #ffcf6e;
  --red: #bb261f;
  --cream: #fff4df;
  --muted: #c9b18c;
  --line: rgba(255, 244, 223, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 12%, rgba(187, 38, 31, .18), transparent 32rem),
    radial-gradient(circle at 88% 0%, rgba(230, 168, 59, .15), transparent 28rem),
    linear-gradient(180deg, #050403 0%, #15100b 48%, #080604 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 6, 4, .86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  background: #000;
  border: 1px solid rgba(230, 168, 59, .36);
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.34rem;
  font-weight: 800;
  color: var(--amber);
  text-transform: uppercase;
}

.menu {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu a,
.back-link {
  border: 1px solid rgba(230, 168, 59, .26);
  border-radius: 999px;
  padding: 9px 12px;
  color: #f9dfac;
  text-decoration: none;
  font-weight: 800;
  font-size: .9rem;
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: .95;
  color: #ffe7a6;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  color: #f3ddbb;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.content {
  padding: 24px 0 72px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 40px);
  background: rgba(255, 244, 223, .055);
  margin-bottom: 18px;
}

.legal-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: #ffe1a0;
  line-height: 1.05;
  margin-bottom: 14px;
}

.legal-card h3 {
  color: var(--amber);
  margin-bottom: 8px;
}

.legal-card p,
.legal-card li {
  color: #ddc8a6;
}

.info-list,
.source-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li,
.source-list li {
  margin-bottom: 9px;
}

.info-list strong {
  color: #fff1c9;
}

.notice {
  border-left: 3px solid var(--gold);
  padding: 12px 14px;
  background: rgba(230, 168, 59, .08);
  color: #ffe3a6;
}

footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: #060403;
  color: #9f8664;
}

footer a {
  color: #ffd27a;
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 22px, 980px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .menu {
    justify-content: flex-start;
  }
}
