/* Shared styles for CrispCut policy pages — matches the main site tokens. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --paper: #FAFAF7;
  --paper-2: #F1EEE6;
  --ink: #1C1F26;
  --ink-soft: #5B6068;
  --line: #E3DFD4;
  --line-strong: #CDC8BA;
  --accent: #FF4D1C;
  --accent-soft: #FFE6D9;
  --r: 4px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-soft);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
}

.policy-header {
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
}
.policy-header a.logo-word {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.policy-header a.logo-word .cut { color: var(--accent); }

.policy-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.policy-kicker {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.15;
  margin: 0 0 8px;
}
.updated {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
  margin: 34px 0 10px;
}
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 20px; }
li { margin-bottom: 7px; }
a { color: var(--accent); }
strong { color: var(--ink); font-weight: 600; }

.callout {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--r);
  padding: 14px 18px;
  margin: 18px 0;
}

.contact-block {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-top: 8px;
}
.contact-block .row { margin-bottom: 8px; }
.contact-block .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
}
.contact-block .val { color: var(--ink); font-weight: 500; }

.policy-footer {
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  font-size: 0.8rem;
}
.policy-footer a { color: var(--ink-soft); text-decoration: none; margin: 0 10px; }
.policy-footer a:hover { color: var(--accent); }

.placeholder {
  background: var(--accent-soft);
  border: 1px dashed var(--accent);
  border-radius: var(--r);
  padding: 2px 6px;
  color: var(--bad, #B3432E);
  font-weight: 600;
}
