/* ==========================================================================
   eMpower — SEBI Registered Investment Adviser
   Design system: bone / ink / blue. Solid colours, hard edges, no radius.
   Target: WCAG 2.1 Level AA.
   ========================================================================== */

:root {
  /* Surfaces. Light only: ink is used for text and rules, never as a background. */
  --bone:        #F6F4F0;   /* page */
  --bone-band:   #EDEAE3;   /* alternating band, utility strip, footer */
  --white:       #FFFFFF;   /* cards, tables */

  /* Text */
  --ink:         #111111;
  --text:        #111111;   /* on bone   -> 17.9:1  AAA */
  --text-muted:  #55504A;   /* on bone   ->  7.0:1  AAA */

  /* Accent. Hue 208deg, chosen to sit between the teal (191deg) and
     periwinkle (211deg) of the two background photographs. Measured:
     8.06:1 on bone, 8.86:1 white-on-accent, 5.79:1 over the hero image
     and 5.43:1 over the header image at their darkest pixel. */
  --accent:      #0F4C81;
  --accent-deep: #0B3B66;
  --accent-tint: #E4EDF4;  /* table row hover */

  /* Lines */
  --line:        #D6D1C8;
  --line-strong: #111111;

  /* Type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua",
           Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
           "Helvetica Neue", Arial, sans-serif;
  --mono:  ui-monospace, SFMono-Regular, "SF Mono", Consolas,
           "Liberation Mono", Menlo, monospace;

  /* Rhythm */
  --gut:    clamp(1.25rem, 4vw, 2.5rem);
  --shell:  76rem;
  --measure: 68ch;
}

/* --------------------------------------------------------------- reset -- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--text);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Hard edges, everywhere. */
* { border-radius: 0 !important; }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}

p, li { text-wrap: pretty; }

a { color: var(--accent); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-deep); text-decoration-thickness: 2px; }

/* Bare URLs and long email addresses are printed in full in the regulatory copy;
   let them break rather than push the page sideways. */
.prose a, .steps a, .notice a, .contact-list a, .contact-list dd, address {
  overflow-wrap: anywhere;
}

/* One focus style for the whole site. Never removed, only restyled. */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* The header is sticky, so anchored targets must clear it. */
#main, [id] { scroll-margin-top: 7.5rem; }

/* --------------------------------------------------------- primitives -- */

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--ink);
  outline-offset: 0;
}

/* The signature mark: a solid accent square holding the monogram. */
.monogram {
  display: grid;
  place-items: center;
  inline-size: 2.25rem;
  block-size: 2.25rem;
  background: var(--accent);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  flex: none;
}

/* The repeating motif: a short, thick accent rule. */
.rule {
  inline-size: 3.5rem;
  block-size: 4px;
  background: var(--accent);
  border: 0;
  margin: 0 0 1.5rem;
}
.rule--center { margin-inline: auto; }

/* Section index numbers, e.g. 01 / 02 */
.tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bone);
  color: var(--text);
  border-bottom: 1px solid var(--ink);
}

/* Slim strip above the nav: registration on the left, how to reach us on the right. */
.utility {
  background: var(--bone-band);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.utility .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem 1.5rem;
  min-block-size: 2.25rem;
  padding-block: 0.35rem;
}
.utility a { color: var(--text-muted); text-decoration: none; }
.utility a:hover { color: var(--accent); text-decoration: underline; }
.utility-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.utility .reg { color: var(--ink); font-weight: 600; }

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-block-size: 4.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-inline-size: 0;   /* let the wordmark shrink instead of widening the page */
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand > span { min-inline-size: 0; }
.brand:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  flex: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.7rem 0.9rem;
  min-block-size: 44px;
  cursor: pointer;
}
.nav-toggle:hover { background: var(--ink); color: var(--bone); }

.nav-toggle-bars { inline-size: 18px; block-size: 2px; background: currentColor; position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: ""; position: absolute; left: 0; inline-size: 18px; block-size: 2px; background: currentColor;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

.nav ul {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-block-size: 44px;
  padding: 0.75rem 0.95rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* The marker is a bar that lands exactly on the header's hairline. */
.nav a::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: -1px;
  block-size: 3px;
  background: transparent;
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { background: var(--line); }
.nav a[aria-current="page"] { color: var(--accent); }
.nav a[aria-current="page"]::after { background: var(--accent); }

/* On the narrowest screens the "Menu" label is dropped visually but kept for
   assistive tech, so the button still has an accessible name. */
@media (max-width: 30rem) {
  .nav-toggle span:not(.nav-toggle-bars) { position: absolute; inline-size: 1px; block-size: 1px;
    overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .nav-toggle { padding-inline: 1rem; }
}

@media (max-width: 60rem) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--bone);
    border-bottom: 1px solid var(--ink);
    z-index: 40;
  }
  .nav[data-open="true"] { display: block; }
  .nav ul { flex-direction: column; padding: 0.5rem var(--gut) 1.25rem; }
  .nav a {
    border-bottom: 1px solid var(--line);
    padding-inline: 0;
  }
  .nav a::after { display: none; }
  .nav a[aria-current="page"] {
    border-left: 4px solid var(--accent);
    padding-left: 0.75rem;
  }
}

/* --------------------------------------------------------------- hero -- */

/* ---------------------------------------------------- photographic bands --
   Both bands paint the photograph on a ::before layer over a solid bone
   background, rather than setting background-image on the section itself.
   Two reasons: the section keeps a real background-color, so contrast stays
   predictable and auditable; and the opacity blends the image toward bone
   instead of darkening the text behind a scrim.

   Opacity was chosen by measuring the darkest pixel of each photograph
   composited over bone: at 0.50 the hero's worst case is rgb(181,215,222)
   (ink 12.3:1, muted text 5.2:1) and the header's is rgb(177,205,242)
   (ink 11.6:1, muted 4.9:1). Both clear AA with margin. Raising these
   opacities past ~0.60 starts to fail muted text.
   -------------------------------------------------------------------------- */

.hero,
.page-head {
  position: relative;
  isolation: isolate;
  background-color: var(--bone);
  color: var(--text);
  overflow: hidden;
}
.hero::before,
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
}
.hero > .shell,
.page-head > .shell { position: relative; }

.hero::before {
  background-image: url("../img/hero-waves.jpg");
  background-image: image-set(url("../img/hero-waves.webp") type("image/webp"),
                              url("../img/hero-waves.jpg")  type("image/jpeg"));
}
.page-head::before {
  background-image: url("../img/header-waves.jpg");
  background-image: image-set(url("../img/header-waves.webp") type("image/webp"),
                              url("../img/header-waves.jpg")  type("image/jpeg"));
}

.hero {
  padding-block: clamp(3.5rem, 9vw, 7rem);
  border-bottom: 1px solid var(--line);
}
.hero h1 {
  font-size: clamp(2.25rem, 1.4rem + 3.8vw, 4.5rem);
  max-width: 20ch;
  color: var(--ink);
}
.hero p {
  max-width: 56ch;
  margin: 1.5rem 0 0;
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.25rem);
  color: var(--text-muted);
}

/* Page banner for interior pages */
.page-head {
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-size: clamp(1.875rem, 1.2rem + 2.6vw, 3.25rem);
  max-width: 24ch;
  color: var(--ink);
}
.page-head p {
  max-width: var(--measure);
  margin: 1.25rem 0 0;
  color: var(--text-muted);
}

/* Breadcrumb */
.crumbs { padding-block: 1rem; border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; margin: 0; padding: 0;
  font-size: 0.8125rem; color: var(--text-muted); }
.crumbs li::after { content: "/"; margin-left: 0.5rem; color: var(--line); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--text-muted); }
.crumbs [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ------------------------------------------------------------ sections -- */

.section { padding-block: clamp(2.75rem, 6vw, 5rem); }
.section--band { background: var(--bone-band); border-block: 1px solid var(--line); }

.section > .shell > h2 {
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  margin-bottom: 1rem;
}

.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.1rem; }
.prose h2 {
  font-size: clamp(1.375rem, 1.15rem + 0.9vw, 1.875rem);
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.prose h3 { font-size: 1.1875rem; margin-top: 2rem; font-family: var(--sans); font-weight: 700; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: 0.5rem; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul > li {
  position: relative;
  padding-left: 1.5rem;
}
.prose ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  inline-size: 8px;
  block-size: 8px;
  background: var(--accent);
}
.prose ol { list-style: decimal; }
.prose ol ol { list-style: lower-roman; }

/* A light, framed band for the pull-quote. */
.section--quote { background: var(--bone-band); border-block: 1px solid var(--line); }

/* Statement / pull-quote */
.statement {
  border-left: 6px solid var(--accent);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 0;
}
.statement blockquote { margin: 0; }
.statement q, .statement p {
  font-family: var(--serif);
  font-size: clamp(1.375rem, 1.1rem + 1.4vw, 2.125rem);
  line-height: 1.3;
  font-style: italic;
  margin: 0;
}
/* The quotation is the point of the section; do not mute it. */
.statement cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ------------------------------------------------------------- credentials */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.fact { background: var(--white); padding: 1.5rem; }

.fact dt {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.fact dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.25;
}
.fact dd small { display: block; font-family: var(--sans); font-size: 0.8125rem;
  font-weight: 400; color: var(--text-muted); margin-top: 0.35rem; }

/* ------------------------------------------------------------- cards -- */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  padding: 1.75rem;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.card p { margin: 0 0 1.25rem; color: var(--text-muted); }
.card .card-link { margin-top: auto; font-weight: 600; text-decoration: none; }
.card .card-link::after { content: " \2192"; }
.card .card-link:hover { text-decoration: underline; }

/* Whole-card click target without nesting interactive elements. */
.card { position: relative; }
.card .card-link::before { content: ""; position: absolute; inset: 0; }
.card:has(.card-link:focus-visible) { outline: 3px solid var(--accent); outline-offset: 2px; }
.card:has(.card-link:focus-visible) .card-link:focus-visible { outline: none; }
.card:hover { border-color: var(--ink); }

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-block-size: 48px;
  padding: 0.85rem 1.5rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
}
.btn:hover { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--white); }

.btn--ghost { background: transparent; color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--white); }

.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* --------------------------------------------------------------- tables -- */

.table-wrap {
  position: relative;   /* contain the absolutely-positioned .visually-hidden cells;
                           without this they anchor to the page and, sitting at the far
                           edge of a wide table, drag the whole document sideways. */
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  background: var(--white);
  margin-top: 1.5rem;
}
/* Keyboard users must be able to scroll the region, so it is focusable. */
.table-wrap:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.table-scroll-hint {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

table {
  inline-size: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

caption {
  caption-side: top;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
caption .caption-note {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-size: 0.8125rem;
}

thead th {
  background: var(--bone-band);
  color: var(--ink);
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1rem;
  vertical-align: bottom;
  white-space: nowrap;
  border-bottom: 2px solid var(--ink);
}

tbody th, tbody td { padding: 0.85rem 1rem; border-top: 1px solid var(--line); vertical-align: top; }
tbody th { text-align: left; font-weight: 600; }
tbody tr:nth-child(even) { background: var(--bone); }
tbody tr:hover { background: var(--accent-tint); }

td.num, th.num { font-family: var(--mono); font-variant-numeric: tabular-nums; text-align: right; }
tbody tr.is-total { border-top: 3px solid var(--ink); }
tbody tr.is-total th, tbody tr.is-total td { font-weight: 700; background: var(--bone-band); }

.table-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }
.table-note p { margin: 0.35rem 0; }

/* Long tables get a bounded, scrollable body region. */
.table-wrap--tall { max-block-size: 32rem; overflow-y: auto; }
.table-wrap--tall thead th { position: sticky; top: 0; z-index: 2; }

/* -------------------------------------------------------------- contact -- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(18rem, 100%), 1fr));
  gap: 2.5rem;
  align-items: start;
}

.identity {
  background: var(--white);
  color: var(--text);
  padding: clamp(1.5rem, 5vw, 2.5rem);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
}
.identity .monogram {
  inline-size: 4.5rem;
  block-size: 4.5rem;
  font-size: 2rem;
  margin-bottom: 1.75rem;
}
.identity h2 { color: var(--ink); font-size: 2rem; }
.identity .role {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0.5rem 0 0;
}

.contact-list { margin: 0; }
.contact-list dt {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1.5rem;
}
.contact-list dt:first-child { margin-top: 0; }
.contact-list dd { margin: 0.4rem 0 0; font-size: 1.0625rem; }
.contact-list a { font-weight: 600; }

address { font-style: normal; }

/* Callout for the escalation ladder */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 2rem 0 0; }
.steps > li {
  counter-increment: step;
  position: relative;
  padding: 1.5rem clamp(1rem, 4vw, 1.5rem) 1.5rem clamp(3rem, 12vw, 4.5rem);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: var(--white);
}
.steps > li + li { margin-top: -1px; }
.steps > li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: clamp(1rem, 4vw, 1.5rem);
  top: 1.5rem;
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
}
.steps h3 { font-family: var(--sans); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.4rem; }
.steps p { margin: 0; color: var(--text-muted); }
.steps p + p { margin-top: 0.5rem; }

/* Notice box */
.notice {
  border: 1px solid var(--line-strong);
  border-left: 6px solid var(--accent);
  background: var(--white);
  padding: 1.5rem;
  margin-top: 2rem;
}
.notice h2, .notice h3 { font-family: var(--sans); font-size: 1.0625rem; font-weight: 700; margin-bottom: 0.5rem; }
.notice p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--bone-band);
  color: var(--text-muted);
  border-top: 3px solid var(--accent);
  padding-block: clamp(2.5rem, 5vw, 4rem);
  font-size: 0.9375rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
  gap: 2.5rem;
}
.site-footer h2 {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
}
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { color: var(--accent); text-decoration: underline; }
.site-footer .brand { color: var(--ink); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li + li { margin-top: 0.65rem; }
.site-footer .brand { font-size: 1.25rem; margin-bottom: 1rem; }

.disclaimer {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--bone);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
}
.disclaimer p {
  max-width: 80ch;
  margin: 0 0 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.disclaimer p:last-child { margin-bottom: 0; }

.colophon {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.8125rem;
}

/* ------------------------------------------------------------ utilities -- */

.visually-hidden {
  position: absolute !important;
  inline-size: 1px; block-size: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0;
}

.lede { font-size: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem); color: var(--text-muted); max-width: var(--measure); }

@media print {
  .site-header, .site-footer, .skip-link, .crumbs { display: none; }
  .hero::before, .page-head::before { display: none; }  /* don't waste toner */
  body { background: #fff; color: #000; }
  .table-wrap { overflow: visible; max-block-size: none; }
}
