/*
 * Styling for the standalone policy pages.
 *
 * These are plain HTML rather than the in-browser React the marketing pages
 * use: the text is static, changes rarely, and has to stay readable even if a
 * script fails to load — it is what a customer is pointed at from a contract
 * or an invoice.
 *
 * Palette matches the OP object shared by the React pages.
 */

:root {
  --bg: #faf3eb;
  --fg: #2d2520;
  --dim: #7a6e62;
  --faint: #a89a8c;
  --accent: #e07a5f;
  --card: #fff8f0;
  --line: #ead8c4;
  --cream2: #f3e7d6;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
}

.wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* Header */
.nav {
  border-bottom: 1px solid var(--line);
  background: var(--card);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  padding-bottom: 18px;
}
.nav .brand {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a { color: var(--dim); text-decoration: none; font-size: 14.5px; }
.nav a:hover { color: var(--accent); }

/* Page body */
main { padding: 48px 0 64px; }
h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
}

.content { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 34px; }
.content p { margin: 0 0 16px; }
.content strong { color: var(--fg); }
.content ol, .content ul { padding-left: 22px; margin: 0 0 18px; }
.content li { margin-bottom: 9px; }
.content blockquote { margin: 0; }
.content img { max-width: 100%; height: auto !important; }
.content a { color: var(--accent); }

/* Footer */
footer { border-top: 1px solid var(--line); background: var(--cream2); padding: 32px 0; }
footer .wrap { display: flex; gap: 26px; flex-wrap: wrap; justify-content: space-between; }
footer a { color: var(--dim); text-decoration: none; font-size: 13.5px; }
footer a:hover { color: var(--accent); }
footer ul { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
footer .copy { color: var(--faint); font-size: 13px; }

@media (max-width: 640px) {
  .content { padding: 24px; border-radius: 18px; }
  main { padding: 32px 0 44px; }
}
