/* Cartwheel — shared styles for the static web pages.
   Uses system font stacks so we don't take a load-time hit on a CDN call
   (and so the privacy page itself doesn't make a third-party network
   request — minor but appropriate). */

:root {
  --paper: #FBF6EC;
  --cream: #F5EDE0;
  --ink: #2D2823;
  --ink2: #5D544A;
  --muted: #897F71;
  --terra: #C7613D;
  --terra-deep: #A14E2E;
  --hairline: #E8DDC9;
  --bad: #B33A3A;
  --bad-bg: rgba(179, 58, 58, 0.08);

  --serif: ui-serif, "New York", Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

header.site-header {
  border-bottom: 1px solid var(--hairline);
  padding: 24px 0;
  margin-bottom: 32px;
}

header.site-header .wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

header.site-header a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
}

header.site-header .mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--terra);
  display: inline-block;
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 8px;
}

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.25;
  color: var(--ink);
  margin: 40px 0 12px;
}

h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  margin: 28px 0 8px;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 16px;
  color: var(--ink2);
}

p.lede {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 24px;
}

a {
  color: var(--terra-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--terra);
}

ul, ol {
  margin: 0 0 16px;
  padding-left: 24px;
  color: var(--ink2);
}

li {
  margin-bottom: 8px;
}

li::marker {
  color: var(--muted);
}

strong {
  color: var(--ink);
  font-weight: 600;
}

.meta {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.callout {
  background: var(--cream);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 3px solid var(--terra);
}

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

footer.site-footer {
  border-top: 1px solid var(--hairline);
  margin-top: 64px;
  padding: 32px 0;
}

footer.site-footer .wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

footer.site-footer a {
  color: var(--ink2);
}

@media (max-width: 480px) {
  main {
    padding: 32px 20px 64px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 22px;
  }
}
