:root {
  --bg: #14110e;
  --bg-raise: #1c1814;
  --ink: #f3ece3;
  --muted: #b4a89a;
  --line: #3a322b;
  --bronze: #c4844a;
  --bronze-dim: #8a5a2e;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

body {
  min-height: 100vh;
}

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

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 28px 0 0;
}

.mark {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 13px;
}

nav {
  display: flex;
  gap: 22px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

.hero {
  padding: 88px 0 56px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.95;
  font-weight: 500;
  margin: 0 0 28px;
  max-width: 14ch;
}

.lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 36ch;
  margin: 0 0 36px;
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
}

h2 {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 16px;
}

p,
li {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.legal p,
.legal li {
  max-width: 68ch;
}

.panel {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  padding: 28px;
}

.panel strong {
  color: var(--ink);
  font-weight: 600;
}

.not {
  border-left: 3px solid var(--bronze);
}

footer {
  padding: 40px 0 64px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--muted);
}

.legal-body {
  padding: 48px 0 80px;
}

.legal-body h1 {
  font-size: 42px;
  font-weight: 500;
  margin: 0 0 12px;
}

.updated {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 36px;
}

@media (max-width: 720px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  header {
    flex-direction: column;
    gap: 16px;
  }
}
