:root {
  color-scheme: light;
  --ink: #171513;
  --muted: #5f5a52;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #ded8ce;
  --teal: #0f766e;
  --teal-soft: #e8f5f2;
  --focus: #2f6fbd;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #125f97;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #0b456f;
}

a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  border-radius: 0.35rem;
  background: var(--ink);
  color: #fff;
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
}

.header-inner,
.legal-main,
.site-footer {
  width: min(100% - 2rem, 70rem);
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.brand {
  color: var(--ink);
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.1rem;
  font-weight: 750;
  text-decoration: none;
}

.language-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem;
}

.language-nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  text-decoration: none;
}

.language-nav a[aria-current="true"] {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: #075f58;
  font-weight: 700;
}

.legal-main {
  padding-block: 2.5rem 4.5rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}

.legal-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 750;
  text-decoration-thickness: 2px;
}

.localized-section[hidden] {
  display: none;
}

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.3;
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.3rem);
  letter-spacing: -0.035em;
}

h2 {
  margin: 3.25rem 0 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
}

h3 {
  margin: 1.8rem 0 0.7rem;
  font-size: 1.08rem;
}

p,
li {
  max-width: 74ch;
}

li + li {
  margin-top: 0.35rem;
}

.updated {
  margin: 0.55rem 0 1.75rem;
  color: var(--muted);
}

.notice {
  margin-block: 1.5rem;
  border-left: 4px solid var(--teal);
  border-radius: 0.25rem;
  background: var(--teal-soft);
  padding: 1rem 1.15rem;
}

.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--surface);
}

table {
  width: 100%;
  min-width: 52rem;
  border-collapse: collapse;
  font-size: 0.92rem;
  line-height: 1.5;
}

caption {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 750;
}

th,
td {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f2efe8;
  font-weight: 750;
}

.facts {
  display: grid;
  grid-template-columns: minmax(9rem, 0.35fr) 1fr;
  max-width: 54rem;
  margin: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.facts dt,
.facts dd {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0.65rem;
}

.facts dt {
  color: var(--muted);
  font-weight: 700;
}

.source-list {
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 1.5rem 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0.35rem 0;
}

@media (max-width: 42rem) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .language-nav {
    justify-content: flex-start;
  }

  .legal-main {
    padding-top: 1.75rem;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .facts dt {
    border-bottom: 0;
    padding-bottom: 0.15rem;
  }

  .facts dd {
    padding-top: 0.15rem;
  }
}

@media print {
  .skip-link,
  .language-nav,
  .legal-nav {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }

  .legal-main {
    width: 100%;
    padding: 0;
  }

  .table-wrap {
    overflow: visible;
  }

  table {
    min-width: 0;
    font-size: 8pt;
  }
}
