:root {
  color-scheme: light;
  --paper: #f7f7f2;
  --ink: #243d34;
  --muted: #59685f;
  --line: #dce1d8;
  --accent: #254e42;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; }
a { color: inherit; text-underline-offset: 0.22em; }
a:hover { color: var(--accent); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.skip-link {
  position: absolute;
  top: 12px;
  left: 16px;
  padding: 12px;
  background: white;
  transform: translateY(-180%);
  z-index: 1;
}
.skip-link:focus { transform: translateY(0); }

.site-shell {
  width: min(1120px, calc(100% - 96px));
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.site-header { padding-block: 36px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.06em;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding-bottom: 3px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--paper);
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
}
.holding-page {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-block: 80px 110px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #6d8860; }
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.holding-page h1 { font-size: clamp(58px, 8vw, 108px); line-height: 1.04; }
.holding-page h1 em { font-weight: 400; color: #607657; }
.intro { margin: 30px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  padding-block: 26px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 12px 28px; }
.site-footer a { display: inline-block; padding-block: 8px; }
.site-footer a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.legal-page { width: min(100%, 760px); margin: 42px auto 80px; }
.legal-heading { padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.legal-heading .eyebrow { margin-bottom: 20px; }
.legal-heading h1 { font-size: clamp(42px, 6vw, 68px); line-height: 1.08; }
.updated { margin: 24px 0 0; color: var(--muted); font-size: 13px; }
.legal-content { margin-top: 34px; font-size: 16px; line-height: 1.8; overflow-wrap: anywhere; }
.legal-content h2 { margin: 36px 0 12px; font-size: 21px; letter-spacing: -0.025em; line-height: 1.35; }
.legal-content h3 { margin: 28px 0 10px; font-size: 17px; line-height: 1.4; }
.legal-content p, .legal-content ul, .legal-content ol { margin: 0 0 18px; }
.legal-content ul, .legal-content ol { padding-left: 24px; }
.legal-content li + li { margin-top: 6px; }
.legal-content blockquote {
  margin: 0 0 28px;
  padding: 18px 22px;
  border-left: 3px solid #8a9b7b;
  background: #edf0e7;
}
.legal-content blockquote > :last-child { margin-bottom: 0; }
.legal-content hr { margin: 28px 0; border: 0; border-top: 1px solid var(--line); }
.legal-content table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; }
.legal-content th, .legal-content td { padding: 10px; border: 1px solid var(--line); text-align: left; }
.legal-content pre { max-width: 100%; overflow-x: auto; padding: 16px; background: #edf0e7; }
.legal-content img { max-width: 100%; height: auto; }

@media (max-width: 620px) {
  .site-shell { width: calc(100% - 40px); }
  .site-header { padding-block: 24px; }
  .holding-page { padding-block: 70px 100px; }
  .site-footer { align-items: flex-start; flex-direction: column; gap: 8px; padding-block: 22px; }
  .site-footer nav { gap: 8px 22px; }
  .legal-page { margin-block: 32px 56px; }
  .legal-content { font-size: 15px; }
}

@media print {
  :root { color: black; background: white; }
  .site-shell { width: 100%; min-height: 0; }
  .site-header, .site-footer, .skip-link { display: none; }
  .legal-page { width: 100%; margin: 0; }
  .legal-heading h1 { font-size: 32px; }
  .legal-content { font-size: 11pt; }
  .legal-content h2, .legal-content h3 { break-after: avoid; }
}
