/* Little Loves — legal/support pages.
   Deliberately self-contained: no webfont, no analytics, no third-party request of
   any kind. A privacy policy that phones out to a CDN to render is a bad look, and
   Apple fetches these pages anonymously. */

:root {
  color-scheme: light dark;
  --bg: #f4f2ea;
  --card: #fbfaf6;
  --fg: #1f2a1f;
  --muted: #6b7466;
  --primary: #5b7551;
  --border: #e2ded0;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #161815;
    --card: #1e211d;
    --fg: #eef0ea;
    --muted: #9aa295;
    --primary: #8fae83;
    --border: #2c302a;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 2.5rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  -webkit-text-size-adjust: 100%;
}

.wrap {
  max-width: 42rem;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.brand .mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.6rem;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

h1 {
  font-size: 1.6rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.05rem;
  margin: 2rem 0 0.5rem;
}

.updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0 0 2rem;
}

p,
li {
  font-size: 0.95rem;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.4rem;
}

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

.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  margin: 1.5rem 0 2rem;
}

dt {
  font-weight: 600;
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

dd {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
