/* Standalone stylesheet for /privacy. The app's styles.css is ~360 KB of wizard, deck and
   export rules that a page of text has no use for, so this is written from scratch against
   the same palette rather than reusing it. */

:root {
  color-scheme: light;
  --cream: #f5f1e8;
  --navy: #123b4f;
  --forest: #2c6f67;
  --forest-dark: #24594c;
  --ink: #46605a;
  --muted: #5d716b;
  --line: rgba(36, 89, 76, .16);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0 20px 56px;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.62;
}

.privacy-header {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 0 0;
}
.privacy-home {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
}
.privacy-home img { display: block; }
.privacy-home:hover span { text-decoration: underline; }

.privacy-card {
  max-width: 720px;
  margin: 26px auto 0;
  padding: 30px 32px 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(18, 59, 79, .07);
}

.privacy-eyebrow {
  margin: 0 0 6px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.15;
}

h2 {
  margin: 26px 0 6px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

p { margin: 0 0 11px; }

.privacy-lead {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-size: 16px;
}

.privacy-updated {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

section { margin: 0; }

a { color: var(--forest); text-underline-offset: 2px; }
a:hover { color: var(--forest-dark); }

.privacy-footer {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.privacy-footer p { margin: 0; }
.page-social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  vertical-align: middle;
}
.page-social-link {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}
.page-social-link:hover,
.page-social-link:focus-visible {
  background: rgba(31, 111, 102, 0.1);
}
.page-social-link svg {
  display: block;
  width: 19px;
  height: 19px;
}

@media (max-width: 560px) {
  body { padding: 0 14px 40px; font-size: 14.5px; }
  .privacy-card { padding: 24px 20px 28px; border-radius: 14px; }
  h1 { font-size: 26px; }
}

/* Shared by /privacy and /about. The question is what is being scanned for, so
   it carries the weight and the answer sits quietly beneath it. */
.page-faq { margin: 0 0 14px; }
.page-faq dt { margin-top: 16px; font-weight: 700; }
.page-faq dt:first-child { margin-top: 0; }
.page-faq dd { margin: 4px 0 0; }
