:root {
  --bg: #f6f4ef;
  --text: #111111;
  --muted: #66625d;
  --rule: rgba(17, 17, 17, 0.28);
  --soft: rgba(17, 17, 17, 0.11);
  --max: 1180px;
  --pad: clamp(24px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

::selection {
  background: var(--text);
  color: var(--bg);
}

.legal-header {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--soft);
}

.wordmark {
  font-size: 20px;
  font-weight: 560;
  letter-spacing: -0.038em;
}

.back {
  font-size: 10px;
  letter-spacing: 0.28em;
  font-weight: 520;
  opacity: 0.72;
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px var(--pad) 120px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 54px;
  font-size: 11px;
  letter-spacing: 0.26em;
  font-weight: 520;
}

.kicker::after {
  content: "";
  display: block;
  width: 52px;
  height: 1px;
  background: var(--rule);
}

h1 {
  margin: 0 0 74px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.95;
  font-weight: 430;
  letter-spacing: -0.055em;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.5fr);
  gap: clamp(46px, 8vw, 110px);
  border-top: 1px solid var(--rule);
  padding-top: 40px;
}

.legal-index {
  position: sticky;
  top: 36px;
  align-self: start;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-copy {
  max-width: 720px;
}

section {
  padding: 0 0 34px;
  margin: 0 0 34px;
  border-bottom: 1px solid var(--soft);
}

section:last-child {
  border-bottom: 0;
}

h2 {
  margin: 0 0 13px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 520;
  letter-spacing: -0.025em;
}

p,
li {
  font-size: 16px;
  line-height: 1.62;
}

p {
  margin: 0 0 15px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 0 0 6px;
}

.muted {
  color: var(--muted);
}

.rights-note {
  border-left: 2px solid var(--text);
  padding: 2px 0 2px 18px;
}

.legal-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--pad) 38px;
  border-top: 1px solid var(--soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-footer span {
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--muted);
}

@media (max-width: 760px) {
  .legal-header {
    min-height: 66px;
  }

  main {
    padding-top: 60px;
    padding-bottom: 84px;
  }

  h1 {
    margin-bottom: 52px;
  }

  .legal-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-index {
    position: static;
  }
}
