:root {
  color: #f6f0e8;
  background: #0f1012;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  --ink: #0f1012;
  --charcoal: #17191c;
  --porcelain: #f0e7da;
  --ivory: #f6f0e8;
  --muted: #a89f93;
  --brass: #c79a43;
  --line: rgba(246, 240, 232, 0.14);
  --dark-line: rgba(15, 16, 18, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 82% 0%, rgba(199, 154, 67, 0.16), transparent 24%),
    var(--ink);
}

a {
  color: inherit;
}

.legal-shell {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
  color: var(--ivory);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #141211;
  background: var(--brass);
  border-radius: 6px;
  font-size: 0.78rem;
}

.home-link {
  color: rgba(246, 240, 232, 0.72);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.legal-card {
  padding: 44px;
  color: #17130f;
  background: var(--porcelain);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

h1,
h2 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.updated {
  margin: 14px 0 0;
  color: rgba(15, 16, 18, 0.62);
  font-weight: 750;
}

h2 {
  margin-top: 36px;
  font-size: 1.35rem;
}

p,
li {
  color: rgba(15, 16, 18, 0.74);
}

ul {
  padding-left: 22px;
}

.contact-box,
.callout {
  margin-top: 18px;
  padding: 18px;
  background: rgba(15, 16, 18, 0.055);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
}

.callout strong {
  color: #17130f;
}

.legal-footer {
  margin-top: 28px;
  color: rgba(246, 240, 232, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 620px) {
  .legal-shell {
    width: min(100% - 28px, 920px);
    padding: 28px 0 54px;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
