/* Shared styles for Our Table legal pages.
   Linked from each page's <head> as /_styles.css. */

:root {
  --green: #2e7d5e;
  --green-deep: #1f5a43;
  --amber: #c89a3c;
  --cream: #f5efe0;
  --cream-soft: #faf8f3;
  --charcoal: #2d2d30;
  --ink: #1a1a1a;
  --muted: #6b6b6f;
  --border: #e6e3dc;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter",
               "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}

header.page-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

header.page-header a.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

header.page-header .leaf {
  width: 32px;
  height: 44px;
  flex-shrink: 0;
}

header.page-header .wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
header.page-header .our {
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--green);
  margin-bottom: 3px;
  font-weight: 500;
}
header.page-header .table-text {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
}
header.page-header .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  vertical-align: top;
  margin-left: 4px;
  margin-top: 2px;
}

h1 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 16px 0 8px;
  color: var(--ink);
}

.effective {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}

h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 40px 0 12px;
  color: var(--ink);
}

h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--ink);
}

p, li {
  font-size: 15px;
  color: #2a2a2a;
  margin: 0 0 14px;
}

ul, ol {
  padding-left: 22px;
  margin: 0 0 14px;
}

li { margin-bottom: 6px; }

strong { font-weight: 600; }

a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.callout {
  background: #fff7e6;
  border: 1px solid var(--amber);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 24px 0;
}
.callout strong { color: #8c6a1f; }

.footer-nav {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--green); text-decoration: underline; }
