/* ==========================================================================
   muster. — website design system
   Built strictly to docs/02_brand_identity.md.
   Tokens are the single source of truth. Do not hard-code hex values below
   the :root block — if a colour is missing, add a token.
   ========================================================================== */

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand — primary */
  --amber:        #E8720C;   /* Site amber — CTAs, highlights, accents only */
  --charcoal:     #1A1A1A;   /* Deep charcoal — dark surfaces, display type */

  /* Brand — secondary */
  --red-earth:    #B85A09;   /* Amber dark — hover / pressed */
  --amber-light:  #FDF0E6;   /* Amber tint backgrounds */
  --ironstone:    #8C7B6B;   /* Secondary text, labels, metadata */
  --off-black:    #2D2D2D;   /* Body text */
  --dust:         #F5F3EF;   /* Page background */
  --white:        #FFFFFF;

  /* Functional — product UI only. Used on this site strictly inside
     app-screenshot surrogates and the tier tick/cross marks. */
  --success:      #2E7D32;
  --success-bg:   #EAF3DE;
  --alert:        #A32D2D;
  --alert-bg:     #FCEBEB;
  --info:         #185FA5;
  --info-bg:      #E6F1FB;

  /* Lines & surfaces */
  --rule:         #EDE9E3;   /* 0.5px card borders */
  --rule-strong:  #DFD9D1;
  --surface-alt:  #FAFAF8;
  --charcoal-90:  rgba(26,26,26,.90);
  --charcoal-70:  rgba(26,26,26,.70);
  --white-70:     rgba(255,255,255,.70);
  --white-55:     rgba(255,255,255,.55);

  /* Radii — 12–14 cards, 8–10 small, 20–30 pills */
  --r-card: 14px;
  --r-sm:   10px;
  --r-pill: 999px;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* Layout */
  --max:      1200px;
  --max-text: 720px;
  --gutter:   24px;

  --nav-h: 68px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.3,1);
}

/* ---------- 2. Reset / base --------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;                 /* web body runs larger than the 13–14 app scale */
  line-height: 1.7;                /* "body is set loose" */
  color: var(--off-black);
  background: var(--dust);
  font-feature-settings: "cv11", "ss01";
  font-variant-numeric: tabular-nums;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--red-earth); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--amber); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--charcoal); color: var(--white);
  padding: 12px 18px; border-radius: var(--r-sm);
  font-weight: 700; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip-link:focus { top: 12px; color: var(--white); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- 3. Type scale ------------------------------------------------ */
h1, h2, h3, h4 { margin: 0 0 var(--s-4); color: var(--charcoal); text-wrap: balance; }

.display,
h1 {
  font-weight: 800;
  font-size: clamp(2.25rem, 1.35rem + 3.7vw, 4.25rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h2 {
  font-weight: 800;
  font-size: clamp(1.75rem, 1.25rem + 1.9vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

h3 {
  font-weight: 700;
  font-size: clamp(1.15rem, 1.05rem + .4vw, 1.4rem);
  letter-spacing: -0.02em;
  line-height: 1.28;
}

h4 {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.06rem, .99rem + .35vw, 1.3rem);
  line-height: 1.62;
  color: var(--off-black);
  max-width: 58ch;
}

.label {
  font-size: .6875rem;             /* 11px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  line-height: 1.45;
  color: var(--ironstone);
  margin: 0 0 var(--s-3);
}
.label--amber { color: var(--red-earth); }
.label--on-dark { color: var(--white-70); }

.figure { font-weight: 800; letter-spacing: -0.03em; }  /* financial figures 700–800 */
.muted  { color: var(--ironstone); }
.small  { font-size: .875rem; line-height: 1.6; }
.tiny   { font-size: .78rem; line-height: 1.55; color: var(--ironstone); }

/* Wordmark ---------------------------------------------------------------- */
.wordmark { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.wordmark__icon { width: 34px; height: 34px; flex: none; border-radius: 8px; }
.wordmark__text {
  font-weight: 800; font-size: 1.5rem; letter-spacing: -.03em;
  line-height: 1; color: var(--charcoal);
}
.wordmark__dot { color: var(--amber); }
.wordmark__sub {                    /* "the fifo platform" — never remove */
  display: block; font-size: .5625rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .15em; color: var(--ironstone); margin-top: 3px; line-height: 1;
}
.wordmark--on-dark .wordmark__text { color: var(--white); }
.wordmark--lg .wordmark__icon { width: 56px; height: 56px; border-radius: 12px; }
.wordmark--lg .wordmark__text { font-size: 2.4rem; }

/* ---------- 4. Layout ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--text { max-width: var(--max-text); }

.section { padding-block: clamp(var(--s-8), 7vw, var(--s-10)); }
.section--tight { padding-block: clamp(var(--s-7), 5vw, var(--s-8)); }
.section--dust    { background: var(--dust); }
.section--white   { background: var(--white); }
.section--charcoal{ background: var(--charcoal); color: var(--white-70); }
.section--charcoal h2, .section--charcoal h3, .section--charcoal h4 { color: var(--white); }
.section--amber-tint { background: var(--amber-light); }

.section__head { max-width: 62ch; margin-bottom: var(--s-7); }
.section__head--centre { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--s-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split {
  display: grid; gap: clamp(var(--s-6), 5vw, var(--s-8));
  grid-template-columns: 1fr 1fr; align-items: center;
}
.split--wide-left  { grid-template-columns: 1.15fr .85fr; }
.split--wide-right { grid-template-columns: .85fr 1.15fr; }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split, .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .split__media--first { order: -1; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- 5. Buttons --------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px;
  font: inherit; font-weight: 700; font-size: .975rem; letter-spacing: -.01em;
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .16s var(--ease), border-color .16s var(--ease),
              color .16s var(--ease), transform .16s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--amber); color: var(--white); }
.btn--primary:hover { background: var(--red-earth); color: var(--white); }

.btn--ghost { background: transparent; color: var(--red-earth); border-color: var(--amber); }
.btn--ghost:hover { background: var(--amber-light); color: var(--red-earth); }

.btn--dark { background: var(--charcoal); color: var(--white); }
.btn--dark:hover { background: var(--off-black); color: var(--white); }

.btn--on-dark { background: var(--white); color: var(--charcoal); }
.btn--on-dark:hover { background: var(--dust); color: var(--charcoal); }

.btn--ghost-on-dark { background: transparent; color: var(--white); border-color: var(--white-55); }
.btn--ghost-on-dark:hover { background: rgba(255,255,255,.10); color: var(--white); border-color: var(--white); }

.btn--sm { min-height: 44px; padding: 10px 20px; font-size: .9rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

/* Store badges ------------------------------------------------------------ */
.stores { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  min-height: 56px; padding: 9px 20px 9px 17px;
  background: var(--charcoal); color: var(--white);
  border: 1.5px solid var(--charcoal); border-radius: var(--r-sm);
  text-decoration: none; transition: background-color .16s var(--ease);
}
.store-badge:hover { background: var(--off-black); color: var(--white); }
.store-badge svg { width: 24px; height: 24px; flex: none; fill: currentColor; }
.store-badge span { display: block; line-height: 1.2; }
.store-badge .store-badge__kicker {
  font-size: .625rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; opacity: .72;
}
.store-badge .store-badge__name { font-size: 1.02rem; font-weight: 700; letter-spacing: -.02em; }
.store-badge--on-dark { background: var(--white); color: var(--charcoal); border-color: var(--white); }
.store-badge--on-dark:hover { background: var(--dust); color: var(--charcoal); }

/* ---------- 6. Cards & pills -------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-card);
  padding: var(--s-5);
  /* No drop shadows — borders and background differentiation define hierarchy. */
}
.card--flush { padding: 0; overflow: hidden; }
.card--dark { background: var(--off-black); border-color: rgba(255,255,255,.10); color: var(--white-70); }
.card--dark h3, .card--dark h4 { color: var(--white); }
.card--tint { background: var(--amber-light); border-color: #F3E0D0; }

.card__icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--amber-light); color: var(--red-earth);
  display: grid; place-items: center; margin-bottom: var(--s-4);
}
.card__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card--dark .card__icon { background: rgba(232,114,12,.16); color: var(--amber); }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  background: var(--amber-light); color: var(--red-earth);
  border: 1px solid #F3E0D0;
}
.pill--neutral { background: var(--surface-alt); color: var(--ironstone); border-color: var(--rule); }
.pill--free    { background: var(--success-bg); color: var(--success); border-color: #D6E6C4; }
.pill--phase2  { background: var(--info-bg); color: var(--info); border-color: #CFE2F5; }
.pill--on-dark { background: rgba(255,255,255,.10); color: var(--white); border-color: rgba(255,255,255,.20); }
.pill--dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex: none;
}

/* ---------- 7. Nav ------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,243,239,.90);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex; align-items: center; gap: var(--s-5);
  min-height: var(--nav-h);
}
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a:not(.btn) {
  padding: 9px 14px; border-radius: var(--r-pill);
  font-size: .925rem; font-weight: 600; color: var(--off-black);
  text-decoration: none; transition: background-color .14s var(--ease), color .14s var(--ease);
}
.nav__links a:not(.btn):hover { background: rgba(26,26,26,.055); color: var(--charcoal); }
.nav__links a:not(.btn)[aria-current="page"] { color: var(--red-earth); }
.nav__cta { margin-left: var(--s-3); }

.nav__toggle {
  display: none; margin-left: auto;
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: transparent; border: 1.5px solid var(--rule-strong);
  color: var(--charcoal); cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }
.nav__toggle[aria-expanded="true"] .icon-open  { display: none; }

@media (max-width: 900px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    display: none;
    position: absolute; inset: var(--nav-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dust); border-bottom: 1px solid var(--rule);
    padding: var(--s-3) var(--gutter) var(--s-5);
    margin-left: 0;
  }
  .nav__toggle[aria-expanded="true"] ~ .nav__links { display: flex; }
  .nav__links a:not(.btn) { padding: 14px 4px; border-radius: 0; border-bottom: 1px solid var(--rule); font-size: 1.05rem; }
  .nav__cta { margin: var(--s-4) 0 0; }
}

/* ---------- 8. Hero ------------------------------------------------------ */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white-70);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  opacity: .58;
}
.hero::after {                       /* solid backing so the wordmark never sits on busy photo */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(26,26,26,.96) 0%, rgba(26,26,26,.82) 42%, rgba(26,26,26,.42) 100%),
    linear-gradient(to top, rgba(26,26,26,.92) 0%, rgba(26,26,26,0) 55%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(var(--s-6), 5vw, var(--s-8)); align-items: center;
  padding-block: clamp(var(--s-8), 8vw, 116px);
}
.hero h1 { color: var(--white); margin-bottom: var(--s-5); }
.hero .lede { color: var(--white-70); margin-bottom: var(--s-6); }
.hero__proof {
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__proof div { min-width: 128px; }
.hero__proof .figure { display: block; font-size: 1.6rem; color: var(--white); line-height: 1.2; }
.hero__proof .tiny { color: var(--white-55); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: var(--s-8); }
  .hero__media { max-width: 340px; margin-inline: auto; }
}

/* ---------- 9. Phone mockups -------------------------------------------- */
.phone {
  position: relative;
  border-radius: 40px;
  border: 9px solid var(--charcoal);
  background: var(--charcoal);
  overflow: hidden;
  max-width: 300px;
  margin-inline: auto;
}
.phone img { display: block; width: 100%; border-radius: 31px; }
.phone--on-dark { border-color: #3A3A3A; background: #3A3A3A; }

.phone-stack {
  position: relative;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4); align-items: start;
}
.phone-stack .phone:nth-child(2) { margin-top: var(--s-7); }

.phone-fan { display: flex; justify-content: center; gap: 0; }
.phone-fan .phone { max-width: 232px; }
.phone-fan .phone:nth-child(1) { transform: rotate(-5deg) translateX(24px); z-index: 1; }
.phone-fan .phone:nth-child(2) { z-index: 3; }
.phone-fan .phone:nth-child(3) { transform: rotate(5deg) translateX(-24px); z-index: 1; }
@media (max-width: 700px) {
  .phone-fan .phone:nth-child(1), .phone-fan .phone:nth-child(3) { display: none; }
}

/* ---------- 10. Feature list / steps ------------------------------------ */
.steps { counter-reset: step; display: grid; gap: var(--s-5); }
.step { display: grid; grid-template-columns: 52px 1fr; gap: var(--s-4); align-items: start; }
.step__num {
  counter-increment: step;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--charcoal); color: var(--amber);
  font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em;
}
.step__num::before { content: counter(step); }
.steps--on-dark .step__num { background: var(--amber); color: var(--white); }
.step h3 { margin-bottom: 6px; }

.ticklist { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-3); }
.ticklist li { position: relative; padding-left: 32px; }
.ticklist svg { position: absolute; left: 0; top: 4px; width: 20px; height: 20px; stroke: var(--success);
  fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.ticklist.small li { padding-left: 28px; font-size: .9rem; }

/* ---------- 11. Pricing -------------------------------------------------- */
.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); align-items: start; }
@media (max-width: 1040px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px)  { .tiers { grid-template-columns: 1fr; } }

.tier { display: flex; flex-direction: column; height: 100%; }
.tier--featured { border: 2px solid var(--amber); position: relative; }
.tier__flag {
  position: absolute; top: -13px; left: var(--s-5);
  background: var(--amber); color: var(--white);
  padding: 4px 13px; border-radius: var(--r-pill);
  font-size: .625rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
}
.tier__name { font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 4px; }
.tier__price { margin: var(--s-4) 0 var(--s-2); }
.tier__price .figure { font-size: 2.5rem; line-height: 1; }
.tier__price .per { font-size: .95rem; font-weight: 500; color: var(--ironstone); }
.tier__annual { font-size: .85rem; color: var(--ironstone); margin-bottom: var(--s-4); }
.tier__list { list-style: none; margin: var(--s-4) 0 var(--s-5); padding: 0; display: grid; gap: 10px;
  font-size: .9rem; line-height: 1.5; }
.tier__list li { position: relative; padding-left: 27px; }
.tier__list svg { position: absolute; left: 0; top: 4px; width: 17px; height: 17px; fill: none; stroke-width: 2.6;
  stroke-linecap: round; stroke-linejoin: round; }
.tier__list .yes svg { stroke: var(--success); }
.tier__list .no  { color: var(--ironstone); }
.tier__list .no svg { stroke: var(--rule-strong); }
.tier__cta { margin-top: auto; }

/* Comparison table -------------------------------------------------------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-card); border: 1px solid var(--rule); background: var(--white); }
table.compare { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .9rem; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--rule); vertical-align: top; }
table.compare thead th {
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ironstone); background: var(--surface-alt); position: sticky; top: 0;
}
table.compare tbody tr:nth-child(even) { background: var(--surface-alt); }
table.compare td:not(:first-child), table.compare th:not(:first-child) { text-align: center; }
table.compare th[scope="row"] { font-weight: 600; color: var(--charcoal); }
table.compare .grp td {
  background: var(--charcoal); color: var(--white);
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
}
.mark { display: inline-block; font-weight: 700; }
.mark--yes { color: var(--success); }
.mark--no  { color: var(--rule-strong); }

/* ---------- 12. Stat band ------------------------------------------------ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat .figure { display: block; font-size: clamp(2rem, 1.4rem + 2vw, 3rem); line-height: 1.05; color: var(--amber); }
.stat p { margin: var(--s-2) 0 0; font-size: .9rem; }
.section--charcoal .stat p { color: var(--white-70); }

/* ---------- 13. Quote ---------------------------------------------------- */
.quote { border-left: 3px solid var(--amber); padding-left: var(--s-5); }
.quote p {
  font-size: clamp(1.15rem, 1rem + .7vw, 1.6rem); font-weight: 600;
  letter-spacing: -.02em; line-height: 1.4; color: var(--charcoal);
}
.section--charcoal .quote p { color: var(--white); }
.quote cite { display: block; margin-top: var(--s-4); font-style: normal;
  font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ironstone); }

/* ---------- 14. Forms / capture ----------------------------------------- */
.capture { display: grid; gap: var(--s-3); grid-template-columns: 1fr auto; align-items: start; }
@media (max-width: 560px) { .capture { grid-template-columns: 1fr; } }

.field label {
  display: block; font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--ironstone); margin-bottom: var(--s-2);
}
.field input, .field select {
  width: 100%; min-height: 52px; padding: 13px 16px;
  font: inherit; font-size: 1rem; color: var(--charcoal);
  background: var(--white); border: 1.5px solid var(--rule-strong);
  border-radius: var(--r-sm);
}
.field input::placeholder { color: var(--ironstone); }
.field input:focus { border-color: var(--amber); }
.section--charcoal .field label { color: var(--white-55); }

.form-note { font-size: .8rem; line-height: 1.55; color: var(--ironstone); margin-top: var(--s-3); }
.section--charcoal .form-note { color: var(--white-55); }
.form-status { margin-top: var(--s-3); font-size: .9rem; font-weight: 600; }
.form-status--ok { color: var(--success); }
.section--charcoal .form-status--ok { color: #9CCB7A; }

/* ---------- 15. Wellbeing band ------------------------------------------ */
.helpline {
  display: flex; flex-wrap: wrap; gap: var(--s-4);
  align-items: center; justify-content: space-between;
}
.helpline__numbers { display: flex; flex-wrap: wrap; gap: var(--s-5); }
.helpline__numbers div { min-width: 150px; }
.helpline__numbers a {
  display: block; font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em;
  color: var(--charcoal); text-decoration: none;
}
.helpline__numbers a:hover { color: var(--red-earth); }

/* ---------- 16. Accordion (FAQ) ----------------------------------------- */
.faq { display: grid; gap: var(--s-3); }
.faq details {
  background: var(--white); border: 1px solid var(--rule); border-radius: var(--r-card);
  padding: var(--s-4) var(--s-5);
}
.faq summary {
  cursor: pointer; list-style: none; display: flex; gap: var(--s-4);
  align-items: center; justify-content: space-between;
  font-weight: 700; font-size: 1.02rem; letter-spacing: -.02em; color: var(--charcoal);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 700; font-size: 1.5rem; line-height: 1;
  color: var(--amber); flex: none; transition: transform .18s var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq details > *:not(summary) { margin-top: var(--s-4); font-size: .95rem; }

/* ---------- 17. Image blocks -------------------------------------------- */
.figure-img { margin: 0; border-radius: var(--r-card); overflow: hidden; border: 1px solid var(--rule); background: var(--charcoal); }
.figure-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.figure-img--wide img { aspect-ratio: 16 / 9; }
.figure-img figcaption { padding: 10px 14px; font-size: .72rem; color: var(--white-55); background: var(--charcoal); }

.band-img {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--charcoal); color: var(--white-70);
}
.band-img > img {
  position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%;
  object-fit: cover; opacity: .45;
}
.band-img::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(26,26,26,.93) 0%, rgba(26,26,26,.72) 60%, rgba(26,26,26,.5) 100%);
}
.band-img h2, .band-img h3 { color: var(--white); }

/* ---------- 18. Footer --------------------------------------------------- */
.footer { background: var(--charcoal); color: var(--white-55); padding-block: var(--s-8) var(--s-6); }
.footer h4 {
  color: var(--white); font-size: .6875rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; margin-bottom: var(--s-4);
}
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s-6); }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--white-70); text-decoration: none; font-size: .925rem; }
.footer a:hover { color: var(--amber); text-decoration: underline; }
.footer__base {
  margin-top: var(--s-7); padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between;
  font-size: .8rem;
}

/* ---------- 19. Utilities ----------------------------------------------- */
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.centre { text-align: center; }
.centre .lede, .section__head--centre .lede { margin-inline: auto; }
.flow > * + * { margin-top: var(--s-4); }

/* Reveal-on-scroll -------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* Build-note ribbon — remove before the site goes live. */
.buildnote {
  background: var(--info-bg); border-bottom: 1px solid #CFE2F5;
  color: var(--info); font-size: .78rem; font-weight: 600;
  padding: 8px 0; text-align: center;
}
.buildnote a { color: var(--info); }
