/* ==========================================================================
   Mantios — AML/CTF Compliance for Accountants & Real Estate
   One shared stylesheet. No external requests: system font stacks only,
   no @import, no remote assets.

   Palette is the ratified navy/gold set. Three tokens are added on top of
   it, each for a measured contrast reason (see notes beside them) — the
   ratified values themselves are unchanged.
   ========================================================================== */

:root {
  /* ratified */
  --color-primary:      #1E3A8A;   /* authority navy   — 9.97:1 on background */
  --color-on-primary:   #FFFFFF;   /* 10.44:1 on primary */
  --color-secondary:    #1E40AF;
  --color-accent:       #B45309;   /* trust gold — CTA fills, 5.02:1 with white */
  --color-background:   #F8FAFC;
  --color-foreground:   #0F172A;   /* headings — 17.2:1 on background */
  --color-muted:        #E9EEF5;   /* tinted bands */
  --color-border:       #CBD5E1;   /* DECORATIVE hairlines only — 1.42:1, never a control edge */
  --color-ring:         #1E3A8A;

  /* added, for contrast reasons only */
  --color-accent-deep:  #8F4207;   /* accent as *text*: 6.80:1 on bg, 6.11:1 on muted (plain --color-accent is 4.31:1 on muted and would fail) */
  --color-control:      #64748B;   /* control edges — 4.55:1 on bg, clears WCAG 1.4.11's 3:1 */
  --color-body:         #1E293B;   /* body copy — 13.97:1 on bg */
  --color-meta:         #475569;   /* meta / small print — 7.24:1 on bg, 6.50:1 on muted */
  --paper:              #FFFFFF;   /* cards, inputs */

  /* ONE typeface for the whole site. Hierarchy comes from weight, size, colour
     and spacing — never from a second family. The old --serif token is gone: it
     led with a face that is not installed everywhere, so the generic fallback
     decided the page and no two visitors saw the same thing. The old --mono
     token is gone because nothing that wore it was code — prices, ABNs, phone
     numbers and eyebrows are prose. Do not reintroduce either. */
  --sans:  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Depth. Two soft layers off the same navy-black so surfaces separate from the
     page without a hard edge — a tight contact shadow plus a wide ambient one.
     No blur filters, no glass: this is a compliance vendor, not a dashboard. */
  --shadow-1: 0 1px 2px rgba(15, 23, 42, .06), 0 4px 12px rgba(15, 23, 42, .08);
  --shadow-2: 0 2px 4px rgba(15, 23, 42, .07), 0 10px 24px rgba(15, 23, 42, .11);
  --radius:   10px;
  --radius-sm: 8px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--color-background);
  color: var(--color-body);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  color: var(--color-foreground);
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: -0.025em; max-width: 20ch; }
h2 { font-size: clamp(1.4375rem, 2.6vw, 1.9375rem); letter-spacing: -0.02em; max-width: 26ch; }
h3 { font-size: 1.125rem; letter-spacing: -0.008em; line-height: 1.3; }
p, li { max-width: 68ch; text-wrap: pretty; }
a { color: var(--color-accent-deep); text-underline-offset: 3px; }
a:hover { color: var(--color-primary); }
strong { color: var(--color-foreground); font-weight: 600; }

.wrap { max-width: 66rem; margin-inline: auto; padding-inline: clamp(1.125rem, 4vw, 2.5rem); }
:focus-visible { outline: 2px solid var(--color-ring); outline-offset: 3px; border-radius: 2px; }

/* Eyebrows, kickers and labels: same family as everything else. What used to be
   carried by the mono face is now carried by weight + tracking + caps. */
.eyebrow {
  display: block; margin-bottom: .8rem;
  font-size: .8125rem; font-weight: 700; letter-spacing: .085em; line-height: 1.4;
  text-transform: uppercase; color: var(--color-meta);
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 10;
  background: var(--color-foreground); color: #fff; padding: .75rem 1rem; text-decoration: none;
}
.skip:focus { left: 0; color: #fff; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: .7rem 1.5rem;
  font-family: inherit; font-weight: 600; font-size: 1.0625rem;
  border: 1px solid transparent; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.btn-primary { background: var(--color-accent); color: var(--color-on-primary); box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--color-accent-deep); color: var(--color-on-primary); box-shadow: var(--shadow-2); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-control); }
.btn-outline:hover { border-color: var(--color-primary); background: var(--color-muted); color: var(--color-primary); }
.btn-sm { min-height: 44px; padding: .5rem 1.1rem; font-size: .9375rem; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  /* transition:none only removes the tween — the transform would still snap.
     Hover feedback survives as the shadow change, which is motionless. */
  .card:hover, .next a:hover { transform: none !important; }
}

/* ---------- site header ---------- */
header.site { background: var(--paper); border-bottom: 1px solid var(--color-border); }
header.site .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .5rem 2rem; padding-block: .75rem;
}
.lockup {
  font-size: 1.25rem; color: var(--color-foreground);
  text-decoration: none; display: block; padding-block: .3rem;
}
.lockup b { font-weight: 700; letter-spacing: -0.015em; }
.lockup .descriptor {
  display: block; font-size: .75rem; font-weight: 500; line-height: 1.4;
  color: var(--color-meta); margin-top: .15rem;
}
nav.site { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem 1.25rem; }
nav.site a:not(.btn) {
  display: inline-flex; align-items: center; min-height: 44px;
  font-size: .96875rem; color: var(--color-primary); text-decoration: none;
  border-bottom: 2px solid transparent;
}
nav.site a:not(.btn):hover { border-bottom-color: var(--color-accent); }
nav.site a[aria-current="page"] { color: var(--color-foreground); border-bottom-color: var(--color-accent); }

/* ---------- sections ---------- */
section { padding-block: clamp(2.5rem, 6vw, 4rem); }
section.band { background: var(--color-muted); border-block: 1px solid var(--color-border); }
/* Light, not navy. It used to be --color-primary, which put it directly above a
   navy footer with no boundary — the page ended in one unbroken slab of dark
   blue and the footer stopped reading as a footer. Navy now appears exactly
   once on the page, and that once is the footer. */
section.panel { background: var(--color-muted); border-top: 3px solid var(--color-accent); border-bottom: 1px solid var(--color-border); }
section + section:not(.band):not(.panel) { border-top: 1px solid var(--color-border); }
.lede { margin-top: 1rem; font-size: 1.0625rem; }

/* ---------- one idea per section ----------
   These WERE full-viewport scroll-snap frames (min-height:100svh, centred).
   Removed 31 Jul after seeing it on a large monitor: with each section cut to
   ~50 words, a 1900px-tall viewport rendered a small island of text in a sea of
   empty page. The pattern needs content sized to the viewport, and the whole
   point of this pass was to make the content *shorter*. The two goals were in
   direct conflict and the word cut is the one worth keeping.

   So: normal document flow, generous rhythm, no snap, no forced height. If
   full-screen frames are ever wanted again, they need art direction per frame
   (an image, a figure, something with real vertical mass) — not more words. */
section.frame { padding-block: clamp(3rem, 7vw, 5.5rem); }
section.frame > .wrap { width: 100%; }
p + p, .lede + p, p + ul, ul + p { margin-top: .85rem; }
p + h3 { margin-top: 1.75rem; margin-bottom: .35rem; }   /* subheading inside a prose section */

.hero { padding-block: clamp(3rem, 7vw, 4.75rem) clamp(2.5rem, 5vw, 3.25rem); }
.hero .deck {
  color: var(--color-accent-deep); font-weight: 600;
  font-size: clamp(1.1875rem, 2.4vw, 1.5rem); line-height: 1.25; letter-spacing: -0.015em;
  margin-top: .6rem; max-width: 32ch;
}
.hero .sub { margin-top: 1.5rem; font-size: 1.0625rem; max-width: 58ch; }
.ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1.25rem; }
.ctas .aside { font-size: .96875rem; color: var(--color-meta); }
.ctas .aside a { white-space: nowrap; }

.pull {
  margin-top: 2rem; max-width: 44rem;
  border-left: 3px solid var(--color-accent); padding: .2rem 0 .2rem 1.25rem;
  color: var(--color-foreground);
}
/* ---------- credibility strip ----------
   The third C. Sits inside the hero, in view of the primary CTA, and carries the
   only credibility we are allowed to claim: a real name, a real ABN, the terms,
   and the delivery window. It replaced a single-line uppercase .trust-row, which
   read as a legal disclaimer rather than as a reason to trust anyone.
   The 1px grid gap over a border-coloured background draws the dividers, so the
   cells need no borders of their own and nothing double-lines at a wrap. */
.cred {
  margin-top: 1.75rem; max-width: 54rem; list-style: none;
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--color-border); border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow-1); overflow: hidden;
}
@media (min-width: 34rem) { .cred { grid-template-columns: 1fr 1fr; } }
@media (min-width: 62rem) { .cred { grid-template-columns: repeat(4, 1fr); } }
.cred li { max-width: none; background: var(--paper); padding: .9rem 1.1rem; }
.cred b { display: block; color: var(--color-foreground); font-size: .9375rem; font-weight: 700; line-height: 1.35; }
.cred span { display: block; margin-top: .1rem; font-size: .8125rem; line-height: 1.45; color: var(--color-meta); }

/* ---------- market context (AUSTRAC's published table) ----------
   Third-party figures, attributed on the face of the block. Never our numbers:
   the caption names AUSTRAC and the date, and the source note says in words that
   these are enrolled entities across the sector, not Mantios clients. */
.stats {
  margin-top: 2rem; max-width: 54rem;
  background: var(--paper); border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 1.35rem 1.5rem;
}
.stats figcaption {
  font-size: .8125rem; font-weight: 700; letter-spacing: .085em; line-height: 1.4;
  text-transform: uppercase; color: var(--color-meta);
}
.stats ul { list-style: none; margin-top: 1.15rem; display: grid; gap: 1.1rem; }
@media (min-width: 40rem) { .stats ul { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }
.stats li { max-width: none; }
.stats b {
  display: block; font-size: clamp(1.5rem, 3.6vw, 1.875rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1; color: var(--color-primary);
  font-variant-numeric: tabular-nums;
}
.stats li span { display: block; margin-top: .25rem; font-size: .9375rem; line-height: 1.45; }
.stats .source {
  margin-top: 1.25rem; padding-top: .9rem; border-top: 1px solid var(--color-border);
  font-size: .8125rem; line-height: 1.6; color: var(--color-meta); max-width: none;
}

/* ---------- the obligations ledger ----------
   A real timeline, not a table. The rule is the left border of the .mark cell:
   consecutive milestones share an edge, so the segments join into one unbroken
   line with no absolutely-positioned spine to keep in sync. Spacing therefore
   lives on .when/.what (inside the row), never on .mile — padding on the row
   itself would punch gaps in the rule.
   Markers are hand-drawn inline SVG; their fill is the band colour so the rule
   passes behind, not through, each dot. */
.ledger { margin-top: 2rem; list-style: none; }
.ledger li { max-width: none; }
.mile { display: grid; grid-template-columns: 1.75rem 1fr; }
.mile .mark { grid-column: 1; grid-row: 1 / span 2; position: relative; border-left: 2px solid var(--color-border); }
.mile .dot { position: absolute; left: -9px; top: .3rem; display: block; }
.mile .when, .mile .what { grid-column: 2; padding-left: 1.1rem; }
.mile .when { grid-row: 1; padding-bottom: .3rem; }
.mile .what { grid-row: 2; padding-bottom: 2.25rem; }
@media (min-width: 48rem) {
  .mile { grid-template-columns: 1.75rem 12rem 1fr; }
  .mile .mark { grid-row: 1; }
  .mile .when { grid-column: 2; grid-row: 1; padding-bottom: 2.25rem; }
  .mile .what { grid-column: 3; grid-row: 1; padding-left: .5rem; }
}
.mile:last-child .when, .mile:last-child .what { padding-bottom: 0; }

.mile .when {
  font-size: .8125rem; font-weight: 600; line-height: 1.5;
  letter-spacing: .04em; text-transform: uppercase; color: var(--color-meta);
  font-variant-numeric: tabular-nums;
}
.mile .when b { display: block; color: var(--color-foreground); font-weight: 700; letter-spacing: .01em; font-size: .9375rem; }
.mile .what h3 { margin-bottom: .3rem; }
.mile .what p { font-size: 1rem; }
.mile .tag {
  display: inline-block; margin-top: .55rem; padding: .1rem .6rem;
  background: var(--paper); border: 1px solid var(--color-control); border-radius: 999px;
  font-size: .75rem; font-weight: 700; letter-spacing: .05em; color: var(--color-accent-deep);
}
/* Passed vs open. The passed milestone gets a tick and drops to meta grey; the
   open ones keep an accent ring with a filled core. */
.mile .dot .ring { fill: var(--color-muted); stroke: var(--color-accent-deep); stroke-width: 1.75; }
.mile .dot .core { fill: var(--color-accent-deep); stroke: none; }
.mile .dot .tick { fill: none; stroke: var(--color-meta); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mile.is-past .dot .ring { stroke: var(--color-control); }
.mile.is-past .when b { color: var(--color-meta); }
.mile.is-past .tag { color: var(--color-meta); }

.foot-note { margin-top: 1.5rem; font-size: .96875rem; color: var(--color-meta); max-width: 62ch; }

/* ---------- card grids ---------- */
.grid { margin-top: 2rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .grid.two, .grid.four { grid-template-columns: 1fr 1fr; } }
/* Four across, not 2x2: the cards are seven words each now, and one row keeps
   the whole frame inside a short viewport. */
@media (min-width: 62rem) { .grid.four { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.35rem 1.375rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: box-shadow 240ms ease, transform 240ms ease, border-color 240ms ease;
}
/* Only cards that actually go somewhere lift. A card with no link inside is not
   an interactive element and must not pretend to be one. */
.card:has(.more):hover { box-shadow: var(--shadow-2); transform: translateY(-3px); border-color: var(--color-control); }
.card .icon { display: block; color: var(--color-accent-deep); margin-bottom: .8rem; }
.card h3 { margin-bottom: .35rem; }
.card p { font-size: 1rem; }
.card .more {
  margin-top: auto; padding-top: .9rem; font-size: .9375rem; font-weight: 600;
  display: inline-flex; align-items: center; min-height: 44px; text-decoration: none;
  border-bottom: 1px solid transparent; align-self: flex-start;
}
.card .more:hover { border-bottom-color: var(--color-accent); }
.card .more svg { margin-left: .4rem; }

/* Numbered list — the pack contents and the delivery timeline both use it.
   (The old .steps/.step blocks it replaced are gone: same job, less markup.) */
.docs {
  margin-top: 1.5rem; list-style: none; counter-reset: doc; max-width: 50rem;
  background: var(--paper); border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow-1); padding: .3rem 1.35rem;
}
.docs li {
  counter-increment: doc; display: grid; grid-template-columns: 2.75rem 1fr; gap: 1rem;
  padding-block: .9rem; border-bottom: 1px solid var(--color-border); font-size: 1rem; max-width: none;
}
.docs li:last-child { border-bottom: none; }
.docs li::before {
  content: "0" counter(doc); font-size: .8125rem; font-weight: 700; letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
  color: var(--color-meta); padding-top: .3rem;
}
.docs b { color: var(--color-foreground); }

/* ---------- pricing ---------- */
.price-grid { margin-top: 2rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; max-width: 52rem; }
@media (min-width: 46rem) { .price-grid { grid-template-columns: 1fr 1fr; } }
.price-card {
  background: var(--paper); border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
}
.price-card.lead { border-color: var(--color-control); box-shadow: inset 0 3px 0 0 var(--color-accent), var(--shadow-2); }
.price-card .plan { font-size: .8125rem; font-weight: 700; letter-spacing: .085em; text-transform: uppercase; color: var(--color-meta); }
.price-card .amount {
  font-size: clamp(1.625rem, 3.2vw, 1.9375rem); font-weight: 700; letter-spacing: -0.025em;
  color: var(--color-foreground); margin-top: .5rem; line-height: 1.15;
}
.price-card .amount small { font-size: .875rem; color: var(--color-meta); font-weight: 500; letter-spacing: 0; }
.price-card ul { margin: 1.1rem 0 1.4rem; padding-left: 1.1rem; font-size: .96875rem; display: grid; gap: .5rem; }
.price-card ul li { max-width: none; }

/* ---------- trust panel (light) ---------- */
section.panel p { margin-top: 1.1rem; max-width: 62ch; line-height: 1.75; }
section.panel .fine { font-size: .9375rem; color: var(--color-meta); }

/* ---------- form ---------- */
/* The old .intake-layout grid is gone: the form and the direct-contact card are
   now two separate frames, so nothing sits beside anything. */
/* The form is a surface, not loose fields on the page background. Inputs sit on
   --color-background inside it so their edges read against the panel. */
form {
  display: grid; gap: 1.4rem; margin-top: 2rem; max-width: 44rem;
  background: var(--paper); border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  padding: clamp(1.25rem, 3vw, 1.875rem);
}
.field label, fieldset legend { display: block; font-weight: 600; color: var(--color-foreground); font-size: .96875rem; margin-bottom: .4rem; }
.hint { display: block; font-weight: 400; color: var(--color-meta); font-size: .875rem; margin-top: .2rem; }
input[type="text"], input[type="email"], select, textarea {
  width: 100%; font: inherit; color: var(--color-foreground); background: var(--color-background);
  border: 1px solid var(--color-control); border-radius: var(--radius-sm); padding: .65rem .75rem; min-height: 48px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
input[type="text"]:hover, input[type="email"]:hover, select:hover, textarea:hover { border-color: var(--color-primary); }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--color-ring); outline-offset: 1px; border-color: var(--color-primary); }
textarea { min-height: 6.5rem; resize: vertical; }
fieldset { border: none; }
.checks { display: grid; gap: .5rem; margin-top: .5rem; }   /* 8px between 44px-tall label targets */
.checks label {
  display: flex; gap: .75rem; align-items: flex-start; min-height: 44px; padding-block: .5rem;
  font-weight: 400; font-size: .96875rem; color: var(--color-body); cursor: pointer; margin-bottom: 0;
  transition: color 200ms ease;
}
.checks label:hover { color: var(--color-foreground); }
.checks input { width: 1.15rem; height: 1.15rem; margin-top: .35rem; flex: none; accent-color: var(--color-primary); }
.two-col { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 34rem) { .two-col { grid-template-columns: 1fr 1fr; } }

.notice {
  background: var(--paper); border: 1px solid var(--color-control); border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-sm); padding: 1rem 1.125rem; color: var(--color-foreground); font-size: .96875rem;
  box-shadow: var(--shadow-1);
}
/* Success reuses the navy rather than introducing a green — no new token, no new
   contrast pair to verify, and it reads as confirmation not celebration. */
.notice-ok { border-left-color: var(--color-primary); }

/* Honeypot. Off-screen rather than display:none — costs nothing and catches the
   bots that skip hidden fields. Paired with aria-hidden + tabindex="-1" so it is
   invisible to assistive tech too. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

[hidden] { display: none !important; }

.direct {
  background: var(--paper); border: 1px solid var(--color-border); border-top: 3px solid var(--color-primary);
  border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 1.4rem 1.375rem; max-width: 44rem;
}
.direct h2 { font-size: 1.1875rem; margin-bottom: .5rem; max-width: none; }
.direct p { font-size: .9375rem; }
.direct ul { list-style: none; margin-top: 1rem; display: grid; gap: .5rem; }
.direct ul a {
  display: flex; align-items: center; min-height: 44px; font-size: .9375rem; font-weight: 600;
  text-decoration: none; border-bottom: 1px solid var(--color-control);
}
.direct ul a:hover { border-bottom-color: var(--color-accent); }
.direct .who { margin-top: .9rem; font-size: .8125rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--color-meta); }

/* ---------- next-step pair ----------
   Two page views is an engaged session, so every page ends with the two places
   it makes sense to go next. Whole card is the link target. */
.next { margin-top: 2rem; max-width: 54rem; display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 40rem) { .next { grid-template-columns: 1fr 1fr; } }
.next a {
  display: block; padding: 1.1rem 1.25rem; text-decoration: none; color: var(--color-body);
  background: var(--paper); border: 1px solid var(--color-border);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
  transition: box-shadow 240ms ease, transform 240ms ease, border-color 240ms ease;
}
.next a:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); border-color: var(--color-control); color: var(--color-body); }
.next b { display: block; color: var(--color-primary); font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.01em; }
.next a:hover b { color: var(--color-accent-deep); }
.next b svg { margin-left: .35rem; vertical-align: -1px; }
.next span { display: block; margin-top: .2rem; font-size: .9375rem; line-height: 1.5; color: var(--color-meta); }
.next + p, .cred + p, .stats + p { margin-top: 1.25rem; }

/* ---------- footer ---------- */
/* The only navy on the page. Given room to breathe now that it is not competing
   with a dark section directly above it. */
footer.site { background: var(--color-primary); color: var(--color-border); padding-block: clamp(3rem, 6vw, 4.5rem); font-size: .9375rem; line-height: 1.7; }
/* Identity left, links right, no dead gap between them: the old 2fr/1fr grid
   forced a narrow column to hold four short links and left the space in the
   middle empty. Flex lets each side take what it needs and the gap collapses. */
footer.site .cols { display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1.25rem 3rem; }
footer.site .lockup { color: var(--color-on-primary); }
footer.site .lockup .descriptor { color: var(--color-border); }
footer.site a { color: var(--color-on-primary); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .4); }
footer.site a:hover { color: var(--color-on-primary); border-bottom-color: var(--color-on-primary); }
footer.site .ident { margin-top: .75rem; font-size: .875rem; line-height: 1.9; color: var(--color-on-primary); }
footer.site ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0 1.5rem; }
footer.site ul li { max-width: none; }
footer.site ul a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 600; border-bottom: none; }
footer.site ul a:hover { border-bottom: none; text-decoration: underline; }
/* Fine print, and it should look like fine print — clearly subordinate to the
   identity block above it. #B0BED4 on navy is 5.50:1, so it stays comfortably
   above the 4.5:1 floor for small text while reading as secondary. */
footer.site .legal { border-top: 1px solid rgba(255, 255, 255, .2); margin-top: 2.5rem; padding-top: 1.5rem; font-size: .8125rem; line-height: 1.65; color: #B0BED4; }
footer.site .legal p { max-width: 76ch; }
footer.site .legal p + p { margin-top: .45rem; }
footer.site .legal strong { color: var(--color-on-primary); }
