@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,500;8..60,600;8..60,700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #3F2E23;
  --navy-deep: #2A1E17;
  --bronze: #B4893C;
  --bronze-soft: #C9A46A;
  --slate-50: #FBF8F3;
  --slate-200: #E8D8C4;
  --slate-500: #8C857D;
  --slate-700: #2E3947;
  --ink: #0E1726;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--bronze); text-underline-offset: 3px; }
a:hover { color: var(--navy-deep); }

.legal-header {
  border-bottom: 1px solid var(--slate-200);
  background: #fff;
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
}
.legal-header .inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  color: var(--navy);
}
.brand .name { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; font-size: 17px; line-height: 1; }
.brand .tag { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--slate-500); font-weight: 600; margin-top: 2px; display: block; }
.back-link { font-size: 13.5px; font-weight: 500; }

main.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bronze);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  height: 2px;
  width: 20px;
  background: var(--bronze);
}
h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
}
.meta {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 32px;
}
h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  margin: 36px 0 10px;
  letter-spacing: -0.01em;
}
h3 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
  color: var(--navy);
  font-size: 17px;
  margin: 24px 0 8px;
}
p, li { font-size: 15px; color: var(--slate-700); }
p { margin: 10px 0; }
ul, ol { padding-left: 22px; margin: 10px 0; }
li { margin: 5px 0; }
strong { color: var(--navy); font-weight: 600; }
.callout {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-left: 3px solid var(--bronze);
  border-radius: 6px;
  padding: 16px 18px;
  font-size: 14px;
  color: var(--slate-700);
  margin: 18px 0;
}
.legal-footer {
  border-top: 1px solid var(--slate-200);
  background: var(--slate-50);
  padding: 24px;
  text-align: center;
  font-size: 12.5px;
  color: var(--slate-500);
}
.legal-footer a { color: var(--slate-700); }

@media (max-width: 640px) {
  h1 { font-size: 30px; }
  h2 { font-size: 20px; }
  main.legal { padding: 32px 20px 64px; }
}
