:root {
  --black: #050505;
  --panel: #12100d;
  --gold: #c89a3d;
  --gold-soft: #efd28d;
  --ivory: #f6efe3;
  --text: #d9d0c2;
  --muted: #a99f91;
  --line: rgba(200, 154, 61, .34);
  --line-soft: rgba(200, 154, 61, .16);
  --max: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ivory);
  background: var(--black);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.62;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

header,
footer {
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 5, 5, .9);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

nav img {
  display: block;
  width: 150px;
  height: auto;
}

.back,
.text-link {
  color: var(--gold-soft);
}

.back {
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

main {
  padding: 132px 0 76px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.legal-grid {
  display: grid;
  gap: 14px;
  margin-top: 40px;
}

.card {
  padding: 26px;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012)),
    var(--panel);
  overflow-wrap: anywhere;
}

p,
li {
  color: var(--text);
}

p {
  margin: 0;
}

p + p,
ul + p,
p + ul {
  margin-top: 10px;
}

ul {
  margin-bottom: 0;
  padding-left: 22px;
}

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 0;
  color: var(--muted);
}

footer a,
footer button {
  color: var(--text);
}

footer button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 34px, var(--max));
  }

  main {
    padding-top: 92px;
  }

  .card {
    padding: 22px;
  }
}
