:root {
  --black: #0a0a0a;
  --charcoal: #131313;
  --orange: #ed691f;
  --orange-light: #ff8a3e;
  --cream: #f3ede4;
  --grey: #a8a39d;
  --line: rgba(243, 237, 228, 0.17);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font:
    400 16px/1.55 "Oswald",
    Arial,
    sans-serif;
  letter-spacing: 0.015em;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1180px, calc(100% - 44px));
  margin: auto;
}
.orange {
  color: var(--orange);
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.55);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}
.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}
.brand:hover {
  opacity: 0.85;
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}
.back-link {
  font:
    500 0.78rem/1 "DM Mono",
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.2s ease;
}
.back-link:hover {
  color: var(--orange);
}
main.legal {
  padding: 76px 0 120px;
}
.legal .kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--orange);
  font:
    500 0.72rem/1 "DM Mono",
    monospace;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.legal .kicker::before {
  content: "";
  width: 31px;
  height: 2px;
  background: currentColor;
}
.legal h1 {
  max-width: 780px;
  margin: 0 0 12px;
  font:
    700 clamp(2.6rem, 6vw, 4.2rem)/1.02 "Oswald",
    sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.legal .updated {
  margin: 0 0 60px;
  color: var(--grey);
  font:
    400 0.8rem/1.6 "DM Mono",
    monospace;
}
.legal-body {
  max-width: 760px;
  border-top: 1px solid var(--line);
}
.legal-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.legal-section h2 {
  margin: 0 0 14px;
  font:
    600 1.4rem/1.2 "Oswald",
    sans-serif;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
}
.legal-section h2 span {
  color: var(--orange);
  font:
    500 0.75rem "DM Mono",
    monospace;
  margin-right: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.legal-section p,
.legal-section li {
  margin: 0 0 12px;
  color: #c6c0b9;
  font:
    400 0.94rem/1.75 "DM Mono",
    monospace;
}
.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}
.legal-section ul {
  margin: 0 0 12px;
  padding-left: 20px;
}
.legal-section a {
  color: var(--orange);
  border-bottom: 1px solid rgba(237, 105, 31, 0.4);
}
.legal-section a:hover {
  color: var(--orange-light);
  border-color: var(--orange-light);
}
footer {
  padding: 29px 0;
  border-top: 1px solid var(--line);
  color: #9e9891;
  font:
    400 0.7rem "DM Mono",
    monospace;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-brand {
  color: var(--orange);
  font:
    400 1rem "Oswald",
    serif;
}
.footer-social {
  display: inline-flex;
  color: #9e9891;
  line-height: 0;
}
.footer-social:hover {
  color: var(--orange);
}
.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}
.footer-links {
  display: flex;
  gap: 18px;
}
.footer-links a:hover {
  color: var(--orange);
}
@media (max-width: 560px) {
  .wrap {
    width: min(100% - 32px, 1180px);
  }
  .brand-logo {
    height: 28px;
  }
  .footer-inner {
    flex-direction: column;
  }
}
