:root {
  --outer: #EFEBE3;
  --paper: #F5F2EC;
  --surface: #FDFCF9;
  --paper-2: #EBE5D9;
  --ink: #1A1713;
  --ink-deep: #14110D;
  --muted: #6E675D;
  --line: #E2DCCF;
  --line-2: #EDE8DC;
  --accent: #A3341F;
  --accent-dark: #6E2415;
  --green: #1F5C4D;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--outer);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: var(--accent-dark); text-underline-offset: 3px; }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.masthead { background: var(--ink-deep); color: var(--paper); border-bottom: 3px solid var(--accent); }
.masthead-inner, .page, .footer-inner { width: min(780px, calc(100% - 32px)); margin: 0 auto; }
.masthead-inner { padding: 30px 0 34px; }
.brand-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: #C9C2B6; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.mark { display: inline-grid; width: 28px; height: 28px; place-items: center; background: var(--accent); color: var(--paper); font: 700 17px/1 Georgia, "Times New Roman", serif; }
.effective { color: #A79F92; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: Georgia, "Times New Roman", serif; letter-spacing: 0; }
h1 { max-width: 680px; margin-bottom: 10px; font-size: clamp(2rem, 7vw, 3.25rem); line-height: 1.05; font-weight: 600; }
.deck { max-width: 660px; margin: 0; color: #A79F92; font-size: 1rem; }
.page { background: var(--paper); border-inline: 1px solid var(--line); padding: 28px 28px 48px; }
.legal-nav { display: flex; flex-wrap: wrap; gap: 8px 18px; padding: 0 0 24px; border-bottom: 1px solid var(--line); }
.legal-nav a { color: var(--muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; text-decoration: none; }
.legal-nav a[aria-current="page"] { color: var(--accent); }
.notice { margin: 24px 0; padding: 14px 16px; border-left: 3px solid var(--accent); background: var(--paper-2); }
.notice strong { color: var(--ink); }
.contents { margin: 24px 0 32px; padding: 18px; border: 1px solid var(--line); background: var(--surface); }
.contents p { margin: 0 0 8px; color: var(--muted); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.contents ol { columns: 2; margin: 0; padding-left: 22px; }
section { padding: 25px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }
h2 { margin-bottom: 12px; font-size: 1.55rem; line-height: 1.2; font-weight: 600; }
h3 { margin-top: 22px; margin-bottom: 7px; font-size: 1.08rem; }
p, ul, ol { color: var(--muted); }
li + li { margin-top: 7px; }
.data-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.92rem; }
.data-table th, .data-table td { padding: 11px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.data-table th { background: var(--paper-2); color: var(--ink); }
.label { display: inline-block; padding: 3px 7px; border: 1px solid currentColor; color: var(--green); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.label.danger { color: var(--accent); }
.contact { padding: 18px; border: 1px solid var(--ink); background: var(--surface); }
.footer { background: var(--ink-deep); color: #A79F92; }
.footer-inner { padding: 22px 0; font-size: 0.78rem; }
.footer a { color: #C9C2B6; }
@media (max-width: 640px) {
  .masthead-inner { padding-top: 22px; }
  .brand-row { align-items: flex-start; flex-direction: column; margin-bottom: 18px; }
  .page { width: 100%; padding: 22px 18px 40px; border-inline: 0; }
  .contents ol { columns: 1; }
  .data-table { display: block; overflow-x: auto; }
}
@media print {
  body, .page { background: #fff; }
  .masthead { color: var(--ink); background: #fff; border-color: var(--ink); }
  .deck, .brand, .effective { color: var(--muted); }
  .legal-nav { display: none; }
}
