/* Oako legal pages: dark theme derived from the product detail redesign palette.
   Load css/fonts.css before this file. */

:root {
  color-scheme: dark;
  --ground: #20251E;
  --surface: #2A3128;
  --ink: #ECE6D6;
  --muted: #A9AD9B;
  --hairline: rgba(236, 230, 214, 0.16);
  --accent: #CE9377;
  --accent-deep: #D9A98F;
  --warn: #CFAC55;
}

* { box-sizing: border-box; }

body {
  background: var(--ground);
  color: var(--ink);
  font-family: 'Nunito', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 0 24px 96px;
}

main { max-width: 720px; margin: 0 auto; }

h1, h2 {
  font-family: 'Fredoka', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
  margin: 0;
  color: var(--ink);
}

p, ul { margin: 0 0 1em; max-width: 62ch; }

.eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.masthead { padding: 72px 0 20px; display: flex; flex-direction: column; gap: 14px; }
.masthead h1 { font-size: clamp(30px, 5vw, 44px); }

.updated {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
  padding-top: 14px;
  margin: 0;
}

section { margin-top: 44px; }
h2 { font-size: 21px; margin-bottom: 12px; }

ul { padding-left: 22px; }
li { margin-bottom: 6px; }
li::marker { color: var(--accent); }

strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; color: var(--accent-deep); }
a { color: var(--accent); text-decoration-color: var(--hairline); text-underline-offset: 2px; }

.highlight {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--warn);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 0 0 1em;
}
.highlight p:last-child { margin-bottom: 0; }

footer {
  margin-top: 80px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  font-size: 13px;
  color: var(--muted);
}
