/* ==========================================================================
   Principle Insolvency - Design System
   Brand: sky blue #89C5EC accent, near-black #000000, white #FFFFFF
   Built mobile-first. Targets WCAG 2.1 AA contrast throughout.
   British English (en-NZ) in all author-facing comments.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------ */
:root {
  /* Brand */
  --brand-blue: #89C5EC;          /* primary accent */
  --brand-blue-strong: #4FA3D4;   /* darker blue for links on light backgrounds (AA on white) */
  --brand-blue-deep: #2C6F99;     /* deepest blue for small text links on white */
  --ink: #0A0C0F;                 /* near-black background */
  --ink-2: #12161B;               /* slightly raised dark surface */
  --ink-3: #1B212A;               /* dark cards / borders on dark */
  --white: #FFFFFF;

  /* Neutral greys (accessible body copy + dividers) */
  --grey-050: #F6F8FA;            /* light section background */
  --grey-100: #ECEFF3;
  --grey-200: #DCE1E8;            /* dividers on light */
  --grey-300: #C2C9D3;
  --grey-400: #98A2B0;
  --grey-500: #6B7480;            /* muted text on light (AA on white) */
  --grey-600: #4A515B;
  --grey-700: #333941;            /* body text on light */
  --grey-800: #20242B;

  /* Text on dark surfaces */
  --on-dark: #FFFFFF;
  --on-dark-muted: #C6CDD6;       /* muted text on dark (AA on --ink) */
  --on-dark-faint: #9AA3AE;

  /* Semantic */
  --bg: var(--white);
  --text: var(--grey-700);
  --heading: #141A22;
  --link: var(--brand-blue-deep);
  --link-hover: #1E5C86;
  --border: var(--grey-200);

  /* Typography - system stacks only: no external requests, fast + offline-safe */
  --font-serif: "Iowan Old Style", "Palatino Linotype", "Palatino", "Book Antiqua", Georgia, Cambria, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --fs-base: 1.0625rem;           /* 17px */
  --lh-base: 1.7;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(16, 22, 30, 0.06), 0 2px 8px rgba(16, 22, 30, 0.05);
  --shadow-md: 0 6px 24px rgba(16, 22, 30, 0.10);
  --shadow-lg: 0 18px 50px rgba(16, 22, 30, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --header-h: 76px;
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color 0.2s var(--ease); }
a:hover { color: var(--link-hover); }

h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--heading); line-height: 1.18; font-weight: 600; margin: 0 0 var(--sp-4); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 1.4rem + 3vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.55rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 var(--sp-4); }
ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.3em; }
li { margin-bottom: var(--sp-2); }
strong { color: var(--heading); font-weight: 600; }
blockquote { margin: 0; }

/* ---- Accessibility helpers --------------------------------------------- */
:focus-visible { outline: 3px solid var(--brand-blue-strong); outline-offset: 2px; border-radius: 3px; }
.skip-link {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 1000;
  background: var(--ink); color: var(--white); padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: var(--sp-4); color: var(--white); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Layout primitives -------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3rem, 2rem + 5vw, 6rem); }
.section--tight { padding-block: clamp(2.25rem, 1.5rem + 3vw, 4rem); }
.section--light { background: var(--grey-050); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--on-dark-muted); }
.section--dark a:not(.btn) { color: var(--brand-blue); }
.section--dark a:not(.btn):hover { color: var(--white); }

.eyebrow {
  font-family: var(--font-sans); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-blue-deep);
  margin: 0 0 var(--sp-3); display: inline-flex; align-items: center; gap: var(--sp-2);
}
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow { color: var(--brand-blue); }
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: inline-block; }

.lead { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem); line-height: 1.6; color: var(--grey-600); }
.section--dark .lead { color: var(--on-dark-muted); }
.measure { max-width: 68ch; }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  font-family: var(--font-sans); font-weight: 600; font-size: 0.98rem; line-height: 1;
  padding: 0.95rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform 0.15s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--brand-blue); color: #08263a; border-color: var(--brand-blue); }
.btn--primary:hover { background: #9ed0f1; color: #08263a; box-shadow: 0 8px 22px rgba(137, 197, 236, 0.35); }
.btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-3); color: var(--white); }
.btn--ghost { background: transparent; color: var(--heading); border-color: var(--grey-300); }
.btn--ghost:hover { border-color: var(--heading); color: var(--heading); }
.section--dark .btn--ghost, .hero .btn--ghost, .cta-band .btn--ghost, .page-hero .btn--ghost { color: var(--white); border-color: rgba(255,255,255,0.4); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover, .cta-band .btn--ghost:hover, .page-hero .btn--ghost:hover { border-color: var(--white); color: var(--white); }
.btn--lg { padding: 1.1rem 2rem; font-size: 1.05rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.link-arrow { font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4em; }
.link-arrow::after { content: "\2192"; transition: transform 0.2s var(--ease); }
.link-arrow:hover::after { transform: translateX(3px); }

/* ---- Header / navigation ----------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); text-decoration: none; flex: none; }
.brand__logo { height: 38px; width: auto; max-width: none; display: block; }
@media (min-width: 480px) { .brand__logo { height: 42px; } }
.site-footer .brand__logo { height: 48px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-serif); font-weight: 600; font-size: 1.18rem; color: var(--white); letter-spacing: 0.01em; }
.brand__tag { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand-blue); margin-top: 4px; }

.primary-nav { display: none; }
.nav-list { display: flex; align-items: center; gap: var(--sp-1); list-style: none; margin: 0; padding: 0; }
.nav-list > li { margin: 0; position: relative; }
.nav-list a {
  display: inline-flex; align-items: center; gap: 6px; padding: 0.6rem 0.85rem; border-radius: var(--radius-sm);
  color: var(--on-dark-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-list a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--brand-blue); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }

/* Dropdown */
.has-dropdown > button {
  font: inherit; font-size: 0.95rem; font-weight: 500; color: var(--on-dark-muted); background: none; border: 0;
  display: inline-flex; align-items: center; gap: 6px; padding: 0.6rem 0.85rem; border-radius: var(--radius-sm); cursor: pointer;
}
.has-dropdown > button:hover, .has-dropdown[data-open="true"] > button { color: var(--white); background: rgba(255,255,255,0.06); }
.has-dropdown > button .caret { transition: transform 0.2s var(--ease); }
.has-dropdown[data-open="true"] > button .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 280px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: var(--sp-2); list-style: none; margin: 0; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}
/* Invisible bridge over the gap so the cursor can travel from the button down to the items without the menu closing */
.dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown[data-open="true"] .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.has-dropdown:hover > button, .has-dropdown:focus-within > button { color: var(--white); background: rgba(255,255,255,0.06); }
.has-dropdown:hover > button .caret, .has-dropdown:focus-within > button .caret { transform: rotate(180deg); }
.dropdown a { display: block; padding: 0.6rem 0.75rem; border-radius: var(--radius-sm); color: var(--grey-700); font-size: 0.92rem; font-weight: 500; background: none; box-shadow: none; }
.dropdown a:hover { background: var(--grey-050); color: var(--heading); }
.dropdown a span { display: block; font-size: 0.78rem; font-weight: 400; color: var(--grey-500); margin-top: 2px; }

.header-cta { display: none; }

/* Mobile nav toggle */
.nav-toggle {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 0 11px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-sm); cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; background: var(--ink); z-index: 99;
  transform: translateX(100%); transition: transform 0.3s var(--ease); overflow-y: auto;
  padding: var(--sp-5) var(--sp-5) var(--sp-8);
}
.mobile-menu[data-open="true"] { transform: translateX(0); }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu a, .mobile-menu .m-group-label {
  display: block; padding: var(--sp-4) var(--sp-2); color: var(--white); text-decoration: none; font-size: 1.1rem; font-weight: 500;
}
.mobile-menu .m-sub { padding-left: var(--sp-4); }
.mobile-menu .m-sub a { font-size: 1rem; color: var(--on-dark-muted); padding: var(--sp-3) var(--sp-2); }
.mobile-menu .m-group-label { color: var(--brand-blue); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; padding-bottom: var(--sp-1); }
.mobile-menu .btn { width: 100%; margin-top: var(--sp-5); }
body.nav-open { overflow: hidden; }

/* ---- Hero --------------------------------------------------------------- */
.hero { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(137,197,236,0.20), transparent 60%),
    radial-gradient(700px 400px at 8% 110%, rgba(137,197,236,0.10), transparent 55%);
  pointer-events: none;
}
.hero__inner { position: relative; padding-block: clamp(3.5rem, 2.5rem + 6vw, 7rem); }
.hero__grid { display: grid; gap: var(--sp-7); align-items: center; }
.hero h1 { color: var(--white); margin-bottom: var(--sp-5); }
.hero .lead { color: var(--on-dark-muted); margin-bottom: var(--sp-6); max-width: 56ch; }
.hero__phone { margin-top: var(--sp-6); font-size: 0.95rem; color: var(--on-dark-faint); }
.hero__phone a { color: var(--white); font-weight: 600; font-size: 1.15rem; }
.hero__panel {
  background: linear-gradient(180deg, var(--ink-2), var(--ink)); border: 1px solid var(--ink-3);
  border-radius: var(--radius-lg); padding: var(--sp-6); box-shadow: var(--shadow-lg);
}
.hero__panel h2 { font-size: 1.2rem; color: var(--white); }

/* ---- Cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr 1fr; }

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--sp-6); box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  height: 100%;
}
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-blue); }
.card h3 { margin-bottom: var(--sp-3); }
.card p { color: var(--grey-600); margin-bottom: var(--sp-4); }
.card .link-arrow { color: var(--brand-blue-deep); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: var(--sp-4);
  background: rgba(137,197,236,0.16); color: var(--brand-blue-deep);
}
.card__icon svg { width: 24px; height: 24px; }
.section--dark .card { background: var(--ink-2); border-color: var(--ink-3); }
.section--dark .card p { color: var(--on-dark-muted); }
.section--dark .card .card__icon { background: rgba(137,197,236,0.14); color: var(--brand-blue); }

/* Stat / trust row */
.stat-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.stat { text-align: left; }
.stat__num { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 600; color: var(--heading); line-height: 1; }
.section--dark .stat__num { color: var(--white); }
.stat__label { color: var(--grey-500); font-size: 0.95rem; margin-top: var(--sp-2); }
.section--dark .stat__label { color: var(--on-dark-muted); }

/* People */
.person { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.person__photo { aspect-ratio: 4 / 5; background: linear-gradient(160deg, var(--ink-2), var(--ink)); display: grid; place-items: center; color: var(--brand-blue); overflow: hidden; }
.person__photo svg { width: 30%; opacity: 0.5; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }

/* "We thrive on complexity" feature band (from the company profile) */
.complexity-band { position: relative; background: #06080B url("/images/complexity-gears.jpg?v=2") center / cover no-repeat; color: var(--on-dark); overflow: hidden; }
.complexity-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,8,11,0.95) 0%, rgba(6,8,11,0.86) 50%, rgba(6,8,11,0.55) 100%); }
.complexity-band .container { position: relative; }
.complexity-band__inner { max-width: 62ch; }
.complexity-band h2 { color: var(--white); }
.complexity-band .lead { color: var(--white); }
.complexity-band p { color: var(--on-dark-muted); }
.complexity-band .eyebrow { color: var(--brand-blue); }
/* Homepage band: meeting room graded to the brand palette (option B). Scoped so about.html keeps the gears image. Overlay 0.82->0.68 tuned so even the muted tick-list text clears WCAG AA over the bright windows. */
.complexity-band.band-meeting { background-image: url("/images/meeting-band.webp?v=20260715"); }
.complexity-band.band-meeting::before { background: linear-gradient(90deg, rgba(6,8,11,0.82) 0%, rgba(6,8,11,0.68) 100%); }
.person__body { padding: var(--sp-5); overflow-wrap: anywhere; }
.person__name { font-family: var(--font-serif); font-size: 1.35rem; color: var(--heading); margin-bottom: 2px; }
.person__role { color: var(--brand-blue-deep); font-weight: 600; font-size: 0.95rem; margin-bottom: var(--sp-3); }

/* Process steps */
.steps { counter-reset: step; display: grid; gap: var(--sp-5); }
.step { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start; }
.step__num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--ink); color: var(--brand-blue); font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem;
}
.step__num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: var(--sp-2); }
.step p { color: var(--grey-600); margin: 0; }

/* Feature list with ticks */
.tick-list { list-style: none; padding: 0; margin: 0; }
.tick-list li { position: relative; padding-left: 1.9rem; margin-bottom: var(--sp-3); overflow-wrap: anywhere; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: 0.35em; width: 18px; height: 18px;
  background: var(--brand-blue); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 14px no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 14px no-repeat;
}

/* Inline placeholder marker - makes unconfirmed facts obvious for client review */
.placeholder {
  background: #FFF3C4; color: #6b5300; padding: 0.05em 0.4em; border-radius: 4px;
  font-weight: 600; font-size: 0.95em; box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.section--dark .placeholder { background: #5a4a12; color: #ffe9a8; }

/* Callout / note */
.callout {
  border-left: 4px solid var(--brand-blue); background: var(--grey-050);
  padding: var(--sp-5); border-radius: 0 var(--radius) var(--radius) 0;
}
.callout--placeholder { border-left-color: #E0A800; background: #FFF9E8; }
.callout p:last-child { margin-bottom: 0; }

/* Article / insights */
.article-meta { color: var(--grey-500); font-size: 0.92rem; margin: 0; }
.article-figure { margin: var(--sp-6) 0; }
.article-figure img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border); display: block; }
.article-figure figcaption { font-size: 0.85rem; color: var(--grey-500); margin-top: var(--sp-3); text-align: center; }
.video-embed { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--ink); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.chart-figure { margin: var(--sp-5) 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--sp-5); }
.chart-source { font-size: 0.82rem; color: var(--grey-500); margin-top: var(--sp-3); }
.insight-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-blue-deep); margin-bottom: var(--sp-2); }
.card .insight-tag { color: var(--brand-blue-deep); }
.page-hero .insight-tag { color: var(--brand-blue); }
.page-hero .article-meta { color: var(--on-dark-faint); }

/* ---- Economic & market indicators - unified dark dashboard ---------------- */
.dash-section { background: var(--ink); color: var(--on-dark); }
.dash-section + .dash-section { border-top: 1px solid rgba(255,255,255,0.07); }
.dash-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.dash-head .eyebrow { color: var(--brand-blue); margin-bottom: 0; }
.dash-status { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-blue); display: inline-flex; align-items: center; gap: 6px; }
.dash-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(137,197,236,0.25); }

.dash-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(137,197,236,0.12); color: var(--brand-blue); flex: none; }
.dash-icon svg { width: 22px; height: 22px; }

.dash-grid { display: grid; gap: 1px; background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); overflow: hidden; grid-template-columns: 1fr; }
@media (min-width: 760px) { .dash-grid--2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .dash-grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 639px) { .dash-grid--4 { grid-template-columns: repeat(2, 1fr); } }
.dash-cell { background: var(--ink-2); padding: var(--sp-6); }

.dash-panel-head { display: flex; align-items: flex-start; gap: var(--sp-4); margin-bottom: var(--sp-5); }
.dash-panel-head h2, .dash-panel-head h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 2px; }
.dash-panel-head .plate-sub { font-size: 0.83rem; color: var(--on-dark-faint); margin: 0; }

.dash-readout { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.dash-readout .big { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600; color: var(--brand-blue); line-height: 1; letter-spacing: -0.01em; }
.dash-readout .unit { font-size: 1rem; color: var(--on-dark-faint); margin-left: 2px; }
.dash-meta { font-size: 0.82rem; color: var(--on-dark-faint); margin-top: var(--sp-4); line-height: 1.6; }
.dash-meta a { color: var(--brand-blue); }
.dash-bar-wrap { flex: 1; min-width: 160px; }
.dash-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--on-dark-faint); margin-bottom: 6px; }
.dash-bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,0.1); overflow: hidden; }
.dash-bar-fill { height: 100%; background: linear-gradient(90deg, var(--brand-blue-deep), var(--brand-blue)); border-radius: 6px; }

/* Ticker cells (FX / metals) - sit inside .dash-grid, hairline-separated */
.dash-ticker { text-align: left; }
.dash-ticker .ticker-pair { font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.dash-ticker .ticker-elem { display: inline-grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(137,197,236,0.16); color: var(--brand-blue); font-size: 0.62rem; font-weight: 700; text-transform: none; letter-spacing: 0; }
.dash-ticker .ticker-value { font-family: var(--font-serif); font-size: 1.7rem; font-weight: 600; color: var(--white); margin-top: 10px; letter-spacing: -0.01em; }
.dash-ticker .ticker-value.is-loading { color: var(--on-dark-faint); font-size: 0.95rem; font-weight: 400; font-family: var(--font-sans); }
.dash-ticker .ticker-sub { font-size: 0.78rem; color: var(--on-dark-faint); margin-top: 5px; line-height: 1.55; }
.dash-ticker .ticker-sub a { color: var(--brand-blue); }

/* Rate table on dark */
.dash-table { width: 100%; border-collapse: collapse; font-size: 0.94rem; }
.dash-table th { text-align: left; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 600; padding: 0 0 var(--sp-3) 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.dash-table td { padding: var(--sp-4) var(--sp-3) var(--sp-4) 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: var(--white); vertical-align: top; }
.dash-table tr:last-child td { border-bottom: none; }
.dash-table td.range { color: var(--brand-blue); font-weight: 600; white-space: nowrap; font-family: var(--font-serif); font-size: 1.05rem; }
.dash-table tr.is-computed td.range { color: #E0B04A; }
.dash-table .calc-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #E0B04A; background: rgba(224,176,74,0.12); border-radius: 4px; padding: 2px 7px; margin-left: 8px; vertical-align: middle; }
.dash-nzx-value { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; color: var(--white); margin: 4px 0 2px; letter-spacing: -0.01em; }
.nzx-change { font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0; vertical-align: middle; }
.nzx-change[data-direction="up"] { color: #3FBF7F; }
.nzx-change[data-direction="down"] { color: #E5685C; }

.dash-foot { font-size: 0.82rem; color: var(--on-dark-faint); margin-top: var(--sp-5); line-height: 1.7; }
.dash-foot a { color: var(--brand-blue); }

/* Sub-figure pair inside a dash cell (e.g. Companies Office vs ITS liquidation counts) */
.dash-split { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
@media (min-width: 560px) { .dash-split { grid-template-columns: 1fr 1fr; } }
.dash-split .subfig { border-left: 2px solid rgba(137,197,236,0.35); padding-left: var(--sp-4); }
.dash-split .subfig-label { font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--on-dark-faint); font-weight: 600; }
.dash-split .subfig-value { font-family: var(--font-serif); font-size: 2rem; font-weight: 600; color: var(--brand-blue); margin-top: 6px; line-height: 1.1; letter-spacing: -0.01em; }
.dash-split .subfig-sub { font-size: 0.78rem; color: var(--on-dark-faint); margin-top: 5px; line-height: 1.5; }

/* "From our Insights" callout beneath a dash cell */
.dash-insight-callout { margin-top: var(--sp-5); border: 1px solid rgba(137,197,236,0.25); border-radius: var(--radius); padding: var(--sp-4) var(--sp-5); background: rgba(137,197,236,0.07); display: block; text-decoration: none; transition: border-color .2s ease, background .2s ease; }
.dash-insight-callout:hover { border-color: rgba(137,197,236,0.55); background: rgba(137,197,236,0.12); }
.dash-insight-callout .dic-eyebrow { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-blue); font-weight: 700; }
.dash-insight-callout .dic-title { color: var(--white); font-weight: 600; font-size: 0.95rem; margin: 6px 0 4px; line-height: 1.4; }
.dash-insight-callout .dic-teaser { color: var(--on-dark-muted); font-size: 0.84rem; line-height: 1.6; margin: 0; }
.dash-insight-callout .link-arrow { margin-top: 8px; font-size: 0.85rem; }

/* ---- Insights hub: featured dashboard teaser, above the article grid ------ */
.insights-dash { position: relative; background: var(--ink); color: var(--on-dark); border-radius: var(--radius-lg); overflow: hidden; padding: clamp(1.75rem, 3vw, 3rem); margin-bottom: var(--sp-8); }
.insights-dash::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 88% -15%, rgba(137,197,236,0.16), transparent 60%); pointer-events: none; }
.insights-dash__inner { position: relative; }
.insights-dash__head { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: var(--sp-5); margin-bottom: var(--sp-6); }
.insights-dash__head h2 { color: var(--white); margin-bottom: var(--sp-2); }
.insights-dash__head p { color: var(--on-dark-muted); margin: 0; max-width: 44ch; }
.insights-dash-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); margin-bottom: var(--sp-6); }
@media (min-width: 640px) { .insights-dash-stats { grid-template-columns: repeat(4, 1fr); } }
.insights-dash-stat { border-left: 2px solid rgba(137,197,236,0.35); padding-left: var(--sp-4); }
.insights-dash-stat .label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-faint); display: flex; align-items: center; gap: 6px; }
.insights-dash-stat .value { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 600; color: var(--white); margin-top: 6px; letter-spacing: -0.01em; }
.insights-dash-stat .value.is-loading { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 400; color: var(--on-dark-faint); }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--grey-500); padding-block: var(--sp-4); }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0; }
.breadcrumb li::after { content: "/"; margin-left: 0.5rem; color: var(--grey-300); }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--grey-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-blue-deep); }

/* Page hero (interior) */
.page-hero { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(900px 420px at 85% -20%, rgba(137,197,236,0.18), transparent 60%); }
.page-hero__inner { position: relative; padding-block: clamp(2.75rem, 2rem + 4vw, 4.5rem); }
.page-hero h1 { color: var(--white); margin-bottom: var(--sp-4); }
.page-hero .lead { color: var(--on-dark-muted); max-width: 62ch; }
.page-hero .breadcrumb { color: var(--on-dark-faint); }
.page-hero .breadcrumb a { color: var(--on-dark-faint); }
.page-hero .breadcrumb a:hover { color: var(--brand-blue); }
.page-hero .breadcrumb li::after { color: rgba(255,255,255,0.25); }

/* Prose blocks for long-form pages */
.prose > h2 { margin-top: var(--sp-7); }
.prose > h3 { margin-top: var(--sp-6); }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }

/* Two-column content layout */
.content-cols { display: grid; gap: var(--sp-7); }
.sidebar-card { background: var(--ink); color: var(--on-dark); border-radius: var(--radius-lg); padding: var(--sp-6); position: sticky; top: calc(var(--header-h) + 1rem); overflow-wrap: anywhere; }
.sidebar-card h2, .sidebar-card h3, .sidebar-card h4 { color: var(--white); }
.sidebar-card h3 { font-size: 1.2rem; }
/* On dark surfaces, bold text must not fall back to the dark heading colour */
.sidebar-card strong, .section--dark strong, .cta-band strong, .hero strong, .page-hero strong { color: inherit; }
.sidebar-card p { color: var(--on-dark-muted); }
.sidebar-card a:not(.btn) { color: var(--brand-blue); }
.sidebar-card .btn { width: 100%; }

/* ---- FAQ (native <details>/<summary> disclosure - works without JS) ------ */
.faq { border-top: 1px solid var(--border); }
.faq details, .faq .faq__item { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; position: relative; display: block;
  font-family: var(--font-serif); font-size: 1.12rem; font-weight: 600; color: var(--heading);
  padding: var(--sp-5) 2.5rem var(--sp-5) 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 3px solid var(--brand-blue-strong); outline-offset: 2px; border-radius: 3px; }
.faq summary::after {
  content: ""; position: absolute; right: 0.25rem; top: 50%; width: 16px; height: 16px; transform: translateY(-50%);
  background: var(--brand-blue-deep);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M11 5h2v14h-2z'/><path fill='black' d='M5 11h14v2H5z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M11 5h2v14h-2z'/><path fill='black' d='M5 11h14v2H5z'/></svg>") center / contain no-repeat;
  transition: transform 0.2s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
/* Explicit collapse so closed answers hide in every rendering engine, not only those that apply the native UA rule */
.faq details:not([open]) > *:not(summary) { display: none; }
.faq details > *:not(summary) { padding: 0 2.5rem var(--sp-5) 0; }
.faq details > *:not(summary) > *:last-child { margin-bottom: 0; }
/* Checkbox field (consent) */
.form-field--check .checkbox-label { display: flex; gap: var(--sp-3); align-items: flex-start; font-weight: 400; color: var(--grey-600); font-size: 0.9rem; cursor: pointer; margin: 0; }
.form-field--check input[type="checkbox"] { margin-top: 0.25rem; width: 18px; height: 18px; flex: none; accent-color: var(--brand-blue-strong); }
.form-field--check a { color: var(--brand-blue-deep); }

/* ---- Forms -------------------------------------------------------------- */
.form-field { margin-bottom: var(--sp-5); }
.form-field label { display: block; font-weight: 600; color: var(--heading); margin-bottom: var(--sp-2); font-size: 0.95rem; }
.form-field .req { color: #B23; }
.form-field .hint { font-weight: 400; color: var(--grey-500); font-size: 0.85rem; }
.form-control {
  width: 100%; font: inherit; font-size: 1rem; color: var(--heading); background: var(--white);
  border: 1.5px solid var(--grey-300); border-radius: var(--radius-sm); padding: 0.8rem 0.95rem; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-control::placeholder { color: var(--grey-400); }
.form-control:focus { outline: none; border-color: var(--brand-blue-strong); box-shadow: 0 0 0 3px rgba(137,197,236,0.35); }
textarea.form-control { min-height: 150px; resize: vertical; }
.form-grid { display: grid; gap: 0 var(--sp-5); }
.form-check { display: flex; gap: var(--sp-3); align-items: flex-start; }
.form-check input { margin-top: 0.3rem; width: 18px; height: 18px; flex: none; accent-color: var(--brand-blue-strong); }
.form-check label { font-weight: 400; color: var(--grey-600); font-size: 0.9rem; margin: 0; }
.form-privacy { font-size: 0.85rem; color: var(--grey-500); margin-top: var(--sp-4); }
.form-error { color: #B23; font-size: 0.85rem; margin-top: var(--sp-2); display: none; }
.form-field[data-invalid="true"] .form-control { border-color: #B23; }
.form-field[data-invalid="true"] .form-error { display: block; }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--on-dark); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 360px at 90% 120%, rgba(137,197,236,0.18), transparent 60%); }
.cta-band__inner { position: relative; display: grid; gap: var(--sp-5); align-items: center; }
.cta-band h2 { color: var(--white); margin-bottom: var(--sp-3); }
.cta-band p { color: var(--on-dark-muted); margin-bottom: 0; }

/* ---- Footer ------------------------------------------------------------- */
.site-footer { background: #06080B; color: var(--on-dark-muted); padding-block: var(--sp-8) var(--sp-6); }
.site-footer a { color: var(--on-dark-muted); text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-grid { display: grid; gap: var(--sp-7); grid-template-columns: 1fr; }
.footer-brand .brand__name { color: var(--white); }
.footer-brand p { color: var(--on-dark-faint); font-size: 0.92rem; max-width: 34ch; }
.footer-col h2, .footer-col h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: var(--sp-3); overflow-wrap: anywhere; }
.footer-col a { font-size: 0.95rem; }
.footer-contact a { color: var(--white); font-weight: 600; }
.footer-bottom {
  margin-top: var(--sp-7); padding-top: var(--sp-5); border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between; font-size: 0.85rem; color: var(--on-dark-faint);
}
.footer-bottom a { color: var(--on-dark-faint); }
.footer-disclaimer { font-size: 0.8rem; color: var(--on-dark-faint); line-height: 1.6; margin-top: var(--sp-5); max-width: 90ch; }

/* ---- Responsive --------------------------------------------------------- */
@media (min-width: 560px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .form-grid--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 760px) {
  .grid--2 { grid-template-columns: 1fr 1fr; }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
  .cta-band__inner { grid-template-columns: 1.6fr auto; }
  .hero__phone { margin-top: var(--sp-7); }
}
@media (min-width: 940px) {
  .primary-nav { display: block; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none; }
  .hero__grid { grid-template-columns: 1.15fr 0.85fr; }
  .content-cols { grid-template-columns: 1fr 320px; gap: var(--sp-8); }
  .content-cols--reverse { grid-template-columns: 320px 1fr; }
}
@media (min-width: 1040px) {
  .container { padding-inline: var(--sp-6); }
}

/* Print */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle, .mobile-menu { display: none !important; }
  body { color: #000; }
  a { color: #000; text-decoration: underline; }
}

/* ---- 2026-07 components -------------------------------------------------- */

/* Timeline steps - vertical variant of .steps: brand-blue circles joined by a connector rule */
.steps--timeline { gap: 0; }
.steps--timeline .step { position: relative; padding-bottom: var(--sp-6); }
.steps--timeline .step:last-child { padding-bottom: 0; }
.steps--timeline .step::before {
  content: ""; position: absolute; left: 21px; top: 50px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--brand-blue), rgba(137,197,236,0.28)); border-radius: 2px;
}
.steps--timeline .step:last-child::before { display: none; }
.steps--timeline .step__num {
  position: relative; z-index: 1; background: var(--brand-blue); color: var(--ink);
  box-shadow: 0 0 0 4px rgba(137,197,236,0.22);
}
.section--dark .steps--timeline .step::before { background: linear-gradient(180deg, var(--brand-blue), rgba(137,197,236,0.16)); }

/* Stat tiles - large serif figures with small-caps labels */
.stat-tiles { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
.stat-tile { border-top: 3px solid var(--brand-blue); padding-top: var(--sp-4); }
.stat-tile__figure { font-family: var(--font-serif); font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3.1rem); font-weight: 600; line-height: 1.05; color: var(--heading); letter-spacing: -0.01em; }
.stat-tile__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-500); margin-top: var(--sp-2); }
.section--dark .stat-tile__figure { color: var(--white); }
.section--dark .stat-tile__label { color: var(--on-dark-faint); }
@media (min-width: 560px) { .stat-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .stat-tiles { grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); } }

/* Pull quote - serif italic with brand-blue rule */
.pullquote {
  margin: var(--sp-7) 0; padding: var(--sp-2) 0 var(--sp-2) clamp(1.25rem, 4vw, 2rem);
  border-left: 3px solid var(--brand-blue);
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.6rem); line-height: 1.55; color: var(--heading);
}
.pullquote p { margin-bottom: var(--sp-3); }
.pullquote > :last-child, .pullquote p:last-child { margin-bottom: 0; }
.pullquote cite, .pullquote footer {
  display: block; margin-top: var(--sp-3); font-family: var(--font-sans); font-style: normal;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.02em; color: var(--grey-500);
}
.pullquote cite::before, .pullquote footer::before { content: "\2014\00a0"; color: var(--brand-blue-strong); }
.section--dark .pullquote { color: var(--white); }
.section--dark .pullquote cite, .section--dark .pullquote footer { color: var(--on-dark-faint); }

/* Icon grid - rows of 24px line icons beside text */
.icon-grid { display: grid; gap: var(--sp-5) var(--sp-6); grid-template-columns: 1fr; list-style: none; padding: 0; margin: 0 0 var(--sp-5); }
.icon-grid__item { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start; margin: 0; }
.icon-grid__item svg { width: 24px; height: 24px; flex: none; margin-top: 3px; color: var(--brand-blue-deep); }
.icon-grid__item h3, .icon-grid__item h4 { font-size: 1.08rem; margin-bottom: var(--sp-1); }
.icon-grid__item p { color: var(--grey-600); margin-bottom: 0; }
.section--dark .icon-grid__item svg { color: var(--brand-blue); }
.section--dark .icon-grid__item p { color: var(--on-dark-muted); }
@media (min-width: 760px) { .icon-grid { grid-template-columns: 1fr 1fr; } }

/* Card kicker - small category strip at the top of insight/article cards */
.card-kicker {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: 0.5rem var(--sp-4); border-radius: var(--radius-sm);
  background: rgba(137,197,236,0.16); color: var(--brand-blue-deep);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.card-kicker svg { width: 14px; height: 14px; flex: none; }
.card > .card-kicker:first-child {
  margin: calc(-1 * var(--sp-6)) calc(-1 * var(--sp-6)) var(--sp-5);
  padding: 0.55rem var(--sp-6);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}
.card-kicker--law { background: rgba(44,111,153,0.14); color: var(--brand-blue-deep); }
.card-kicker--stats { background: rgba(137,197,236,0.24); color: var(--link-hover); }
.card-kicker--podcast { background: rgba(10,12,15,0.07); color: var(--grey-600); }
.section--dark .card-kicker { background: rgba(137,197,236,0.14); color: var(--brand-blue); }

/* Route cards - 2x2 grid of option cards, plus .badge pill ("Most common") */
.route-cards { display: grid; gap: var(--sp-5); grid-template-columns: 1fr; }
@media (min-width: 760px) { .route-cards { grid-template-columns: 1fr 1fr; } }
.badge {
  display: inline-block; padding: 0.24rem 0.7rem; border-radius: 999px;
  background: var(--brand-blue); color: var(--ink);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  vertical-align: middle;
}
h2 .badge, h3 .badge { margin-left: var(--sp-2); }

/* Mobile CTA bar - fixed call/enquire bar, only below the 940px nav breakpoint */
.mobile-cta-bar { display: none; }
@media screen and (max-width: 939px) {
  .mobile-cta-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    display: flex; box-shadow: 0 -6px 24px rgba(16, 22, 30, 0.18);
  }
  .mobile-cta-bar a {
    flex: 1 1 50%; display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
    min-height: 52px; padding: var(--sp-3) var(--sp-4) calc(var(--sp-3) + env(safe-area-inset-bottom));
    font-weight: 700; font-size: 1rem; line-height: 1.2; text-align: center; text-decoration: none;
  }
  .mobile-cta-bar__call { background: var(--brand-blue); color: var(--ink); }
  .mobile-cta-bar__call:hover { background: #9ed0f1; color: var(--ink); }
  .mobile-cta-bar__enquire { background: var(--ink); color: var(--white); }
  .mobile-cta-bar__enquire:hover { background: var(--ink-3); color: var(--white); }
  body.has-cta-bar { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}
