/* privacy notice — .priv-* only. Linked by /privacy and nothing else.
   The prototype styles this page inline (lines 514-563); every one of those
   declarations is here as a class, with the hex literals swapped for the tokens. */

.priv-page {
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: clamp(56px, 9vw, 112px);
}

.priv-h1 {
  margin: 0 0 32px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* the standfirst pulls up under the display cap's own line-height */
.priv-lede {
  margin: -12px 0 32px;
  max-width: 62ch;
  font-size: 19px;
  line-height: 1.65;
  color: var(--body-ink);
  text-wrap: pretty;
}

.priv-body {
  max-width: 68ch;
  border-top: 2px solid var(--ink);
}

.priv-sec {
  padding: 26px 0;
  border-bottom: 1px solid var(--rule);
}

.priv-sec-h {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
}

.priv-p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--body-ink);
  text-wrap: pretty;
}
.priv-p:last-child { margin-bottom: 0; }
.priv-p strong { font-weight: 700; }

/* the numbered "what we collect" list */
.priv-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.priv-list + .priv-p { margin-top: 16px; }

.priv-item {
  display: flex;
  gap: 14px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--body-ink);
}
.priv-item strong { font-weight: 700; }

.priv-n {
  flex: none;
  padding-top: 5px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--rust);
}

/* the "how long we keep it" table, built as a definition-ish list so it reflows
   to two stacked lines on a narrow screen instead of scrolling sideways */
.priv-keep {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--rule);
}

.priv-keep-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 17.5px;
  line-height: 1.5;
  color: var(--body-ink);
}

.priv-keep-k {
  flex: 0 0 168px;
  font-family: var(--mono);
  font-size: 13.5px;
  color: var(--muted);
}

.priv-keep-v { flex: 1 1 220px; }

.priv-updated {
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
}

/* the "cookie settings" control inside the cookies section's copy — a <button>,
   not an <a>, because it performs an action (reopen the consent banner) rather
   than navigating; styled to read as an inline link so it doesn't look like a
   stray UI control dropped into a paragraph. */
.priv-link-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: var(--rust);
  text-decoration: underline;
  cursor: pointer;
}
.priv-link-btn:hover { color: var(--flare); }
