:root {
  color-scheme: light;
  --ink: #292219;
  --muted: #6b6257;
  --paper: #fffdf8;
  --cream: #f5efe2;
  --accent: #8a4f2d;
  --accent-dark: #66371f;
  --line: #ded4c5;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 150, 99, .2), transparent 34rem),
    var(--paper);
  font: 18px/1.7 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }
a:focus-visible { outline: 3px solid #d39a67; outline-offset: 4px; }

.shell {
  width: min(100% - 40px, 780px);
  margin-inline: auto;
  padding: 72px 0 48px;
}

.compact { min-height: 100vh; display: grid; align-content: center; }
.policy { padding-top: 42px; }

.brand {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  place-items: center;
  color: white;
  background: var(--accent);
  border-radius: 24px;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: .04em;
  box-shadow: 0 12px 30px rgba(102, 55, 31, .22);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: .84rem;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.2; }
h1 { margin: 0 0 18px; font-size: clamp(2.5rem, 9vw, 4.6rem); letter-spacing: -.045em; }
.policy h1 { font-size: clamp(2.35rem, 7vw, 3.8rem); }
h2 { margin-top: 2.5em; font-size: 1.55rem; }
h3 { margin-top: 1.7em; font-size: 1.1rem; }

p { margin: .8em 0; }
.lead { max-width: 680px; color: #4d443a; font-size: 1.18rem; }
.updated { color: var(--muted); font-size: .92rem; }

nav { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.button {
  display: inline-block;
  padding: 12px 20px;
  color: white;
  background: var(--accent-dark);
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}
.button:hover { color: white; background: var(--accent); }
.text-link, .back { font-weight: 650; text-underline-offset: 4px; }
.back { display: inline-block; margin-bottom: 48px; }

section {
  margin-top: 34px;
  padding-top: 1px;
  border-top: 1px solid var(--line);
}

footer { margin-top: 64px; padding-top: 20px; color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 520px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 28px, 780px); padding-top: 40px; }
  .policy { padding-top: 28px; }
  .back { margin-bottom: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
