:root {
  --navy: #0A1F44;
  --paper: #F7F5F2;
  --gold: #B08E5B;
  --slate: #6B7D8D;
  --rule: #ddd8d0;
  --heading: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --body: "Raleway", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--navy);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 90px;
}

a { color: var(--navy); text-underline-offset: 4px; }

/* ---------- Masthead ---------- */
header { text-align: center; }

.logo {
  width: 220px;
  max-width: 75%;
  height: auto;
  display: block;
  margin: 0 auto;
}
body:not(.subpage) .logo { width: 250px; }
.masthead-rule {
  width: 110px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 34px auto;
}

/* ---------- Page title & statement ---------- */
.statement {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 56px;
}

h1 {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  margin-bottom: 14px;
}

.section-label {
  font-family: var(--heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  margin: 56px 0 24px;
}

.prose p { margin-bottom: 1.15em; }
.prose { margin-bottom: 8px; }
.prose h2 {
  font-family: var(--heading);
  font-weight: 500;
  font-size: 19px;
  margin: 1.6em 0 0.6em;
}
blockquote {
  border-left: 3px solid var(--gold);
  padding: 2px 0 2px 20px;
  margin: 1.4em 0;
  font-style: italic;
}

/* ---------- Index / ruled lists ---------- */
.index ul { list-style: none; }
.index li { border-top: 1px solid var(--rule); }
.index li:last-child { border-bottom: 1px solid var(--rule); }

.index a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 15px 6px;
  text-decoration: none;
  transition: background 0.15s ease, padding-left 0.15s ease;
}
.index a:hover {
  background: rgba(176, 142, 91, 0.09);
  padding-left: 14px;
}
.index a .item {
  text-decoration: underline;
  text-decoration-color: rgba(10,31,68,0.3);
  font-weight: 500;
}
.index a:hover .item { text-decoration-color: var(--gold); }

.index .note {
  font-size: 14px;
  color: var(--slate);
  font-style: italic;
  white-space: nowrap;
}

.new-flag {
  font-family: var(--heading);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 1px 6px;
  margin-left: 10px;
  vertical-align: 2px;
}

/* ---------- Fact rows (plain-facts tables) ---------- */
.facts { border-top: 1px solid var(--rule); }
.facts .row {
  display: flex;
  gap: 20px;
  padding: 12px 6px;
  border-bottom: 1px solid var(--rule);
}
.facts .k {
  flex: 0 0 170px;
  font-family: var(--heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
  padding-top: 3px;
}
.facts .v { flex: 1; }

/* ---------- Numbered plain list ---------- */
.numbered { list-style: none; counter-reset: n; border-top: 1px solid var(--rule); }
.numbered li {
  counter-increment: n;
  border-bottom: 1px solid var(--rule);
  padding: 14px 6px;
}
.numbered li::before {
  content: counter(n, decimal-leading-zero) " ";
  font-family: var(--heading);
  color: var(--gold);
  font-size: 14px;
  margin-right: 12px;
}
.numbered .t { font-weight: 500; }

/* ---------- CTA ---------- */
.cta {
  text-align: center;
  margin-top: 52px;
  font-size: 16px;
  color: var(--slate);
}
.cta a {
  color: var(--navy);
  font-weight: 500;
  text-decoration-color: var(--gold);
}

/* ---------- Footer ---------- */
footer {
  margin-top: 64px;
  border-top: 1px solid var(--rule);
  padding-top: 30px;
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.7;
}
footer p { margin-bottom: 1em; }
footer a { color: var(--slate); }
.copyright { text-align: center; }

@media (max-width: 520px) {
  .page { padding: 48px 20px 64px; }
  .logo { width: 170px; }
  body:not(.subpage) .logo { width: 190px; }
  .masthead-rule { margin: 28px auto; }
  h1 { font-size: 23px; margin-bottom: 12px; }
  .statement { margin-bottom: 40px; }
  .section-label { margin: 40px 0 20px; }
  .index .note { display: none; }
  .index a { padding: 13px 4px; gap: 12px; }
  .numbered li { padding: 12px 4px; }
  .facts .row { flex-direction: column; gap: 2px; padding: 11px 4px; }
  .facts .k { flex: none; }
  blockquote { padding-left: 16px; }
  .cta { margin-top: 40px; }
  footer { margin-top: 48px; padding-top: 24px; }
}
