/* Legal pages: privacy, terms, refunds, acceptable use.
   Loaded after landing.css, so every token and the nav/footer come from there.
   All this adds is a reading column — prose wants a narrower measure than the
   1180px marketing shell, and these pages are nothing but prose. */

.legal {
  padding: 132px 0 96px;
}

.legal__shell {
  max-width: 760px;
}

.legal__title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(30px, 4.4vw, 42px);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 600;
}

/* Reviewers and customers both look for this first: is it current? */
.legal__stamp {
  margin: 0 0 44px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.legal__lede {
  margin: 0 0 40px;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--text-2);
}

.legal h2 {
  margin: 52px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -.01em;
  font-weight: 600;
}

.legal h3 {
  margin: 30px 0 10px;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
}

.legal p,
.legal li {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal p { margin: 0 0 16px; }

.legal ul,
.legal ol {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal li { margin-bottom: 8px; }

.legal strong { color: var(--text); font-weight: 600; }

.legal a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.legal code {
  font-family: var(--mono);
  font-size: .9em;
  background: var(--sunk);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
}

/* The one thing a Creem reviewer, a customer and a regulator all go looking
   for. Pulled out of the prose so nobody has to hunt for it. */
.legal__contact {
  margin: 44px 0 0;
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
}

.legal__contact p:last-child { margin-bottom: 0; }

.legal__contact .legal__contact-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Sibling documents, so a reader who landed on the wrong one can cross over
   without going back to the footer. */
.legal__siblings {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.legal__sibling {
  font-size: 13.5px;
  color: var(--text-2);
  text-decoration: none;
  padding: 7px 13px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  transition: color .15s, border-color .15s;
}

.legal__sibling:hover {
  color: var(--text);
  border-color: var(--accent-ring);
}

.legal__sibling[aria-current="page"] {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 640px) {
  .legal { padding: 108px 0 72px; }
}
