*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; overflow-x: hidden; font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  color: var(--color-text); background: var(--color-bg);
}
img, svg { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 var(--space-3); color: var(--color-navy); }
h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 var(--space-4); }
ul, ol { padding-left: 1.3em; }
table { border-collapse: collapse; width: 100%; }

.container { width: min(var(--container), 100% - 2 * var(--space-5)); margin-inline: auto; }
.narrow { max-width: 760px; }
.site-main { min-height: 60vh; }
.section { padding-block: var(--space-7); }
.section--alt { background: var(--color-surface-alt); }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); margin-bottom: var(--space-5); }
.section__title { margin: 0; }
.eyebrow { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; color: var(--color-coral); margin-bottom: var(--space-2); }
.lead { font-size: 1.15rem; color: var(--color-muted); }
.muted { color: var(--color-muted); }
.small { font-size: .875rem; }
.num { text-align: right; white-space: nowrap; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--color-navy); color: #fff; padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { left: 8px; }
.link-arrow::after { content: " \2192"; }

.split { display: grid; gap: var(--space-6); grid-template-columns: minmax(0, 1fr); }
.split > * { min-width: 0; }
@media (min-width: 860px) {
  .split { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .split--cart { grid-template-columns: 1.6fr 1fr; }
}
.table-scroll { overflow-x: auto; }
.table th, .table td { padding: var(--space-3) var(--space-3); border-bottom: 1px solid var(--color-border); vertical-align: middle; text-align: left; }
.table thead th { font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); }
.table tfoot td { border-bottom: 0; color: var(--color-muted); }
.table__grand td { font-weight: 700; color: var(--color-navy); font-size: 1.1rem; border-top: 2px solid var(--color-border); }
.prose h2 { margin-top: var(--space-6); }
.prose li { margin-bottom: var(--space-2); }
