/* ═══════════════════════════════════════════════════════════════════════════
   cf-additions.css — About/Contact/Support pages, the language-bar utility
   links, and the "Our coverage" map. Ported from the Claude Design handoff
   (design_handoff_crisisflare_additions, 2026-07-08). Loaded after client.css.

   Self-contained cf-* namespace + tokens so nothing collides with existing app
   styles. Overriding rule: none of this may visually outrank the crisis bar —
   supporter entry points stay quiet; orange = help-seeker actions only; red =
   Call 000 only.
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
  --cf-navy: #16294C; --cf-navy-deep: #0F1E3A; --cf-orange: #EE7A1E; --cf-orange-ink: #A8470C;
  --cf-blue-050: #E9EEF7; --cf-blue-line: #C7D3E8; --cf-blue-mid: #2A4A86;
  --cf-red: #C0392B; --cf-green: #2F7D5B; --cf-cream: #FBF6EE; --cf-line: #E7DFD0;
  --cf-ink-2: #44506A; --cf-ink-3: #5B6580;
  --cf-r-card: 16px; --cf-r-md: 12px; --cf-r-sm: 9px; --cf-r-pill: 999px;
  --cf-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.cf-scope { font-family: var(--cf-font); color: var(--cf-navy); }
.cf-scope :focus-visible { outline: 3px solid var(--cf-blue-mid); outline-offset: 2px; border-radius: 4px; }
.cf-scope a { color: var(--cf-navy); }
.cf-scope a:hover { color: var(--cf-navy-deep); }
.cf-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--cf-ink-3); margin: 0; }
.cf-h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin: 6px 0 0; text-wrap: balance; }
.cf-h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin: 6px 0 0; text-wrap: balance; }
.cf-h3 { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; line-height: 1.25; margin: 0; }
.cf-lede { font-size: 15.5px; color: var(--cf-ink-2); line-height: 1.55; margin: 10px 0 0; text-wrap: pretty; }
.cf-body { font-size: 14px; color: var(--cf-ink-2); line-height: 1.55; margin: 0; text-wrap: pretty; }
.cf-small { font-size: 13px; color: var(--cf-ink-3); line-height: 1.55; margin: 0; }
.cf-card { background: #fff; border: 1px solid var(--cf-line); border-radius: var(--cf-r-card); padding: 20px; }
.cf-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ── Language-bar utility links (added into the existing .langbar-inner) ── */
.cf-langnav { display: flex; align-items: center; gap: 8px; margin-inline-start: auto; }
.cf-langlink {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--cf-navy); font-size: 13.5px; font-weight: 700; text-decoration: none;
  padding: 7px 13px; border-radius: var(--cf-r-pill); min-height: 38px;
  background: #fff; border: 1px solid var(--cf-blue-line); white-space: nowrap;
}
.cf-langlink svg { width: 14px; height: 14px; flex: none; color: var(--cf-blue-mid); }
.cf-langlink:hover { background: #f4f7fc; border-color: #9fb2d6; }
.cf-langlink[aria-current="page"] { border-color: var(--cf-blue-mid); box-shadow: inset 0 0 0 1px var(--cf-blue-mid); }
.cf-langmore { display: none; position: relative; }
.cf-langmore-btn {
  display: inline-flex; align-items: center; gap: 6px; list-style: none; cursor: pointer;
  background: #fff; border: 1px solid var(--cf-blue-line); color: var(--cf-navy);
  font-size: 13.5px; font-weight: 700; padding: 7px 12px;
  border-radius: var(--cf-r-pill); min-height: 38px; user-select: none;
}
.cf-langmore-btn::-webkit-details-marker { display: none; }
.cf-langmore-btn::marker { content: ""; }
.cf-langmore-btn:hover { background: #f4f7fc; }
.cf-langmore-btn .cf-caret { width: 13px; height: 13px; transform: rotate(90deg); transition: transform .15s ease; }
.cf-langmore[open] .cf-langmore-btn .cf-caret { transform: rotate(-90deg); }
@media (prefers-reduced-motion: reduce) { .cf-langmore-btn .cf-caret { transition: none; } }
.cf-langmore-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0; z-index: 60;
  width: 224px; background: #fff; border: 1px solid var(--cf-blue-line);
  border-radius: var(--cf-r-md); box-shadow: 0 10px 30px rgba(15,30,58,.16); padding: 6px;
}
.cf-langmore-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; min-height: 44px; border-radius: var(--cf-r-sm);
  color: var(--cf-navy); font-weight: 700; font-size: 14.5px; text-decoration: none;
}
.cf-langmore-item:hover { background: var(--cf-blue-050); }
.cf-langmore-item svg { width: 16px; height: 16px; flex: none; color: var(--cf-blue-mid); }
/* ≤1060px: interpreter line drops to its own full-width row (production class is .interp) */
@media (max-width: 1060px) { .langbar .interp { flex-basis: 100%; order: 9; } }
/* ≤760px: the three links collapse into the "More" disclosure */
@media (max-width: 760px) {
  .cf-langnav { display: none; }
  .cf-langmore { display: inline-flex; margin-inline-start: auto; }
}

/* ── Contact page ── */
.cf-page { max-width: 680px; margin-inline: auto; padding: 34px 20px 48px; display: grid; gap: 18px; }
.cf-page > .cf-lede { margin-top: 0; }
.cf-safety { display: flex; gap: 14px; align-items: flex-start; background: var(--cf-blue-050); border: 1px solid var(--cf-blue-line); border-radius: var(--cf-r-card); padding: 18px 20px; }
.cf-safety-ic { width: 22px; height: 22px; flex: none; color: var(--cf-blue-mid); margin-top: 2px; }
.cf-safety .cf-body { margin-top: 6px; }
.cf-safety-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 14px; }
a.cf-chip-000 { display: inline-flex; align-items: center; gap: 7px; background: var(--cf-red); color: #fff; text-decoration: none; font-weight: 800; font-size: 13.5px; padding: 8px 15px; border-radius: var(--cf-r-pill); min-height: 38px; }
a.cf-chip-000:hover { background: #9E2B20; color: #fff; }
.cf-chip-000 svg { width: 15px; height: 15px; }
.cf-quietlink { font-size: 13.5px; font-weight: 700; color: var(--cf-navy); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; background: none; border: 0; font-family: inherit; padding: 0; }
.cf-mailrow { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin: 12px 0 12px; }
.cf-mail { display: inline-flex; align-items: center; gap: 9px; font-size: 19px; font-weight: 800; letter-spacing: -0.01em; color: var(--cf-navy); text-decoration: none; word-break: break-all; }
.cf-mail:hover { text-decoration: underline; text-underline-offset: 4px; }
.cf-mail svg { width: 19px; height: 19px; flex: none; color: var(--cf-blue-mid); }
.cf-copybtn { font-family: inherit; cursor: pointer; background: #fff; color: var(--cf-navy); border: 1.5px solid var(--cf-blue-line); font-weight: 800; font-size: 13px; padding: 6px 14px; border-radius: var(--cf-r-pill); min-height: 34px; }
.cf-copybtn:hover { border-color: var(--cf-blue-mid); background: #f4f7fc; }
.cf-copybtn.ok { background: var(--cf-green); border-color: var(--cf-green); color: #fff; }

/* ── Support us page ── */
.cf-fund { margin: 4px 0 0; padding: 0; display: grid; gap: 10px; }
.cf-fund li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--cf-ink-2); line-height: 1.5; }
.cf-fund svg { width: 18px; height: 18px; flex: none; color: var(--cf-blue-mid); margin-top: 1px; }
.cf-fund strong { color: var(--cf-navy); font-weight: 800; }
.cf-ways { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-way { background: #fff; border: 1px solid var(--cf-line); border-radius: var(--cf-r-card); padding: 18px 20px; }
.cf-way svg { width: 20px; height: 20px; color: var(--cf-blue-mid); margin-bottom: 9px; }
.cf-way .cf-body { margin-top: 5px; }
@media (max-width: 560px) { .cf-ways { grid-template-columns: 1fr; } }
.cf-form { display: grid; gap: 14px; margin-top: 16px; }
/* display:grid overrides the UA [hidden]{display:none}, so hide explicitly on success */
.cf-form[hidden] { display: none; }
.cf-field { display: grid; gap: 5px; }
.cf-label { font-size: 13px; font-weight: 800; color: var(--cf-navy); }
.cf-label .opt { font-weight: 600; color: var(--cf-ink-3); }
.cf-input, .cf-textarea { font-family: inherit; font-size: 15px; color: var(--cf-navy); background: #fff; border: 1.5px solid #D8CDB8; border-radius: var(--cf-r-sm); padding: 10px 13px; min-height: 44px; width: 100%; }
.cf-textarea { min-height: 88px; resize: vertical; }
.cf-input:hover, .cf-textarea:hover { border-color: #C2B7A0; }
.cf-input:focus-visible, .cf-textarea:focus-visible { outline: 3px solid var(--cf-blue-mid); outline-offset: 1px; border-color: var(--cf-blue-mid); }
.cf-radiogrid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 0; padding: 0; margin: 0; }
.cf-radiogrid legend { padding: 0; margin: 0 0 5px; }
.cf-radio { position: relative; display: flex; gap: 10px; align-items: flex-start; cursor: pointer; background: #fff; border: 1.5px solid #D8CDB8; border-radius: var(--cf-r-md); padding: 12px 14px; min-height: 44px; }
.cf-radio:hover { border-color: var(--cf-blue-mid); }
.cf-radio input { accent-color: var(--cf-navy); width: 17px; height: 17px; margin: 2px 0 0; flex: none; }
.cf-radio:has(input:checked) { border-color: var(--cf-navy); box-shadow: inset 0 0 0 1px var(--cf-navy); background: #F7F9FD; }
.cf-radio b { display: block; font-size: 14px; font-weight: 800; }
.cf-radio small { display: block; font-size: 12.5px; color: var(--cf-ink-3); margin-top: 1px; }
@media (max-width: 560px) { .cf-radiogrid { grid-template-columns: 1fr; } }
.cf-submit { font-family: inherit; cursor: pointer; justify-self: start; background: var(--cf-navy); color: #fff; border: none; font-weight: 800; font-size: 14.5px; padding: 0 22px; min-height: 46px; border-radius: var(--cf-r-pill); }
.cf-submit:hover { background: var(--cf-navy-deep); }
.cf-submit:disabled { opacity: .6; cursor: default; }
.cf-form-fine { font-size: 12.5px; color: var(--cf-ink-3); line-height: 1.55; margin: 2px 0 0; }
.cf-form-err { font-size: 13px; color: var(--cf-red); font-weight: 700; margin: 2px 0 0; }
.cf-form-ok { display: flex; gap: 13px; align-items: flex-start; margin-top: 16px; background: #EDF5F1; border: 1px solid #BDDACC; border-radius: var(--cf-r-md); padding: 16px 18px; }
.cf-form-ok[hidden] { display: none; }
.cf-form-ok svg { width: 20px; height: 20px; flex: none; color: var(--cf-green); margin-top: 1px; }
.cf-form-ok .cf-body { margin-top: 4px; }

/* ── About · "Our promise" narrative ── */
.cf-story { max-width: 1000px; margin-inline: auto; padding: 40px 20px 4px; }
.cf-story-inner { max-width: 66ch; }
.cf-story .cf-h2 { margin-top: 8px; }
.cf-story-lede { font-size: 16px; color: var(--cf-ink-2); line-height: 1.6; margin: 16px 0 0; text-wrap: pretty; }
.cf-story-pull { font-size: 19px; font-weight: 800; color: var(--cf-navy); line-height: 1.4; margin: 24px 0; padding-inline-start: 16px; border-inline-start: 3px solid var(--cf-blue-mid); text-wrap: balance; }
.cf-story p.cf-body { font-size: 14.5px; margin-top: 14px; }
.cf-story-foot { font-size: 14px; color: var(--cf-ink-3); line-height: 1.55; margin-top: 22px; }
@media (max-width: 760px) { .cf-story { padding-top: 28px; } .cf-story-pull { font-size: 17.5px; } }

/* ── About · "Why we're different" ── */
.cf-diff { max-width: 1000px; margin-inline: auto; padding: 36px 20px 8px; }
.cf-diff .cf-lede { max-width: 66ch; }
.cf-diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.cf-diff-card { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--cf-line); border-radius: var(--cf-r-card); padding: 18px 20px; }
.cf-diff-ic { width: 44px; height: 44px; flex: none; border-radius: var(--cf-r-md); background: var(--cf-blue-050); color: var(--cf-blue-mid); display: flex; align-items: center; justify-content: center; }
.cf-diff-ic svg { width: 22px; height: 22px; }
.cf-diff-card .cf-body { margin-top: 5px; }
.cf-diff-minis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 14px; }
.cf-diff-mini { padding: 4px 2px; }
.cf-diff-mini .mhead { display: flex; align-items: center; gap: 8px; }
.cf-diff-mini svg { width: 17px; height: 17px; flex: none; color: var(--cf-blue-mid); }
.cf-diff-mini .is-flare svg { color: var(--cf-orange-ink); }
.cf-diff-mini h3 { font-size: 14px; font-weight: 800; margin: 0; }
.cf-diff-mini p { font-size: 13px; color: var(--cf-ink-3); line-height: 1.5; margin: 6px 0 0; text-wrap: pretty; }
.cf-diff-cta { margin: 24px 0 0; font-size: 13.5px; color: var(--cf-ink-3); }
.cf-diff-cta a { color: var(--cf-navy); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; display: inline-flex; align-items: center; gap: 5px; }
.cf-diff-cta a svg { width: 14px; height: 14px; }
.cf-diff-cta a:hover { color: var(--cf-navy-deep); }
@media (max-width: 760px) { .cf-diff-grid { grid-template-columns: 1fr; } .cf-diff-minis { grid-template-columns: 1fr 1fr; gap: 18px 14px; } }

/* ── About · "Our coverage" map + table ── */
.cf-cover { max-width: 1000px; margin-inline: auto; padding: 36px 20px 44px; }
.cf-cover h2 strong { color: var(--cf-orange-ink); font-variant-numeric: tabular-nums; }
.cf-cover .cf-lede { max-width: 62ch; }
.cf-cover-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 30px; align-items: start; margin-top: 24px; }
@media (max-width: 760px) { .cf-cover-grid { grid-template-columns: 1fr; } }
.cf-map { margin: 0; }
.cf-map svg { width: 100%; height: auto; display: block; }
.cf-map-t { font-family: var(--cf-font); text-anchor: middle; }
.cf-map-t .ab { font-size: 15px; font-weight: 800; letter-spacing: .08em; opacity: .8; }
.cf-map-t .ct { font-size: 27px; font-weight: 800; font-variant-numeric: tabular-nums; }
.cf-map-t.dark { fill: #fff; }
.cf-map-t.light { fill: var(--cf-navy); }
.cf-map-side { font-family: var(--cf-font); fill: var(--cf-navy); font-weight: 800; font-size: 21px; font-variant-numeric: tabular-nums; }
/* Central Australia sits INSIDE the NT shape and is a subset of its count, so it is deliberately
   quieter than a state label — smaller, lighter, with a locator dot. It has to read as "a place
   within the NT", not as a ninth territory. */
.cf-map-sub .ab { font-size: 11.5px; letter-spacing: .1em; opacity: .72; }
.cf-map-sub .ct { font-size: 19px; }
.cf-map-dot { fill: var(--cf-navy); opacity: .62; }
.cf-map-legend { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 12px; font-size: 12.5px; color: var(--cf-ink-3); font-weight: 600; }
.cf-map-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cf-map-legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; border: 1px solid rgba(15,30,58,.12); }
.cf-t1 { fill: #2F4C7C; } .cf-t2 { fill: #5C77A6; } .cf-t3 { fill: #A9BCDA; } .cf-t4 { fill: #D9E2F2; }
i.cf-t1 { background: #2F4C7C; } i.cf-t2 { background: #5C77A6; } i.cf-t3 { background: #A9BCDA; } i.cf-t4 { background: #D9E2F2; }
.cf-cover-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.cf-cover-table th, .cf-cover-table td { text-align: start; padding: 9px 4px; border-top: 1px solid var(--cf-line); }
.cf-cover-table thead th { font-size: 11.5px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--cf-ink-3); border-top: 0; padding-top: 0; }
.cf-cover-table tbody th { font-weight: 700; color: var(--cf-navy); }
.cf-cover-table td { text-align: end; font-weight: 800; font-variant-numeric: tabular-nums; color: var(--cf-navy); }
.cf-cover-table tfoot th { font-weight: 800; color: var(--cf-navy); border-top: 2px solid var(--cf-blue-line); }
.cf-cover-table tfoot td { text-align: end; font-weight: 800; color: var(--cf-orange-ink); border-top: 2px solid var(--cf-blue-line); font-variant-numeric: tabular-nums; }
.cf-cover-note { margin-top: 12px; }
/* Marks the states where raising a flare is live, in the coverage table (views-user.js
   cfCoverRow). Text, not colour — the table is the screen-reader source for this section, and a
   tier expressed only as a map fill would not exist for anyone using one. */
.cf-cover-live { font-size: 11.5px; font-weight: 700; color: var(--cf-green, #1F7A52); white-space: nowrap; }

/* ═══════════ Food finder — "Food pantries near you" quick search (fq- namespace) ═══════════
 * New surface from the 2026-07-24 design handoff. Reuses flare.css/results-redesign.css tokens +
 * the .match/.btn-*/.rp-*/.helpline/.empty/.note patterns; only the fq- layer is new. Mobile-first,
 * logical-properties-only (RTL-free), no invented colours/radii. */
.fq-entry{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-card); box-shadow:var(--sh-2); padding:24px; position:relative; }
.fq-head{ display:flex; gap:12px; align-items:flex-start; }
.fq-disc{ inline-size:46px; block-size:46px; flex:none; border-radius:50%; background:var(--orange); color:var(--navy-900); display:grid; place-items:center; box-shadow:inset 0 1px 0 rgba(255,255,255,.5),0 1px 2px rgba(238,122,30,.3); }
.fq-disc svg{ inline-size:24px; block-size:24px; }
.fq-eyebrow{ font-size:12px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; color:var(--orange-ink); margin:0; }
.fq-title{ font-family:var(--font-display); font-size:22px; font-weight:800; letter-spacing:-.02em; color:var(--navy-900); margin:3px 0 0; }
.fq-sub{ font-size:14.5px; color:var(--ink-2); line-height:1.55; margin:6px 0 0; max-inline-size:52ch; }
.fq-form{ display:flex; flex-direction:row; align-items:flex-end; gap:8px; margin-top:16px; }
.fq-field{ flex:1; min-inline-size:0; }
.fq-label{ display:block; font-weight:700; font-size:14px; margin-bottom:6px; color:var(--ink); }
.fq-inputwrap{ display:flex; align-items:center; gap:9px; background:var(--surface); border:1.5px solid var(--line-2); border-radius:var(--r-md); padding-inline:13px; min-block-size:52px; }
.fq-inputwrap svg{ inline-size:18px; block-size:18px; color:var(--ink-3); flex:none; }
.fq-inputwrap input{ border:0; outline:none; background:transparent; font-size:16px; color:var(--ink); inline-size:100%; min-inline-size:0; }
.fq-inputwrap input::placeholder{ color:var(--ink-3); }
/* green 3D icon-only search button — gel recipe from the crisis bar's raised chips (.callchip): top
   sheen ::before + inset sheen/shade + tinted ground shadows + press-down. CD pass 2026-07-25. The one
   green "go" on the page (orange = flare path, navy = call, green = go). White magnifier on --green. */
.fq-go{ position:relative; isolation:isolate; flex:none; inline-size:56px; min-block-size:52px;
  display:inline-flex; align-items:center; justify-content:center; border:0; border-radius:var(--r-md); cursor:pointer; color:#fff;
  background:linear-gradient(180deg, rgba(255,255,255,.26) 0%, rgba(255,255,255,0) 46%, rgba(0,0,0,.20) 100%), var(--green,#2e7d32);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 1px rgba(0,0,0,.22), 0 1px 1px rgba(27,94,32,.4), 0 3px 9px rgba(46,125,50,.42);
  transition:filter .12s ease; }
.fq-go::before{ content:""; position:absolute; inset:2px 7% auto 7%; height:46%; border-radius:9px 9px 12px 12px; pointer-events:none; z-index:1;
  background:linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.04)); }
.fq-go svg{ inline-size:22px; block-size:22px; position:relative; z-index:2; color:#fff; filter:drop-shadow(0 1px 1px rgba(0,0,0,.22)); }
.fq-go:hover{ filter:brightness(1.06) saturate(1.04); }
.fq-go:active{ transform:translateY(1px); box-shadow:inset 0 2px 4px rgba(0,0,0,.28), inset 0 -1px 0 rgba(255,255,255,.15); }
.fq-go:active::before{ opacity:.35; }
.fq-go:focus-visible{ outline:3px solid var(--focus,#2A4A86); outline-offset:2px; }
@media (prefers-reduced-motion:reduce){ .fq-go{ transition:none; } .fq-go:active{ transform:none; } }
.fq-privacy{ display:flex; gap:8px; align-items:flex-start; margin-top:12px; font-size:13px; color:var(--ink-3); line-height:1.5; }
.fq-privacy svg{ inline-size:15px; block-size:15px; flex:none; color:var(--navy); margin-top:2px; }
.fq-privacy em{ font-style:normal; color:var(--ink-2); font-weight:700; }
.fq-facts{ display:flex; flex-wrap:wrap; gap:6px 14px; margin-top:12px; font-size:13px; font-weight:700; color:var(--ink-3); }
.fq-facts span{ display:inline-flex; align-items:center; gap:6px; }
.fq-facts svg{ inline-size:14px; block-size:14px; color:var(--green); }
/* prominent "suggest a pantry" call-out embedded in the food module (below the search) */
.fq-add{ display:flex; align-items:center; gap:12px; margin-top:18px; padding:12px 14px; text-decoration:none;
  background:var(--surface-2,#F7F1E7); border:1.5px solid var(--line-2); border-radius:var(--r-md); box-shadow:var(--sh-1);
  transition:border-color .15s ease, box-shadow .15s ease, transform .08s ease; }
.fq-add:hover{ border-color:var(--navy); box-shadow:var(--sh-2); }
.fq-add:active{ transform:translateY(1px); }
.fq-add-ic{ inline-size:38px; block-size:38px; flex:none; border-radius:50%; display:grid; place-items:center; background:var(--navy-050,#E8EDF6); color:var(--navy); }
.fq-add-ic svg{ inline-size:20px; block-size:20px; }
.fq-add-tx{ display:flex; flex-direction:column; gap:1px; min-inline-size:0; flex:1; }
.fq-add-tx b{ font-size:14.5px; font-weight:750; color:var(--ink); line-height:1.3; }
.fq-add-sub{ font-size:12.5px; color:var(--ink-3); line-height:1.45; }
.fq-add-chev{ inline-size:18px; block-size:18px; flex:none; color:var(--ink-3); }
[dir="rtl"] .fq-add-chev{ transform:scaleX(-1); }
.fq-back{ display:inline-flex; align-items:center; gap:7px; font-weight:700; font-size:14px; color:var(--ink-2); min-block-size:44px; }
.fq-back svg{ inline-size:16px; block-size:16px; }
.fq-again{ display:flex; gap:8px; margin-top:16px; }
.fq-again .fq-inputwrap{ flex:1; min-block-size:48px; }
.fq-again .btn{ flex:none; min-block-size:48px; }
/* report-a-listing / operator opt-out (per card) + plain-language legal line */
.fq-report{ display:inline-flex; align-items:center; gap:6px; margin-top:12px; font-size:12.5px; font-weight:600; color:var(--ink-3); min-block-size:32px; }
.fq-report svg{ inline-size:14px; block-size:14px; flex:none; color:var(--ink-3); }
.fq-report:hover{ color:var(--ink-2); text-decoration:underline; }
.fq-legal{ margin-top:20px; font-size:12.5px; line-height:1.5; color:var(--ink-3); }
.fq-grid{ display:grid; grid-template-columns:1fr; gap:16px; margin-top:16px; align-items:stretch; }
.fq-hours{ font-size:13.5px; color:var(--ink-2); margin-top:12px; display:flex; align-items:flex-start; gap:7px; line-height:1.5; }
.fq-hours svg{ inline-size:15px; block-size:15px; flex:none; color:var(--ink-3); margin-top:2px; }
.fq-more{ display:inline-flex; align-items:center; gap:8px; min-block-size:44px; margin-top:16px; font-size:14.5px; font-weight:700; color:var(--navy-800, #16294C); }
.fq-more svg{ inline-size:15px; block-size:15px; color:var(--navy); }
.fq-status{ display:flex; align-items:center; gap:10px; margin-top:16px; font-size:14.5px; font-weight:700; color:var(--ink-2); }
.fq-spin{ inline-size:20px; block-size:20px; flex:none; border-radius:50%; border:3px solid var(--navy-050,#E8EDF6); border-block-start-color:var(--navy); animation:fqspin .8s linear infinite; }
@keyframes fqspin{ to{ transform:rotate(360deg); } }
.fq-skel{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-card); padding:16px; }
.fq-skel i{ display:block; border-radius:7px; background:linear-gradient(90deg,var(--surface-2) 25%,var(--bg-sunk) 50%,var(--surface-2) 75%); background-size:200% 100%; animation:fqsh 1.4s ease infinite; }
@keyframes fqsh{ to{ background-position:-200% 0; } }
.fq-skel .l1{ block-size:18px; inline-size:62%; } .fq-skel .l2{ block-size:12px; inline-size:40%; margin-top:10px; } .fq-skel .l3{ block-size:12px; inline-size:82%; margin-top:16px; } .fq-skel .l4{ block-size:44px; inline-size:100%; margin-top:16px; border-radius:var(--r-md); }
@media (min-width:720px){ .fq-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); } }
@media (prefers-reduced-motion:reduce){ .fq-spin,.fq-skel i{ animation:none !important; } }

/* food finder — homepage container (constrains the entry card under the hero). Extra top margin gives
   the module clear breathing room below the two "I need help" / "I'm an organisation" choice cards. */
.fq-home{ max-inline-size:1120px; margin-inline:auto; padding:8px 16px 4px; margin-block-start:30px; }

/* ═══════════ "Know a pantry? Add it" submission form (sg- namespace) ═══════════
 * From the 2026-07-24 design handoff. Reuses fq-inputwrap/fq-label/fq-privacy/btn-flare + tokens;
 * mobile-first, logical-props. Fallback values for the few blue/red tokens. */
.sg-card{ background:var(--surface); border:1px solid var(--line); border-radius:var(--r-card); box-shadow:var(--sh-2); padding:24px; }
.sg-head{ display:flex; gap:12px; align-items:flex-start; margin-bottom:16px; }
.sg-disc{ inline-size:46px; block-size:46px; flex:none; border-radius:50%; background:var(--orange); color:var(--navy-900); display:grid; place-items:center; box-shadow:inset 0 1px 0 rgba(255,255,255,.5),0 1px 2px rgba(238,122,30,.3); }
.sg-disc svg{ inline-size:24px; block-size:24px; }
.sg-disc.is-green{ background:var(--green); color:#fff; }
.sg-eyebrow{ font-size:12px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; color:var(--orange-ink); margin:0; }
.sg-title{ font-family:var(--font-display); font-size:22px; font-weight:800; letter-spacing:-.02em; color:var(--navy-900); margin:3px 0 0; }
.sg-sub{ font-size:14.5px; color:var(--ink-2); line-height:1.55; margin:6px 0 0; max-inline-size:52ch; }
.sg-form{ display:flex; flex-direction:column; gap:16px; }
.sg-req{ color:var(--red,#B23128); font-weight:800; }
.sg-opt{ font-weight:600; color:var(--ink-3); font-size:13px; }
.sg-hint{ font-size:13px; color:var(--ink-3); margin-top:5px; line-height:1.5; }
.sg-row{ display:flex; flex-direction:column; gap:12px; }
.sg-row>*{ flex:1; min-inline-size:0; }
.sg-select{ inline-size:100%; background:var(--surface); border:1.5px solid var(--line-2); border-radius:var(--r-md); padding-inline:13px; min-block-size:52px; font-size:16px; color:var(--ink); }
.sg-textarea{ inline-size:100%; background:var(--surface); border:1.5px solid var(--line-2); border-radius:var(--r-md); padding:13px; min-block-size:104px; font-size:16px; color:var(--ink); line-height:1.5; resize:vertical; }
.sg-textarea::placeholder{ color:var(--ink-3); }
.sg-textarea:focus,.sg-select:focus{ outline:none; border-color:var(--navy); box-shadow:0 0 0 3px var(--navy-050,#E8EDF6); }
.sg-private{ border:1px solid var(--blue-line,#C7D3E8); background:var(--blue-050,#E9EEF7); border-radius:var(--r-md); padding:16px; }
.sg-private .fq-inputwrap{ background:#fff; }
.sg-private-head{ display:flex; align-items:center; gap:8px; font-weight:800; font-size:14px; color:var(--navy-800,#16294C); }
.sg-private-head svg{ inline-size:16px; block-size:16px; color:var(--navy); }
.sg-private-head .pill{ font-size:11px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; background:#fff; border:1px solid var(--blue-line,#C7D3E8); color:var(--navy-800,#16294C); border-radius:var(--r-pill); padding:3px 9px; }
.sg-private p{ font-size:13px; color:var(--ink-2); line-height:1.5; margin-top:5px; }
.sg-err{ display:flex; align-items:flex-start; gap:6px; margin-top:6px; font-size:13px; font-weight:700; color:var(--red,#B23128); line-height:1.45; }
.sg-err svg{ inline-size:14px; block-size:14px; flex:none; margin-top:2px; }
.sg-steps{ margin-top:16px; }
.sg-step{ display:flex; gap:12px; align-items:flex-start; padding-block:8px; }
.sg-step .n{ inline-size:28px; block-size:28px; flex:none; border-radius:50%; background:var(--navy-050,#E8EDF6); color:var(--navy-800,#16294C); font-weight:800; font-size:13px; display:grid; place-items:center; }
.sg-step .n.done{ background:var(--green); color:#fff; }
.sg-step .n.done svg{ inline-size:14px; block-size:14px; }
.sg-step p{ font-size:14px; color:var(--ink-2); line-height:1.5; padding-top:4px; margin:0; }
.sg-step p b{ color:var(--ink); }
@media (min-width:560px){ .sg-row{ flex-direction:row; } }

/* ── Language moved into the crisis bar (2026-07-31) ──────────────────────────────────────────
   Language is a set-once utility, so it sits with the always-on controls; the row below is now
   destinations (Browse, Events, Resources, About, Contact, Support us).
   ⚠️ HARD CONSTRAINT: Quick exit must not move or shrink. These sit BEFORE it in source order and
   collapse first on small screens, so quick exit keeps its size and far-right position at every
   width — it is the control someone reaches for when a person walks into the room. */
.crisisbar-inner .cb-lang { margin-left: auto; color: #fff; }
/* These inherited the old bar's muted ink, which on the crisis bar's dark navy was barely legible.
   Explicit light values — this bar must stay readable at a glance under stress. */
.crisisbar-inner .cb-lang svg { color: #fff; opacity: .9; }
.crisisbar-inner .cb-interp, .crisisbar-inner .cb-interp a { color: rgba(255,255,255,.92); }
.crisisbar-inner .cb-interp a { text-decoration: underline; }
.crisisbar-inner .cb-lang select {
  background: transparent; color: inherit; border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; padding: 3px 8px; font: inherit; font-size: 12.5px; min-height: 32px;
  color: #fff;
}
.crisisbar-inner .cb-lang select option { color: #16294c; }
.crisisbar-inner .cb-interp { font-size: 12.5px; white-space: nowrap; }
/* Interpreter text goes first, then the language label collapses to its globe icon — never the
   quick-exit button. TIS National also stays reachable from "More help → See all support lines". */
@media (max-width: 1080px) { .crisisbar-inner .cb-interp { display: none; } }
@media (max-width: 620px) {
  .crisisbar-inner .cb-lang select { max-width: 92px; }
}
/* The freed row is now navigation only — give the links a little more presence than the old
   deliberately-quiet utility styling, since they are the page's real destinations. */
.langbar .cf-langnav { margin-left: 0; }
.cf-reslink { display: block; text-decoration: none; color: inherit; }
.cf-reslink:hover { border-color: var(--accent); }

/* "Who is served" badge on directory cards (2026-08-01). Leads the tag row and is visually
   distinct from the generic need tags, because for a parent this is the single fact that decides
   whether the call is worth making. Colour is never the only signal — the words say it. */
.tag--served {
  background: var(--accent-050, #fdefd9);
  border-color: var(--accent, #ee7a1e);
  color: var(--accent-deeper, #a8470c);
  font-weight: 700;
}
.tag--served-child {
  background: #e4eefb;
  border-color: #2f6fc0;
  color: #2a5fa6;
}

/* ── Cross-link out of the flare flow into a directory category ───────────────
 * Parent & carer support is a directory category, not a flare need, so step 2 of Find help
 * lists twelve needs and none of them is a carer's. This is the signpost at the point they
 * would otherwise give up. Kept visually quieter than an .opt row: it must read as "here is
 * somewhere else to look", never compete with "A safe place to escape violence" above it.
 *
 * Purpose-built rather than reusing .note — .note lives in flare.css and org2.css, and the
 * client site loads NEITHER. Using it here styled nothing at all. */
.cf-crosslink {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 13px 15px; margin-top: 2px;
  border: 1px solid var(--teal-line); border-radius: var(--r-md);
  background: var(--teal-050); color: var(--ink-2);
  font-size: 13.5px; line-height: 1.5; text-decoration: none;
}
.cf-crosslink:hover { background: var(--teal-100); border-color: var(--navy-300); }
.cf-crosslink > svg { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--teal-700); }
.cf-crosslink b { font-weight: 800; color: var(--navy); display: block; margin-bottom: 1px; }
.cf-crosslink .cf-cl-go {
  display: inline-flex; align-items: center; gap: 3px;
  font-weight: 800; color: var(--navy-700); white-space: nowrap; margin-top: 3px; margin-left: 6px;
}
.cf-crosslink .cf-cl-go svg { width: 14px; height: 14px; }

/* ── Consent checkboxes on the membership form ──────────────────────────────────────────────────
 * Defined HERE, not reused from flare.css. flare.css has a perfectly good `.check`, and index.html
 * does not load flare.css — so `.check` on this page styles nothing. That is the same mistake as
 * `.note note--info` and `.alert alert--warn` in this very component, both of which shipped looking
 * broken. Checked before writing this rather than after.
 *
 * The whole row is the label, so the tap target is the sentence rather than a 22px box — this form
 * gets filled in on phones, and one of these boxes is how somebody exercises a legal right. */
.cf-consent {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 13px 14px; margin-bottom: 12px; cursor: pointer;
  background: var(--surface-2); border: 1.5px solid var(--line-2); border-radius: var(--r-md);
}
.cf-consent:hover { border-color: var(--navy-300, #5B6B8C); }
.cf-consent:focus-within { outline: 2px solid var(--navy, #16294C); outline-offset: 2px; }
.cf-consent input[type="checkbox"] {
  width: 21px; height: 21px; flex: none; margin: 1px 0 0; cursor: pointer;
  accent-color: var(--navy, #16294C);
}
.cf-consent .cf-consent-t { display: block; font-weight: 700; font-size: 14.5px; line-height: 1.35; }
.cf-consent .cf-consent-h {
  display: block; margin-top: 4px; font-weight: 400; font-size: 13px;
  line-height: 1.45; color: var(--ink-2);
}

/* ── #/constitution — clean legal reading page ──────────────────────────────────────────────────
 * A long legal document read comfortably: a narrow measure for readability, a quiet Contents, and
 * depth indentation that shows structure without fabricating clause numbers (see
 * views-constitution.js for why there are none). Classes are cf-con- prefixed; defined here because
 * index.html loads cf-additions.css and not flare.css. */
.cf-con { display: block; }
.cf-con-l0 { padding-left: 0; }
.cf-con-wrap { max-width: 760px; }
.cf-con-head { padding: 8px 0 22px; border-bottom: 2px solid var(--line-2, #D8CCB6); margin-bottom: 22px; }
.cf-con-kicker { font: 800 12px/1 var(--mono, monospace); letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-deep, #C25A16); margin: 0 0 10px; }
.cf-con-head h1 { font-size: clamp(26px, 4vw, 34px); line-height: 1.15; margin: 0 0 8px; color: var(--navy, #16294C); }
.cf-con-sub { font-size: 15px; line-height: 1.5; color: var(--ink-2, #45506B); margin: 0 0 16px; max-width: 62ch; }
.cf-con-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 12px; }
.cf-con-ver { font: 700 12.5px/1 var(--mono, monospace); color: var(--ink-2, #45506B);
  background: var(--surface-2, #F7F1E7); border: 1px solid var(--line-2, #D8CCB6); border-radius: 999px; padding: 6px 11px; }
.cf-con-dl { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px;
  color: #fff; background: var(--navy, #16294C); border-radius: var(--r-md, 10px); padding: 9px 15px; text-decoration: none; }
.cf-con-dl:hover { background: var(--navy-700, #1E3666); }
.cf-con-hash { font-size: 12px; line-height: 1.5; color: var(--ink-3, #5E6880); margin: 0; word-break: break-all; }
.cf-con-hash code { font-family: var(--mono, monospace); font-size: 11.5px; }

.cf-con-toc { background: var(--surface-2, #F7F1E7); border: 1px solid var(--line-2, #D8CCB6);
  border-radius: var(--r-md, 12px); padding: 18px 20px; margin-bottom: 26px; }
.cf-con-toc h2 { font-size: 16px; margin: 0 0 12px; color: var(--navy, #16294C); }
.cf-con-parts { margin: 0; padding-left: 20px; display: grid; gap: 6px; font-weight: 650; font-size: 14.5px; color: var(--ink, #16294C); }
.cf-con-clauses { margin-top: 12px; }
.cf-con-clauses summary { cursor: pointer; font-weight: 700; font-size: 13.5px; color: var(--navy-700, #1E3666); }
.cf-con-clauses ol { margin: 10px 0 0; padding-left: 22px; display: grid; gap: 4px; font-size: 13.5px; color: var(--ink-2, #45506B); }

.cf-con-body { font-size: 15.5px; line-height: 1.62; color: var(--ink, #16294C); }
.cf-con-h2 { font-size: 20px; margin: 30px 0 12px; padding-top: 18px; border-top: 1px solid var(--line-2, #D8CCB6);
  color: var(--navy, #16294C); }
.cf-con-h3 { font-size: 17px; margin: 24px 0 8px; color: var(--navy, #16294C); }
.cf-con-h4 { font-size: 15.5px; margin: 20px 0 6px; color: var(--navy-700, #1E3666); }
.cf-con-p { margin: 0 0 13px; }
/* Numbered clause items: a hanging marker column, then the text. The whole row indents by depth so
 * (1) → (a) → (i) step in visibly, the way the printed clause does. */
.cf-con-li { display: grid; grid-template-columns: 2.6em 1fr; column-gap: 4px; margin: 0 0 9px; align-items: baseline; }
.cf-con-n { font-variant-numeric: tabular-nums; color: var(--ink-2, #45506B); font-weight: 650; white-space: nowrap; }
.cf-con-tx { display: block; }
.cf-con-l0 { margin-left: 0; }
.cf-con-l1 { margin-left: 26px; }
.cf-con-l2 { margin-left: 52px; }
.cf-con-l3 { margin-left: 78px; }
/* The intro line of a clause (no marker) still aligns with the marked items below it. */
.cf-con-p + .cf-con-li { margin-top: 2px; }
.cf-con-foot { margin-top: 30px; padding-top: 16px; border-top: 2px solid var(--line-2, #D8CCB6);
  font-size: 13.5px; line-height: 1.55; color: var(--ink-3, #5E6880); }

/* ═══════════════════════════════════════════════════════════════════════════
   membership.css — #/membership. PASTE INTO assets/css/cf-additions.css.

   Colour scheme follows the board prospectus (/board/, bp- namespace):
   cream page, navy gradient cover with an amber kicker and a short gradient
   rule, orange as the accent on rules/markers/underlines, orange-ink for
   small caps. Supporter-facing surfaces share that language.

   ⚠️ index.html loads client.css + results-redesign.css + cf-additions.css.
      It does NOT load flare.css, org2.css, admin.css or styles.css. Every class
      below is new and cf-mb- prefixed; every var() is one those three files
      actually define, plus the two new tokens declared immediately below.

   TWO NEW TOKENS (the board scheme uses shades cf-additions.css lacks):
     --cf-orange-lt  #F4A63A   (bp-orl) — the kicker/rule light amber
     --cf-navy-mid   #1E3666   (bp-navy7) — the cover gradient's third stop

   REUSED AS-IS (already in cf-additions.css, do not redefine):
     .cf-page .cf-eyebrow .cf-h1 .cf-h2 .cf-h3 .cf-lede .cf-body .cf-small
     .cf-card .cf-sr-only .cf-quietlink .cf-consent .cf-consent-t .cf-consent-h
     .cf-langlink .cf-langmore-item
   REUSED AS-IS (client.css): .screen .field .label .input .hint .optional
     .btn .btn-teal .btn-ghost .btn-block .btn-lg
   Logical properties only — the page renders RTL in Arabic.
   ═══════════════════════════════════════════════════════════════════════════ */
:root { --cf-orange-lt: #F4A63A; --cf-navy-mid: #1E3666; }

/* ── Cover ─────────────────────────────────────────────────────────────────
   The board prospectus' gradient and amber glow. This page is about the
   organisation, not about getting help, so it borrows the supporter-facing
   language rather than the client app's flat surfaces. */
.cf-mb-hero { position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(160deg, var(--cf-navy-deep) 0%, var(--cf-navy) 62%, var(--cf-navy-mid) 100%);
  padding-block: 30px 34px; }
.cf-mb-hero::after { content: ""; position: absolute; inset-block-start: -150px; inset-inline-end: -130px;
  inline-size: 420px; block-size: 420px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 42% 42%, rgba(244,166,58,.28), rgba(244,166,58,0) 68%); }
.cf-mb-in { position: relative; z-index: 1; max-inline-size: 680px; margin-inline: auto; padding-inline: 20px; }

/* Kicker: amber, wide-tracked, with the prospectus' trailing hairline. */
.cf-mb-hero .cf-mb-kicker, .cf-mb-kicker { display: flex; align-items: center; gap: 14px; margin: 0;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--cf-orange-lt); }
.cf-mb-kicker::after { content: ""; flex: 0 1 110px; block-size: 1px; background: rgba(244,166,58,.45); }
.cf-mb-hero h1 { font-size: clamp(29px, 6.4vw, 38px); font-weight: 800; letter-spacing: -.028em;
  line-height: 1.06; margin: 16px 0 0; max-inline-size: 17ch; color: #fff; text-wrap: balance; }
.cf-mb-rule { inline-size: 64px; block-size: 4px; border: 0; border-radius: 2px; margin: 22px 0 20px;
  background: linear-gradient(90deg, var(--cf-orange-lt), var(--cf-orange)); }
.cf-mb-hero p:not(.cf-mb-kicker) { font-size: 15.5px; line-height: 1.65; color: #C9D4E8; margin: 0 0 13px; text-wrap: pretty; }
.cf-mb-hero p strong { color: #fff; font-weight: 750; }
/* Pull quote — the prospectus' orange spine. */
.cf-mb-spine { margin: 22px 0 0; padding: 4px 0 4px 20px; border-inline-start: 4px solid var(--cf-orange); }
.cf-mb-spine p { font-size: clamp(17px, 4.2vw, 20px); line-height: 1.45; color: #fff; font-weight: 750; margin: 0; }
@media (min-width: 700px) { .cf-mb-hero { padding-block: 40px 44px; } }

/* Seat counter. Text carries the whole message; the pips are aria-hidden, so a
   screen reader hears the sentence once rather than five times. */
.cf-mb-count { margin-top: 22px; padding: 15px 17px; border-radius: var(--cf-r-md);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18); }
.cf-mb-seats { display: flex; gap: 7px; }
.cf-mb-seat { inline-size: 26px; block-size: 8px; border-radius: 99px; background: rgba(255,255,255,.22); }
.cf-mb-seat.is-filled { background: var(--cf-orange-lt); }
.cf-mb-count-t { display: block; margin-top: 11px; font-size: 13.5px; font-weight: 750; color: #EAF0FA; line-height: 1.45; }
.cf-mb-count-t b { color: #fff; font-variant-numeric: tabular-nums; }
.cf-mb-count-s { display: block; margin-top: 4px; font-size: 13px; color: #A8BCDD; line-height: 1.45; }

.cf-mb-cta { display: flex; flex-wrap: wrap; gap: 10px 16px; align-items: center; margin-top: 22px; }
a.cf-mb-go { display: inline-flex; align-items: center; justify-content: center; gap: 9px; background: #fff;
  color: var(--cf-navy); text-decoration: none; font-weight: 800; font-size: 15.5px;
  padding-inline: 22px; min-block-size: 50px; border-radius: var(--cf-r-pill); border: 0; }
a.cf-mb-go:hover { background: #F6E8D2; color: var(--cf-navy-deep); }
.cf-mb-go svg { inline-size: 17px; block-size: 17px; }
[dir="rtl"] .cf-mb-go svg { transform: scaleX(-1); }
a.cf-mb-go2 { color: #fff; font-size: 13.5px; font-weight: 700; min-block-size: 44px;
  display: inline-flex; align-items: center; text-decoration: underline;
  text-decoration-color: var(--cf-orange-lt); text-decoration-thickness: 2px; text-underline-offset: 4px; }
a.cf-mb-go2:hover { color: var(--cf-orange-lt); }

/* ── Page body — cream, like the prospectus ──────────────────────────────*/
.cf-mb-body { background: var(--cf-cream); }
.cf-mb-body a { text-decoration-color: var(--cf-orange-lt); text-underline-offset: 3px; }
.cf-mb-h2 { display: flex; align-items: baseline; gap: 13px; font-size: 22px; font-weight: 800;
  letter-spacing: -.02em; line-height: 1.2; margin: 0; color: var(--cf-navy-deep); text-wrap: balance; }
.cf-mb-h2 .n { flex: none; font-size: 13px; font-weight: 800; letter-spacing: .08em;
  color: var(--cf-orange-ink); font-variant-numeric: tabular-nums; transform: translateY(-2px); }

/* ── What membership means ─────────────────────────────────────────────────
   White cards with the prospectus' short orange tab at the top-left. */
.cf-mb-facts { display: grid; gap: 11px; margin-top: 18px; }
.cf-mb-fact { position: relative; display: flex; gap: 13px; align-items: flex-start; background: #fff;
  border: 1px solid var(--cf-line); border-radius: var(--cf-r-card); padding: 17px 18px 15px; box-shadow: 0 1px 2px rgba(15,30,58,.05); }
.cf-mb-fact::before { content: ""; position: absolute; inset-block-start: 0; inset-inline-start: 18px;
  inline-size: 26px; block-size: 3px; border-radius: 0 0 2px 2px; background: var(--cf-orange); }
.cf-mb-fact-ic { inline-size: 34px; block-size: 34px; flex: none; color: var(--cf-orange-ink); display: grid; place-items: center; }
.cf-mb-fact-ic svg { inline-size: 22px; block-size: 22px; }
.cf-mb-fact-b { min-inline-size: 0; }
.cf-mb-fact h3 { font-size: 15.5px; font-weight: 800; letter-spacing: -.01em; margin: 1px 0 0; color: var(--cf-navy); }
.cf-mb-fact p { font-size: 13.5px; color: var(--cf-ink-2); line-height: 1.6; margin: 5px 0 0; text-wrap: pretty; }
.cf-mb-fact p strong { color: var(--cf-navy); font-weight: 750; }
/* Clause reference. Not decoration — it is how a claim about a legal document
   gets checked, so it stays legible (5.2:1) rather than greyed out. */
.cf-mb-cl { display: inline-block; margin-top: 8px; font-size: 11.5px; font-weight: 800; letter-spacing: .04em;
  color: var(--cf-orange-ink); background: var(--surface-2, #F7F1E7); border: 1px solid var(--cf-line);
  border-radius: var(--cf-r-pill); padding: 3px 10px; }

/* ── Constitution review ──────────────────────────────────────────────────
   A required tick nobody reads is theatre. The clauses that actually bind a
   member are summarised on the page; the tick unlocks only once the document
   has been opened. */
.cf-mb-review { background: #F7F1E7; border: 1px solid var(--line-2, #D8CCB6); border-radius: var(--cf-r-card); padding: 19px 20px; }
.cf-mb-rl { margin: 15px 0 0; padding-inline-start: 20px; display: grid; gap: 9px; }
.cf-mb-rl li { font-size: 13.5px; line-height: 1.6; color: var(--cf-ink-2); }
.cf-mb-rl li::marker { color: var(--cf-orange); }
.cf-mb-rl b { color: var(--cf-navy); font-weight: 800; }
button.cf-mb-open { display: inline-flex; align-items: center; justify-content: center; gap: 9px; margin-top: 17px;
  font-family: inherit; cursor: pointer; background: var(--cf-navy); color: #fff; border: 1.5px solid var(--cf-navy);
  font-weight: 800; font-size: 14.5px; padding-inline: 18px; min-block-size: 46px; border-radius: var(--cf-r-pill); }
button.cf-mb-open:hover { background: var(--cf-navy-deep); border-color: var(--cf-navy-deep); }
.cf-mb-open svg { inline-size: 16px; block-size: 16px; }
.cf-mb-open.is-opened { background: #fff; color: var(--cf-orange-ink); border-color: var(--cf-orange); }
.cf-mb-open.is-opened:hover { background: #FDF0DC; color: var(--cf-orange-ink); border-color: var(--cf-orange-ink); }
.cf-mb-ver { margin-top: 12px; font-size: 12.5px; color: var(--cf-ink-3); line-height: 1.55; }
.cf-mb-ver code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 11.5px;
  background: #fff; border: 1px solid var(--cf-line); border-radius: 4px; padding: 1px 5px; overflow-wrap: anywhere; }
/* The gate note. Visible, not a tooltip — a disabled control with no stated
   reason is a dead end, and this one guards a legal acknowledgement. */
.cf-mb-gate { display: flex; gap: 8px; align-items: flex-start; margin-top: 14px; font-size: 13px;
  font-weight: 750; color: var(--cf-orange-ink); line-height: 1.45; }
.cf-mb-gate svg { inline-size: 15px; block-size: 15px; flex: none; margin-block-start: 2px; }
.cf-mb-review .cf-consent { margin-block: 14px 0; background: #fff; }
.cf-mb-review .cf-consent.is-locked { opacity: .55; }

/* ── Form ─────────────────────────────────────────────────────────────────*/
.cf-mb-form { display: grid; gap: 0; }
.cf-mb-names { display: grid; gap: 0 12px; }
@media (min-width: 420px) { .cf-mb-names { grid-template-columns: 1fr 1fr; } }
.cf-mb-req { color: var(--cf-red); font-weight: 800; }
.cf-mb-note { font-size: 13px; color: var(--cf-ink-3); line-height: 1.6; margin: 0 0 16px; }

/* Field-level error: icon + words + a red border. Three signals, never colour
   alone; announced via aria-describedby, not by the colour change. */
.cf-mb-fe { display: flex; gap: 6px; align-items: flex-start; margin-block-start: 5px; font-size: 13px;
  font-weight: 750; color: var(--cf-red); line-height: 1.45; }
.cf-mb-fe svg { inline-size: 14px; block-size: 14px; flex: none; margin-block-start: 2px; }
.input.has-error, .cf-input.has-error { border-color: var(--cf-red); }

/* Error summary — focused on submit, so a keyboard or screen-reader user is
   told what is wrong instead of hunting for red. */
.cf-mb-esum { background: #FBECEA; border: 1.5px solid #E4B3AC; border-inline-start: 4px solid var(--cf-red);
  border-radius: var(--cf-r-md); padding: 15px 17px; margin-bottom: 18px; }
.cf-mb-esum h3 { font-size: 15px; font-weight: 800; color: #8D241D; margin: 0; }
.cf-mb-esum ol { margin: 9px 0 0; padding-inline-start: 19px; display: grid; gap: 5px; }
.cf-mb-esum li { font-size: 13.5px; line-height: 1.45; color: #8D241D; }
.cf-mb-esum a { color: #8D241D; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* ── The withhold box · a legal right, given the weight of one ─────────────
   cl 4(5): information other than a member's name MUST NOT be made available
   for inspection if the member asks. Not a preference toggle, so it does not
   get the same treatment as the newsletter opt-in three rows down. Built on
   the prospectus' navy-header card. */
.cf-mb-legal { background: #fff; border: 1px solid var(--cf-line); border-radius: var(--cf-r-card);
  overflow: hidden; margin-block: 4px 16px; box-shadow: 0 1px 2px rgba(15,30,58,.05); }
.cf-mb-legal-h { display: flex; gap: 9px; align-items: center; margin: 0; padding: 12px 18px;
  background: var(--cf-navy); color: #fff; font-size: 15px; font-weight: 800; }
.cf-mb-legal-h svg { inline-size: 18px; block-size: 18px; flex: none; color: var(--cf-orange-lt); }
.cf-mb-legal-b { padding: 15px 18px 16px; }
.cf-mb-legal-b > p { font-size: 13.5px; color: var(--cf-ink-2); line-height: 1.6; margin: 0 0 9px; text-wrap: pretty; }
.cf-mb-legal-b > p:last-of-type { margin-bottom: 0; }
.cf-mb-legal-b q { font-style: normal; color: var(--cf-navy); font-weight: 700; }
.cf-mb-legal .cf-consent { margin-block: 14px 0; background: #F7F1E7; }

/* ── Address autocomplete ─────────────────────────────────────────────────
   The input is a plain text field first and a combobox second: if the proxy is
   down, JS is off, or nothing matches, typing an address still works and is
   still accepted. There is no state in which lookup failure blocks the form —
   and cl 4(2)(b)(ii) accepts an email address for the register, so this field
   is genuinely optional rather than politely optional. */
.cf-mb-ac { position: relative; }
.cf-mb-ac-list { position: absolute; z-index: 40; inset-inline: 0; inset-block-start: calc(100% + 5px);
  margin: 0; padding: 5px; list-style: none; background: #fff; border: 1px solid var(--line-2, #D8CCB6);
  border-radius: var(--cf-r-md); box-shadow: 0 10px 30px rgba(15,30,58,.16); max-block-size: 262px; overflow-y: auto; }
.cf-mb-ac-item { display: flex; gap: 9px; align-items: flex-start; padding: 10px 11px; min-block-size: 44px;
  border-radius: var(--cf-r-sm); font-size: 14px; line-height: 1.4; color: var(--cf-navy); cursor: pointer; }
.cf-mb-ac-item svg { inline-size: 15px; block-size: 15px; flex: none; margin-block-start: 2px; color: var(--cf-ink-3); }
.cf-mb-ac-item[aria-selected="true"] { background: #F7F1E7; box-shadow: inset 3px 0 0 var(--cf-orange); }
.cf-mb-ac-item[aria-selected="true"] svg { color: var(--cf-orange-ink); }
.cf-mb-ac-foot { padding: 9px 11px 5px; font-size: 12.5px; color: var(--cf-ink-3);
  border-block-start: 1px solid var(--cf-line); margin-block-start: 4px; line-height: 1.45; }
/* Status line: searching / no matches / lookup unavailable. All three are the
   same calm grey — none is an error, because none stops the person finishing. */
.cf-mb-ac-st { display: flex; gap: 7px; align-items: flex-start; margin-block-start: 6px;
  font-size: 12.5px; color: var(--cf-ink-3); line-height: 1.45; }
.cf-mb-ac-st svg { inline-size: 14px; block-size: 14px; flex: none; margin-block-start: 2px; }
.cf-mb-spin { inline-size: 13px; block-size: 13px; flex: none; margin-block-start: 2px; border-radius: 50%;
  border: 2px solid var(--line-2, #D8CCB6); border-block-start-color: var(--cf-orange); animation: cfmbspin .8s linear infinite; }
@keyframes cfmbspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .cf-mb-spin { animation: none; } }

/* ── Submit ───────────────────────────────────────────────────────────────*/
.cf-mb-submit { margin-top: 4px; }
.cf-mb-submit[disabled] { opacity: .62; cursor: default; }
.cf-mb-busy { inline-size: 17px; block-size: 17px; flex: none; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35); border-block-start-color: #fff; animation: cfmbspin .8s linear infinite; }
@media (prefers-reduced-motion: reduce) { .cf-mb-busy { animation: none; } }

/* ── Success · an APPLICATION was received. Never "welcome, member". ───────
   cl 3(7): a person becomes a member once their name is entered in the
   register. Deliberately NOT green: a green tick reads as "you're in", which
   is the one thing this screen must not say. Navy header, cream body — the
   prospectus' card, used as a receipt. */
.cf-mb-done { background: #fff; border: 1px solid var(--cf-line); border-radius: var(--cf-r-card);
  overflow: hidden; box-shadow: 0 1px 2px rgba(15,30,58,.05); }
.cf-mb-done-h { display: flex; gap: 12px; align-items: center; padding: 17px 20px;
  background: linear-gradient(160deg, var(--cf-navy-deep), var(--cf-navy)); color: #fff; }
.cf-mb-done-ic { inline-size: 38px; block-size: 38px; flex: none; border-radius: 50%;
  background: rgba(244,166,58,.16); color: var(--cf-orange-lt); display: grid; place-items: center; }
.cf-mb-done-ic svg { inline-size: 21px; block-size: 21px; }
.cf-mb-done h2 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin: 0; color: #fff; }
.cf-mb-done-b { padding: 18px 20px 20px; }
.cf-mb-done-b > p { font-size: 14.5px; color: var(--cf-ink-2); line-height: 1.6; margin: 0; text-wrap: pretty; }
.cf-mb-next { margin: 17px 0 0; padding: 0; display: grid; gap: 14px; counter-reset: cfmb; }
.cf-mb-next li { list-style: none; display: flex; gap: 13px; align-items: flex-start; }
.cf-mb-next li::before { counter-increment: cfmb; content: counter(cfmb); inline-size: 26px; block-size: 26px;
  flex: none; border-radius: 50%; background: #F7F1E7; border: 1.5px solid var(--cf-orange);
  color: var(--cf-orange-ink); font-size: 13px; font-weight: 800; display: grid; place-items: center; }
.cf-mb-next p { font-size: 13.5px; color: var(--cf-ink-2); line-height: 1.55; margin: 3px 0 0; text-wrap: pretty; }
.cf-mb-next b { color: var(--cf-navy); font-weight: 800; }
.cf-mb-done-foot { margin-top: 18px; padding-block-start: 15px; border-block-start: 1px solid var(--cf-line);
  font-size: 13px; color: var(--cf-ink-3); line-height: 1.55; }

/* ── Failure · never a dead end ───────────────────────────────────────────
   The form was silently broken for weeks and the only visible message was a
   dead end. Amber, not red: red on this site means danger and 000. */
.cf-mb-fail { background: #FDF0DC; border: 1.5px solid #EFC98E; border-inline-start: 4px solid var(--cf-orange);
  border-radius: var(--cf-r-card); padding: 18px 20px; }
.cf-mb-fail-h { display: flex; gap: 11px; align-items: flex-start; }
.cf-mb-fail-h > svg { inline-size: 20px; block-size: 20px; flex: none; margin-block-start: 1px; color: var(--cf-orange-ink); }
.cf-mb-fail h3 { font-size: 16px; font-weight: 800; color: #7A3A08; margin: 0; }
.cf-mb-fail p { font-size: 13.5px; color: #7A3A08; line-height: 1.6; margin: 7px 0 0; text-wrap: pretty; }
.cf-mb-fail-acts { display: grid; gap: 9px; margin-top: 15px; }
@media (min-width: 460px) { .cf-mb-fail-acts { grid-template-columns: 1fr 1fr; } }
a.cf-mb-mail, button.cf-mb-retry { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; cursor: pointer; font-weight: 800; font-size: 14.5px; padding-inline: 18px;
  min-block-size: 48px; border-radius: var(--cf-r-pill); text-decoration: none; }
button.cf-mb-retry { background: var(--cf-navy); color: #fff; border: 0; }
button.cf-mb-retry:hover { background: var(--cf-navy-deep); }
a.cf-mb-mail { background: #fff; color: #7A3A08; border: 1.5px solid #E3AE68; }
a.cf-mb-mail:hover { border-color: var(--cf-orange-ink); color: #7A3A08; }
.cf-mb-mail svg, .cf-mb-retry svg { inline-size: 16px; block-size: 16px; }
.cf-mb-fail-fine { margin-top: 12px; font-size: 12.5px; color: var(--cf-orange-ink); line-height: 1.55; }

/* ── Accessibility hardening ──────────────────────────────────────────────*/
@media (prefers-contrast: more) {
  .cf-mb-fact, .cf-mb-review, .cf-mb-legal, .cf-mb-done { border-width: 2px; }
  .cf-mb-cl { color: var(--cf-navy); }
  .cf-mb-go2 { text-decoration-color: currentColor; }
}
@media (forced-colors: active) {
  .cf-mb-seat { background: Canvas; border: 1px solid CanvasText; }
  .cf-mb-seat.is-filled { background: Highlight; }
  .cf-mb-fact::before, .cf-mb-rule { background: CanvasText; }
  .cf-mb-ac-item[aria-selected="true"] { background: Highlight; color: HighlightText; forced-color-adjust: none; }
}
