:root {
  --bg: #050608;
  --ink: #fff8e8;
  --muted: rgba(255, 248, 232, 0.72);
  --dim: rgba(255, 248, 232, 0.52);
  --gold: #e0b55d;
  --line: rgba(255, 248, 232, 0.14);
  --panel: rgba(8, 10, 12, 0.72);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(5, 6, 8, 0.92), rgba(5, 6, 8, 0.76)),
    url("../assets/frames/frame-0088.jpg") center / cover fixed,
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

a {
  color: var(--gold);
}

.legal-shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 42px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
}

.home-link {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-hero {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.legal-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.effective {
  margin: 18px 0 0;
  color: var(--dim);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 28px;
  margin-top: 26px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 6, 8, 0.84);
}

.legal-content section {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.1;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

p {
  margin: 0 0 12px;
}

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

.legal-note {
  color: var(--ink);
  font-weight: 900;
}

@media (max-width: 640px) {
  .legal-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
