:root {
  --bg: #f7f2ea;
  --paper: #fbf6ed;
  --surface: #ffffff;
  --ink: #101114;
  --muted: #6b7280;
  --border: #e7ded2;
  --accent: #f2552c;
  --accent-soft: #fff0e8;
  --olive: #52624a;
  --brass: #b08d57;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(247, 242, 234, 0.92), rgba(247, 242, 234, 0.92)),
    linear-gradient(rgba(16, 17, 20, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 20, 0.022) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header,
.site-footer {
  border-color: var(--border);
  background: rgba(251, 246, 237, 0.94);
}

.site-header {
  border-bottom: 1px solid var(--border);
}

.site-footer {
  border-top: 1px solid var(--border);
}

.nav,
.footer-inner,
.legal-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--surface);
  border-radius: 3px;
  font-size: 14px;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border: 1px solid var(--border);
  background: var(--ink);
  color: var(--surface);
  padding: 12px 14px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  word-break: break-word;
}

.contact-link:hover {
  background: #2a211b;
}

.legal-main {
  flex: 1;
  padding: 56px 0 64px;
}

.eyebrow {
  display: inline-flex;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin: 18px 0 14px;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 0.98;
}

.lede {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meta-pill {
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 9px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.policy-section {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
  box-shadow: 0 14px 32px rgba(16, 17, 20, 0.05);
}

.policy-section h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.08;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.policy-section p {
  margin: 0 0 12px;
}

.policy-section ul,
.policy-section ol {
  margin: 0;
  padding-left: 20px;
}

.policy-section li + li {
  margin-top: 8px;
}

.callout {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 720px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .two-column {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding-top: 36px;
  }

  .policy-section {
    padding: 18px;
  }
}
