:root {
  color-scheme: light;
  --background: #f2f2f0;
  --surface: #ffffff;
  --text: #202020;
  --muted: #666666;
  --line: #d8d8d4;
  --charcoal: #383737;
  --burgundy: #950f27;
  --gold: #c2993f;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  overflow-wrap: anywhere;
}

.site-header {
  background: var(--charcoal);
  border-bottom: 4px solid var(--burgundy);
  color: #ffffff;
}

.header-inner {
  width: min(var(--max-width), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: #ffffff;
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-size: 23px;
  font-weight: 900;
}

.brand-subtitle {
  color: #d5d5d5;
  font-size: 13px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 42px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid transparent;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-bottom-color: var(--gold);
  color: #ffffff;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 64px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.document-nav {
  position: sticky;
  top: 24px;
  border-top: 4px solid var(--gold);
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.document-nav strong {
  display: block;
  padding: 18px 18px 12px;
  color: var(--burgundy);
  font-size: 14px;
  text-transform: uppercase;
}

.document-nav a {
  display: block;
  padding: 9px 18px;
  border-top: 1px solid #eeeeeb;
  color: #4d4d4d;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.document-nav a:hover,
.document-nav a:focus-visible {
  color: var(--burgundy);
}

.document {
  min-width: 0;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
}

.document-heading {
  padding: 42px 48px 34px;
  border-top: 6px solid var(--burgundy);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1;
}

.summary {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.updated {
  margin: 18px 0 0;
  color: #777777;
  font-size: 13px;
  font-weight: 700;
}

.notice {
  margin: 30px 48px 0;
  padding: 16px 18px;
  border-left: 5px solid var(--gold);
  background: #f7f4ec;
  color: #4c4535;
  font-size: 14px;
}

.document-body {
  padding: 18px 48px 48px;
}

.document-body section {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 22px;
}

.document-body section:last-child {
  border-bottom: 0;
}

h2 {
  margin: 0 0 12px;
  color: var(--burgundy);
  font-size: 23px;
  line-height: 1.2;
}

h3 {
  margin: 20px 0 8px;
  font-size: 17px;
}

p,
ul {
  margin: 0 0 14px;
}

ul {
  padding-left: 22px;
}

li + li {
  margin-top: 7px;
}

.data-table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 30%;
  background: #f3f3f1;
  color: var(--charcoal);
  font-size: 13px;
}

.contact-block {
  border-left: 5px solid var(--burgundy);
  padding: 4px 0 4px 18px;
}

.placeholder {
  color: var(--burgundy);
  font-weight: 900;
}

.site-footer {
  background: #272727;
  color: #d7d7d7;
}

.footer-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #ffffff;
}

@media (max-width: 820px) {
  .header-inner {
    padding: 14px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  .site-nav a {
    min-height: 46px;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 3px solid transparent;
  }

  .page-shell {
    width: min(var(--max-width), calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 24px;
  }

  .document-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0;
  }

  .document-nav strong {
    grid-column: 1 / -1;
  }

  .document-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    border-top: 1px solid #eeeeeb;
    border-right: 1px solid #eeeeeb;
  }

  .document {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.07);
  }
}

@media (max-width: 560px) {
  .header-inner,
  .page-shell,
  .footer-inner {
    width: calc(100% - 24px);
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 19px;
    line-height: 1.05;
  }

  .brand-subtitle {
    font-size: 12px;
    line-height: 1.25;
  }

  .site-nav {
    grid-template-columns: 1fr;
  }

  .site-nav a {
    min-height: 42px;
  }

  .document-nav {
    grid-template-columns: 1fr;
  }

  .document {
    box-shadow: none;
  }

  .document-heading {
    padding: 28px 18px 24px;
  }

  h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  .summary {
    font-size: 15px;
  }

  .notice {
    margin: 20px 18px 0;
    padding: 14px;
  }

  .document-body {
    padding: 6px 18px 30px;
  }

  .document-body section {
    padding: 24px 0;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table tr + tr {
    margin-top: 12px;
  }

  .data-table td {
    border-top: 0;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 10px;
  }
}
