:root {
  --ink: #17201f;
  --soft: #40504d;
  --forest: #15312f;
  --cream: #f3f0e8;
  --paper: #fbfaf6;
  --white: #fff;
  --copper: #a65b36;
  --gold: #e9b66f;
  --line: #d7d1c5;
  --max: 920px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Segoe UI", Arial, sans-serif; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--copper); text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
header { color: #fff; background: var(--forest); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: 19px; text-decoration: none; }
.back { color: #dfe8e5; font-size: 14px; font-weight: 700; text-decoration: none; }
.back:hover { color: #fff; }
.hero { padding: 74px 0 58px; background: var(--cream); }
.kicker { margin: 0 0 14px; color: var(--copper); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.1; letter-spacing: -.025em; }
h1 { margin: 0 0 18px; font-size: clamp(44px, 7vw, 66px); }
h2 { margin: 0 0 17px; font-size: clamp(29px, 4vw, 39px); }
h3 { margin: 24px 0 8px; font-size: 18px; }
.hero p:last-child { max-width: 750px; margin: 0; color: var(--soft); font-size: 17px; }
main article { padding: 68px 0 88px; }
.legal-section { padding: 30px 0; border-bottom: 1px solid var(--line); }
.legal-section:first-child { padding-top: 0; }
.legal-section:last-child { border-bottom: 0; }
.legal-section p:last-child, .legal-section ul:last-child { margin-bottom: 0; }
.data-list { display: grid; grid-template-columns: minmax(190px, .7fr) minmax(0, 1.3fr); margin: 0; border-top: 1px solid var(--line); }
.data-list dt, .data-list dd { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--line); }
.data-list dt { padding-right: 24px; color: var(--soft); font-size: 14px; font-weight: 700; }
.data-list dd { overflow-wrap: anywhere; }
.table-wrap { overflow-x: auto; }
table { width: 100%; min-width: 700px; border-collapse: collapse; font-size: 14px; }
th, td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--forest); background: var(--cream); }
.notice { padding: 20px 22px; border-left: 4px solid var(--copper); background: var(--cream); color: var(--soft); font-size: 14px; }
.updated { color: var(--soft); font-size: 13px; }
.not-found-action { margin-top: 28px; }
footer { padding: 30px 0; color: #9fb0ac; background: #101817; font-size: 13px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: #c6d2cf; text-decoration: none; }
.footer-links a:hover { color: #fff; }
@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding: 58px 0 46px; }
  main article { padding: 54px 0 68px; }
  .data-list { grid-template-columns: 1fr; }
  .data-list dt { padding-bottom: 3px; border-bottom: 0; }
  .data-list dd { padding-top: 0; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
