/**
 * legal.css - terms, privacy and cookie pages.
 *
 * Legal text is read, not skimmed, so this narrows the column to a comfortable
 * measure and gives the type more room to breathe than the marketing pages.
 * Same palette as the rest of the site, no new colours.
 */

.legal { padding: 10px 0 90px; }

.legal-wrap {
  max-width: 780px;          /* ~75 characters a line: readable, not a wall */
}

.legal-updated {
  color: var(--text-dim);
  font-size: 14px;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.legal-wrap h2 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  color: var(--text);
  margin: 46px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.legal-wrap h2:first-of-type { border-top: none; padding-top: 0; margin-top: 30px; }

.legal-wrap h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold-lite);
  margin: 28px 0 10px;
  letter-spacing: 0.01em;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}
.legal-wrap p { margin: 0 0 15px; }

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

.legal-wrap a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(212,175,55,0.35); }
.legal-wrap a:hover { color: var(--gold-lite); border-bottom-color: var(--gold-lite); }

.legal-wrap ul { margin: 0 0 18px; padding-left: 22px; }
.legal-wrap li { margin-bottom: 9px; }

/* The plain-English summary at the top. The one thing most people read. */
.legal-callout {
  background: linear-gradient(170deg, #17140d, #131317);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 26px 0 10px;
}
.legal-callout h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--gold);
  letter-spacing: 0;
}
.legal-callout p:last-child { margin-bottom: 0; }

/* Company details, as a definition list rather than a paragraph of commas. */
.legal-facts { list-style: none; margin: 18px 0 22px; padding: 0; }
.legal-facts li {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  margin: 0;
}
.legal-facts li span {
  flex: 0 0 172px;
  color: var(--text-dim);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-facts li strong { flex: 1 1 260px; color: var(--text); font-weight: 500; }

/* The company disclosure the Companies Act requires on the site. */
.foot-legal {
  border-top: 1px solid var(--line-soft);
  margin-top: 28px;
  padding-top: 20px;
}
.foot-legal p {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 760px;
}
.foot-legal strong { color: var(--text-soft); font-weight: 600; }

@media (max-width: 640px) {
  .legal-wrap h2 { font-size: 23px; }
  .legal-callout { padding: 22px 20px; }
  .legal-facts li span { flex-basis: 100%; }
}
