:root {
  color-scheme: light;
  --ink: #172c3c;
  --muted: #52626d;
  --navy: #102d42;
  --accent: #155b7c;
  --paper: #ffffff;
  --page: #f7f8f8;
  --line: #d7e0e5;
}
* { box-sizing: border-box; }
html { scroll-padding-top: 2rem; }
body { margin: 0; color: var(--ink); background: var(--page); font-family: Arial, Helvetica, sans-serif; font-size: 17px; line-height: 1.7; }
a { color: var(--accent); text-underline-offset: .2em; overflow-wrap: anywhere; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible { outline: 3px solid #b66a10; outline-offset: 4px; border-radius: 2px; }
.skip-link { position: absolute; left: 1rem; top: -6rem; z-index: 5; padding: .75rem 1rem; background: white; }
.skip-link:focus { top: 1rem; }
.site-header { background: var(--navy); color: white; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: flex; flex-direction: column; line-height: 1.25; color: white; text-decoration: none; }
.brand-kicker { font-size: .64rem; letter-spacing: .22em; font-weight: 700; color: #c5d9e7; margin-bottom: .35rem; }
.brand-name { font-family: Georgia, 'Times New Roman', serif; font-size: 1.5rem; }
.back-link { color: #ecf3f8; font-size: .86rem; min-height: 44px; display: flex; align-items: center; gap: .5rem; }
.layout { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem 4rem; display: grid; grid-template-columns: 235px minmax(0, 1fr); gap: 3.5rem; align-items: start; }
.contents { position: sticky; top: 2rem; }
.eyebrow { font-size: .7rem; line-height: 1.5; letter-spacing: .13em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.contents > .eyebrow { padding-bottom: 1.5rem; margin: 0 0 1.5rem; border-bottom: 1px solid var(--line); }
.nav-title { color: var(--ink); font-size: .82rem; font-weight: 700; margin: 0 0 .7rem; }
.contents nav a { display: flex; align-items: center; min-height: 44px; font-size: .9rem; padding: .4rem 0; text-decoration: none; }
.contents nav a:hover { text-decoration: underline; }
.aside-note { color: var(--muted); font-size: .78rem; line-height: 1.7; margin-top: 2rem; }
.policy { min-width: 0; padding: 2.5rem 3rem 1.5rem; background: var(--paper); border: 1px solid var(--line); }
.intro .eyebrow { margin-top: 0; }
h1, h2 { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; letter-spacing: -.025em; color: var(--ink); }
h1 { font-size: clamp(2.3rem, 4vw, 3.45rem); line-height: 1.1; margin: .9rem 0 1.5rem; }
.lead { font-size: 1.16rem; color: var(--muted); line-height: 1.55; margin-bottom: 1.5rem; }
p { margin: .8rem 0 1rem; }
section { border-top: 1px solid var(--line); padding-top: 1.7rem; margin-top: 2rem; scroll-margin-top: 2rem; }
h2 { font-size: 1.75rem; line-height: 1.25; margin: 0 0 1.15rem; }
h3 { font-size: .98rem; line-height: 1.5; margin: 1.5rem 0 .4rem; }
.keywords { margin: 1.3rem 0; }
.keywords > div { display: grid; grid-template-columns: 75px minmax(0, 1fr); gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.keywords > div:first-child { border-top: 1px solid var(--line); }
.keywords dt { font-family: 'Courier New', monospace; font-size: .95rem; font-weight: 700; padding-top: .1rem; }
.keywords dd { margin: 0; }
.contact-details { display: flex; flex-direction: column; align-items: flex-start; font-style: normal; }
.contact-details a { display: flex; align-items: center; min-height: 44px; max-width: 100%; }
.policy-footer { border-top: 1px solid var(--line); margin-top: 2.4rem; padding-top: 1.2rem; color: var(--muted); font-size: .75rem; }
.policy-footer a { display: inline-flex; align-items: center; min-height: 44px; }
@media (max-width: 960px) {
  .layout { grid-template-columns: 185px minmax(0, 1fr); gap: 2rem; padding: 2.5rem 1.5rem; }
  .policy { padding: 2rem; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .header-inner { padding: 1rem 1.25rem; gap: 1rem; }
  .brand-name { font-size: 1.2rem; }
  .back-link { font-size: .75rem; }
  .layout { display: block; padding: 1.5rem 1rem 2rem; }
  .contents { position: static; margin-bottom: 1.5rem; }
  .contents > .eyebrow, .aside-note, .nav-title { display: none; }
  .contents nav { display: flex; flex-wrap: wrap; column-gap: 1.25rem; }
  .contents nav a { font-size: .82rem; }
  .policy { padding: 1.75rem 1.25rem 1rem; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 1.55rem; }
  .keywords > div { grid-template-columns: 57px minmax(0, 1fr); gap: .7rem; }
}
@media print {
  body { background: white; color: black; font-size: 12pt; }
  .site-header, .contents, .skip-link, .policy-footer a { display: none; }
  .layout { display: block; max-width: none; padding: 0; }
  .policy { padding: 0; border: 0; }
  h1 { font-size: 26pt; }
  h2 { font-size: 19pt; }
  h2, h3 { break-after: avoid; }
  .keywords > div, .contact-details { break-inside: avoid; }
}
