/* Shared styles for privacy.html and terms.html. */
:root {
  --paper: #F0F0EF;
  --ink:   #161413;
  --ink-2: #2E2C28;
  --clay:  #4F362A;
  --f-display: 'Marcellus', serif;
  --f-body:    'Spectral', Georgia, serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
}
.legal-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-brand {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.legal h1 {
  font-family: var(--f-display);
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.1;
  margin: 40px 0 8px;
  color: var(--ink);
}
.legal h2 {
  font-family: var(--f-display);
  font-size: clamp(20px, 3vw, 24px);
  margin: 36px 0 10px;
  color: var(--ink);
}
.legal-meta {
  font-style: italic;
  color: var(--clay);
  font-size: 14px;
  margin-bottom: 28px;
  display: block;
}
.legal p { margin: 0 0 14px; }
.legal ul { padding-left: 22px; margin: 0 0 14px; }
.legal a { color: var(--clay); }
.legal strong { color: var(--ink); }
.legal-back {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--f-display);
  letter-spacing: 0.18em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--clay);
  text-decoration: none;
}
.legal-back:hover { color: var(--ink); }

/* Shared site footer — kept in sync with .footer in site.css.
   Duplicated rather than cross-linked so legal pages load light. */
:root {
  --bone-50:  #F7F7F6;
  --bone-100: #F0F0EF;
  --bone-200: #E4E4E2;
  --clay-700: #4F362A;
  --ink-900:  #161413;
  --f-label:  'Marcellus SC', 'Marcellus', serif;
  --f-italic: 'Spectral', Georgia, serif;
}
.site-footer {
  background: var(--ink-900); color: var(--bone-100);
  padding: 40px 0 28px;
  font-family: var(--f-display);
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-footer__inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
  padding: 12px 0;
  color: var(--bone-100);
}
.site-footer__brand-block {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display); font-size: 16px; letter-spacing: 0.02em;
  line-height: 1;
}
.site-footer__mark {
  width: 20px; height: 20px;
  display: inline-block; line-height: 0;
  color: var(--bone-100);
}
.site-footer__mark svg { width: 100%; height: 100%; display: block; }
.site-footer__brand {
  font-family: var(--f-display); font-size: 16px; line-height: 1; letter-spacing: 0.02em;
}
.site-footer__social {
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
}
.site-footer__social-link {
  color: var(--bone-200);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  color: var(--bone-50);
  transform: translateY(-1px);
}
.site-footer__social-link svg {
  width: 22px; height: 22px; display: block;
}
.site-footer__nav {
  display: flex; gap: 4px;
  flex-wrap: wrap; justify-content: center;
}
.site-footer__nav a {
  font-family: var(--f-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-200);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 14px 18px;
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible { color: var(--bone-50); }
.site-footer__meta {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-align: center;
  color: var(--bone-200);
  font-size: 12px;
  line-height: 1.5;
}
.site-footer__year { opacity: 0.65; }
.site-footer__disclaimer {
  font-family: var(--f-italic); font-style: italic;
  max-width: 48ch;
  opacity: 0.7;
  font-size: 11px;
}
