:root {
  --orange: #f04a0a;
  --orange-dark: #d93d04;
  --orange-soft: #fff0e8;
  --navy: #061c2d;
  --navy-2: #0b2a3f;
  --navy-3: #12384f;
  --ink: #081d2d;
  --muted: #566571;
  --cream: #f9f7f3;
  --cream-2: #efeae5;
  --paper: #ffffff;
  --line: #ded8d2;
  --line-dark: rgba(255,255,255,.18);
  --success: #1f7a55;
  --shadow: 0 20px 50px rgba(7, 28, 45, .10);
  --shadow-soft: 0 10px 30px rgba(7, 28, 45, .07);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shell-width: 1180px;
  --shell-gap: clamp(22px, 5vw, 56px);
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
}
body.menu-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
img { max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(30px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.2vw, 27px); }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.2rem; }
::selection { color: white; background: var(--orange); }
:focus-visible { outline: 3px solid rgba(240,74,10,.42); outline-offset: 3px; }
[hidden] { display: none !important; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.site-shell { width: min(calc(100% - (var(--shell-gap) * 2)), var(--shell-width)); margin-inline: auto; }
.section-pad { padding-block: clamp(64px, 8vw, 110px); }
.section-pad-sm { padding-block: clamp(44px, 6vw, 78px); }
.section-white { background: var(--paper); }
.section-cream { background: var(--cream); }
.section-dark { color: white; background: linear-gradient(135deg, var(--navy), var(--navy-3)); }
.section-border { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.skip-link { position: fixed; z-index: 999; left: 16px; top: -60px; padding: 12px 18px; background: var(--navy); color: white; border-radius: 8px; transition: top .2s; }
.skip-link:focus { top: 16px; }
.eyebrow { margin-bottom: 12px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.muted { color: var(--muted); }
.text-orange { color: var(--orange); }
.short-rule { display: block; width: 38px; height: 3px; margin-block: 20px; background: var(--orange); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.button svg { width: 20px; height: 20px; }
.button:hover { transform: translateY(-2px); }
.button-orange { color: white; background: var(--orange); box-shadow: 0 10px 24px rgba(240,74,10,.22); }
.button-orange:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(240,74,10,.28); }
.button-dark { color: white; background: var(--navy); }
.button-dark:hover { background: var(--navy-2); }
.button-light { color: var(--navy); background: white; }
.button-outline { color: var(--ink); background: transparent; border-color: #9da8b1; }
.button-outline:hover { border-color: var(--orange); color: var(--orange); background: white; }
.card-link, .section-link, .text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--orange); font-weight: 750; }
.card-link svg, .section-link svg, .text-link svg { width: 18px; height: 18px; transition: transform .2s; }
.card-link:hover svg, .section-link:hover svg, .text-link:hover svg { transform: translateX(4px); }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--left { text-align: left; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.section-heading h2 { margin-bottom: 12px; }
.content-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--muted); font-size: 13px; }
.content-meta span + span { padding-left: 14px; border-left: 1px solid var(--line); }
.empty-message { padding: 28px; text-align: center; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: var(--radius); }

/* Header */
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(8,29,45,.08); backdrop-filter: blur(16px); }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 82px; gap: 28px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { width: 120px; height: 62px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; justify-content: center; align-items: stretch; gap: 30px; height: 82px; }
.primary-nav a { position: relative; display: grid; place-items: center; font-size: 14px; font-weight: 700; }
.primary-nav a::after { content: ""; position: absolute; bottom: 0; left: 50%; width: 0; height: 3px; background: var(--orange); transition: width .2s, left .2s; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { width: 100%; left: 0; }
.primary-nav a.is-active { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-contact { min-height: 46px; padding-inline: 18px; }
.icon-button { display: inline-grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: transparent; border: 0; border-radius: 50%; cursor: pointer; }
.icon-button:hover { background: var(--cream-2); }
.icon-button svg { width: 24px; height: 24px; }
.menu-trigger { display: none; }
.menu-trigger .close-icon { display: none; }
.menu-trigger[aria-expanded="true"] .menu-icon { display: none; }
.menu-trigger[aria-expanded="true"] .close-icon { display: block; }
.search-panel, .mobile-menu { border-top: 1px solid var(--line); background: white; box-shadow: var(--shadow); }
.search-panel-inner { padding-block: 24px; }
.search-form label { display: block; margin-bottom: 8px; font-weight: 750; }
.search-input-wrap { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.search-input-wrap input { min-height: 52px; padding: 0 18px; border: 1px solid #b8c0c6; border-radius: 8px; }
.mobile-nav { display: grid; gap: 0; padding-block: 12px 22px; }
.mobile-nav > a:not(.button) { padding-block: 14px; border-bottom: 1px solid var(--line); font-weight: 700; }
.mobile-nav .button { margin-top: 14px; }

/* Breadcrumbs */
.breadcrumbs { padding-block: 12px; font-size: 13px; color: var(--muted); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: 8px; color: #9aa4ac; }
.breadcrumbs a:hover { color: var(--orange); }

/* Page hero */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(110deg, #fff 0 48%, #ece8e4 48%); }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); min-height: 410px; }
.page-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px, 7vw, 86px) clamp(24px, 5vw, 64px) clamp(48px, 7vw, 86px) 0; }
.page-hero__copy h1 { margin-bottom: 18px; }
.page-hero__lead { max-width: 600px; color: #344957; font-size: clamp(17px, 2vw, 20px); }
.page-hero__media { position: relative; min-height: 360px; overflow: hidden; clip-path: polygon(12% 0,100% 0,100% 100%,0 100%); }
.page-hero__media::after { content: ""; position: absolute; width: 360px; height: 360px; top: 12%; right: -70px; border: 14px solid rgba(240,74,10,.85); border-radius: 50%; pointer-events: none; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero--dark { color: white; background: var(--navy); }
.page-hero--dark .page-hero__lead { color: rgba(255,255,255,.76); }
.page-hero__stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: -24px; padding: 18px 26px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.mini-stat { display: grid; grid-template-columns: 44px 1fr; align-items: center; gap: 12px; padding-inline: 20px; }
.mini-stat + .mini-stat { border-left: 1px solid var(--line); }
.mini-stat svg { width: 40px; height: 40px; color: var(--orange); }
.mini-stat strong, .mini-stat span { display: block; }
.mini-stat strong { font-size: 20px; }
.mini-stat span { color: var(--muted); font-size: 13px; }

/* Home */
.home-hero { background: linear-gradient(110deg, #fff 0 47%, #ece8e4 47%); }
.home-hero__grid { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 520px; }
.home-hero__copy { display: flex; flex-direction: column; justify-content: center; padding-right: 50px; }
.home-hero__copy h1 span { color: var(--orange); }
.home-hero__copy p { max-width: 560px; color: var(--muted); font-size: 18px; }
.home-hero__media { position: relative; overflow: hidden; clip-path: polygon(13% 0,100% 0,100% 100%,0 100%); }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.2), transparent 30%); }
.solution-finder { position: relative; z-index: 5; margin-top: -62px; padding: 30px; color: white; background: linear-gradient(120deg, var(--navy), var(--navy-2)); border-radius: 16px; box-shadow: 0 24px 60px rgba(7,28,45,.24); }
.finder-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.finder-head h2 { margin-bottom: 0; font-size: clamp(27px,3vw,38px); }
.finder-kicker { color: #a7bac7; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; }
.finder-form { display: grid; grid-template-columns: 1fr 34px 1fr 34px 1fr 132px; align-items: end; gap: 14px; }
.finder-field { min-width: 0; }
.finder-label { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.finder-icon { display: grid; place-items: center; width: 38px; height: 38px; color: white; background: var(--orange); border-radius: 50%; }
.finder-icon svg { width: 22px; height: 22px; }
.select-wrap { position: relative; }
.select-wrap select { width: 100%; min-height: 50px; padding: 0 44px 0 14px; color: var(--ink); background: white; border: 1px solid rgba(255,255,255,.25); border-radius: 7px; appearance: none; }
.select-wrap > svg { position: absolute; top: 50%; right: 14px; width: 18px; height: 18px; color: var(--ink); transform: translateY(-50%); pointer-events: none; }
.finder-arrow { align-self: end; display: grid; place-items: center; height: 50px; color: #b9c7d0; }
.finder-arrow svg { width: 24px; height: 24px; }
.finder-submit { display: grid; place-items: center; gap: 6px; min-height: 92px; color: white; background: var(--orange); border: 0; border-radius: 8px; font-weight: 800; cursor: pointer; }
.finder-submit svg { width: 30px; height: 30px; }
.finder-help { margin-top: 18px; text-align: center; font-size: 14px; }
.finder-help span { color: #b5c3cc; }
.finder-help button { color: #ff8a5c; background: transparent; border: 0; cursor: pointer; }
.challenge-box { margin-top: 18px; padding: 18px; background: rgba(255,255,255,.08); border-radius: 10px; }
.challenge-box label { display: block; margin-bottom: 8px; font-weight: 700; }
.challenge-box-controls { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.challenge-box textarea { width: 100%; padding: 12px; border: 0; border-radius: 8px; resize: vertical; }
.finder-results { margin-top: 20px; padding: 18px; color: var(--ink); background: white; border-radius: 10px; }
.finder-result-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.finder-result-card { padding: 14px; background: var(--cream); border-radius: 8px; }
.finder-result-card strong, .finder-result-card span { display: block; }
.finder-result-card span { margin-top: 6px; color: var(--muted); font-size: 13px; }

/* Cards */
.service-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.service-card { display: flex; flex-direction: column; min-height: 290px; padding: 28px; background: white; border: 1px solid #e5dfda; border-radius: 12px; box-shadow: var(--shadow-soft); transition: transform .2s, border-color .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(240,74,10,.45); box-shadow: var(--shadow); }
.service-card__icon { width: 52px; height: 52px; margin-bottom: 22px; color: var(--orange); }
.service-card h3 { margin-bottom: 14px; font-size: 24px; }
.service-card p { flex: 1; color: var(--muted); }
.industry-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.industry-card { position: relative; min-height: 230px; overflow: hidden; color: white; background: var(--navy); border-radius: 12px; box-shadow: var(--shadow-soft); }
.industry-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.industry-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4,20,32,.92) 100%); }
.industry-card__title { position: absolute; left: 22px; right: 52px; bottom: 20px; font-size: 21px; font-weight: 800; }
.industry-card__arrow { position: absolute; right: 17px; bottom: 17px; display: grid; place-items: center; width: 34px; height: 34px; color: white; background: var(--orange); border-radius: 50%; }
.industry-card__arrow svg { width: 18px; height: 18px; }
.industry-card:hover img { transform: scale(1.04); }
.case-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.case-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.case-card__image { display: block; aspect-ratio: 16/9; overflow: hidden; }
.case-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.case-card:hover .case-card__image img { transform: scale(1.04); }
.case-card__body { padding: 22px; }
.case-card__body h3 { margin-bottom: 10px; }
.case-card__body p:not(.eyebrow) { color: var(--muted); }
.case-card__metric { display: flex; align-items: baseline; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.case-card__metric strong { color: var(--orange); font-size: 34px; }
.case-card__metric span { color: var(--muted); font-size: 13px; }
.insight-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.insight-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.insight-card__image { display: block; aspect-ratio: 16/10; overflow: hidden; }
.insight-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.insight-card:hover .insight-card__image img { transform: scale(1.04); }
.insight-card__body { padding: 22px; }
.insight-card__body h3 { margin-bottom: 10px; }
.insight-card__body p:not(.eyebrow) { color: var(--muted); }
.feature-card-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.feature-card { padding: 26px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.feature-card__icon { width: 48px; height: 48px; margin-bottom: 20px; color: var(--orange); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--muted); }
.expert-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.expert-card { display: grid; grid-template-columns: 130px 1fr; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.expert-card img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.expert-card > div { padding: 20px; }
.expert-card strong { display: block; margin-bottom: 10px; color: var(--muted); font-size: 13px; }
.expert-card p { color: var(--muted); font-size: 14px; }
.location-card-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.location-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.location-card > img { width: 100%; aspect-ratio: 16/8.8; object-fit: cover; }
.location-card__body { position: relative; padding: 24px; }
.location-card__body > svg { width: 28px; height: 28px; color: var(--orange); }
.location-card__body h3 { margin: 12px 0 8px; }
.location-card__body p { color: var(--muted); }

/* Proof / trusted / CTA */
.proof-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 32px; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.proof-item { display: grid; grid-template-columns: 48px 1fr; align-items: center; gap: 12px; padding-inline: 22px; }
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-item > svg { width: 44px; height: 44px; color: var(--orange); }
.proof-item strong, .proof-item span { display: block; }
.proof-item strong { font-size: 24px; }
.proof-item span { color: var(--muted); font-size: 13px; }
.global-cta { display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: center; margin-top: clamp(48px,7vw,86px); padding: clamp(30px,5vw,48px); color: white; background: radial-gradient(circle at 92% 50%, rgba(240,74,10,.12), transparent 27%), linear-gradient(120deg,var(--navy),var(--navy-3)); border-radius: 14px; box-shadow: var(--shadow); }
.global-cta h2 { margin-bottom: 6px; }
.global-cta strong { color: var(--orange); }
.global-cta p { max-width: 660px; color: rgba(255,255,255,.78); }
.global-cta ul { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 18px 0 0; padding: 0; list-style: none; font-size: 14px; }
.global-cta li::before { content: "✓"; margin-right: 7px; color: var(--orange); }
.global-cta__action { text-align: center; }
.global-cta__action p { margin-top: 14px; }
.global-cta__action p a { color: var(--orange); font-weight: 800; }
.trusted-row { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 30px; padding-block: 28px; }
.trusted-row > span { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.partner-logos { display: grid; grid-template-columns: repeat(6,1fr); align-items: center; gap: 24px; color: #4c5964; text-align: center; }
.partner-logos b { font-size: 16px; }
.logo-nhs { display: inline-block; padding: 2px 7px; color: white; background: #165aa7; font-style: italic; }
.logo-bam { font-size: 22px !important; }
.logo-network { font-style: italic; }

/* Footer */
.site-footer { color: rgba(255,255,255,.78); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr .8fr 1.15fr; gap: 34px; padding-block: 48px; }
.footer-logo { width: 130px; height: 65px; object-fit: contain; object-position: left; }
.footer-brand p { max-width: 270px; margin-top: 14px; font-size: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-links strong { color: white; margin-bottom: 4px; }
.footer-links a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 10px; font-style: normal; font-size: 14px; }
.footer-contact > a, .footer-contact > span { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.footer-contact svg { width: 19px; height: 19px; }
.social-links { display: flex; gap: 10px; margin-top: 10px; }
.social-links a { display: grid; place-items: center; width: 38px; height: 38px; color: white; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.social-links svg { width: 18px; height: 18px; }
.footer-meta { display: flex; justify-content: space-between; gap: 20px; padding-block: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.footer-meta p { margin: 0; }

/* Generic layout components */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,70px); align-items: center; }
.split-grid--wide { grid-template-columns: .85fr 1.15fr; }
.split-grid--reverse > :first-child { order: 2; }
.split-grid img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-soft); }
.content-panel { padding: clamp(26px,4vw,46px); background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.content-panel--dark { color: white; background: var(--navy); border-color: transparent; }
.content-panel--soft { background: #fbf8f5; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--orange); font-weight: 900; }
.icon-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.icon-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.icon-list svg { width: 26px; height: 26px; color: var(--orange); }
.two-column-list { columns: 2; column-gap: 40px; }
.two-column-list li { break-inside: avoid; margin-bottom: 10px; }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.timeline::before { content: ""; position: absolute; left: 8%; right: 8%; top: 20px; height: 1px; background: #c7cfd5; }
.timeline__step { position: relative; text-align: center; }
.timeline__step > span { position: relative; z-index: 2; display: grid; place-items: center; width: 42px; height: 42px; margin: 0 auto 16px; color: white; background: var(--orange); border-radius: 50%; font-weight: 800; }
.timeline__step h3 { font-size: 18px; }
.timeline__step p { color: var(--muted); font-size: 14px; }
.timeline--dark::before { background: rgba(255,255,255,.3); }
.timeline--dark .timeline__step p { color: rgba(255,255,255,.72); }
.metric-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; padding: 30px; color: white; background: var(--navy); border-radius: 12px; }
.metric { text-align: center; padding: 12px 24px; }
.metric + .metric { border-left: 1px solid rgba(255,255,255,.24); }
.metric strong { display: block; color: var(--orange); font-size: clamp(36px,5vw,60px); }
.metric span { display: block; max-width: 180px; margin-inline: auto; }
.quote-card { position: relative; padding: 38px 38px 38px 88px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.quote-card > svg { position: absolute; left: 30px; top: 34px; width: 42px; height: 42px; color: var(--orange); }
.quote-card blockquote { margin: 0; font-size: clamp(24px,3vw,36px); font-weight: 750; line-height: 1.18; }
.quote-card cite { display: block; margin-top: 18px; color: var(--muted); font-style: normal; }
.download-card { display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 20px; padding: 26px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.download-card > svg { width: 48px; height: 48px; color: var(--orange); }
.download-card h3 { margin-bottom: 4px; }
.download-card p { color: var(--muted); }
.dark-band { padding-block: 48px; color: white; background: linear-gradient(115deg,var(--navy),var(--navy-3)); }
.dark-band .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.dark-band .feature-card { color: var(--ink); }
.info-bar { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; padding: 22px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.info-bar__item { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding-inline: 18px; }
.info-bar__item + .info-bar__item { border-left: 1px solid var(--line); }
.info-bar__item svg { width: 34px; height: 34px; color: var(--orange); }
.info-bar__item strong { display: block; }
.info-bar__item span { color: var(--muted); font-size: 13px; }

/* Listing/filter layouts */
.filter-shell { display: grid; grid-template-columns: 245px 1fr; gap: 26px; align-items: start; }
.filter-panel { position: sticky; top: 106px; padding: 22px; background: #f4f1ed; border: 1px solid var(--line); border-radius: 12px; }
.filter-panel h2 { font-size: 18px; }
.filter-panel__group { padding-block: 16px; border-top: 1px solid var(--line); }
.filter-panel__group:first-of-type { border-top: 0; }
.filter-panel__group strong { display: block; margin-bottom: 10px; }
.filter-panel label { display: flex; gap: 9px; margin-block: 8px; color: #42515d; font-size: 14px; }
.filter-panel input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--orange); }
.filter-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.filter-toolbar input, .filter-toolbar select, .filter-grid input, .filter-grid select { min-height: 48px; padding: 0 14px; background: white; border: 1px solid #b8c0c6; border-radius: 8px; }
.filter-toolbar input { flex: 1; }
.filter-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 12px; padding: 24px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.filter-tabs { display: flex; justify-content: center; gap: 8px; margin: 20px 0 28px; border-bottom: 1px solid var(--line); }
.filter-tabs button, .filter-tabs a { padding: 12px 22px; color: var(--muted); background: transparent; border: 0; border-bottom: 3px solid transparent; font-weight: 700; cursor: pointer; }
.filter-tabs .is-active { color: var(--orange); border-bottom-color: var(--orange); }
.result-count { color: var(--muted); font-size: 14px; }

/* Forms */
.form-card { padding: clamp(24px,4vw,38px); background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.form-card h2 { margin-bottom: 8px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 700; font-size: 14px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; padding: 12px 14px; background: white; border: 1px solid #c1c8cd; border-radius: 7px; }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-choice-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.form-choice { position: relative; display: grid; grid-template-columns: 38px 1fr auto; gap: 10px; align-items: center; min-height: 76px; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.form-choice:has(input:checked) { color: var(--orange); border-color: var(--orange); background: var(--orange-soft); }
.form-choice svg { width: 32px; height: 32px; }
.form-choice input { accent-color: var(--orange); }
.contact-layout { display: grid; grid-template-columns: 1.5fr .85fr; gap: 24px; align-items: start; }
.contact-panel { padding: 30px; color: white; background: var(--navy); border-radius: 12px; }
.contact-method { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding-block: 20px; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-method:last-child { border-bottom: 0; }
.contact-method > span { display: grid; place-items: center; width: 50px; height: 50px; color: white; background: var(--orange); border-radius: 50%; }
.contact-method svg { width: 26px; height: 26px; }
.contact-method strong, .contact-method a { display: block; }
.contact-method a { color: #ff7e4d; font-size: 21px; font-weight: 800; }
.contact-method small { color: rgba(255,255,255,.7); }

/* Article / standard content */
.article-header { padding-block: 48px 26px; }
.article-header h1 { max-width: 1050px; margin-bottom: 16px; font-size: clamp(38px,5.4vw,66px); }
.article-header__lead { max-width: 900px; color: var(--muted); font-size: 19px; }
.article-hero-image { width: 100%; max-height: 560px; object-fit: cover; border-radius: 14px; box-shadow: var(--shadow); }
.article-layout { display: grid; grid-template-columns: 210px 1fr; gap: 38px; align-items: start; }
.article-toc { position: sticky; top: 106px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 10px; }
.article-toc strong { display: block; margin-bottom: 10px; }
.article-toc a { display: block; padding-block: 7px; color: #3d4d59; font-size: 13px; }
.article-toc a:hover { color: var(--orange); }
.article-content { min-width: 0; }
.article-content h2 { margin-top: 42px; margin-bottom: 12px; font-size: 31px; }
.article-content h3 { margin-top: 28px; }
.article-content p, .article-content li { color: #344956; }
.article-content table { width: 100%; border-collapse: collapse; margin-block: 22px; background: white; border: 1px solid var(--line); }
.article-content th, .article-content td { padding: 13px 14px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-content th { background: #f1eeeb; }
.at-glance { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; padding: 20px; background: #fbf7f3; border-radius: 10px; }
.at-glance__item { display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 8px 18px; }
.at-glance__item + .at-glance__item { border-left: 1px solid var(--line); }
.at-glance svg { width: 24px; height: 24px; color: var(--orange); }
.technical-point { display: grid; grid-template-columns: 52px 1fr; gap: 20px; margin-block: 28px; padding: 24px; color: white; background: var(--navy); border-radius: 10px; }
.technical-point svg { width: 48px; height: 48px; color: var(--orange); }
.related-split { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-block: 24px; }
.related-card { display: grid; grid-template-columns: 1fr 180px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 10px; }
.related-card > div { padding: 20px; }
.related-card img { width: 100%; height: 100%; object-fit: cover; }
.faq-list { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-question { display: flex; justify-content: space-between; gap: 20px; width: 100%; padding: 17px 20px; background: white; border: 0; text-align: left; font-weight: 750; cursor: pointer; }
.faq-question span:last-child { color: var(--orange); font-size: 22px; }
.faq-answer { padding: 0 20px 18px; background: white; color: var(--muted); }

/* Accreditation / matrix */
.accreditation-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.accreditation-card { padding: 26px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.accreditation-mark { display: grid; place-items: center; width: 94px; height: 94px; margin-bottom: 20px; color: white; background: var(--navy); border-radius: 10px; font-size: 20px; font-weight: 900; letter-spacing: .05em; }
.accreditation-card ul { color: var(--muted); }
.matrix-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
.matrix { width: 100%; min-width: 780px; border-collapse: collapse; background: white; }
.matrix th, .matrix td { padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.matrix th:first-child, .matrix td:first-child { text-align: left; }
.matrix th { color: white; background: var(--navy); }
.matrix .yes { color: var(--success); font-weight: 900; }

/* Locations map */
.location-finder { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: stretch; }
.uk-map { position: relative; min-height: 440px; overflow: hidden; background: linear-gradient(135deg,#edf3f6,#dce7ed); border-radius: 14px; }
.uk-map::before { content: ""; position: absolute; width: 230px; height: 350px; left: 38%; top: 40px; background: rgba(255,255,255,.76); border-radius: 52% 45% 58% 42% / 38% 55% 45% 62%; transform: rotate(-8deg); box-shadow: inset -22px -12px 50px rgba(85,112,128,.08); }
.map-pin { position: absolute; z-index: 2; color: var(--orange); font-weight: 800; }
.map-pin::before { content: ""; display: inline-block; width: 16px; height: 16px; margin-right: 8px; background: var(--orange); border: 4px solid white; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,.18); }
.map-pin--edinburgh { left: 42%; top: 28%; }
.map-pin--chesterfield { left: 51%; top: 56%; }
.map-pin--stafford { left: 48%; top: 64%; }
.location-search { display: flex; flex-direction: column; justify-content: center; padding: 32px; background: white; border: 1px solid var(--line); border-radius: 14px; }
.location-search select, .location-search input { width: 100%; min-height: 48px; margin-top: 8px; padding: 0 14px; border: 1px solid #b8c0c6; border-radius: 7px; }

/* 404 */
.error-hero { padding-block: 72px; text-align: center; background: radial-gradient(circle at 50% 24%, rgba(240,74,10,.08), transparent 42%), white; }
.error-code { display: block; color: var(--orange); font-size: clamp(130px,22vw,270px); font-weight: 300; line-height: .8; letter-spacing: -.08em; }
.error-hero h1 { margin-top: 30px; }
.error-search { display: grid; grid-template-columns: 1fr auto; gap: 12px; max-width: 760px; margin: 30px auto; }
.error-search input { min-height: 54px; padding: 0 16px; border: 1px solid #aeb8bf; border-radius: 8px; }
.destination-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.destination-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.destination-card svg { width: 48px; height: 48px; color: var(--orange); }

/* Search results */
.search-result-list { display: grid; gap: 14px; }
.search-result { display: grid; grid-template-columns: 170px 1fr 34px; gap: 20px; align-items: center; padding: 14px; background: white; border: 1px solid var(--line); border-radius: 10px; }
.search-result img { width: 170px; aspect-ratio: 4/3; object-fit: cover; border-radius: 7px; }
.search-result h2 { margin-bottom: 7px; font-size: 27px; }
.search-result p { color: var(--muted); }
.search-result > svg { width: 28px; height: 28px; color: var(--orange); }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.tag { padding: 4px 8px; color: #44545f; background: #eff1f2; border-radius: 4px; font-size: 12px; }

/* Toast/reveal */
.toast { position: fixed; z-index: 300; right: 20px; bottom: 20px; max-width: 360px; padding: 14px 18px; color: white; background: var(--navy); border-radius: 8px; box-shadow: var(--shadow); }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1080px) {
  .primary-nav { gap: 20px; }
  .header-contact { display: none; }
  .finder-form { grid-template-columns: repeat(3,1fr) 110px; }
  .finder-arrow { display: none; }
  .page-hero__stats, .proof-strip { grid-template-columns: repeat(2,1fr); }
  .mini-stat:nth-child(3), .proof-item:nth-child(3) { border-left: 0; }
  .mini-stat:nth-child(n+3), .proof-item:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
  .feature-card-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.2fr repeat(3,.7fr); }
  .footer-contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 860px) {
  :root { --shell-gap: 24px; }
  .primary-nav { display: none; }
  .menu-trigger { display: inline-grid; }
  .header-inner { grid-template-columns: auto 1fr auto; min-height: 74px; }
  .header-actions { justify-self: end; }
  .brand-logo { width: 105px; height: 56px; }
  .page-hero { background: white; }
  .page-hero__grid, .home-hero__grid { grid-template-columns: 1fr; }
  .page-hero__copy, .home-hero__copy { padding: 48px 0 32px; }
  .page-hero__media, .home-hero__media { min-height: 330px; clip-path: none; border-radius: 12px 12px 0 0; }
  .page-hero__media::after { width: 260px; height: 260px; }
  .solution-finder { margin-top: -28px; }
  .finder-form { grid-template-columns: 1fr 1fr; }
  .finder-submit { min-height: 74px; }
  .service-card-grid, .case-card-grid, .insight-card-grid, .industry-card-grid, .expert-card-grid, .location-card-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .filter-shell { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .filter-grid { grid-template-columns: 1fr 1fr; }
  .split-grid, .split-grid--wide, .contact-layout, .location-finder, .article-layout, .global-cta { grid-template-columns: 1fr; }
  .split-grid--reverse > :first-child { order: initial; }
  .article-toc { position: static; }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .timeline::before { display: none; }
  .info-bar { grid-template-columns: repeat(2,1fr); }
  .info-bar__item:nth-child(3) { border-left: 0; }
  .info-bar__item:nth-child(n+3) { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
  .destination-grid { grid-template-columns: repeat(2,1fr); }
  .related-card { grid-template-columns: 1fr; }
  .related-card img { max-height: 220px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(38px,12vw,54px); }
  h2 { font-size: clamp(29px,9vw,40px); }
  .site-shell { width: min(calc(100% - 32px), var(--shell-width)); }
  .header-actions .search-trigger { display: none; }
  .solution-finder { padding: 22px; }
  .finder-head { align-items: flex-start; flex-direction: column; }
  .finder-form { grid-template-columns: 1fr; }
  .finder-submit { min-height: 58px; grid-template-columns: auto auto; }
  .challenge-box-controls, .search-input-wrap, .error-search { grid-template-columns: 1fr; }
  .service-card-grid, .case-card-grid, .insight-card-grid, .industry-card-grid, .feature-card-grid, .expert-card-grid, .location-card-grid, .destination-grid, .accreditation-card-grid { grid-template-columns: 1fr; }
  .page-hero__stats, .proof-strip, .info-bar { grid-template-columns: 1fr; }
  .mini-stat, .proof-item, .info-bar__item { padding: 14px 0; }
  .mini-stat + .mini-stat, .proof-item + .proof-item, .info-bar__item + .info-bar__item { border-left: 0; border-top: 1px solid var(--line); }
  .mini-stat:nth-child(n+3), .proof-item:nth-child(n+3), .info-bar__item:nth-child(n+3) { margin-top: 0; }
  .finder-result-grid, .form-grid, .form-choice-grid, .filter-grid, .related-split, .at-glance, .metric-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .metric + .metric, .at-glance__item + .at-glance__item { border-left: 0; border-top: 1px solid rgba(255,255,255,.22); }
  .at-glance__item + .at-glance__item { border-top-color: var(--line); }
  .timeline { grid-template-columns: 1fr; }
  .timeline__step { text-align: left; display: grid; grid-template-columns: 44px 1fr; gap: 0 14px; }
  .timeline__step > span { grid-row: 1 / 3; margin: 0; }
  .timeline__step p { grid-column: 2; }
  .two-column-list { columns: 1; }
  .expert-card { grid-template-columns: 110px 1fr; }
  .expert-card img { min-height: 190px; }
  .search-result { grid-template-columns: 88px 1fr; }
  .search-result img { width: 88px; }
  .search-result > svg { display: none; }
  .search-result h2 { font-size: 21px; }
  .download-card { grid-template-columns: 44px 1fr; }
  .download-card .button { grid-column: 1 / -1; }
  .trusted-row { grid-template-columns: 1fr; text-align: center; }
  .partner-logos { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-meta { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* Explicit grid variants used by the static page templates. */
.service-card-grid.four-up,
.case-card-grid.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.case-card-grid.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 1080px) {
  .service-card-grid.four-up,
  .case-card-grid.four-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .service-card-grid.four-up,
  .case-card-grid.four-up,
  .case-card-grid.two-up { grid-template-columns: 1fr; }
}


/* July 2026 consistency pass */
.breadcrumbs { width: 100%; max-width: none; padding: 11px max(var(--shell-gap), calc((100vw - var(--shell-width))/2)); background: #f9f7f3; border-bottom: 1px solid var(--line); }
.page-hero { background: linear-gradient(108deg,#fbf9f6 0 46%,#e8e5e1 46%); }
.page-hero__grid { min-height: 390px; }
.page-hero__copy { padding-block: 58px; }
.page-hero__media { min-height: 390px; }
.page-hero__media img { object-position: center; }

/* Mega menus */
.nav-mega { display: flex; align-items: stretch; height: 82px; }
.nav-mega__trigger { display: flex !important; align-items: center; gap: 5px; }
.nav-mega__trigger svg { width: 14px; height: 14px; }
.nav-mega.is-active > .nav-mega__trigger { color: var(--orange); }
.mega-menu { position: fixed; z-index: 120; left: 0; right: 0; top: 82px; padding: 24px 0 28px; visibility: hidden; opacity: 0; transform: translateY(-8px); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 24px 46px rgba(7,28,45,.18); transition: opacity .18s ease, transform .18s ease, visibility .18s; pointer-events: none; }
.nav-mega:hover .mega-menu, .nav-mega:focus-within .mega-menu { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.mega-menu__inner { display: grid; grid-template-columns: 1.15fr repeat(4,1fr); gap: 28px; }
.mega-menu a { place-items: initial; }
.mega-menu a::after { display: none !important; }
.mega-feature { overflow: hidden; background: var(--navy); border-radius: 10px; color: white; }
.mega-feature img { width: 100%; height: 125px; object-fit: cover; }
.mega-feature strong, .mega-feature span { display: block; padding-inline: 16px; }
.mega-feature strong { padding-top: 14px; font-size: 18px; }
.mega-feature span { padding-block: 7px 17px; color: rgba(255,255,255,.75); font-size: 13px; }
.mega-column h3 { margin-bottom: 10px; font-size: 16px; }
.mega-column a { display: block; padding: 5px 0; color: #51616c; font-size: 13px; }
.mega-column a:hover { color: var(--orange); }
.mega-column .mega-more { margin-top: 8px; color: var(--orange); font-weight: 800; }
.mega-column .mega-more svg, .mega-all svg { width: 16px; height: 16px; vertical-align: middle; }
.mega-industries { grid-template-columns: repeat(6,1fr) auto; align-items: stretch; }
.mega-industry { overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: white; }
.mega-industry img { width: 100%; height: 88px; object-fit: cover; }
.mega-industry span { display: block; padding: 10px; font-weight: 800; font-size: 13px; }
.mega-all { display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 145px; color: var(--orange); font-weight: 800; }

/* Unified CTA and client strip */
a.global-cta { color: white; text-decoration: none; }
.global-cta { grid-template-columns: 1.45fr .65fr; margin-top: 52px; padding: 34px 42px; }
.global-cta__action { display: grid; justify-items: center; gap: 10px; }
.global-cta__action small { color: rgba(255,255,255,.68); }
.global-cta:hover { transform: translateY(-2px); box-shadow: 0 22px 45px rgba(7,28,45,.24); }
.trusted-row { margin-top: 16px; padding-block: 30px 34px; }
.partner-logos { gap: 30px; }
.partner-logo { display: grid; place-items: center; min-height: 66px; padding: 10px 16px; background: white; border-radius: 8px; }
.partner-logo img { display: block; width: 100%; max-width: 132px; max-height: 46px; object-fit: contain; }

@media (max-width:860px){ .mega-menu { display:none; } }
@media (max-width:860px){ .breadcrumbs { padding-inline: var(--shell-gap); } .page-hero__grid { min-height: 0; } .page-hero__media { min-height: 320px; } }
@media (max-width:620px){ .partner-logo { min-height:58px; } .partner-logo img { max-width:110px; max-height:38px; } }

.mega-services { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.mega-service-card { overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #fff; }
.mega-service-image { display: block !important; position: static !important; }
.mega-service-image::after { display:none !important; }
.mega-service-image img { width:100%; height:105px; object-fit:cover; }
.mega-service-image strong { display:block; padding:12px 14px 9px; font-size:17px; }
.mega-service-card nav { padding:0 14px 14px; }
.mega-service-card nav a { display:block; padding:4px 0; color:#52616b; font-size:12px; }
.mega-service-card nav a:hover { color:var(--orange); }
.mega-service-card nav .mega-more { margin-top:7px; padding-top:9px; border-top:1px solid var(--line); color:var(--orange); font-weight:800; }
.mega-service-card nav .mega-more svg { width:15px; height:15px; vertical-align:middle; }

/* July 2026 mega-menu card CTA refinement */
.mega-service-card,
.mega-industry {
  box-shadow: 0 10px 24px rgba(7, 28, 45, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.mega-service-card:hover,
.mega-industry:hover {
  border-color: rgba(240, 74, 10, 0.24);
  box-shadow: 0 15px 30px rgba(7, 28, 45, 0.15);
  transform: translateY(-2px);
}

.mega-service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.mega-service-card nav {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 14px;
}

.mega-service-card nav .mega-more {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: auto;
  margin: auto -14px 0 !important;
  padding: 12px 14px !important;
  border: 0 !important;
  background: var(--orange);
  color: #fff !important;
  line-height: 1.25;
}

.mega-service-card nav .mega-more:hover,
.mega-service-card nav .mega-more:focus-visible {
  background: #d83f05;
  color: #fff !important;
}

.mega-service-card nav .mega-more svg {
  flex: 0 0 auto;
  margin: 0;
  color: #fff;
  stroke: currentColor;
}

/* July 2026: tighter shared page rhythm and consistent hero image sizing */
.section-pad {
  padding-block: clamp(48px, 6vw, 78px);
}

.section-pad-sm {
  padding-block: clamp(30px, 4vw, 52px);
}

.page-hero__copy {
  padding-block: 48px;
}

.page-hero__grid {
  align-items: stretch;
}

.page-hero__media {
  min-height: 390px;
  align-self: stretch;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero + .section-pad,
.page-hero + .section-pad-sm {
  padding-top: clamp(28px, 3.5vw, 42px);
}

/* Stronger footer link states */
.site-footer a {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible,
.site-footer .footer-contact a:hover,
.site-footer .footer-contact a:focus-visible,
.site-footer .footer-meta a:hover,
.site-footer .footer-meta a:focus-visible {
  color: var(--orange);
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
}

@media (max-width: 860px) {
  .page-hero__media {
    min-height: 320px;
  }
}

/* July 2026: supplied replacement imagery and unified internal-page canvas */
body:not(.page-home) main {
  background: var(--cream);
}

.section-white,
.section-cream {
  background: var(--cream);
}

.content-panel--soft,
.filter-panel {
  background: var(--cream);
}

.page-hero {
  background: var(--cream);
}

@media (min-width: 861px) {
  .page-hero__grid {
    height: 390px;
    min-height: 390px;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: stretch;
  }

  .page-hero__copy {
    height: 390px;
    min-width: 0;
    justify-content: center;
    padding: 26px clamp(24px, 4vw, 52px) 26px 0;
  }

  .page-hero__copy h1 {
    margin-bottom: 14px;
    font-size: clamp(38px, 3.3vw, 52px);
    line-height: 1.02;
  }

  .page-hero__lead {
    max-width: 560px;
    font-size: 16px;
    line-height: 1.45;
  }

  .page-hero .button-row {
    margin-top: 18px;
  }

  .page-hero__media {
    position: relative;
    width: 100%;
    height: 390px;
    min-height: 390px;
    align-self: stretch;
  }

  .page-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

@media (max-width: 860px) {
  .page-hero {
    background: var(--cream);
  }

  .page-hero__copy {
    padding: 38px 0 28px;
  }

  .page-hero__media {
    width: 100%;
    height: 300px;
    min-height: 300px;
  }

  .page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}

/* --------------------------------------------------------------------------
   Sitewide colour alignment with the approved homepage
   -------------------------------------------------------------------------- */
:root {
  --cream: #f9f7f3;
  --cream-2: #efe9e3;
  --paper: #ffffff;
}

html,
body {
  background: var(--cream);
}

.site-header {
  background: rgba(249, 247, 243, 0.98);
}

.search-panel,
.mobile-menu,
.mega-menu {
  background: var(--cream);
}

.breadcrumbs,
.section-white,
.section-cream,
.page-hero {
  background: var(--cream);
}

/* Keep cards and content panels clearly white against the warm site canvas. */
.empty-message,
.page-hero__stats,
.service-card,
.case-card,
.insight-card,
.feature-card,
.expert-card,
.location-card,
.proof-strip,
.content-panel,
.content-panel--soft,
.download-card,
.info-bar,
.filter-panel,
.filter-grid,
.form-card,
.form-choice,
.article-toc,
.article-content table,
.at-glance,
.related-card,
.faq-question,
.faq-answer,
.accreditation-card,
.matrix,
.location-search,
.destination-card,
.search-result,
.partner-logo,
.mega-service-card,
.mega-industry {
  background-color: #ffffff;
}

/* Remove the decorative orange rings from internal-page hero photography. */
.page-hero__media::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 760px) {
  .page-hero {
    background: var(--cream);
  }
}

/* Exact site canvas override: use the approved homepage colour literally.
   This intentionally avoids relying on --cream so older or page-specific
   variable declarations cannot change the rendered colour. */
html,
body,
body:not(.page-home),
body:not(.page-home) main,
.breadcrumbs,
.section-white,
.section-cream,
.page-hero {
  background: #f9f7f3 !important;
}


/* July 2026 industries expansion: six prominent mega-menu sectors and twelve landing-page sectors. */
.industry-card-grid.industry-grid--twelve {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-grid--twelve .industry-card {
  min-height: 205px;
}

.mega-industries {
  grid-template-columns: repeat(6, minmax(0, 1fr)) 145px;
  gap: 16px;
}

.mega-industry {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mega-industry img {
  flex: 0 0 88px;
}

.mega-industry span {
  display: flex;
  min-height: 56px;
  flex: 1;
  align-items: center;
  padding: 9px 10px 10px;
  font-size: 12px;
  line-height: 1.2;
}

@media (max-width: 1080px) {
  .industry-card-grid.industry-grid--twelve {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .industry-card-grid.industry-grid--twelve {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .industry-card-grid.industry-grid--twelve {
    grid-template-columns: 1fr;
  }
}


/* July 2026 service architecture: area landing pages, granular pages and full catalogue. */
.service-area-intro__grid {
  display: grid;
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.service-area-intro__copy h2 {
  max-width: 620px;
  margin-bottom: 26px;
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.02;
}

.service-area-intro__copy .muted {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.65;
}

.feature-card-grid.service-area-intro__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-area-intro__features .feature-card {
  min-height: 220px;
  padding: 28px;
}

.service-area-directory {
  padding: clamp(28px, 4vw, 48px);
}

.service-area-directory__header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 28px;
}

.service-area-directory__header h2 {
  margin-bottom: 8px;
}

.service-area-directory__header p:last-child {
  margin: 0;
}

.service-area-directory__count {
  display: grid;
  min-width: 150px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--cream);
}

.service-area-directory__count strong {
  color: var(--orange);
  font-size: 34px;
  line-height: 1;
}

.service-area-directory__count span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.service-area-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-area-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-area-card:hover,
.service-area-card:focus-visible {
  color: var(--ink);
  border-color: rgba(240, 74, 10, .32);
  box-shadow: 0 18px 36px rgba(7, 28, 45, .13);
  transform: translateY(-3px);
}

.service-area-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--orange);
}

.service-area-card h3 {
  margin-bottom: 11px;
  font-size: 20px;
}

.service-area-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-area-card .card-link {
  margin-top: auto;
}

.service-area-more {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-chip-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.service-chip-list a:hover {
  color: var(--orange);
  border-color: rgba(240, 74, 10, .35);
}

.service-chip-list svg {
  width: 14px;
  height: 14px;
}

.service-area-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-area-proof-grid .content-panel {
  padding: clamp(28px, 4vw, 44px);
}

.service-area-industry-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-area-spotlight {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .85fr) minmax(190px, .35fr);
  gap: 28px;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.service-area-spotlight > div:first-child {
  padding: clamp(30px, 4vw, 48px);
}

.service-area-spotlight > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.service-area-spotlight__facts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 24px;
}

.service-area-spotlight__facts span {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.service-area-spotlight__facts span:last-child {
  border-bottom: 0;
}

.service-area-spotlight__facts svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
}

.mini-service-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.mini-service-overview__grid > div:first-child h2 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4vw, 58px);
}

.mini-service-overview__grid > div:first-child .muted {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.65;
}

.mini-service-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mini-service-feature {
  display: grid;
  min-height: 170px;
  align-content: start;
  gap: 22px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
  font-size: 17px;
  font-weight: 800;
}

.mini-service-feature svg {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.mini-service-deliverables {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .65fr);
  gap: 22px;
}

.content-panel--navy {
  color: #fff;
  background: var(--navy) !important;
}

.content-panel--navy .eyebrow {
  color: var(--orange);
}

.content-panel--navy p {
  color: rgba(255,255,255,.76);
}

.service-area-card-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-area-card-grid--related .service-area-card {
  min-height: 250px;
}

.service-area-jump-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.service-area-jump-nav a {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.service-area-jump-nav a:hover {
  color: var(--orange);
  border-color: rgba(240, 74, 10, .3);
}

.service-area-jump-nav span {
  color: var(--muted);
  font-size: 12px;
}

.service-catalogue-shell {
  grid-template-columns: minmax(210px, .25fr) minmax(0, 1fr);
}

.service-catalogue-toolbar {
  position: sticky;
  top: 82px;
  z-index: 3;
  padding: 14px;
  background: rgba(249, 247, 243, .96);
  backdrop-filter: blur(8px);
  border-radius: 10px;
}

.service-catalogue-group {
  margin-bottom: 46px;
  scroll-margin-top: 130px;
}

.service-catalogue-group__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 24px 0 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.service-catalogue-group__header h2 {
  margin: 0;
}

.service-catalogue-group__header h2 a {
  color: var(--ink);
}

.catalogue-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.catalogue-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  min-height: 210px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.catalogue-card__icon {
  width: 38px;
  height: 38px;
  color: var(--orange);
}

.catalogue-card__area {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.catalogue-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.catalogue-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.catalogue-card > .card-link {
  grid-column: 2;
  align-self: end;
}

@media (max-width: 1180px) {
  .service-area-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-area-more { grid-template-columns: 1fr; }
  .service-area-more .button { justify-self: start; }
  .service-area-spotlight { grid-template-columns: minmax(0, 1fr) minmax(300px, .8fr); }
  .service-area-spotlight__facts { grid-column: 1 / -1; flex-direction: row; padding: 0 28px 28px; }
  .service-area-spotlight__facts span { flex: 1; border-right: 1px solid var(--line); border-bottom: 0; }
  .service-area-spotlight__facts span:last-child { border-right: 0; }
}

@media (max-width: 900px) {
  .service-area-intro__grid,
  .service-area-proof-grid,
  .mini-service-overview__grid,
  .mini-service-deliverables,
  .service-area-spotlight { grid-template-columns: 1fr; }
  .service-area-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-service-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-area-jump-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-area-spotlight > img { min-height: 280px; }
  .service-area-spotlight__facts { grid-column: auto; }
}

@media (max-width: 700px) {
  .service-area-directory__header,
  .service-catalogue-group__header { align-items: flex-start; flex-direction: column; }
  .service-area-card-grid,
  .service-area-card-grid--related,
  .catalogue-card-grid,
  .feature-card-grid.service-area-intro__features,
  .mini-service-feature-grid,
  .service-area-jump-nav { grid-template-columns: 1fr; }
  .service-area-card { min-height: 0; }
  .service-area-industry-list { grid-template-columns: 1fr; }
  .service-area-spotlight__facts { flex-direction: column; }
  .service-area-spotlight__facts span { width: 100%; border-right: 0; border-bottom: 1px solid var(--line); }
  .catalogue-card { min-height: 0; }
  .service-catalogue-toolbar { position: static; }
}

/* --------------------------------------------------------------------------
   July 2026 stakeholder content and routing revision
   -------------------------------------------------------------------------- */

/* About navigation */
.mega-menu--about {
  padding-block: 22px;
}

.mega-about {
  grid-template-columns: minmax(250px, .72fr) minmax(0, 2fr);
  align-items: stretch;
  gap: 28px;
}

.mega-about__intro {
  padding: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 12px;
}

.mega-about__intro h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.mega-about__intro p:last-child {
  color: rgba(255,255,255,.74);
  font-size: 14px;
}

.mega-about__links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.mega-about__links a {
  display: flex !important;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.mega-about__links a:hover,
.mega-about__links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240,74,10,.35);
  box-shadow: 0 14px 28px rgba(7,28,45,.12);
}

.mega-about__links strong {
  color: var(--ink);
  font-size: 15px;
}

.mega-about__links span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.mobile-subnav {
  display: grid;
  padding: 2px 0 8px 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-subnav a {
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

/* Contact-page route selection */
.contact-routing-section {
  padding-bottom: 26px;
}

.contact-routing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-routing-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-routing-card:hover,
.contact-routing-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(240,74,10,.38);
  box-shadow: var(--shadow);
}

.contact-routing-card > svg {
  width: 40px;
  height: 40px;
  color: var(--orange);
}

.contact-routing-card h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.contact-routing-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact-routing-card span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--orange);
  font-weight: 780;
}

.contact-routing-card span svg {
  width: 16px;
  height: 16px;
}

.form-choice-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-choice-grid--four .form-choice {
  min-height: 88px;
}

/* Verified location details replace placeholder availability text. */
.location-card__address {
  min-height: 72px;
  margin: 16px 0 12px;
  color: var(--ink);
  font-style: normal;
  line-height: 1.5;
}

.location-card__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 750;
}

.location-card__phone svg {
  width: 18px;
  height: 18px;
}

/* Problem-first service-area heroes need room for longer customer questions. */
.page-service-area .page-hero__copy h1 {
  max-width: 600px;
  font-size: clamp(32px, 2.8vw, 45px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.page-service-area .page-hero__lead {
  max-width: 610px;
  font-size: 15px;
}

/* Research visibility within Insights. */
.research-intro-section {
  padding-bottom: 20px;
}

.research-intro {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: start;
}

.research-intro__icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 50%;
}

.research-intro__icon svg {
  width: 44px;
  height: 44px;
}

.research-intro h2 {
  margin-bottom: 14px;
}

.insights-filter-grid {
  grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(145px, 1fr)) auto;
}

/* About-page continuity and history. */
.about-continuity {
  padding-top: 28px;
}

.continuity-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .75fr);
  gap: 42px;
  padding: clamp(30px, 5vw, 58px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.continuity-panel h2 {
  margin-bottom: 20px;
}

.continuity-panel p {
  color: var(--muted);
  font-size: 17px;
}

.continuity-panel__summary {
  align-self: stretch;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 12px;
}

.continuity-panel__summary > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 18px;
}

.continuity-panel__summary .check-list li {
  color: rgba(255,255,255,.86);
}

.history-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 980px;
}

.history-milestone {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 26px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.history-milestone > span {
  color: var(--orange);
  font-size: 17px;
  font-weight: 850;
}

.history-milestone h3 {
  margin-bottom: 7px;
  font-size: 22px;
}

.history-milestone p {
  color: var(--muted);
}

.prototype-note {
  max-width: 980px;
  margin-top: 18px;
  padding: 13px 16px;
  color: #6d5d52;
  background: #fff6ee;
  border: 1px solid #f1d4c2;
  border-radius: 8px;
  font-size: 13px;
}

.careers-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.careers-promo > div {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .contact-routing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .continuity-panel {
    grid-template-columns: 1fr;
  }

  .careers-promo {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .contact-routing-grid,
  .form-choice-grid--four,
  .insights-filter-grid {
    grid-template-columns: 1fr;
  }

  .contact-routing-card {
    min-height: 0;
  }

  .research-intro {
    grid-template-columns: 1fr;
  }

  .research-intro__icon {
    width: 68px;
    height: 68px;
  }

  .history-milestone {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Approved site-header colour: keep identical across every page. */
.site-header {
  background: rgba(247, 244, 240, 1) !important;
}

/* WordPress integration */
body.admin-bar .site-header { top: 32px; }
.iom-admin-note {
  margin: 24px auto;
  padding: 16px 18px;
  color: #5e4c3e;
  background: #fff7ef;
  border: 1px solid #efcfb8;
  border-radius: 10px;
  font-size: 14px;
}
.service-area-empty {
  padding: 34px;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 1px dashed #cfc7bf;
  border-radius: var(--radius);
}
.wp-service-card-image {
  width: 100%;
  height: 150px;
  margin: -28px -28px 22px;
  max-width: calc(100% + 56px);
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.service-area-card.has-image { overflow: hidden; }
.service-area-card.has-image .wp-service-card-image { width: calc(100% + 56px); }
.service-archive-groups { display: grid; gap: 32px; }
.service-archive-group { padding: clamp(28px, 4vw, 46px); }
.service-archive-group__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.service-archive-group__header h2 { margin-bottom: 0; }
.service-archive-group__header span { color: var(--muted); font-weight: 700; }
.simple-page-content { max-width: 820px; }
.simple-page-content > * + * { margin-top: 1.2em; }
.no-content-shell { min-height: 45vh; }

@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* WordPress foundation update 002: keep the footer at the viewport edge on
   short pages and use the approved solid header colour on every page. */
html {
  min-height: 100%;
}

body {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
}

#main-content {
  flex: 1 0 auto;
}

.site-footer {
  flex: 0 0 auto;
}

.site-header {
  background: rgba(247, 244, 240, 1) !important;
}

@media screen and (min-width: 783px) {
  body.admin-bar {
    min-height: calc(100vh - 32px);
    min-height: calc(100dvh - 32px);
  }
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    min-height: calc(100vh - 46px);
    min-height: calc(100dvh - 46px);
  }
}


/* WordPress standard CTA and trusted-organisations strip — aligned to approved static prototype. */
.global-cta {
  grid-template-columns: minmax(0,1.55fr) minmax(250px,.55fr);
  gap: clamp(32px,5vw,78px);
  align-items: center;
  margin-top: clamp(56px,7vw,90px);
  padding: clamp(34px,4.6vw,54px);
}
.global-cta h2 {
  max-width: 800px;
  margin: 0 0 10px;
  font-size: clamp(34px,4vw,58px);
  line-height: 1.04;
  letter-spacing: -.045em;
}
.global-cta__subheading {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: clamp(17px,1.5vw,22px);
  line-height: 1.3;
}
.global-cta p {
  margin: 0;
  font-size: clamp(16px,1.45vw,20px);
  line-height: 1.55;
}
.global-cta ul {
  gap: 10px clamp(22px,3vw,42px);
  margin-top: 22px;
  font-size: 15px;
}
.global-cta__action .button {
  min-width: 220px;
  justify-content: center;
}
.global-cta__action small {
  font-size: 14px;
}

.trusted-row {
  grid-template-columns: minmax(250px,.95fr) minmax(0,3fr);
  gap: clamp(28px,4vw,62px);
  margin-top: 0;
  padding-block: clamp(38px,5vw,62px);
}
.trusted-row > span {
  max-width: 280px;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .09em;
}
.partner-logos {
  gap: clamp(12px,1.8vw,24px);
}
.partner-logo {
  min-width: 0;
  min-height: 84px;
  border: 1px solid rgba(8,39,60,.06);
  box-shadow: 0 10px 28px rgba(8,39,60,.05);
}
.partner-logo.is-placeholder {
  color: #8b969e;
  background: #fff;
  border-style: dashed;
  box-shadow: none;
}
.partner-logo.is-placeholder strong {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .global-cta,
  .trusted-row {
    grid-template-columns: 1fr;
  }
  .global-cta__action {
    justify-items: start;
    text-align: left;
  }
  .partner-logos {
    grid-template-columns: repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 620px) {
  .global-cta h2 { font-size: clamp(32px,10vw,44px); }
  .global-cta__action .button { min-width: 0; width: 100%; }
  .partner-logos { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .partner-logo { min-height: 68px; }
}

/* --------------------------------------------------------------------------
   WordPress complete-site templates (theme 0.2.0)
   -------------------------------------------------------------------------- */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.centered { margin-inline: auto; text-align: center; }
.section-navy { color: #fff; background: linear-gradient(135deg, var(--navy), var(--navy-3)); }
.section-heading--light h2,
.section-heading--light p { color: #fff; }
.section-heading--light .eyebrow { color: #ff6b30; }

/* Keep all internal hero blocks consistent. */
.page-hero { background: #f9f7f3 !important; }
.page-hero__grid { min-height: 390px; }
.page-hero__copy { min-width: 0; padding-block: 52px; }
.page-hero__copy .button { align-self: flex-start; margin-top: 12px; }
.page-hero__media { height: 390px; min-height: 390px; }
.page-hero__media img { object-position: center; }

/* Mega menus. */
.nav-mega { display: flex; align-items: stretch; height: 82px; }
.nav-mega__trigger { display: flex !important; grid-auto-flow: column; gap: 5px; }
.nav-mega__trigger svg { width: 14px; height: 14px; }
.nav-mega.is-active > .nav-mega__trigger { color: var(--orange); }
.mega-menu {
  position: fixed;
  z-index: 120;
  top: 82px;
  left: 0;
  right: 0;
  padding: 24px 0 28px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  background: rgba(247,244,240,.99);
  border-top: 1px solid var(--line);
  box-shadow: 0 24px 46px rgba(7,28,45,.18);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  pointer-events: none;
}
.nav-mega:hover .mega-menu,
.nav-mega:focus-within .mega-menu { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.mega-services { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.mega-service-card { display: flex; min-width: 0; overflow: hidden; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-soft); }
.mega-service-image { display: block !important; position: static !important; }
.mega-service-image::after { display: none !important; }
.mega-service-image img { width: 100%; height: 112px; object-fit: cover; }
.mega-service-image strong { display: block; padding: 13px 14px 9px; font-size: 17px; }
.mega-service-card nav { display: flex; flex: 1; flex-direction: column; padding: 0 14px; }
.mega-service-card nav a { display: block; place-items: initial; padding: 4px 0; color: #52616b; font-size: 12px; }
.mega-service-card nav a::after { display: none; }
.mega-service-card nav a:hover { color: var(--orange); }
.mega-service-card nav .mega-more { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: auto -14px 0; padding: 12px 14px; color: #fff; background: var(--orange); font-weight: 800; }
.mega-service-card nav .mega-more:hover { color: #fff; background: var(--orange-dark); }
.mega-service-card nav .mega-more svg { width: 16px; height: 16px; }
.mega-industries { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)) 145px; gap: 16px; align-items: stretch; }
.mega-industry { display: flex !important; min-width: 0; overflow: hidden; flex-direction: column; place-items: initial !important; background: #fff; border: 1px solid var(--line); border-radius: 9px; box-shadow: var(--shadow-soft); }
.mega-industry::after,
.mega-all::after { display: none !important; }
.mega-industry img { width: 100%; height: 90px; object-fit: cover; }
.mega-industry span { display: flex; min-height: 55px; flex: 1; align-items: center; padding: 9px 10px 10px; font-size: 12px; font-weight: 800; line-height: 1.2; }
.mega-all { display: flex !important; align-items: center; justify-content: center; gap: 8px; color: var(--orange); font-weight: 800; }
.mega-all svg { width: 16px; height: 16px; }

/* Generic grids and cards. */
.industry-grid,
.case-grid,
.insight-grid,
.expert-grid,
.location-grid,
.credential-grid { display: grid; gap: 20px; }
.industry-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.industry-grid--full { grid-template-columns: repeat(4,minmax(0,1fr)); }
.case-grid,
.insight-grid,
.expert-grid,
.location-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.credential-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }

.industry-card {
  display: flex;
  min-height: 350px;
  overflow: hidden;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.industry-card:hover { transform: translateY(-4px); border-color: rgba(240,74,10,.35); box-shadow: var(--shadow); }
.industry-card img { width: 100%; height: 180px; flex: 0 0 180px; object-fit: cover; }
.industry-card__body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.industry-card__body h3 { margin-bottom: 9px; font-size: 22px; }
.industry-card__body p { flex: 1; color: var(--muted); font-size: 14px; }
.industry-card__body .card-link { margin-top: 14px; }
.industry-search,
.archive-search { width: min(100%, 760px); margin: 0 auto 28px; }
.industry-search input,
.archive-search,
.filter-toolbar input[type="search"] { width: 100%; min-height: 54px; padding: 0 18px; color: var(--ink); background: #fff; border: 1px solid #bdc4ca; border-radius: 9px; }

.case-card,
.insight-card,
.expert-card,
.location-card,
.credential-card { color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease; }
.case-card:hover,
.insight-card:hover,
.expert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.case-card > img,
.insight-card > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.case-card__body,
.insight-card__body,
.expert-card__body,
.location-card__body { padding: 22px; }
.case-card__body h3,
.insight-card__body h3 { margin-bottom: 10px; font-size: 22px; }
.case-card__body p:not(.eyebrow),
.insight-card__body p:not(.eyebrow) { color: var(--muted); font-size: 14px; }
.case-card__metric { display: block; margin: 15px 0; color: var(--orange); font-size: 27px; }
.case-card__metric small { color: var(--muted); font-size: 13px; font-weight: 650; }
.featured-case-panel,
.featured-insight { margin: 28px 0 34px; }
.featured-case-panel .case-card,
.featured-insight .insight-card { display: grid; grid-template-columns: 1.05fr .95fr; }
.featured-case-panel .case-card > img,
.featured-insight .insight-card > img { height: 100%; aspect-ratio: auto; }

.expert-card { display: grid; grid-template-columns: 140px 1fr; overflow: hidden; }
.expert-card img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; }
.expert-card__body { display: flex; min-width: 0; flex-direction: column; }
.expert-card__body h3 { margin-bottom: 7px; font-size: 21px; }
.expert-card__body strong { display: block; margin-bottom: 10px; color: var(--orange); font-size: 13px; }
.expert-card__body p { flex: 1; color: var(--muted); font-size: 14px; }

.location-card { overflow: hidden; }
.location-card > img { width: 100%; height: 185px; object-fit: cover; }
.location-card address { margin: 14px 0; color: var(--muted); font-style: normal; }
.credential-card { padding: 26px; }
.credential-card__icon { width: 48px; height: 48px; margin-bottom: 18px; color: var(--orange); }
.credential-card h3 { font-size: 22px; }
.credential-card strong { color: var(--orange); }
.credential-card p { color: var(--muted); }

/* Service catalogue. */
.service-catalogue-shell { display: grid; grid-template-columns: minmax(210px,.25fr) minmax(0,1fr); gap: 26px; align-items: start; }
.service-catalogue-results { min-width: 0; }
.service-catalogue-toolbar { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 18px; top: 92px; }
.service-archive-groups { display: grid; gap: 46px; }
.service-catalogue-group { scroll-margin-top: 135px; }
.service-catalogue-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.service-catalogue-card { display: grid; grid-template-columns: 46px minmax(0,1fr); gap: 16px; min-height: 205px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-soft); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.service-catalogue-card:hover { transform: translateY(-3px); border-color: rgba(240,74,10,.35); box-shadow: var(--shadow); }
.service-catalogue-card__icon { width: 40px; height: 40px; color: var(--orange); }
.service-catalogue-card h3 { margin-bottom: 8px; font-size: 20px; }
.service-catalogue-card p { color: var(--muted); font-size: 14px; }
.service-catalogue-card .card-link { margin-top: auto; }
.service-archive-group__header > div { min-width: 0; }

/* Detail layouts. */
.case-detail-grid,
.industry-intro-grid,
.about-intro-grid,
.expert-about-grid,
.campaign-content { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.85fr); gap: clamp(34px,5vw,70px); align-items: start; }
.outcome-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.outcome-card { padding: 26px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }
.outcome-card strong { display: block; color: var(--orange); font-size: clamp(31px,4vw,48px); line-height: 1; }
.outcome-card span { display: block; margin-top: 8px; color: var(--muted); }
.numbered-list { display: grid; gap: 18px; margin: 0; padding: 0; list-style: none; counter-reset: ordered; }
.numbered-list li { position: relative; padding-left: 56px; counter-increment: ordered; }
.numbered-list li::before { content: counter(ordered); position: absolute; left: 0; top: 0; display: grid; place-items: center; width: 38px; height: 38px; color: #fff; background: var(--orange); border-radius: 50%; font-weight: 800; }
.quote-panel,
.expert-quote { padding: clamp(28px,4vw,48px); color: #fff; background: linear-gradient(135deg,var(--navy),var(--navy-3)); border-radius: 14px; box-shadow: var(--shadow); }
.quote-panel blockquote,
.expert-quote blockquote { margin: 0; font-size: clamp(24px,3vw,38px); font-weight: 750; line-height: 1.18; }
.quote-panel cite,
.expert-quote cite { display: block; margin-top: 18px; color: rgba(255,255,255,.72); font-style: normal; }

.expert-hero { background: #f9f7f3; }
.expert-hero__grid { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); min-height: 440px; }
.expert-hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 56px 50px 56px 0; }
.expert-hero__media { overflow: hidden; }
.expert-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.expert-experience { display: inline-flex; align-self: flex-start; margin: 8px 0 18px; padding: 8px 12px; color: var(--orange); background: var(--orange-soft); border-radius: 999px; font-weight: 800; }
.expert-routing-panel { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft); }

.about-proof-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.about-proof-grid .feature-card { min-height: 210px; }
.feature-card-grid--four { grid-template-columns: repeat(4,minmax(0,1fr)); }
.feature-card-grid--three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.feature-card-grid--two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.feature-card.is-placeholder small,
.proof-item.is-placeholder::after { color: #9b6b52; font-size: 11px; font-weight: 750; text-transform: uppercase; }

/* Forms and utility pages. */
.iom-placeholder-form label { display: grid; gap: 7px; color: var(--ink); font-weight: 700; }
.iom-placeholder-form input,
.iom-placeholder-form select,
.iom-placeholder-form textarea { width: 100%; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid #b8c0c6; border-radius: 8px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-bottom: 18px; }
.form-grid .span-2 { grid-column: 1 / -1; }
.form-note { margin-top: 15px; color: var(--muted); font-size: 12px; }
.contact-method { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-method:last-child { border-bottom: 0; }
.contact-method > span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--orange); background: var(--orange-soft); border-radius: 50%; }
.contact-method svg { width: 23px; height: 23px; }
.contact-method strong,
.contact-method a,
.contact-method small { display: block; }
.contact-method a { color: var(--orange); font-size: 18px; font-weight: 750; }
.contact-method small { margin-top: 5px; color: var(--muted); }
.content-panel--navy .contact-method small { color: #fff; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 44px; align-items: start; }
.article-toc { position: sticky; top: 105px; display: grid; gap: 11px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.article-toc a { color: var(--muted); }
.article-toc a:hover { color: var(--orange); }
.newsletter-panel { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 28px 34px; color: #fff; background: linear-gradient(135deg,var(--navy),var(--navy-3)); border-radius: 14px; }
.faq-list { display: grid; gap: 8px; }
.faq-question { display: flex; width: 100%; justify-content: space-between; gap: 20px; padding: 17px 20px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; font-weight: 750; text-align: left; }
.faq-answer { padding: 18px 20px; color: var(--muted); background: #fff; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 8px 8px; }

/* Reveal motion with accessibility fallback. */
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .mega-menu { display: none; }
  .industry-grid--full,
  .credential-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .service-catalogue-shell { grid-template-columns: 210px minmax(0,1fr); }
}

@media (max-width: 900px) {
  .page-hero__grid,
  .expert-hero__grid,
  .case-detail-grid,
  .industry-intro-grid,
  .about-intro-grid,
  .expert-about-grid,
  .campaign-content { grid-template-columns: 1fr; }
  .page-hero__media,
  .expert-hero__media { height: 320px; min-height: 320px; clip-path: none; }
  .page-hero__copy,
  .expert-hero__copy { padding-right: 0; }
  .service-catalogue-shell { grid-template-columns: 1fr; }
  .filter-panel { position: static; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
  .filter-panel .filter-toolbar { grid-column: 1 / -1; }
  .filter-panel__group { border-top: 0; }
  .industry-grid,
  .industry-grid--full,
  .case-grid,
  .insight-grid,
  .expert-grid,
  .location-grid,
  .credential-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .feature-card-grid--four { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-catalogue-grid { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .article-toc { position: static; }
}

@media (max-width: 680px) {
  .industry-grid,
  .industry-grid--full,
  .case-grid,
  .insight-grid,
  .expert-grid,
  .location-grid,
  .credential-grid,
  .feature-card-grid--four,
  .feature-card-grid--three,
  .feature-card-grid--two,
  .about-proof-grid,
  .outcome-grid,
  .form-grid { grid-template-columns: 1fr; }
  .featured-case-panel .case-card,
  .featured-insight .insight-card,
  .expert-card { grid-template-columns: 1fr; }
  .expert-card img { height: 300px; }
  .service-area-jump-nav { grid-template-columns: 1fr; }
  .filter-panel { grid-template-columns: 1fr; }
  .service-catalogue-toolbar,
  .newsletter-panel { grid-template-columns: 1fr; }
  .service-catalogue-card { grid-template-columns: 38px minmax(0,1fr); padding: 20px; }
  .global-cta { margin-inline: var(--shell-gap); width: auto; }
}

/* Search and error pages. */
.error-page__inner { max-width: 960px; text-align: center; }
.error-code { margin: 0; color: var(--orange); font-size: clamp(120px,24vw,300px); font-weight: 300; letter-spacing: -.08em; line-height: .8; }
.error-page__inner > .muted { max-width: 680px; margin-inline: auto; font-size: 18px; }
.error-page__inner .button-row { justify-content: center; }
.error-search,
.search-page__form { max-width: 780px; margin: 28px auto; }
.destination-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; margin-top: 50px; text-align: left; }
.destination-card { display: flex; min-height: 110px; align-items: center; justify-content: space-between; gap: 14px; padding: 22px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-soft); }
.destination-card svg { width: 20px; height: 20px; color: var(--orange); }
.search-result-list { display: grid; gap: 14px; max-width: 980px; margin: 34px auto; }
.search-result { display: grid; grid-template-columns: minmax(0,1fr) 34px; align-items: center; gap: 20px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-soft); }
.search-result > svg { width: 25px; height: 25px; color: var(--orange); }
.search-result h2 { margin-bottom: 8px; font-size: 25px; }
.search-result p { margin: 0; color: var(--muted); }
@media (max-width: 680px) { .destination-grid { grid-template-columns: 1fr; } }
.page-hero--text-only .page-hero__grid { grid-template-columns: minmax(0,850px); min-height: 300px; }
.page-hero--text-only .page-hero__copy { padding-right: 0; }

/* Occupational Hygiene problem-led refinement — July 2026 */
.service-outcomes {
  background: var(--cream, #f9f7f3);
}

.service-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-outcome-card {
  display: block;
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.service-outcome-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--orange);
}

.service-outcome-card h2 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.14;
}

.service-outcome-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.service-outcome-card[href]:hover,
.service-outcome-card[href]:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--orange) 42%, var(--line));
}

.service-triggers .section-heading {
  max-width: 820px;
}

.service-trigger-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-trigger-card {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 100%;
  padding: 20px 22px;
  color: var(--navy);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.service-trigger-card svg {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--orange);
}

.service-trigger-card span {
  font-weight: 700;
  line-height: 1.4;
}

.service-trigger-card:hover,
.service-trigger-card:focus-visible {
  border-color: var(--orange);
  box-shadow: var(--shadow-soft);
}

.service-area-card-grid--specialist {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-area-card--specialist {
  min-height: 280px;
}

.service-area-card--specialist .service-area-card__icon {
  display: block;
}

.service-area-card--specialist h3 {
  font-size: clamp(20px, 1.8vw, 25px);
}

.service-area-card--specialist p {
  font-size: 15px;
}

.service-area-more:has(> .button:only-child) {
  display: flex;
  justify-content: flex-end;
}

.service-area-industries .section-heading,
.service-area-assurance .section-heading {
  max-width: 760px;
}

.service-industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-industry-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.service-industry-card svg {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.service-industry-card:hover,
.service-industry-card:focus-visible {
  border-color: var(--orange);
}

.service-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-assurance-card {
  position: relative;
  min-width: 0;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.service-assurance-card__icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--orange);
}

.service-assurance-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-assurance-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.approval-status {
  display: inline-flex;
  margin-top: 16px;
  padding: 5px 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: #f4eee8;
  border: 1px solid var(--line);
  border-radius: 999px;
}

@media (max-width: 1180px) {
  .service-area-card-grid--specialist,
  .service-industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-outcome-grid,
  .service-trigger-grid,
  .service-assurance-grid {
    grid-template-columns: 1fr;
  }

  .service-area-card--specialist {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .service-area-card-grid--specialist,
  .service-industry-grid {
    grid-template-columns: 1fr;
  }

  .service-outcome-card,
  .service-assurance-card {
    padding: 24px;
  }

  .service-trigger-card {
    padding: 18px;
  }
}

/* --------------------------------------------------------------------------
   Theme 0.5.0: restored About megamenu and enquiry-route selector
   -------------------------------------------------------------------------- */

/* Keep the approved header colour exact across every template. */
.site-header {
  background: rgba(247, 244, 240, 1);
}

.enquiry-route-fieldset {
  min-width: 0;
  margin: 20px 0;
  padding: 0;
  border: 0;
}

.enquiry-route-fieldset legend {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.iom-expert-placeholder-form .form-choice {
  min-height: 88px;
}

.iom-expert-placeholder-form .form-choice strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.iom-expert-placeholder-form .form-choice:has(input:checked) strong {
  color: var(--orange);
}

.expert-form-grid {
  margin-top: 18px;
}

.iom-expert-placeholder-form .form-field-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.iom-expert-placeholder-form .form-field-heading small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}


.form-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 13px;
  font-weight: 500 !important;
  line-height: 1.45;
}

.form-consent input {
  width: auto !important;
  min-height: 0 !important;
  margin-top: 3px;
  padding: 0 !important;
  accent-color: var(--orange);
}

.form-consent a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

#history {
  scroll-margin-top: 110px;
}

@media (max-width: 620px) {
  .iom-expert-placeholder-form .form-choice {
    min-height: 76px;
  }
}

/* Compact footer refinement — v0.6.1 */
.footer-grid.footer-grid--streamlined {
  display: grid;
  grid-template-columns: minmax(210px, .82fr) minmax(330px, 1.25fr) minmax(250px, .86fr);
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
  padding-block: clamp(32px, 4vw, 44px) 24px;
}
.footer-grid--streamlined .footer-brand p {
  display: block;
  max-width: 260px;
  margin-top: 10px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.45;
}
.footer-brand__social {
  margin-top: 16px;
}
.footer-contact.footer-contact--prominent {
  display: grid;
  gap: 8px;
  margin: 0;
}
.footer-contact--prominent > a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 4px 0;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 0;
  text-decoration: none;
}
.footer-contact--prominent > a:hover,
.footer-contact--prominent > a:focus-visible {
  color: var(--orange);
  background: transparent;
}
.footer-contact--prominent > a:hover strong,
.footer-contact--prominent > a:focus-visible strong {
  color: var(--orange);
}
.footer-contact__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}
.footer-contact--prominent .footer-contact__icon svg {
  width: 17px;
  height: 17px;
}
.footer-contact--prominent small {
  display: block;
  margin-bottom: 1px;
  color: rgba(255,255,255,.54);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-contact--prominent strong {
  display: block;
  color: #fff;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.25;
  transition: color .18s ease;
}
.footer-newsletter .eyebrow {
  margin-bottom: 6px;
  color: var(--orange);
}
.footer-newsletter h2 {
  max-width: 310px;
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1.06;
}
.footer-newsletter > p:not(.eyebrow) {
  max-width: 330px;
  margin-bottom: 14px;
  color: rgba(255,255,255,.7);
  font-size: 13px;
  line-height: 1.45;
}
.footer-newsletter__button {
  width: fit-content;
  min-height: 44px;
  padding: 11px 18px;
}
.footer-meta {
  align-items: center;
  padding-block: 13px;
}
.footer-meta a {
  font-weight: 700;
}
.newsletter-panel {
  scroll-margin-top: 110px;
}

@media (max-width: 1040px) {
  .footer-grid.footer-grid--streamlined {
    grid-template-columns: 1fr 1.25fr;
  }
  .footer-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .footer-grid.footer-grid--streamlined {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 32px 20px;
  }
  .footer-newsletter {
    grid-column: auto;
  }
  .footer-contact--prominent > a {
    padding-block: 3px;
  }
}

/* --------------------------------------------------------------------------
   Cross-site cosmetic refinement — theme 0.7.0
   -------------------------------------------------------------------------- */

/* Reduce accumulated vertical whitespace while retaining clear section rhythm. */
.section-pad {
  padding-block: clamp(38px, 4.5vw, 58px);
}

.section-pad-sm {
  padding-block: clamp(24px, 3vw, 38px);
}

.page-service-area .section-pad {
  padding-block: clamp(32px, 3.5vw, 46px);
}

.page-service-area .section-pad-sm {
  padding-block: clamp(22px, 2.7vw, 34px);
}

/* Keep breadcrumbs in their own layer and allow long heroes to grow naturally. */
.breadcrumbs {
  position: relative;
  z-index: 4;
}

.page-hero {
  overflow: clip;
}

.page-hero__grid {
  min-height: 390px;
  height: auto;
  align-items: stretch;
}

.page-hero__copy {
  justify-content: center;
  min-height: 390px;
  padding-block: clamp(42px, 5vw, 62px);
}

.page-hero__media {
  height: auto;
  min-height: 390px;
  align-self: stretch;
}

.page-hero__copy .button-row {
  margin-bottom: 2px;
}

.page-service-area .page-hero__grid {
  min-height: 0;
}

.page-service-area .page-hero__copy {
  min-height: 0;
  padding-block: clamp(46px, 5.5vw, 70px);
}

.page-service-area .page-hero__media {
  min-height: 460px;
}

/* Give technical-reassurance cards a stronger visual identity. */
.service-assurance-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 24px;
  border-top: 4px solid var(--orange);
  background:
    radial-gradient(circle at 100% 0, rgba(240,74,10,.085), transparent 34%),
    #fff;
}

.service-assurance-card__visual {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-assurance-card__visual > div,
.service-assurance-card__visual > svg {
  flex: 0 0 auto;
}

.service-assurance-card__icon {
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  color: var(--orange);
}

.service-assurance-card__visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  background: var(--orange-soft);
  border-radius: 50%;
  z-index: 0;
}

.service-assurance-card__visual svg,
.service-assurance-card__visual span {
  position: relative;
  z-index: 1;
}

.service-assurance-card__visual svg {
  margin-left: 12px;
}

.service-assurance-card__visual span {
  color: rgba(8,29,45,.36);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.service-assurance-card h3 {
  margin-top: auto;
  font-size: clamp(19px, 1.7vw, 23px);
}

/* Locations archive: preserve source photography and standardise card content. */
.page-hero--locations .page-hero__media img,
.page-hero--location-detail .page-hero__media img {
  object-position: center center;
}

.location-support-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.location-support-strip__item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 4px 22px;
}

.location-support-strip__item + .location-support-strip__item {
  border-left: 1px solid var(--line);
}

.location-support-strip__item > svg {
  width: 29px;
  height: 29px;
  color: var(--orange);
}

.location-support-strip__item strong,
.location-support-strip__item span {
  display: block;
}

.location-support-strip__item strong {
  margin-bottom: 4px;
  font-size: 15px;
}

.location-support-strip__item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.locations-directory {
  padding-top: clamp(34px, 4vw, 50px);
}

.location-grid {
  align-items: stretch;
}

.location-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.location-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

.location-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.location-card__content {
  flex: 1;
}

.location-card__body h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.location-card__summary {
  min-height: 3.1em;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.location-card__label {
  display: block;
  margin-bottom: 6px;
  color: var(--live-search-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-card address {
  margin: 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.location-card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 3px solid var(--orange);
}

.location-card__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.location-card__phone > svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.location-card__phone small,
.location-card__phone strong {
  display: block;
}

.location-card__phone small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.location-card__phone strong {
  font-size: 15px;
}

.location-card__phone:hover strong,
.location-card__phone:focus-visible strong {
  color: var(--orange);
}

.location-card__directions {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 13px;
}

.location-detail-card address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.location-detail-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  margin-block: 22px;
}

.location-detail-row > svg {
  width: 25px;
  height: 25px;
  color: var(--orange);
}

.location-detail-row strong,
.location-detail-row a,
.location-detail-row address {
  display: block;
}

.location-detail-row strong {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Insights: keep the archive centred and restore compact rectangular cards. */
.insights-featured-section .featured-insight {
  margin: 0 auto;
}

.featured-insight .insight-card {
  min-height: 285px;
  grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
}

.featured-insight .insight-card > img {
  width: 100%;
  height: 100%;
  min-height: 285px;
  object-fit: cover;
}

.featured-insight .insight-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 38px);
}

.insights-toolbar {
  width: 100%;
  margin-bottom: 26px;
}

.insight-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-grid--compact > [data-card] {
  min-width: 0;
}

.insight-grid--compact .insight-card {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.insight-grid--compact .insight-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.insight-grid--compact .insight-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 19px 20px;
}

.insight-grid--compact .insight-card__body h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.55vw, 21px);
}

.insight-grid--compact .insight-card__body p:not(.eyebrow) {
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.48;
}

.insight-grid--compact .content-meta {
  margin-top: auto;
  font-size: 12px;
}

.insights-archive-section .pagination {
  margin-top: 30px;
}

@media (max-width: 1040px) {
  .location-support-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .location-support-strip__item:nth-child(3) {
    border-left: 0;
  }

  .location-support-strip__item:nth-child(n+3) {
    margin-top: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
  }

  .insight-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-hero__copy,
  .page-service-area .page-hero__copy {
    min-height: 0;
    padding-block: 38px;
  }

  .page-service-area .page-hero__media,
  .page-hero__media {
    min-height: 300px;
  }

  .location-support-strip {
    grid-template-columns: 1fr;
    margin-top: 22px;
    padding: 12px 18px;
  }

  .location-support-strip__item,
  .location-support-strip__item:nth-child(3) {
    padding: 16px 4px;
    border-left: 0;
  }

  .location-support-strip__item + .location-support-strip__item,
  .location-support-strip__item:nth-child(n+3) {
    margin-top: 0;
    border-top: 1px solid var(--line);
  }

  .location-card__summary {
    min-height: 0;
  }

  .location-card__actions {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .location-card__directions {
    width: 100%;
  }

  .featured-insight .insight-card,
  .insight-grid--compact {
    grid-template-columns: 1fr;
  }

  .featured-insight .insight-card > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

/* --------------------------------------------------------------------------
   Refinement batch — theme 0.8.0
   -------------------------------------------------------------------------- */

/* Breadcrumbs and heroes must remain in separate document-flow rows. */
.breadcrumbs {
  min-height: 42px;
  padding-block: 11px;
  background: #f9f7f3 !important;
  border-bottom: 1px solid rgba(8, 29, 45, .08);
}

.page-hero {
  overflow: visible;
}

@media (min-width: 861px) {
  .page-hero__grid,
  .page-service-area .page-hero__grid {
    height: auto !important;
    min-height: 430px !important;
    align-items: stretch;
  }

  .page-hero__copy,
  .page-service-area .page-hero__copy {
    height: auto !important;
    min-height: 430px !important;
    justify-content: flex-start;
    padding-top: clamp(52px, 5vw, 68px) !important;
    padding-bottom: clamp(46px, 4.5vw, 62px) !important;
  }

  .page-hero__media,
  .page-service-area .page-hero__media {
    height: auto !important;
    min-height: 430px !important;
    align-self: stretch;
  }

  .page-hero__media img,
  .page-service-area .page-hero__media img {
    position: absolute;
    inset: 0;
  }
}

/* Every child service is now shown consistently rather than split into cards and pills. */
.service-area-card-grid--all {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-area-directory__count {
  color: var(--ink);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.service-area-directory__count:hover,
.service-area-directory__count:focus-visible {
  color: var(--ink);
  border-color: rgba(240, 74, 10, .38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.service-area-more--catalogue {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
  padding-top: 22px;
}

/* Location card actions share a common baseline. */
.location-card__actions {
  grid-template-columns: minmax(0, 1fr) minmax(145px, auto);
  align-items: center;
}

.location-card__phone {
  min-height: 46px;
  align-items: center;
}

.location-card__directions {
  min-height: 46px;
  align-self: center;
}

/* Dedicated Insight article presentation. */
.single-insight__header {
  max-width: 1040px;
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: 28px;
}

.single-insight__header h1 {
  max-width: 980px;
}

.single-insight__meta {
  align-items: center;
  margin-top: 24px;
}

.single-insight__meta > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.single-insight__meta svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--orange);
}

.single-insight__media {
  position: relative;
  height: clamp(300px, 42vw, 570px);
  overflow: hidden;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.single-insight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.single-insight__body-section {
  background: #f9f7f3 !important;
}

.single-insight__layout {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
}

.single-insight__main {
  min-width: 0;
}

.single-insight .article-content {
  max-width: none;
  padding: clamp(28px, 4vw, 54px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.single-insight .article-content > :first-child {
  margin-top: 0;
}

.single-insight .article-content > :last-child {
  margin-bottom: 0;
}

.single-insight .article-content img {
  height: auto;
  border-radius: 10px;
}

.single-insight__related-section {
  margin-top: clamp(38px, 5vw, 64px);
  scroll-margin-top: 118px;
}

.single-insight__related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.single-insight__related-grid .insight-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.single-insight__related-grid .insight-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.single-insight__related-grid .content-meta {
  margin-top: auto;
}

/* Service-finder result actions and carried enquiry context. */
.enquiry-context-note {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
  padding: 16px 18px;
  color: var(--ink);
  background: var(--orange-soft);
  border: 1px solid rgba(240, 74, 10, .24);
  border-radius: 9px;
}

.enquiry-context-note strong,
.enquiry-context-note span {
  display: block;
}

.enquiry-context-note span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.enquiry-context-note .text-link {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .service-area-card-grid--all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .single-insight__layout {
    grid-template-columns: 1fr;
  }

  .single-insight__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .service-area-card-grid--all,
  .single-insight__related-grid {
    grid-template-columns: 1fr;
  }

  .service-area-more--catalogue {
    justify-content: stretch;
  }

  .service-area-more--catalogue .button {
    width: 100%;
  }

  .location-card__actions {
    grid-template-columns: 1fr;
  }

  .enquiry-context-note {
    align-items: stretch;
    flex-direction: column;
  }

  .enquiry-context-note .text-link {
    align-self: flex-start;
  }
}


/* --------------------------------------------------------------------------
   Refinement batch — theme 0.8.1
   -------------------------------------------------------------------------- */

/* Breadcrumbs remain in their own normal-flow row above page heroes. */

/* Insight articles no longer use a narrow left-hand navigation rail. */
.single-insight__layout--full {
  display: block;
  width: 100%;
}

.single-insight__layout--full .single-insight__main,
.single-insight__layout--full .article-content {
  width: 100%;
  max-width: none;
}

.single-insight__service-grid {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.single-insight__service-grid .service-area-card {
  height: 100%;
}

/* Fine alignment adjustment requested for the location telephone block. */
@media (min-width: 701px) {
  .location-card__phone {
    position: relative;
    top: 6px;
  }
}

/* Make carried finder context unmistakable at the top of the enquiry form. */
[data-enquiry-context-slot]:empty {
  display: none;
}

.enquiry-context-note {
  margin: 0 0 20px;
  padding: 17px 19px;
}

.enquiry-context-note strong {
  font-size: 17px;
}

.enquiry-context-note small {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}


/* --------------------------------------------------------------------------
   Service-area hero correction — theme 0.8.4
   -------------------------------------------------------------------------- */

/*
 * Restore the compact hero proportions while vertically centring the longer
 * problem-led service copy. Breadcrumbs remain in their own normal-flow row.
 */
@media (min-width: 861px) {
  .page-service-area .page-hero__grid {
    height: auto !important;
    min-height: 460px !important;
    align-items: stretch;
  }

  .page-service-area .page-hero__copy {
    height: auto !important;
    min-height: 460px !important;
    justify-content: center !important;
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .page-service-area .page-hero__media {
    height: auto !important;
    min-height: 460px !important;
    align-self: stretch;
  }

  .page-service-area .page-hero__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* --------------------------------------------------------------------------
   Case-study archive cards — theme 0.8.5
   -------------------------------------------------------------------------- */

/* Match the tighter Insight-card language while retaining room for outcomes. */
.case-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.case-grid--compact > [data-card] {
  min-width: 0;
}

.case-grid--compact .case-card {
  display: flex;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.case-grid--compact .case-card > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.case-grid--compact .case-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 21px 22px;
}

.case-grid--compact .case-card__body .eyebrow {
  margin-bottom: 8px;
}

.case-grid--compact .case-card__body h3 {
  margin-bottom: 9px;
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.12;
}

.case-grid--compact .case-card__body p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.case-grid--compact .case-card__metric {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 17px 0 15px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1;
}

.case-grid--compact .case-card__metric small {
  line-height: 1.3;
}

.case-grid--compact .card-link {
  margin-top: auto;
  padding-top: 4px;
}

@media (max-width: 1040px) {
  .case-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .case-grid--compact {
    grid-template-columns: 1fr;
  }

  .case-grid--compact .case-card > img {
    aspect-ratio: 16 / 8;
  }
}


/* --------------------------------------------------------------------------
   Shared editorial-card media sizing — theme 0.8.6
   -------------------------------------------------------------------------- */

/*
 * Case-study and Insight cards are reused in archives, industry pages,
 * service pages and related-content sections. Keep their imagery compact
 * everywhere so a single card cannot become a tall portrait-style widget.
 * Hero, location, industry and expert imagery retain their purpose-specific
 * treatments.
 */
.case-card > img,
.insight-card > img,
.case-grid--compact .case-card > img,
.insight-grid--compact .insight-card > img,
.single-insight__related-grid .insight-card > img {
  width: 100%;
  height: 168px !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: cover;
  object-position: center;
}

/* Featured editorial cards can remain more prominent, but no longer use an
 * image that stretches to the full height of a long body panel. */
.featured-case-panel .case-card,
.featured-insight .insight-card {
  min-height: 0;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
}

.featured-case-panel .case-card > img,
.featured-insight .insight-card > img {
  width: 100%;
  height: 238px !important;
  min-height: 238px !important;
  align-self: center;
  object-fit: cover;
}

@media (max-width: 760px) {
  .case-card > img,
  .insight-card > img,
  .case-grid--compact .case-card > img,
  .insight-grid--compact .insight-card > img,
  .single-insight__related-grid .insight-card > img {
    height: 155px !important;
  }

  .featured-case-panel .case-card,
  .featured-insight .insight-card {
    grid-template-columns: 1fr;
  }

  .featured-case-panel .case-card > img,
  .featured-insight .insight-card > img {
    height: 185px !important;
    min-height: 0 !important;
  }
}

/* --------------------------------------------------------------------------
   Theme 0.9.0: navigation, expandable services, Industry journeys and search
   -------------------------------------------------------------------------- */
.primary-nav > a.is-active::after,
.nav-mega.is-active > .nav-mega__trigger::after {
  width: 100%;
  left: 0;
}

.service-area-card-wrap {
  min-width: 0;
}
.service-area-card-wrap > .service-area-card {
  height: 100%;
}
.service-area-directory__count:is(button) {
  appearance: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.service-area-directory__count:is(button):hover,
.service-area-directory__count:is(button):focus-visible {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8,29,45,.08);
}
.service-area-directory__count.is-static {
  cursor: default;
}
.service-area-more .button svg {
  transition: transform .2s ease;
}
.service-area-more .button.is-expanded svg {
  transform: rotate(180deg);
}

.industry-risks__intro {
  max-width: 780px;
  margin-bottom: 30px;
}
.industry-risks__intro .eyebrow {
  margin-bottom: 11px;
}
.industry-risks__intro h2 {
  max-width: 760px;
  margin-bottom: 16px;
}
.industry-risks__intro .simple-page-content {
  max-width: 760px;
}
.industry-risks__intro .simple-page-content > :first-child {
  margin-top: 0;
}
.industry-risks__intro .simple-page-content > :last-child {
  margin-bottom: 0;
}
.industry-risk-grid .feature-card {
  min-height: 250px;
}
.industry-service-directory {
  padding: clamp(24px, 3vw, 38px);
}
.industry-service-directory .service-area-directory__header {
  margin-bottom: 26px;
}
.industry-service-directory .service-area-directory__header > div:first-child {
  max-width: 760px;
}
.industry-service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.service-area-card--industry {
  min-height: 310px;
}
.service-area-card__area {
  display: block;
  min-height: 2.5em;
  margin-bottom: 16px;
  color: #9a3c16;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
}
.service-area-card--industry .service-area-card__icon {
  margin-bottom: 18px;
}
.industry-related-content .section-heading {
  max-width: 780px;
}
.industry-related-content__groups {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
}
.industry-related-content__group-header {
  margin-bottom: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}
.industry-related-content__group-header h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
}

.search-form {
  position: relative;
}
.live-search-results {
  position: relative;
  z-index: 3;
  margin-top: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 54px rgba(8,29,45,.16);
}
.live-search-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 14px;
}
.live-search-card {
  --live-search-accent: rgba(84,101,113,.24);
  --live-search-label: #63727b;
  display: grid;
  grid-template-columns: 108px minmax(0,1fr);
  min-height: 132px;
  overflow: hidden;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 2px solid var(--live-search-accent);
  border-radius: 10px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.live-search-card--service {
  --live-search-accent: rgba(240,74,10,.42);
  --live-search-label: #c64a18;
}
.live-search-card--industry {
  --live-search-accent: rgba(66,112,119,.34);
  --live-search-label: #55777c;
}
.live-search-card--case-study {
  --live-search-accent: rgba(79,115,86,.32);
  --live-search-label: #5d775f;
}
.live-search-card--insight {
  --live-search-accent: rgba(101,84,128,.30);
  --live-search-label: #6c6080;
}
.live-search-card--expert {
  --live-search-accent: rgba(120,88,71,.29);
  --live-search-label: #775f54;
}
.live-search-card--person {
  --live-search-accent: rgba(68,107,112,.31);
  --live-search-label: #4f7377;
}
.live-search-card--location {
  --live-search-accent: rgba(70,104,138,.30);
  --live-search-label: #5b748b;
}
.live-search-card--accreditation {
  --live-search-accent: rgba(151,117,50,.31);
  --live-search-label: #866f42;
}
.live-search-card--page {
  --live-search-accent: rgba(84,101,113,.24);
  --live-search-label: #63727b;
}
.live-search-card:hover,
.live-search-card:focus-visible {
  color: var(--ink);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(8,29,45,.09);
}
.live-search-card__image {
  min-height: 100%;
  background: var(--cream-2);
}
.live-search-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.live-search-card__image--empty {
  background: linear-gradient(145deg, rgba(240,74,10,.12), rgba(8,29,45,.08));
}
.live-search-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px;
}
.live-search-card__body small {
  margin-bottom: 5px;
  color: var(--live-search-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.live-search-card__body strong {
  margin-bottom: 5px;
  line-height: 1.2;
}
.live-search-card__body > span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.live-search-card__body em {
  margin-top: auto;
  padding-top: 8px;
  color: var(--orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}
.live-search-all {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  padding-top: 13px;
  color: var(--orange);
  border-top: 1px solid var(--line);
  font-weight: 750;
}
.live-search-loading,
.live-search-empty {
  padding: 14px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1180px) {
  .live-search-grid,
  .industry-service-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 760px) {
  .industry-risks__intro {
    margin-bottom: 24px;
  }
  .industry-service-grid,
  .live-search-grid {
    grid-template-columns: 1fr;
  }
  .service-area-card--industry {
    min-height: 0;
  }
  .service-area-card__area {
    min-height: 0;
  }
  .live-search-card {
    grid-template-columns: 72px minmax(0,1fr);
  }
  .service-area-directory__count {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Theme 0.9.4: editorial archive search and service spotlight correction
   -------------------------------------------------------------------------- */

/* Give the service-area spotlight facts enough room to wrap without clipping. */
@media (min-width: 1181px) {
  .service-area-spotlight {
    grid-template-columns: minmax(0, .92fr) minmax(300px, .66fr) minmax(270px, .46fr);
    gap: 24px;
  }
}

.service-area-spotlight > * {
  min-width: 0;
}

.service-area-spotlight__facts {
  min-width: 0;
  padding-inline: clamp(22px, 2.2vw, 34px);
}

.service-area-spotlight__facts span {
  grid-template-columns: 30px minmax(0, 1fr);
}

.service-area-spotlight__facts strong {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.35;
}

.industry-related-content__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}

.content-archive-section {
  background: #f9f7f3 !important;
}

.content-archive-browser {
  display: grid;
  grid-template-columns: minmax(245px, 280px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.archive-filter-toggle {
  display: none;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.archive-filter-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
  transition: transform .2s ease;
}

.archive-filter-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.archive-filter-panel {
  position: sticky;
  top: 106px;
  min-width: 0;
}

.archive-filter-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.archive-filter-form__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.archive-filter-form__heading .eyebrow {
  margin-bottom: 6px;
}

.archive-filter-form__heading h2 {
  margin: 0;
  font-size: 22px;
}

.archive-filter-form__heading .text-link {
  flex: 0 0 auto;
  margin-top: 4px;
}

.archive-filter-field {
  display: grid;
  gap: 8px;
}

.archive-filter-field > span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.archive-filter-field input,
.archive-filter-field select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #b8c0c6;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}

.archive-filter-field input:focus,
.archive-filter-field select:focus {
  outline: 3px solid rgba(240, 74, 10, .18);
  border-color: var(--orange);
}

.archive-filter-submit {
  width: 100%;
  justify-content: center;
  margin-top: 2px;
}

.content-archive-results {
  min-width: 0;
}

.content-archive-results__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.content-archive-results__header h2 {
  margin: 0;
}

.content-archive-results__count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.content-archive-grid {
  transition: opacity .18s ease;
}

[data-content-archive].is-loading .content-archive-grid,
[data-content-archive].is-loading .archive-ajax-pagination {
  opacity: .42;
  pointer-events: none;
}

.archive-loading-status {
  min-height: 20px;
  margin: -12px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.archive-empty-state {
  grid-column: 1 / -1;
  padding: clamp(34px, 5vw, 58px);
  text-align: center;
  background: #fff;
  border: 1px dashed #c9c2bb;
  border-radius: 13px;
}

.archive-empty-state h3 {
  margin-bottom: 8px;
}

.archive-empty-state p {
  margin: 0;
  color: var(--muted);
}

.archive-ajax-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.archive-page-button {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.archive-page-button:hover,
.archive-page-button:focus-visible,
.archive-page-button.is-current {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.archive-page-button:disabled {
  opacity: .4;
  cursor: default;
}

.archive-page-button:disabled:hover {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.archive-page-button--nav {
  min-width: 82px;
}

.archive-page-ellipsis {
  min-width: 24px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 1240px) {
  .content-archive-grid.case-grid--compact,
  .content-archive-grid.insight-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .content-archive-browser {
    grid-template-columns: 1fr;
  }

  .archive-filter-panel {
    position: static;
  }

  .archive-filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-filter-form__heading,
  .archive-filter-submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .industry-related-content__more {
    justify-content: stretch;
  }

  .industry-related-content__more .button {
    width: 100%;
  }

  .archive-filter-toggle {
    display: flex;
  }

  .archive-filter-panel {
    display: none;
  }

  .archive-filter-panel.is-open {
    display: block;
  }

  .archive-filter-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .content-archive-results__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .content-archive-results__count {
    flex-basis: auto;
  }

  .content-archive-grid.case-grid--compact,
  .content-archive-grid.insight-grid--compact {
    grid-template-columns: 1fr;
  }

  .archive-page-button--nav {
    min-width: 72px;
  }
}

/* --------------------------------------------------------------------------
   Editorial archive reliability and alignment — theme 0.9.5
   -------------------------------------------------------------------------- */

/* Preserve the site-shell centring. An older featured-card margin shorthand
 * reset the horizontal auto margins and pulled the card to the viewport edge. */
.case-featured-section .featured-case-panel,
.insights-featured-section .featured-insight {
  margin: 0 auto;
}

/* Insight cards are whole-card links. Keep their metadata and visible CTA on
 * a shared baseline even when titles and summaries vary in length. */
.insight-grid > *,
.content-archive-grid > * {
  min-width: 0;
}

.insight-grid .insight-card {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-direction: column;
}

.insight-grid .insight-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.insight-grid .insight-card__body > p:not(.eyebrow) {
  flex: 1;
}

.insight-grid .insight-card__body .content-meta {
  margin-top: auto;
}

.insight-grid .insight-card__body .card-link {
  margin-top: 14px;
}

.content-archive-grid > div {
  display: flex;
}

.content-archive-grid .case-card,
.content-archive-grid .insight-card {
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------------------
   Editorial detail-page consistency — theme 0.9.6
   -------------------------------------------------------------------------- */

/* Keep outcome metrics and their actions on a shared baseline across archive
 * rows, regardless of title or summary length. */
.case-grid--compact .case-card__metric {
  min-height: 66px;
  align-items: center;
  margin: auto 0 15px;
}

.case-grid--compact .card-link {
  margin-top: 0;
}

/* Case studies now adapt cleanly to both rich and sparse records. */
.case-study-hero .case-client-label {
  display: inline-flex;
  align-self: flex-start;
  margin: 2px 0 24px;
  padding: 7px 10px;
  color: var(--muted);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.case-study-story {
  background: var(--cream);
}

.case-study-story__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.case-study-story__grid.is-single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.case-study-story__panel {
  min-width: 0;
  padding: clamp(30px, 4vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.case-study-story__panel--challenge {
  border-top: 4px solid var(--orange);
}

.case-study-story__panel h2,
.case-study-recommendations h2,
.case-study-expertise h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.4vw, 43px);
}

.case-study-story__copy p,
.case-study-editorial p,
.case-study-editorial li {
  color: #344956;
  font-size: 17px;
  line-height: 1.72;
}

.case-study-story__copy > :last-child,
.case-study-editorial > :last-child {
  margin-bottom: 0;
}

.case-study-story__panel--approach .numbered-list {
  margin-top: 24px;
}

.case-study-story__panel--approach .numbered-list li {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.case-study-story__panel--approach .numbered-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-study-story__panel--approach .numbered-list strong,
.case-study-story__panel--approach .numbered-list span {
  display: block;
}

.case-study-story__panel--approach .numbered-list span {
  margin-top: 5px;
  color: var(--muted);
}

.case-study-editorial {
  grid-column: 1 / -1;
  width: min(100%, 900px);
  margin-inline: auto;
}

.case-study-outcomes .section-heading {
  margin-bottom: 30px;
}

.case-study-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  width: min(100%, 980px);
  margin-inline: auto;
}

.case-study-outcomes__grid--count-1 {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
}

.case-study-outcomes__grid--count-2 {
  width: min(100%, 760px);
}

.case-study-outcome-card {
  display: flex;
  min-height: 168px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 28px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.case-study-outcome-card strong {
  color: var(--orange);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.case-study-outcome-card span {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.case-study-outcome-card small {
  margin-top: 14px;
  padding: 5px 8px;
  color: #7b5b4d;
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.case-study-quote-section {
  background: var(--cream);
}

.case-study-followup__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
}

.case-study-followup__grid.is-single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.case-study-recommendations .check-list {
  gap: 14px;
}

.case-study-recommendations .check-list li {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.case-study-recommendations .check-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.case-study-expertise {
  min-width: 0;
}

.case-study-expertise .section-heading {
  margin-bottom: 24px;
}

.case-study-expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.case-study-expertise__grid--count-1 {
  grid-template-columns: minmax(260px, 380px);
}

.case-study-expertise__grid .service-area-card {
  min-height: 280px;
}

/* The full-width Insight layout previously overrode .site-shell with
 * width:100%, making article sections span the viewport. Preserve the shell,
 * then use a comfortable reading measure inside it. */
.single-insight__layout--full {
  display: block;
  width: min(calc(100% - (var(--shell-gap) * 2)), var(--shell-width));
  margin-inline: auto;
}

.single-insight__article-wrap {
  width: min(100%, 920px);
  margin-inline: auto;
}

.single-insight .article-content {
  width: 100%;
  max-width: none;
}

.single-insight .article-content p,
.single-insight .article-content li {
  font-size: 17px;
  line-height: 1.75;
}

.single-insight .article-content h2 {
  margin-top: 46px;
  font-size: clamp(28px, 3vw, 38px);
}

.single-insight__media {
  max-width: 1040px;
  height: clamp(280px, 36vw, 470px);
}

.single-insight__service-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 360px));
  justify-content: start;
}

.single-insight__related-section .section-heading {
  margin-bottom: 26px;
}

@media (max-width: 900px) {
  .case-study-story__grid,
  .case-study-followup__grid {
    grid-template-columns: 1fr;
  }

  .case-study-expertise__grid--count-1 {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .case-grid--compact .case-card__metric {
    min-height: 0;
  }

  .case-study-story__panel,
  .case-study-outcome-card {
    padding: 24px;
  }

  .case-study-outcomes__grid--count-1,
  .case-study-outcomes__grid--count-2 {
    grid-template-columns: 1fr;
  }

  .single-insight__layout--full {
    width: min(calc(100% - 32px), var(--shell-width));
  }

  .single-insight__service-grid {
    grid-template-columns: 1fr;
  }
}

/* Preserve bottom-aligned actions for future Case Studies that do not yet
 * have an approved outcome metric. */
.case-grid--compact .case-card__body:not(:has(.case-card__metric)) .card-link {
  margin-top: auto;
  padding-top: 18px;
}

/* --------------------------------------------------------------------------
   Case Study showcase — theme 0.10.0
   Reintroduces the stronger information hierarchy from the approved static
   case-study concept while keeping every section data-driven and optional.
   -------------------------------------------------------------------------- */

.section-pad-xs {
  padding-block: clamp(18px, 2.4vw, 28px);
}

.case-showcase__hero .page-hero__copy {
  justify-content: center !important;
}

.case-showcase__hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.case-showcase__hero-labels > span[aria-hidden="true"] {
  color: rgba(240, 74, 10, .45);
}

.case-showcase__hero .case-client-label {
  margin-bottom: 10px;
}

.case-showcase__facts-wrap {
  position: relative;
  z-index: 5;
  margin-top: -24px;
  padding-bottom: clamp(26px, 3vw, 40px);
}

.case-showcase__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.case-showcase__facts--count-1 { grid-template-columns: minmax(0, 1fr); }
.case-showcase__facts--count-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.case-showcase__facts--count-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.case-showcase__fact {
  display: grid;
  min-width: 0;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.case-showcase__fact:last-child {
  border-right: 0;
}

.case-showcase__fact > svg {
  width: 31px;
  height: 31px;
  color: var(--orange);
  stroke-width: 1.6;
}

.case-showcase__fact strong,
.case-showcase__fact span {
  display: block;
}

.case-showcase__fact strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.case-showcase__fact span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.case-showcase__split {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: stretch;
}

.case-showcase__split.is-single {
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.case-showcase__split--challenge {
  align-items: center;
}

.case-showcase__narrative,
.case-showcase__split--approach > div:first-child {
  min-width: 0;
}

.case-showcase__narrative h2,
.case-showcase__split--approach h2,
.case-showcase__change-section h2,
.case-showcase__related-heading h2,
.case-showcase__section-title-row h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.case-showcase__rich-text p {
  color: #344956;
  font-size: 17px;
  line-height: 1.72;
}

.case-showcase__rich-text > :last-child {
  margin-bottom: 0;
}

.case-showcase__callout {
  display: grid;
  min-height: 250px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 56px);
  color: #fff;
  background: linear-gradient(135deg, #08263a, #0c344c);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.case-showcase__callout > svg {
  width: 58px;
  height: 58px;
  color: var(--orange);
}

.case-showcase__callout h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.16;
}

.case-showcase__approach-section {
  background: var(--cream);
}

.case-showcase__split--approach {
  grid-template-columns: minmax(0, .74fr) minmax(0, 1.26fr);
  align-items: stretch;
}

.case-showcase__steps {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: case-step;
  list-style: none;
}

.case-showcase__steps li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: case-step;
}

.case-showcase__steps li:last-child {
  border-bottom: 0;
}

.case-showcase__steps li::before {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  content: counter(case-step);
  font-size: 13px;
  font-weight: 800;
}

.case-showcase__steps strong,
.case-showcase__steps span {
  display: block;
}

.case-showcase__steps strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.case-showcase__steps span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.52;
}

.case-showcase__supporting-image {
  min-height: 430px;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.case-showcase__supporting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-showcase__section-title-row {
  margin-bottom: 18px;
}

.case-showcase__section-title-row h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
}

.case-showcase__deliverables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.case-showcase__deliverable {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 13px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.case-showcase__deliverable:last-child {
  border-right: 0;
}

.case-showcase__deliverable > svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.case-showcase__deliverable strong,
.case-showcase__deliverable span {
  display: block;
}

.case-showcase__deliverable strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

.case-showcase__deliverable span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.case-showcase__outcomes-section {
  padding-top: 0;
  background: var(--cream);
}

.case-showcase__outcomes-panel {
  display: grid;
  gap: 30px;
  padding: clamp(34px, 4vw, 48px);
  color: #fff;
  background: linear-gradient(135deg, #08263a, #0c344c);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.case-showcase__outcomes-heading {
  text-align: center;
}

.case-showcase__outcomes-heading h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: clamp(30px, 3.8vw, 44px);
}

.case-showcase__outcomes-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
}

.case-showcase__outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.case-showcase__outcomes-grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.case-showcase__outcomes-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-showcase__outcomes-grid--count-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-showcase__outcome {
  display: flex;
  min-width: 0;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.case-showcase__outcome:last-child {
  border-right: 0;
}

.case-showcase__outcome strong,
.case-showcase__outcome span,
.case-showcase__outcome small {
  display: block;
}

.case-showcase__outcome strong {
  color: var(--orange);
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1;
}

.case-showcase__outcome span {
  max-width: 220px;
  margin-top: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.case-showcase__outcome small {
  margin-top: 9px;
  color: rgba(255, 255, 255, .55);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-showcase__quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.case-showcase__quote-card.is-text-only {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.case-showcase__quote-copy {
  position: relative;
  display: flex;
  min-height: 280px;
  justify-content: center;
  flex-direction: column;
  padding: clamp(36px, 5vw, 62px) clamp(34px, 6vw, 76px);
}

.case-showcase__quote-copy > svg {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--orange);
}

.case-showcase__quote-copy blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(25px, 3.2vw, 38px);
  font-weight: 750;
  line-height: 1.2;
}

.case-showcase__quote-copy cite {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}

.case-showcase__quote-image {
  min-height: 280px;
  overflow: hidden;
}

.case-showcase__quote-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-showcase__change-section {
  background: var(--cream);
}

.case-showcase__change-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 22px;
  align-items: stretch;
}

.case-showcase__change-grid.is-single {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
}

.case-showcase__change-grid > .content-panel {
  height: 100%;
  padding: clamp(28px, 4vw, 42px);
}

.case-showcase__before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.case-showcase__before-after-grid > div + div {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.case-showcase__before-after ul,
.case-study-recommendations ul {
  margin: 0;
  padding-left: 20px;
}

.case-showcase__before-after li,
.case-study-recommendations li {
  margin-bottom: 10px;
  color: #344956;
  font-size: 14px;
  line-height: 1.5;
}

.case-showcase__before-after li:last-child,
.case-study-recommendations li:last-child {
  margin-bottom: 0;
}

.case-showcase__related-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: start;
}

.case-showcase__related-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

.case-showcase__related-heading {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
}

.case-showcase__related-heading h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
}

.case-showcase__related-heading .section-link {
  flex: 0 0 auto;
}

.case-showcase__service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 300px));
  gap: 16px;
  justify-content: start;
}

.case-showcase__service-grid .service-area-card {
  min-height: 260px;
  padding: 24px;
}

.case-showcase__service-grid .service-area-card__icon {
  width: 36px;
  height: 36px;
}

.case-showcase__service-grid .service-area-card h3 {
  font-size: 20px;
}

.case-showcase__service-grid .service-area-card p {
  font-size: 13px;
}

.case-showcase__related-cases {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-showcase__editorial-section .case-study-editorial {
  width: min(100%, 920px);
  margin-inline: auto;
}

@media (min-width: 861px) {
  .case-showcase__hero .page-hero__grid,
  .case-showcase__hero .page-hero__copy,
  .case-showcase__hero .page-hero__media {
    min-height: 470px !important;
  }

  .case-showcase__hero .page-hero__copy {
    padding-top: 48px !important;
    padding-bottom: 62px !important;
  }
}

@media (max-width: 1100px) {
  .case-showcase__facts,
  .case-showcase__facts--count-3,
  .case-showcase__facts--count-4,
  .case-showcase__deliverables {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-showcase__fact:nth-child(2n),
  .case-showcase__deliverable:nth-child(2n) {
    border-right: 0;
  }

  .case-showcase__fact:nth-child(n+3),
  .case-showcase__deliverable:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .case-showcase__related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .case-showcase__facts-wrap {
    margin-top: 0;
    padding-top: 20px;
  }

  .case-showcase__split,
  .case-showcase__split--approach,
  .case-showcase__quote-card,
  .case-showcase__change-grid {
    grid-template-columns: 1fr;
  }

  .case-showcase__supporting-image,
  .case-showcase__quote-image {
    min-height: 330px;
  }

  .case-showcase__outcomes-grid,
  .case-showcase__outcomes-grid--count-4 {
    grid-template-columns: 1fr;
  }

  .case-showcase__outcome {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
  }

  .case-showcase__outcome:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .case-showcase__facts,
  .case-showcase__facts--count-2,
  .case-showcase__facts--count-3,
  .case-showcase__deliverables,
  .case-showcase__related-cases,
  .case-showcase__before-after-grid {
    grid-template-columns: 1fr;
  }

  .case-showcase__fact,
  .case-showcase__deliverable {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .case-showcase__fact:first-child,
  .case-showcase__deliverable:first-child {
    border-top: 0;
  }

  .case-showcase__callout {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .case-showcase__callout > svg {
    width: 46px;
    height: 46px;
  }

  .case-showcase__before-after-grid > div + div {
    padding-top: 24px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .case-showcase__related-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-showcase__service-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Flexible Insight articles and Industries challenge-card correction — 0.11.0
   -------------------------------------------------------------------------- */

/* Cards on the navy Industries band inherited white text from their parent,
 * which made headings disappear on white cards. Keep the content dark and
 * align all four cards from the same starting point. */
.page-template-page-industries .section-navy .feature-card {
  display: grid;
  min-height: 290px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 2.3vw, 34px);
  color: var(--ink);
  text-align: left;
}

.page-template-page-industries .section-navy .feature-card__icon {
  margin: 0;
}

.page-template-page-industries .section-navy .feature-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 29px);
  line-height: 1.08;
  letter-spacing: -.025em;
}

.page-template-page-industries .section-navy .feature-card p {
  align-self: start;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

/* The Insight template supplies a stable editorial shell while the variable
 * article body remains editable with normal WordPress blocks and patterns. */
.single-insight__header {
  max-width: 1180px;
  padding-top: clamp(42px, 5vw, 72px);
}

.single-insight__header h1 {
  max-width: 1120px;
  font-size: clamp(42px, 5.2vw, 68px);
}

.single-insight__header .article-header__lead {
  max-width: 980px;
  font-size: clamp(17px, 1.45vw, 20px);
}

.single-insight__media {
  max-width: 1180px;
  height: clamp(330px, 41vw, 560px);
}

.single-insight__editorial-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.single-insight__editorial-layout--no-toc {
  grid-template-columns: minmax(0, 1fr);
}

.single-insight__toc {
  position: sticky;
  top: 112px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.single-insight__toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 15px;
}

.single-insight__toc nav {
  display: grid;
  gap: 2px;
}

.single-insight__toc a {
  padding: 7px 0;
  color: #425663;
  font-size: 13px;
  line-height: 1.35;
}

.single-insight__toc a:hover,
.single-insight__toc a:focus-visible {
  color: var(--orange);
}

.single-insight__main {
  min-width: 0;
}

.single-insight .single-insight__article {
  width: 100%;
  max-width: none;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.single-insight__article > :first-child {
  margin-top: 0;
}

.single-insight__article > :last-child {
  margin-bottom: 0;
}

.single-insight__article h2 {
  scroll-margin-top: 118px;
  margin: clamp(38px, 5vw, 58px) 0 13px;
  color: var(--ink);
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.single-insight__article h3 {
  color: var(--ink);
}

.single-insight__article > p,
.single-insight__article > ul,
.single-insight__article > ol {
  max-width: 900px;
}

.single-insight__article p,
.single-insight__article li {
  color: #344956;
  font-size: 16px;
  line-height: 1.7;
}

.single-insight__article a:not(.button) {
  color: var(--orange);
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.insight-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 clamp(30px, 4vw, 46px);
  padding: 18px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.insight-glance__item {
  position: relative;
  min-width: 0;
  margin: 0 !important;
  padding: 8px 22px 8px 45px;
  color: #344956;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.insight-glance__item::before {
  content: "✓";
  position: absolute;
  top: 8px;
  left: 15px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.insight-glance__item + .insight-glance__item {
  border-left: 1px solid var(--line);
}

.single-insight__article .wp-block-table {
  width: 100%;
  margin: 22px 0 12px;
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.single-insight__article .wp-block-table table {
  width: 100%;
  min-width: 650px;
  margin: 0;
  border-collapse: collapse;
}

.single-insight__article .wp-block-table th,
.single-insight__article .wp-block-table td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.single-insight__article .wp-block-table th {
  color: var(--ink);
  background: #f1eeeb;
  font-weight: 800;
}

.single-insight__article .wp-block-table figcaption {
  padding: 10px 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
}

.insight-audience {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 34px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.insight-audience__item {
  position: relative;
  min-width: 0;
  padding: 15px 18px 15px 44px;
}

.insight-audience__item::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 17px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}

.insight-audience__item + .insight-audience__item {
  border-left: 1px solid var(--line);
}

.insight-audience__item h3 {
  margin: 0 0 4px !important;
  font-size: 15px !important;
  line-height: 1.25;
}

.insight-audience__item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.insight-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 32px;
  padding: 22px 16px;
  counter-reset: insight-step;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.insight-step {
  position: relative;
  min-width: 0;
  padding: 40px 20px 4px;
  counter-increment: insight-step;
  text-align: center;
}

.insight-step::before {
  content: counter(insight-step);
  position: absolute;
  top: 0;
  left: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  transform: translateX(-50%);
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.insight-step + .insight-step {
  border-left: 1px solid var(--line);
}

.insight-step h3 {
  margin: 0 0 7px !important;
  font-size: 15px !important;
  line-height: 1.25;
}

.insight-step p {
  margin: 0;
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.insight-callout {
  position: relative;
  margin: 28px 0 34px;
  padding: 25px 28px 25px 82px;
  color: #fff;
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.insight-callout::before {
  content: "i";
  position: absolute;
  top: 25px;
  left: 28px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--orange);
  border: 2px solid var(--orange);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 800;
}

.insight-callout h3 {
  margin: 0 0 5px !important;
  color: #fff;
  font-size: 22px !important;
}

.insight-callout p {
  margin: 0;
  color: rgba(255,255,255,.8) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.insight-evidence {
  margin: 30px 0 36px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.insight-evidence .eyebrow {
  margin-bottom: 9px;
}

.insight-evidence h3 {
  margin: 0 0 10px !important;
  font-size: clamp(22px, 2.2vw, 30px) !important;
}

.insight-evidence p:last-child {
  margin-bottom: 0;
}

.single-insight__support,
.single-insight__related-section {
  margin-top: clamp(42px, 6vw, 72px);
}

.insight-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.insight-support-card {
  display: grid;
  min-height: 230px;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.18fr) minmax(150px, .82fr);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease;
}

.insight-support-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.insight-support-card__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
}

.insight-support-card__copy h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.12;
}

.insight-support-card__copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.insight-support-card__copy .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.insight-support-card__image {
  min-width: 0;
}

.insight-support-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-insight__download {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 20px 22px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.single-insight__download > svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.single-insight__download span,
.single-insight__download small {
  display: block;
}

.single-insight__download small {
  margin-top: 4px;
  color: var(--muted);
}

.single-insight__download b {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
}

.single-insight__download b svg {
  width: 17px;
  height: 17px;
}

.single-insight__credits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
}

.single-insight__credits > div {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 17px 18px;
}

.single-insight__credits > div + div {
  border-left: 1px solid var(--line);
}

.single-insight__credits svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.single-insight__credits span,
.single-insight__credits small,
.single-insight__credits strong {
  display: block;
}

.single-insight__credits small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 11px;
}

.single-insight__credits strong {
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.single-insight__related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.single-insight__related-heading h2 {
  margin: 0;
}

.single-insight__related-heading .section-link {
  flex: 0 0 auto;
}

@media (max-width: 1050px) {
  .single-insight__editorial-layout {
    grid-template-columns: 165px minmax(0, 1fr);
    gap: 28px;
  }

  .insight-audience,
  .insight-steps,
  .single-insight__credits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-audience__item:nth-child(3),
  .insight-step:nth-child(3),
  .single-insight__credits > div:nth-child(3) {
    border-left: 0;
  }

  .insight-audience__item:nth-child(n+3),
  .insight-step:nth-child(n+3),
  .single-insight__credits > div:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 820px) {
  .single-insight__editorial-layout {
    grid-template-columns: 1fr;
  }

  .single-insight__toc {
    position: static;
  }

  .single-insight__toc nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 18px;
  }

  .insight-glance,
  .insight-support-grid {
    grid-template-columns: 1fr;
  }

  .insight-glance__item + .insight-glance__item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .page-template-page-industries .section-navy .feature-card {
    min-height: 0;
  }

  .single-insight__header h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .single-insight__media {
    height: 280px;
    border-radius: 10px;
  }

  .single-insight__toc nav,
  .insight-audience,
  .insight-steps,
  .single-insight__credits {
    grid-template-columns: 1fr;
  }

  .insight-audience__item + .insight-audience__item,
  .insight-step + .insight-step,
  .single-insight__credits > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .insight-step {
    padding-inline: 10px;
  }

  .insight-callout {
    padding: 72px 22px 24px;
  }

  .insight-callout::before {
    top: 22px;
    left: 22px;
  }

  .insight-support-card {
    grid-template-columns: 1fr;
  }

  .insight-support-card__image {
    order: -1;
    height: 170px;
  }

  .single-insight__download {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .single-insight__download b {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .single-insight__related-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* WordPress constrained-layout utilities should not collapse the custom
 * editorial pattern grids or centre their individual cells. */
.insight-glance > *,
.insight-audience > *,
.insight-steps > *,
.insight-audience__item > *,
.insight-step > *,
.insight-callout > *,
.insight-evidence > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* --------------------------------------------------------------------------
   Handover content structures and directory refinements — 0.12.0
   -------------------------------------------------------------------------- */

/* Use the richer article-information strip once, directly beneath the Insight
 * introduction, rather than repeating it at the end of the article. */
.single-insight__credits--header {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 26px;
  margin-bottom: 0;
  overflow: hidden;
}

.single-insight__credits--header > div {
  min-height: 74px;
}

.single-insight__credits--header > div:first-child {
  border-left: 0;
}

/* Accreditation logos are uploaded per credential. The icon remains the
 * fallback for records that do not yet have an approved visual asset. */
.credential-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.credential-card__logo {
  display: flex;
  width: 100%;
  height: 76px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}

.credential-card__logo img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.credential-card p {
  margin-bottom: 0;
}

.credential-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.credential-card__certificate,
.credential-card__link {
  width: fit-content;
}

/* Careers and live vacancies. */
.careers-vacancies__heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.vacancy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.vacancy-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.vacancy-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px 28px 22px;
}

.vacancy-card h3 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.08;
}

.vacancy-card h3 a {
  color: var(--ink);
}

.vacancy-card h3 a:hover,
.vacancy-card h3 a:focus-visible {
  color: var(--orange);
}

.vacancy-card__summary {
  margin: 0 0 22px;
  color: var(--muted);
}

.vacancy-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 18px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.vacancy-card__facts span {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  gap: 8px;
  color: #425663;
  font-size: 13px;
  line-height: 1.4;
}

.vacancy-card__facts svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--orange);
}

.vacancy-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 18px 28px 22px;
  background: rgba(249, 247, 243, .72);
  border-top: 1px solid var(--line);
}

.vacancy-card__actions .button {
  margin-left: auto;
}

.careers-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(28px, 4vw, 46px);
}

.careers-empty h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.6vw, 38px);
}

.careers-empty p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.careers-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.careers-enquiry-panel {
  position: sticky;
  top: 112px;
}

.single-vacancy__hero {
  background: var(--cream);
}

.single-vacancy__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .42fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.single-vacancy__hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.4vw, 72px);
}

.vacancy-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 30px;
}

.vacancy-detail-facts span {
  display: grid;
  min-width: 0;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 2px 10px;
  color: #425663;
  font-size: 14px;
}

.vacancy-detail-facts svg {
  width: 19px;
  height: 19px;
  grid-row: 1 / span 2;
  color: var(--orange);
}

.vacancy-detail-facts b {
  display: block;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .055em;
}

.single-vacancy__action {
  display: grid;
  gap: 15px;
}

.single-vacancy__action h2,
.single-vacancy__action p {
  margin: 0;
}

.single-vacancy__action .button {
  justify-content: space-between;
}

.single-vacancy__content {
  max-width: 960px;
}

.single-vacancy__content .article-content {
  font-size: 17px;
  line-height: 1.75;
}

/* Expert directory filtering. */
.expert-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
}

.expert-filter-bar button {
  min-height: 42px;
  padding: 9px 16px;
  color: #425663;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.expert-filter-bar button:hover,
.expert-filter-bar button:focus-visible,
.expert-filter-bar button.is-active {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.expert-directory__summary {
  min-height: 28px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.expert-directory__toggle {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.expert-directory__toggle [hidden] {
  display: none;
}

.expert-card__department {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .065em;
}

/* Stronger protection against inherited light text on the Industries navy
 * challenge band, including older cached component rules. */
.page-template-page-industries .section-navy .feature-card {
  min-width: 0;
  overflow: visible;
}

.page-template-page-industries .section-navy .feature-card h3,
.page-template-page-industries .section-navy .feature-card p {
  position: static;
  width: auto;
  max-width: none;
  overflow: visible;
  color: var(--ink) !important;
  background: transparent !important;
  text-align: left;
  white-space: normal;
  overflow-wrap: break-word;
}

.page-template-page-industries .section-navy .feature-card p {
  color: var(--muted) !important;
}

@media (max-width: 980px) {
  .vacancy-grid,
  .careers-content-grid,
  .single-vacancy__hero-grid {
    grid-template-columns: 1fr;
  }

  .careers-enquiry-panel {
    position: static;
  }

  .single-vacancy__action {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .vacancy-grid,
  .vacancy-card__facts,
  .vacancy-detail-facts {
    grid-template-columns: 1fr;
  }

  .vacancy-card__actions,
  .careers-empty {
    align-items: stretch;
    flex-direction: column;
  }

  .vacancy-card__actions .button {
    width: 100%;
    margin-left: 0;
  }

  .single-insight__credits--header {
    grid-template-columns: 1fr;
  }

  .single-insight__credits--header > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

.expert-card--no-image {
  grid-template-columns: 1fr;
}

/* Editable-copy settings: preserve existing layouts while allowing linked cards. */
a.feature-card--link {
  color: inherit;
  text-decoration: none;
}

a.feature-card--link:hover,
a.feature-card--link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.about-proof-grid .feature-card .muted {
  margin-top: 8px;
  font-size: .92rem;
}

.timeline__icon {
  width: 26px;
  height: 26px;
  margin: 0 auto 8px;
  color: var(--orange);
}

/* --------------------------------------------------------------------------
   Reusable Gutenberg content patterns — 0.14.0
   -------------------------------------------------------------------------- */

/* WordPress flow/constrained layouts add a top block gap to every item after
 * the first. Pattern rows are CSS grids, so remove that generated margin to
 * keep every card aligned from the same top edge. This also repairs existing
 * Audience and Four action steps patterns already inserted in Insights. */
.iom-pattern-grid > *,
.insight-audience > *,
.insight-steps > * {
  max-width: none !important;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.iom-pattern {
  width: 100%;
  margin: clamp(26px, 4vw, 42px) 0;
  color: var(--ink);
}

.iom-pattern > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.iom-pattern h2,
.iom-pattern h3 {
  color: var(--ink);
}

.iom-pattern h2 {
  margin: 0 0 14px !important;
  font-size: clamp(28px, 3.4vw, 42px) !important;
  line-height: 1.08;
}

.iom-pattern h3 {
  margin: 0 0 9px !important;
  font-size: clamp(19px, 2vw, 24px) !important;
  line-height: 1.15;
}

.iom-pattern p,
.iom-pattern li {
  color: #425663;
  line-height: 1.62;
}

.iom-pattern .eyebrow {
  margin: 0 0 10px !important;
  color: var(--orange) !important;
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.3 !important;
  text-transform: uppercase;
}

.iom-pattern a:not(.wp-block-button__link) {
  color: var(--orange);
  font-weight: 780;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.iom-pattern .wp-block-button__link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  background: var(--orange);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(240,74,10,.2);
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.iom-pattern .wp-block-button__link:hover {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 14px 30px rgba(240,74,10,.26);
  transform: translateY(-2px);
}

/* Editorial patterns. */
.iom-takeaways {
  padding: clamp(24px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-takeaways__list {
  display: grid;
  gap: 12px;
  margin: 19px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}

.iom-takeaways__list li {
  position: relative;
  margin: 0;
  padding-left: 34px;
}

.iom-takeaways__list li::before {
  content: "✓";
  position: absolute;
  top: .08em;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.iom-expert-quote,
.iom-testimonial {
  position: relative;
  margin-inline: 0;
  padding: clamp(30px, 5vw, 48px) clamp(30px, 6vw, 62px);
  border: 0;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.iom-expert-quote {
  color: #fff;
  background: linear-gradient(125deg, var(--navy), var(--navy-3));
}

.iom-expert-quote::before,
.iom-testimonial::before {
  content: "“";
  position: absolute;
  top: 15px;
  left: 22px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 74px;
  line-height: 1;
  opacity: .95;
}

.iom-expert-quote p,
.iom-testimonial p {
  position: relative;
  margin: 0 0 18px !important;
  font-size: clamp(21px, 2.7vw, 30px) !important;
  font-weight: 650;
  line-height: 1.4 !important;
  letter-spacing: -.02em;
}

.iom-expert-quote p {
  color: #fff !important;
}

.iom-expert-quote cite,
.iom-testimonial cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}

.iom-expert-quote cite {
  color: rgba(255,255,255,.7);
}

.iom-myth-fact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.iom-myth-fact__card {
  min-width: 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 12px;
}

.iom-myth-fact__card--myth {
  background: #f2eeea;
  border: 1px solid #d8d0ca;
}

.iom-myth-fact__card--myth .eyebrow {
  color: #7a665b !important;
}

.iom-myth-fact__card--fact {
  background: #fff;
  border: 1px solid rgba(31,122,85,.38);
  box-shadow: var(--shadow-soft);
}

.iom-myth-fact__card--fact .eyebrow {
  color: var(--success) !important;
}

.iom-myth-fact__card p:last-child {
  margin-bottom: 0;
}

.iom-faq {
  padding: clamp(25px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.iom-faq > h3 {
  margin-bottom: 20px !important;
}

.iom-faq__item {
  margin: 0 !important;
  border-top: 1px solid var(--line);
}

.iom-faq__item:last-child {
  border-bottom: 1px solid var(--line);
}

.iom-faq__item summary {
  position: relative;
  padding: 18px 48px 18px 0;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.iom-faq__item summary::-webkit-details-marker {
  display: none;
}

.iom-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 4px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  transform: translateY(-50%);
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

.iom-faq__item[open] summary::after {
  content: "−";
}

.iom-faq__item > p {
  max-width: 850px !important;
  margin: -3px 0 18px !important;
}

.iom-definition {
  position: relative;
  padding: 26px 28px 26px 92px;
  background: var(--orange-soft);
  border: 1px solid rgba(240,74,10,.24);
  border-radius: 12px;
}

.iom-definition::before {
  content: "Aa";
  position: absolute;
  top: 27px;
  left: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
}

.iom-definition__label {
  margin: 0 0 6px !important;
  color: var(--orange) !important;
  font-size: 11px !important;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.iom-definition p:last-child {
  margin-bottom: 0;
}

.iom-references {
  padding: 27px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.iom-references__list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0 !important;
  padding-left: 23px !important;
}

.iom-references__list li {
  padding-left: 7px;
}

/* General page-content patterns. */
.iom-lead-aside {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .75fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}

.iom-lead-aside__main,
.iom-content-sidebar__main {
  min-width: 0;
}

.iom-lead-aside__lead {
  margin-bottom: 17px !important;
  color: #263f4e !important;
  font-size: clamp(18px, 2vw, 21px) !important;
  line-height: 1.55 !important;
}

.iom-lead-aside__aside,
.iom-content-sidebar__note {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-lead-aside__aside p:last-child,
.iom-content-sidebar__note p:last-child {
  margin-bottom: 0;
}

.iom-feature-grid {
  display: grid;
  gap: 18px;
}

.iom-feature-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.iom-feature-card {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-feature-card__number {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 24px !important;
  place-items: center;
  color: #fff !important;
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px !important;
  font-weight: 900;
}

.iom-feature-card p:last-child {
  margin-bottom: 0;
}

.iom-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-compact-card {
  position: relative;
  min-width: 0;
  padding: 25px 24px 25px 54px;
}

.iom-compact-card::before {
  content: "✓";
  position: absolute;
  top: 28px;
  left: 23px;
  color: var(--orange);
  font-size: 19px;
  font-weight: 900;
}

.iom-compact-card + .iom-compact-card {
  border-left: 1px solid var(--line);
}

.iom-compact-card h3 {
  font-size: 18px !important;
}

.iom-compact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.iom-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: iom-process;
}

.iom-process__step {
  position: relative;
  min-width: 0;
  padding: 72px 28px 28px;
  counter-increment: iom-process;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.iom-process__step::before {
  content: counter(iom-process, decimal-leading-zero);
  position: absolute;
  top: 24px;
  left: 28px;
  color: var(--orange);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.iom-process__step::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 28px;
  width: 34px;
  height: 3px;
  background: var(--orange);
}

.iom-process__step p:last-child {
  margin-bottom: 0;
}

.iom-comparison,
.iom-scope {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.iom-comparison__panel,
.iom-scope__panel {
  min-width: 0;
  padding: clamp(25px, 4vw, 34px);
  border-radius: 12px;
}

.iom-comparison__panel--before {
  background: #f1eeeb;
  border: 1px solid #d8d0ca;
}

.iom-comparison__panel--after {
  background: #fff;
  border: 1px solid rgba(31,122,85,.4);
  box-shadow: var(--shadow-soft);
}

.iom-comparison__panel--after .eyebrow {
  color: var(--success) !important;
}

.iom-comparison ul,
.iom-scope ul {
  display: grid;
  gap: 9px;
  margin: 17px 0 0 !important;
  padding: 0 !important;
  list-style: none;
}

.iom-comparison li,
.iom-scope li {
  position: relative;
  padding-left: 28px;
}

.iom-comparison li::before,
.iom-scope__panel--included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.iom-comparison__panel--before li::before {
  content: "•";
  color: #85746a;
}

.iom-scope__panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.iom-scope__panel--included {
  border-top: 4px solid var(--success);
}

.iom-scope__panel--excluded {
  border-top: 4px solid #9a6b55;
}

.iom-scope__panel--excluded li::before {
  content: "×";
  position: absolute;
  left: 1px;
  color: #9a6b55;
  font-size: 18px;
  font-weight: 900;
}

.iom-content-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(270px, .75fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.iom-related-links > h2 {
  margin-bottom: 24px !important;
}

.iom-related-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.iom-related-link {
  display: flex;
  min-width: 0;
  min-height: 210px;
  flex-direction: column;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-related-link > p:not(.iom-related-link__action) {
  margin-bottom: 18px;
}

.iom-related-link__action {
  margin: auto 0 0 !important;
}

/* Evidence and data patterns. */
.iom-proof-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-proof-point {
  min-width: 0;
  padding: 28px 24px;
  text-align: center;
}

.iom-proof-point + .iom-proof-point {
  border-left: 1px solid var(--line);
}

.iom-proof-point__value {
  margin-bottom: 7px !important;
  color: var(--orange) !important;
  font-size: clamp(31px, 4vw, 44px) !important;
  font-weight: 900;
  letter-spacing: -.045em;
}

.iom-proof-point__label {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 700;
}

.iom-findings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.iom-finding {
  min-width: 0;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-top-width: 5px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-finding--positive {
  border-top-color: var(--success);
}

.iom-finding--watch {
  border-top-color: #d39a27;
}

.iom-finding--action {
  border-top-color: var(--orange);
}

.iom-finding__status {
  margin: 0 0 13px !important;
  font-size: 11px !important;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.iom-finding--positive .iom-finding__status {
  color: var(--success) !important;
}

.iom-finding--watch .iom-finding__status {
  color: #956300 !important;
}

.iom-finding--action .iom-finding__status {
  color: var(--orange) !important;
}

.iom-finding p:last-child {
  margin-bottom: 0;
}

.iom-table-panel {
  padding: clamp(24px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-table-panel .wp-block-table {
  width: 100%;
  margin: 20px 0 0 !important;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: none;
}

.iom-table-panel .wp-block-table table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border-collapse: collapse;
}

.iom-table-panel .wp-block-table th,
.iom-table-panel .wp-block-table td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.iom-table-panel .wp-block-table th {
  color: var(--ink);
  background: #f1eeeb;
  font-weight: 800;
}

.iom-table-panel .wp-block-table figcaption {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 12px;
  text-align: left;
}

.iom-evidence-panel {
  position: relative;
  overflow: hidden;
}

.iom-evidence-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--orange);
}

.iom-evidence-panel__source {
  margin: 18px 0 0 !important;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 13px !important;
}

.iom-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 18px;
}

.iom-timeline::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 16.666%;
  right: 16.666%;
  height: 2px;
  background: var(--line);
}

.iom-timeline__item {
  position: relative;
  min-width: 0;
  padding: 58px 24px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-timeline__item::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
  background: var(--orange);
  border: 5px solid var(--cream);
  border-radius: 50%;
  box-sizing: content-box;
}

.iom-timeline__date {
  margin: 0 0 8px !important;
  color: var(--orange) !important;
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.iom-testimonial {
  background: #fff;
  border: 1px solid var(--line);
}

.iom-testimonial p {
  color: var(--ink) !important;
}

.iom-testimonial cite {
  color: var(--muted);
}

/* Calls to action. */
.iom-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 46px);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.iom-cta__copy,
.iom-cta__buttons {
  min-width: 0;
  margin: 0 !important;
}

.iom-cta__copy p:last-child {
  margin-bottom: 0;
}

.iom-cta--navy {
  color: #fff;
  background: linear-gradient(125deg, var(--navy), var(--navy-3));
}

.iom-cta--navy h2,
.iom-cta--navy h3,
.iom-cta--navy p:not(.eyebrow) {
  color: #fff !important;
}

.iom-cta--navy p:not(.eyebrow) {
  opacity: .78;
}

.iom-cta--orange {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
}

.iom-route-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.iom-route-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-route-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin: 0 0 22px !important;
  place-items: center;
  color: #fff !important;
  background: var(--orange);
  border-radius: 50%;
  font-size: 12px !important;
  font-weight: 900;
}

.iom-route-card__action {
  margin: auto 0 0 !important;
  padding-top: 20px;
}

.iom-download-pattern {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 25px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.iom-download-pattern__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 !important;
  place-items: center;
  color: var(--orange) !important;
  background: var(--orange-soft);
  border-radius: 12px;
  font-size: 29px !important;
  font-weight: 900;
}

.iom-download-pattern__copy,
.iom-download-pattern__button {
  min-width: 0;
  margin: 0 !important;
}

.iom-download-pattern__copy h3 {
  margin-bottom: 5px !important;
}

.iom-download-pattern__copy p:last-child {
  margin-bottom: 0;
}

.iom-contact-panel {
  padding: clamp(28px, 5vw, 42px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.iom-contact-panel__heading {
  max-width: 780px !important;
  margin-bottom: 26px !important;
}

.iom-contact-panel__options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.iom-contact-option {
  display: flex;
  min-width: 0;
  min-height: 185px;
  flex-direction: column;
  padding: 24px;
  background: var(--cream);
}

.iom-contact-option + .iom-contact-option {
  border-left: 1px solid var(--line);
}

.iom-contact-option--action {
  color: #fff;
  background: var(--navy);
}

.iom-contact-option--action h3,
.iom-contact-option--action p:not(.iom-contact-option__action) {
  color: #fff !important;
}

.iom-contact-option__label {
  margin: 0 0 12px !important;
  color: var(--orange) !important;
  font-size: 11px !important;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.iom-contact-option h3 {
  overflow-wrap: anywhere;
  font-size: 19px !important;
}

.iom-contact-option__action {
  margin: auto 0 0 !important;
  padding-top: 16px;
}

/* Pattern responsive behaviour. */
@media (max-width: 980px) {
  .iom-compact-grid,
  .iom-proof-points,
  .iom-contact-panel__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iom-compact-card:nth-child(3),
  .iom-proof-point:nth-child(3),
  .iom-contact-option:nth-child(3) {
    border-left: 0;
  }

  .iom-compact-card:nth-child(n+3),
  .iom-proof-point:nth-child(n+3),
  .iom-contact-option:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .iom-contact-option:last-child {
    grid-column: 1 / -1;
  }

  .iom-lead-aside,
  .iom-content-sidebar {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, .8fr);
    gap: 28px;
  }
}

@media (max-width: 760px) {
  .iom-myth-fact,
  .iom-feature-grid--three,
  .iom-process,
  .iom-comparison,
  .iom-scope,
  .iom-related-links__grid,
  .iom-findings,
  .iom-route-cards,
  .iom-lead-aside,
  .iom-content-sidebar,
  .iom-timeline {
    grid-template-columns: 1fr;
  }

  .iom-timeline {
    gap: 15px;
    padding-top: 0;
  }

  .iom-timeline::before {
    display: none;
  }

  .iom-timeline__item {
    padding-top: 30px;
  }

  .iom-timeline__item::before {
    top: 26px;
    left: 0;
    transform: translate(-50%, 0);
  }

  .iom-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .iom-cta__buttons,
  .iom-cta__buttons .wp-block-button,
  .iom-cta__buttons .wp-block-button__link {
    width: 100%;
  }

  .iom-download-pattern {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .iom-download-pattern__button {
    grid-column: 1 / -1;
  }

  .iom-download-pattern__button,
  .iom-download-pattern__button .wp-block-button,
  .iom-download-pattern__button .wp-block-button__link {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .iom-pattern {
    margin-block: 24px;
  }

  .iom-compact-grid,
  .iom-proof-points,
  .iom-contact-panel__options {
    grid-template-columns: 1fr;
  }

  .iom-compact-card + .iom-compact-card,
  .iom-proof-point + .iom-proof-point,
  .iom-contact-option + .iom-contact-option {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .iom-contact-option:last-child {
    grid-column: auto;
  }

  .iom-definition {
    padding: 82px 22px 24px;
  }

  .iom-definition::before {
    top: 22px;
    left: 22px;
  }

  .iom-expert-quote,
  .iom-testimonial {
    padding: 64px 24px 28px;
  }

  .iom-expert-quote::before,
  .iom-testimonial::before {
    top: 10px;
    left: 18px;
  }

  .iom-download-pattern {
    grid-template-columns: 1fr;
  }

  .iom-download-pattern__icon {
    width: 50px;
    height: 50px;
  }
}

/* 0.15.0: editable long-form Service content */
.service-detailed-section {
  background: var(--cream, #f9f7f3);
}

.service-detailed-section--area {
  padding-top: 0;
}

.service-detailed-content {
  max-width: 1040px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 52px);
  overflow-wrap: anywhere;
}

.service-detailed-content > :first-child {
  margin-top: 0;
}

.service-detailed-content > :last-child {
  margin-bottom: 0;
}

.service-detailed-content h2 {
  margin: 42px 0 16px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.service-detailed-content h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
}

.service-detailed-content p,
.service-detailed-content li {
  color: var(--muted);
  line-height: 1.72;
}

.service-detailed-content ul,
.service-detailed-content ol {
  margin: 16px 0 24px;
  padding-left: 1.35rem;
}

.service-detailed-content li + li {
  margin-top: 8px;
}

.service-content-section + .service-content-section,
.service-content-notice + .service-content-section,
.service-content-accordion + .service-content-section {
  margin-top: 36px;
}

.service-content-notice {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--orange);
  border-radius: 0 10px 10px 0;
  background: rgba(236, 97, 21, .08);
}

.service-content-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.service-content-notice p:last-child {
  margin-bottom: 0;
}

.service-content-jump-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
  margin: 0 0 34px;
}

.service-content-jump-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 750;
}

.service-content-jump-links a:hover,
.service-content-jump-links a:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.service-content-accordion {
  margin: 14px 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-content-accordion summary {
  position: relative;
  padding: 19px 52px 19px 20px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}

.service-content-accordion summary::-webkit-details-marker {
  display: none;
}

.service-content-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 26px;
  line-height: 1;
}

.service-content-accordion[open] summary::after {
  content: "−";
}

.service-content-accordion__body {
  padding: 0 20px 22px;
  border-top: 1px solid var(--line);
}

.service-detailed-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  background: #fff;
}

.service-detailed-content th,
.service-detailed-content td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.service-detailed-content th {
  color: var(--navy);
  background: rgba(8, 29, 45, .06);
}

@media (max-width: 700px) {
  .service-detailed-content {
    padding: 24px 20px;
  }

  .service-content-jump-links {
    grid-template-columns: 1fr;
  }

  .service-detailed-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Rich Service editorial content ----------------------------------------- */
.service-editorial-section {
  padding-top: clamp(24px, 3.5vw, 46px);
  padding-bottom: clamp(36px, 5vw, 72px);
}

.service-editorial {
  width: 100%;
  max-width: none;
}

.service-editorial > :first-child,
.service-editorial__legacy > :first-child {
  margin-top: 0;
}

.service-editorial > :last-child,
.service-editorial__legacy > :last-child {
  margin-bottom: 0;
}

.service-editorial > p,
.service-editorial > h2,
.service-editorial > h3,
.service-editorial > ul,
.service-editorial > ol,
.service-editorial__legacy > p,
.service-editorial__legacy > h2,
.service-editorial__legacy > h3,
.service-editorial__legacy > ul,
.service-editorial__legacy > ol {
  max-width: 880px;
}

.service-editorial .iom-service-rich__section,
.service-editorial .iom-service-rich__callout,
.service-editorial .iom-service-rich__cta,
.service-editorial .iom-service-rich__notice,
.service-editorial .iom-service-rich__steps,
.service-editorial .iom-service-rich__grid,
.service-editorial .iom-service-rich__comparison,
.service-editorial .iom-service-rich__faq,
.service-editorial .wp-block-table {
  margin-block: clamp(30px, 5vw, 64px);
}

.service-editorial .iom-service-rich__section {
  width: 100%;
}

.service-editorial .iom-service-rich__section > h2,
.service-editorial .iom-service-rich__section > p {
  max-width: 880px;
}

.service-editorial .iom-service-rich__section--soft {
  padding: clamp(28px, 4vw, 50px);
  background: rgba(255,255,255,.56);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.service-editorial .iom-service-rich__grid {
  display: grid;
  gap: 18px;
}

.service-editorial .iom-service-rich__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-editorial .iom-service-rich__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-editorial .iom-service-rich__card,
.service-editorial .iom-service-rich__mini-card,
.service-editorial .iom-service-rich__step,
.service-editorial .iom-service-rich__list-panel,
.service-editorial .iom-service-rich__faq,
.service-editorial .iom-service-rich__comparison > .wp-block-column {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.service-editorial .iom-service-rich__card,
.service-editorial .iom-service-rich__step,
.service-editorial .iom-service-rich__comparison > .wp-block-column {
  padding: clamp(22px, 3vw, 32px);
}

.service-editorial .iom-service-rich__card h3,
.service-editorial .iom-service-rich__step h3,
.service-editorial .iom-service-rich__comparison h3 {
  margin-top: 0;
}

.service-editorial .iom-service-rich__mini-card {
  position: relative;
  min-height: 108px;
  margin: 0;
  padding: 24px 22px 22px 54px;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.35;
}

.service-editorial .iom-service-rich__mini-card::before {
  content: "✓";
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--orange);
  font-size: 22px;
  font-weight: 900;
}

.service-editorial .iom-service-rich__list-panel {
  max-width: 980px;
  padding: clamp(24px, 3vw, 36px);
}

.service-editorial .iom-service-rich__list-panel ul,
.service-editorial .iom-service-rich__callout ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin-bottom: 0;
}

.service-editorial .iom-service-rich__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  counter-reset: iom-service-step;
}

.service-editorial .iom-service-rich__step {
  position: relative;
  padding-top: 68px;
}

.service-editorial .iom-service-rich__step::before {
  counter-increment: iom-service-step;
  content: counter(iom-service-step);
  position: absolute;
  top: 24px;
  left: 28px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.service-editorial .iom-service-rich__callout,
.service-editorial .iom-service-rich__cta,
.service-editorial .iom-service-rich__notice {
  padding: clamp(28px, 4vw, 50px);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.service-editorial .iom-service-rich__callout--navy {
  color: #fff;
  background: var(--navy);
  border: 1px solid transparent;
}

.service-editorial .iom-service-rich__callout--navy h2,
.service-editorial .iom-service-rich__callout--navy h3,
.service-editorial .iom-service-rich__callout--navy p,
.service-editorial .iom-service-rich__callout--navy li {
  color: inherit;
}

.service-editorial .iom-service-rich__callout--navy .eyebrow {
  color: var(--orange);
}

.service-editorial .iom-service-rich__cta {
  border: 1px solid rgba(240,74,10,.28);
  border-left: 6px solid var(--orange);
  background: #fff;
}

.service-editorial .iom-service-rich__notice {
  border: 1px solid rgba(240,74,10,.30);
  background: #fff8f3;
}

.service-editorial .iom-service-rich__faq {
  padding: 0;
  overflow: hidden;
}

.service-editorial .iom-service-rich__faq summary {
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.service-editorial .iom-service-rich__faq > p,
.service-editorial .iom-service-rich__faq > ul,
.service-editorial .iom-service-rich__faq > ol {
  margin-inline: 24px;
}

.service-editorial .iom-service-rich__faq > :last-child {
  margin-bottom: 24px;
}

.service-editorial .iom-service-rich__comparison {
  gap: 18px;
}

.service-editorial__legacy {
  width: 100%;
}

.service-editorial__legacy .service-content-section {
  max-width: 980px;
  margin-block: clamp(36px, 5vw, 64px);
}

.service-editorial__legacy .service-content-section:nth-child(even) {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-radius: 14px;
}

@media (max-width: 980px) {
  .service-editorial .iom-service-rich__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-editorial .iom-service-rich__grid--3,
  .service-editorial .iom-service-rich__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-editorial .iom-service-rich__grid--4,
  .service-editorial .iom-service-rich__list-panel ul,
  .service-editorial .iom-service-rich__callout ul {
    grid-template-columns: 1fr;
  }
}

/* Rich Service editorial layouts v2 ------------------------------------- */
.service-editorial-section {
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(44px, 6vw, 84px);
}

.service-editorial {
  width: 100%;
  max-width: none;
}

.service-editorial > :first-child { margin-top: 0 !important; }
.service-editorial > :last-child { margin-bottom: 0 !important; }

.iom-service-block {
  width: 100%;
  max-width: none !important;
  margin: 0 0 clamp(42px, 6vw, 76px) !important;
}

.iom-service-block .wp-block-columns,
.iom-service-block .wp-block-column {
  min-width: 0;
  margin-bottom: 0;
}

.iom-service-block__columns {
  gap: clamp(34px, 6vw, 82px);
  align-items: flex-start;
}

.iom-service-block__copy {
  font-size: 17px;
  line-height: 1.7;
}

.iom-service-block__copy > :last-child,
.iom-service-block > :last-child {
  margin-bottom: 0;
}

.iom-service-block--story {
  padding-block: clamp(32px, 4.5vw, 58px);
  border-top: 1px solid var(--line);
}

.iom-service-block--story h2 {
  max-width: 430px;
  font-size: clamp(34px, 4.5vw, 58px);
}

.iom-service-block--soft {
  padding: clamp(34px, 5vw, 60px);
  background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.38));
  border: 1px solid var(--line);
  border-radius: 18px;
}

.iom-service-block--help {
  padding-block: clamp(24px, 3vw, 42px);
}

.iom-service-block--help h2 {
  font-size: clamp(34px, 4.4vw, 56px);
}

.iom-service-block__check-panel {
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.iom-service-block__check-panel p,
.iom-service-block__check-panel li,
.iom-service-block__check-panel h2,
.iom-service-block__check-panel h3 {
  color: inherit;
}

.iom-service-block__small-heading {
  margin-bottom: 18px;
  color: var(--orange) !important;
  font-weight: 800;
}

.iom-service-block__check-panel .check-list,
.iom-service-block--assurance .check-list,
.iom-service-block--action .check-list,
.iom-service-block--notice .check-list,
.iom-service-block__faq-item .check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.iom-service-block__check-panel .check-list li,
.iom-service-block--assurance .check-list li,
.iom-service-block--action .check-list li,
.iom-service-block--notice .check-list li,
.iom-service-block__faq-item .check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.iom-service-block__check-panel .check-list li::before,
.iom-service-block--assurance .check-list li::before,
.iom-service-block--action .check-list li::before,
.iom-service-block--notice .check-list li::before,
.iom-service-block__faq-item .check-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: 9px;
  color: var(--orange);
  font-weight: 900;
}

.iom-service-block--benefits,
.iom-service-block--audience {
  padding-block: clamp(12px, 2vw, 28px);
}

.iom-service-block--benefits > h2,
.iom-service-block--audience > h2,
.iom-service-block--benefits > p:not(.eyebrow),
.iom-service-block--audience > p:not(.eyebrow) {
  max-width: 820px;
}

.iom-service-block__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: clamp(26px, 4vw, 42px);
}

.iom-service-block__card,
.iom-service-block__audience-card {
  position: relative;
  min-height: 164px;
  margin: 0;
  padding: 30px 26px 26px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.iom-service-block__card::before,
.iom-service-block__audience-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--orange);
}

.iom-service-block__card::after,
.iom-service-block__audience-card::after {
  content: "✓";
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
}

.iom-service-block__card h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 26px);
}

.iom-service-block__audience-card {
  font-size: 17px;
  font-weight: 750;
  line-height: 1.4;
}

.iom-service-block--statement {
  padding: clamp(34px, 5vw, 62px) clamp(34px, 6vw, 74px);
  border-left: 6px solid var(--orange);
  background: linear-gradient(90deg, rgba(240,74,10,.07), rgba(255,255,255,.35));
  border-radius: 0 16px 16px 0;
}

.iom-service-block--statement h2 {
  max-width: 880px;
  font-size: clamp(38px, 5vw, 64px);
}

.iom-service-block--assurance,
.iom-service-block--action,
.iom-service-block--cta {
  padding: clamp(36px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.iom-service-block--assurance h2,
.iom-service-block--assurance h3,
.iom-service-block--assurance p,
.iom-service-block--assurance li,
.iom-service-block--action h2,
.iom-service-block--action h3,
.iom-service-block--action p,
.iom-service-block--action li,
.iom-service-block--cta h2,
.iom-service-block--cta h3,
.iom-service-block--cta p,
.iom-service-block--cta li {
  color: inherit;
}

.iom-service-block--assurance .eyebrow,
.iom-service-block--action .eyebrow,
.iom-service-block--cta .eyebrow {
  color: var(--orange);
}

.iom-service-block--action {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr);
  gap: clamp(34px, 6vw, 82px);
}

.iom-service-block--action > h2,
.iom-service-block--action > .eyebrow {
  grid-column: 1;
}

.iom-service-block--cta {
  border-left: 6px solid var(--orange);
}

.iom-service-block--notice {
  padding: clamp(30px, 4vw, 48px);
  background: #fff6f0;
  border: 1px solid rgba(240,74,10,.32);
  border-left: 6px solid var(--orange);
  border-radius: 0 14px 14px 0;
}

.iom-service-block--notice .check-list li,
.iom-service-block__faq-item .check-list li {
  border-color: var(--line);
  color: var(--ink);
}

.iom-service-block--faq {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.iom-service-block--faq > .eyebrow,
.iom-service-block--faq > h2 {
  grid-column: 1;
}

.iom-service-block__faq-item {
  grid-column: 2;
  margin: 0 0 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.iom-service-block__faq-item summary {
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.iom-service-block__faq-item > p,
.iom-service-block__faq-item > ul,
.iom-service-block__faq-item > ol,
.iom-service-block__faq-item > h3 {
  margin-inline: 24px;
}

.iom-service-block__faq-item > :last-child {
  margin-bottom: 24px;
}

.iom-service-block--table {
  overflow-x: auto;
  padding: clamp(28px, 4vw, 46px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.iom-service-block--table table {
  width: 100%;
  margin: 22px 0 0;
  border-collapse: collapse;
}

.iom-service-block--table th,
.iom-service-block--table td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.iom-service-block--table th {
  color: var(--ink);
  background: var(--cream-2);
}

.iom-service-block--prose {
  max-width: 880px !important;
  margin-inline: 0 !important;
  font-size: 17px;
  line-height: 1.7;
}

.iom-service-block--jump {
  padding: 22px 0 6px;
  border-top: 1px solid var(--line);
}

.iom-service-block__jump-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.iom-service-block__jump-link {
  margin: 0;
}

.iom-service-block__jump-link a {
  display: inline-flex;
  padding: 10px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
}

@media (max-width: 900px) {
  .iom-service-block__columns,
  .iom-service-block--faq,
  .iom-service-block--action {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .iom-service-block__columns > .wp-block-column {
    flex-basis: auto !important;
  }

  .iom-service-block--faq > .eyebrow,
  .iom-service-block--faq > h2,
  .iom-service-block__faq-item {
    grid-column: 1;
  }

  .iom-service-block__check-panel .check-list,
  .iom-service-block--assurance .check-list,
  .iom-service-block--action .check-list,
  .iom-service-block--notice .check-list,
  .iom-service-block__faq-item .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .iom-service-block--soft,
  .iom-service-block--statement,
  .iom-service-block--assurance,
  .iom-service-block--action,
  .iom-service-block--cta,
  .iom-service-block--notice,
  .iom-service-block--table,
  .iom-service-block__check-panel {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .iom-service-block__card-grid {
    grid-template-columns: 1fr;
  }
}

/* Rich Service editorial layouts v2.1 -----------------------------------
 * Compact, consistent refinement for generated and manually inserted
 * Service-content blocks.
 */
.service-editorial-section {
  padding-top: clamp(22px, 2.5vw, 34px);
  padding-bottom: clamp(34px, 4.5vw, 62px);
}

.service-editorial .iom-service-block {
  margin-bottom: clamp(28px, 4vw, 52px) !important;
}

.service-editorial .iom-service-block__columns {
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
}

.service-editorial .iom-service-block__columns > .wp-block-column,
.service-editorial .iom-service-block__copy,
.service-editorial .iom-service-block__card,
.service-editorial .iom-service-block__audience-card,
.service-editorial .iom-service-block__faq-item {
  min-width: 0;
}

.service-editorial .iom-service-block h2,
.service-editorial .iom-service-block h3,
.service-editorial .iom-service-block p,
.service-editorial .iom-service-block li,
.service-editorial .iom-service-block summary {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

/* Narrative sections should read as clean page sections rather than large
 * cards. The alternate treatment is a subtle separator, not another box. */
.service-editorial .iom-service-block--story,
.service-editorial .iom-service-block--story.iom-service-block--soft {
  padding: clamp(22px, 3vw, 38px) 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.service-editorial .iom-service-block--story h2 {
  width: auto;
  max-width: none;
  margin: 0;
  font-size: clamp(30px, 3.25vw, 44px);
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
  overflow-wrap: normal;
}

.service-editorial .iom-service-block--story .iom-service-block__copy {
  font-size: 16.5px;
  line-height: 1.66;
}

.service-editorial .iom-service-block--story .check-list {
  margin-top: 18px;
}

/* Help sections keep their two-column hierarchy but no longer create empty,
 * over-sized panels. */
.service-editorial .iom-service-block--help {
  padding-block: clamp(18px, 2.5vw, 34px);
}

.service-editorial .iom-service-block--help h2 {
  margin: 0 0 20px;
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1.03;
  text-wrap: balance;
}

.service-editorial .iom-service-block--help-simple .iom-service-block__copy {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.68;
}

.service-editorial .iom-service-block__check-panel {
  align-self: start;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 14px;
}

.service-editorial .iom-service-block__small-heading {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.35;
}

/* Card grids: avoid five narrow cards across a row. Count classes generated
 * by the importer give predictable, balanced layouts. */
.service-editorial .iom-service-block__card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(22px, 3vw, 34px);
}

.service-editorial .iom-service-block__card-grid--count-1 {
  grid-template-columns: minmax(0, 420px);
}

.service-editorial .iom-service-block__card-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-editorial .iom-service-block__card-grid--count-3,
.service-editorial .iom-service-block__card-grid--count-5,
.service-editorial .iom-service-block__card-grid--count-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-editorial .iom-service-block__card-grid--count-4,
.service-editorial .iom-service-block__card-grid--count-7,
.service-editorial .iom-service-block__card-grid--count-8 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-editorial .iom-service-block__card,
.service-editorial .iom-service-block__audience-card {
  min-height: 0;
  padding: 24px 62px 24px 24px;
  overflow: visible;
}

.service-editorial .iom-service-block__card::after,
.service-editorial .iom-service-block__audience-card::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  margin: 0;
  font-size: 15px;
}

.service-editorial .iom-service-block__card h3 {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.12;
  letter-spacing: -.025em;
  overflow-wrap: normal;
}

.service-editorial .iom-service-block__card p,
.service-editorial .iom-service-block__audience-card {
  font-size: 16px;
  line-height: 1.45;
}

.service-editorial .iom-service-block__card p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* Navy and highlighted sections should be strong without becoming oversized. */
.service-editorial .iom-service-block--assurance,
.service-editorial .iom-service-block--action,
.service-editorial .iom-service-block--cta {
  padding: clamp(32px, 4vw, 48px);
  border-radius: 16px;
}

.service-editorial .iom-service-block--action {
  display: block;
}

.service-editorial .iom-service-block--action h2,
.service-editorial .iom-service-block--assurance h2,
.service-editorial .iom-service-block--cta h2 {
  margin-top: 0;
  font-size: clamp(32px, 3.7vw, 48px);
  line-height: 1.04;
  text-wrap: balance;
}

.service-editorial .iom-service-block--action .iom-service-block__copy,
.service-editorial .iom-service-block--assurance,
.service-editorial .iom-service-block--cta {
  font-size: 16.5px;
  line-height: 1.6;
}

.service-editorial .iom-service-block--notice {
  padding: clamp(26px, 3.5vw, 38px);
}

/* FAQ content is a true two-column introduction and compact stack. */
.service-editorial .iom-service-block--faq {
  display: block;
}

.service-editorial .iom-service-block--faq h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.04;
  text-wrap: balance;
}

.service-editorial .iom-service-block__faq-list {
  display: grid;
  gap: 12px;
}

.service-editorial .iom-service-block__faq-item {
  margin: 0;
  border-radius: 10px;
}

.service-editorial .iom-service-block__faq-item summary {
  padding: 18px 52px 18px 22px;
  font-size: 17px;
  line-height: 1.35;
}

.service-editorial .iom-service-block__faq-item[open] {
  padding-bottom: 20px;
}

.service-editorial .iom-service-block__faq-item[open] summary {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-editorial .iom-service-block__faq-item > p,
.service-editorial .iom-service-block__faq-item > ul,
.service-editorial .iom-service-block__faq-item > ol,
.service-editorial .iom-service-block__faq-item > h3 {
  margin-inline: 22px;
}

.service-editorial .iom-service-block__faq-item > :last-child {
  margin-bottom: 0;
}

.service-editorial .iom-service-block--jump {
  padding: 12px 0 0;
}

.service-editorial .iom-service-block__jump-grid {
  gap: 8px;
}

.service-editorial .iom-service-block__jump-link a {
  padding: 9px 13px;
}

@media (max-width: 1100px) {
  .service-editorial .iom-service-block__card-grid--count-4,
  .service-editorial .iom-service-block__card-grid--count-7,
  .service-editorial .iom-service-block__card-grid--count-8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-editorial .iom-service-block__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-editorial .iom-service-block__columns > .wp-block-column {
    flex-basis: auto !important;
  }

  .service-editorial .iom-service-block__card-grid,
  .service-editorial .iom-service-block__card-grid--count-2,
  .service-editorial .iom-service-block__card-grid--count-3,
  .service-editorial .iom-service-block__card-grid--count-4,
  .service-editorial .iom-service-block__card-grid--count-5,
  .service-editorial .iom-service-block__card-grid--count-6,
  .service-editorial .iom-service-block__card-grid--count-7,
  .service-editorial .iom-service-block__card-grid--count-8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .service-editorial .iom-service-block__card-grid,
  .service-editorial .iom-service-block__card-grid--count-1,
  .service-editorial .iom-service-block__card-grid--count-2,
  .service-editorial .iom-service-block__card-grid--count-3,
  .service-editorial .iom-service-block__card-grid--count-4,
  .service-editorial .iom-service-block__card-grid--count-5,
  .service-editorial .iom-service-block__card-grid--count-6,
  .service-editorial .iom-service-block__card-grid--count-7,
  .service-editorial .iom-service-block__card-grid--count-8 {
    grid-template-columns: 1fr;
  }

  .service-editorial .iom-service-block__card,
  .service-editorial .iom-service-block__audience-card {
    padding: 22px 56px 22px 20px;
  }
}

/* 0.17.2: preserve source-document flow after generated lists and card grids. */
.service-editorial .iom-service-block__follow-up {
  max-width: 880px;
  margin: clamp(22px, 3vw, 34px) auto 0;
  font-size: 17px;
  line-height: 1.7;
}

.service-editorial .iom-service-block__follow-up > :first-child {
  margin-top: 0;
}

.service-editorial .iom-service-block__follow-up > :last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Site-wide block patterns — theme 0.17.3
   -------------------------------------------------------------------------- */
.page-hero__lead > * {
  max-width: 100%;
}
.page-hero__lead p {
  margin: 0 0 12px;
}
.page-hero__lead p:last-child {
  margin-bottom: 0;
}
.page-service-area .page-hero__lead {
  font-size: clamp(15px, 1.45vw, 17px);
  line-height: 1.48;
}

.iom-site-split,
.iom-site-before-after,
.iom-site-profile,
.iom-site-contact-routes,
.iom-site-card-grid,
.iom-site-process {
  display: grid;
  gap: 18px;
}
.iom-site-split,
.iom-site-before-after {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.iom-site-split__panel,
.iom-site-change-card,
.iom-site-card,
.iom-site-contact-route,
.iom-site-process__step {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}
.iom-site-split__panel--navy,
.iom-site-contact-route--navy {
  color: #fff;
  background: var(--navy);
  border-color: transparent;
}
.iom-site-split__panel--navy h2,
.iom-site-split__panel--navy p,
.iom-site-contact-route--navy h3,
.iom-site-contact-route--navy p {
  color: inherit !important;
}
.iom-site-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  color: #fff;
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.iom-site-metric {
  padding: clamp(28px, 4vw, 46px);
  text-align: center;
}
.iom-site-metric + .iom-site-metric {
  border-left: 1px solid rgba(255,255,255,.24);
}
.iom-site-metric h3 {
  color: var(--orange) !important;
  font-size: clamp(38px, 5vw, 62px) !important;
}
.iom-site-metric p {
  color: #fff !important;
}
.iom-site-quote {
  position: relative;
  margin-inline: 0;
  padding: clamp(34px, 5vw, 58px) clamp(44px, 7vw, 86px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.iom-site-quote::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 24px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
}
.iom-site-quote p {
  font-size: clamp(22px, 3vw, 34px) !important;
  font-weight: 700;
  line-height: 1.35 !important;
}
.iom-site-change-card--after {
  border-top: 4px solid var(--orange);
}
.iom-site-profile {
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.iom-site-profile figure {
  margin: 0;
}
.iom-site-profile img {
  width: 100% !important;
  height: 100% !important;
  min-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}
.iom-site-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.iom-site-card-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.iom-site-card {
  border-top: 4px solid var(--orange);
}
.iom-site-contact-routes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}
.iom-site-contact-route {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.iom-site-contact-route + .iom-site-contact-route {
  border-left: 1px solid var(--line);
}
.iom-site-contact-strip,
.iom-site-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.iom-site-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.iom-site-contact-strip__item,
.iom-site-facts > p {
  margin: 0 !important;
  padding: 10px 20px;
}
.iom-site-contact-strip__item + .iom-site-contact-strip__item,
.iom-site-facts > p + p {
  border-left: 1px solid var(--line);
}
.iom-site-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  counter-reset: iom-process;
}
.iom-site-process__step {
  position: relative;
  padding-top: 72px;
}
.iom-site-process__step::before {
  counter-increment: iom-process;
  content: counter(iom-process);
  position: absolute;
  top: 24px;
  left: 28px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}
.iom-site-logo-strip {
  display: grid;
  grid-template-columns: minmax(180px, .8fr) minmax(0, 3fr);
  gap: 24px;
  align-items: center;
}
.iom-site-logo-strip__label {
  margin: 0 !important;
  color: var(--ink) !important;
  font-size: 12px !important;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.iom-site-logo-strip__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.iom-site-logo-strip__logos p {
  display: grid;
  min-height: 72px;
  place-items: center;
  margin: 0 !important;
  padding: 12px;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 9px;
  text-align: center;
  font-size: 11px;
}
.iom-service-block--table figcaption,
.iom-data-table figcaption {
  margin-top: 12px;
  color: #5c6d78;
  font-size: 13px;
  line-height: 1.5;
}
.iom-service-block--table tbody tr:nth-child(even) {
  background: #fbf8f5;
}

@media (max-width: 1050px) {
  .iom-site-card-grid--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .iom-site-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .iom-site-split,
  .iom-site-before-after,
  .iom-site-profile,
  .iom-site-card-grid--three,
  .iom-site-card-grid--five,
  .iom-site-contact-routes,
  .iom-site-contact-strip,
  .iom-site-facts,
  .iom-site-process,
  .iom-site-logo-strip {
    grid-template-columns: 1fr;
  }
  .iom-site-metrics {
    grid-template-columns: 1fr;
  }
  .iom-site-metric + .iom-site-metric,
  .iom-site-contact-route + .iom-site-contact-route,
  .iom-site-contact-strip__item + .iom-site-contact-strip__item,
  .iom-site-facts > p + p {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .iom-site-logo-strip__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.iom-site-profile__image-placeholder {
  display: grid;
  min-height: 300px;
  place-items: center;
  padding: 24px;
  color: #6b7b85;
  background: #f1eeeb;
  border: 1px dashed #c9c1ba;
  border-radius: 10px;
  text-align: center;
}
.iom-site-profile__image-placeholder p {
  margin: 0 !important;
  color: inherit !important;
  font-size: 13px;
  font-weight: 750;
}

/* --------------------------------------------------------------------------
   About + organisational People directory — 0.18.0
   -------------------------------------------------------------------------- */
.about-editor-section {
  padding-bottom: clamp(48px, 6vw, 82px);
}
.about-editor-content {
  display: grid;
  gap: clamp(48px, 6vw, 76px);
}
.about-editor-content > * {
  margin-block: 0 !important;
}
.iom-about-section {
  width: 100%;
  max-width: 980px;
  margin-inline: auto !important;
}
.iom-about-section > * + * {
  margin-top: 18px;
}
.iom-about-lead {
  max-width: 820px;
  margin-bottom: 24px !important;
  font-size: clamp(30px, 4vw, 50px);
}
.iom-about-intro-section > p {
  max-width: 880px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.7;
}
.iom-about-values-section {
  max-width: none;
  padding: clamp(30px, 5vw, 58px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.iom-about-values-section > p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
}
.iom-about-values-section .iom-site-card-grid {
  margin-top: 30px !important;
}
.iom-about-values-section .iom-site-card {
  padding: clamp(20px, 2.2vw, 28px);
}
.iom-about-values-section .iom-site-card h3 {
  font-size: 20px;
}
.iom-about-values-section .iom-site-card p {
  color: var(--muted);
  font-size: 14px;
}
.iom-about-people-intro {
  max-width: 900px;
}
.iom-about-people-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}
.about-leadership .filter-toolbar--light h2,
.about-leadership .filter-toolbar--light p {
  color: #fff;
}
.about-leadership .filter-toolbar--light .eyebrow {
  color: var(--orange);
}
.section-link--light {
  color: #fff;
}
.section-link--light:hover,
.section-link--light:focus-visible {
  color: var(--orange);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.people-grid--leadership {
  align-items: stretch;
}
.person-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.person-card:hover,
.person-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(240,74,10,.35);
  box-shadow: var(--shadow);
}
.person-card__media {
  aspect-ratio: 4 / 4.4;
  overflow: hidden;
  background: var(--cream-2);
}
.person-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.person-photo-placeholder,
.people-hero-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #8b969d;
  background: linear-gradient(145deg, #ece8e3, #f8f5f1);
}
.person-photo-placeholder svg,
.people-hero-placeholder svg {
  width: min(34%, 112px);
  height: auto;
  opacity: .72;
}
.person-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}
.person-card__body h3 {
  margin-bottom: 7px;
  font-size: 23px;
}
.person-card__body > strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 14px;
}
.person-card__body > p {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
}
.person-card__groups,
.person-hero__groups {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.person-card__groups span,
.person-hero__groups span {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--navy);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.people-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 26px 0 30px;
}
.people-filter-bar a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 16px;
  color: #425663;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.people-filter-bar a:hover,
.people-filter-bar a:focus-visible,
.people-filter-bar a.is-active {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}
.people-empty {
  max-width: 720px;
}
.people-archive-hero .people-hero-placeholder {
  min-height: 390px;
}

.person-hero {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}
.person-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .72fr);
  min-height: 520px;
  align-items: stretch;
}
.person-hero__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 7vw, 96px) clamp(38px, 7vw, 92px) clamp(54px, 7vw, 96px) 0;
}
.person-hero__copy h1 {
  margin-bottom: 14px;
}
.person-hero__copy h2 {
  margin-bottom: 22px;
  color: var(--orange);
  font-size: clamp(22px, 2.5vw, 32px);
}
.person-hero__copy .page-hero__lead {
  max-width: 720px;
  color: rgba(255,255,255,.82);
}
.person-hero__groups span {
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}
.person-hero__media {
  min-height: 520px;
  overflow: hidden;
}
.person-hero__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.person-photo-placeholder--hero {
  min-height: 520px;
  color: rgba(255,255,255,.55);
  background: linear-gradient(145deg, var(--navy-2), var(--navy-3));
}
.person-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}
.person-biography {
  max-width: 820px;
}
.person-biography p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.person-profile-aside {
  padding: 28px;
}
.person-profile-aside h2 {
  font-size: 24px;
}
.person-profile-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.person-profile-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 750;
}
.person-profile-links svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 980px) {
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .person-hero__grid,
  .person-profile-grid {
    grid-template-columns: 1fr;
  }
  .person-hero__copy {
    padding-right: 0;
  }
  .person-hero__media {
    min-height: 420px;
    max-height: 620px;
  }
}

@media (max-width: 700px) {
  .people-grid {
    grid-template-columns: 1fr;
  }
  .about-leadership .filter-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .iom-about-values-section {
    padding: 26px 20px;
  }
  .person-hero__media,
  .person-photo-placeholder--hero {
    min-height: 360px;
  }
}

/* --------------------------------------------------------------------------
   About wide editorial layout + Service-style value cards — 0.18.6
   -------------------------------------------------------------------------- */
/* Use the same 1180px site shell as rich Service pages. Narrative copy keeps a
   readable measure, while structural blocks such as Values can use the full
   shell width. */
.about-editor-content .iom-about-section,
.about-editor-content .iom-about-values-section,
.about-editor-content .iom-about-people-intro {
  width: 100%;
  max-width: none;
  margin-inline: 0 !important;
}

.about-editor-content .iom-about-section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  width: 100%;
  max-width: 880px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.about-editor-content .iom-about-lead {
  max-width: 880px !important;
}

.about-editor-content .iom-about-intro-section > p,
.about-editor-content .iom-about-values-section > p:not(.eyebrow),
.about-editor-content .iom-about-people-intro > p:not(.eyebrow) {
  max-width: 880px !important;
}

/* Values deliberately reuse the visual language of Service audience/benefit
   cards: white surface, orange top rule, subtle border/shadow and check badge. */
.iom-about-values-section {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.about-editor-content .iom-about-values-section .iom-site-card-grid--five,
.iom-about-values-section .iom-site-card-grid--five {
  display: grid;
  width: 100%;
  max-width: none !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin: clamp(26px, 4vw, 42px) 0 0 !important;
}

.iom-about-values-section .iom-site-card {
  position: relative;
  grid-column: span 2;
  min-width: 0;
  min-height: 0;
  margin: 0 !important;
  padding: 24px 62px 24px 24px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.iom-about-values-section .iom-site-card:nth-child(4) {
  grid-column: 1 / span 3;
}

.iom-about-values-section .iom-site-card:nth-child(5) {
  grid-column: 4 / span 3;
}

.iom-about-values-section .iom-site-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--orange);
}

.iom-about-values-section .iom-site-card::after {
  content: "✓";
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 32px;
  height: 32px;
  margin: 0;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.iom-about-values-section .iom-site-card.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.iom-about-values-section .iom-site-card h3 {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.12;
  letter-spacing: -.025em;
}

.iom-about-values-section .iom-site-card p {
  max-width: none;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.iom-about-people-intro {
  padding-bottom: 4px;
}

.about-leadership {
  border-top: 1px solid var(--line);
}

.about-leadership__header {
  align-items: flex-end;
  margin-bottom: 30px;
}

.about-leadership__header h2 {
  margin-bottom: 0;
}

.about-leadership .people-grid--leadership {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: start;
  gap: 24px;
}

.about-leadership .person-card {
  box-shadow: none;
}

@media (max-width: 900px) {
  .about-editor-content .iom-about-values-section .iom-site-card-grid--five,
  .iom-about-values-section .iom-site-card-grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iom-about-values-section .iom-site-card,
  .iom-about-values-section .iom-site-card:nth-child(4),
  .iom-about-values-section .iom-site-card:nth-child(5) {
    grid-column: auto;
  }

  .iom-about-values-section .iom-site-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .about-editor-content .iom-about-values-section .iom-site-card-grid--five,
  .iom-about-values-section .iom-site-card-grid--five {
    grid-template-columns: 1fr;
  }

  .iom-about-values-section .iom-site-card,
  .iom-about-values-section .iom-site-card:last-child:nth-child(odd) {
    grid-column: auto;
    padding: 22px 56px 22px 20px;
  }

  .about-leadership__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-leadership .people-grid--leadership {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   About full-width block content parity — 0.18.7
   --------------------------------------------------------------------------
   The About groups use Gutenberg's constrained layout. The group itself is
   already correctly sized to the 1180px site shell; make its direct content
   fill that visible group instead of inheriting the global 760px contentSize
   or the previous 880px editorial measure. */
.about-editor-content .iom-about-section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  width: 100%;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.about-editor-content .iom-about-lead,
.about-editor-content .iom-about-intro-section > p,
.about-editor-content .iom-about-values-section > p:not(.eyebrow),
.about-editor-content .iom-about-people-intro,
.about-editor-content .iom-about-people-intro > p:not(.eyebrow) {
  width: 100%;
  max-width: none !important;
}

/* Careers editorial refresh: editable content + programmatic vacancies. */
.careers-editorial-section {
  background: var(--cream);
}

.careers-editorial {
  display: grid;
  gap: clamp(56px, 7vw, 90px);
}

.careers-editorial > .iom-careers-section,
.editor-styles-wrapper .iom-careers-section {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.careers-editorial .iom-careers-section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.editor-styles-wrapper .iom-careers-section.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.iom-careers-intro {
  width: 100%;
  max-width: none !important;
}

.iom-careers-intro h2,
.iom-careers-benefits-section h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.035em;
}

.iom-careers-intro > p:not(.eyebrow) {
  width: 100%;
  max-width: none;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.iom-careers-benefits-section > p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.iom-careers-intro .iom-careers-lead {
  width: 100%;
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(21px, 2.2vw, 28px);
  font-weight: 760;
  line-height: 1.35;
}

.iom-careers-benefits-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 42px);
}

.iom-careers-benefit-card {
  position: relative;
  min-height: 116px;
  margin: 0 !important;
  padding: 26px 58px 24px 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-soft);
}

.iom-careers-benefit-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--orange);
}

.iom-careers-benefit-card::after {
  content: "✓";
  display: grid;
  position: absolute;
  top: 21px;
  right: 20px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
}

.iom-careers-benefit-card.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.editor-styles-wrapper .iom-careers-benefit-card.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.iom-careers-benefit-card p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
}

.iom-careers-living-wage {
  display: flex !important;
  align-items: center;
  gap: clamp(22px, 4vw, 46px);
  margin-top: clamp(28px, 4vw, 44px) !important;
  padding: clamp(24px, 4vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.iom-careers-living-wage__logo {
  width: 129px;
  min-width: 129px;
  margin: 0 !important;
}

.iom-careers-living-wage__logo img {
  display: block;
  width: 129px;
  height: auto;
}

.iom-careers-living-wage__copy {
  margin: 0 !important;
}

.iom-careers-living-wage__copy h3 {
  margin: 2px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.careers-vacancies {
  background: #fff;
  border-top: 1px solid var(--line);
}

.careers-vacancies__heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.careers-empty--quiet {
  background: var(--cream);
}

.careers-general-enquiry {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 28px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.careers-general-enquiry p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .iom-careers-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .iom-careers-benefits-grid {
    grid-template-columns: 1fr;
  }

  .iom-careers-living-wage {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* --------------------------------------------------------------------------
   Gravity Forms public integration — theme 0.18.15
   -------------------------------------------------------------------------- */

/* Native Gravity Forms remain in the document so their validation, reCAPTCHA,
   AJAX confirmation, notifications and add-on feeds can run. They are kept
   off-screen rather than display:none, which would prevent some browser and
   plugin behaviours from initialising correctly. */
.iom-gravity-bridge-engines {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.form-submit-status {
  margin: 16px 0 0;
  padding: 12px 14px;
  color: var(--ink);
  background: #f3f5f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.form-submit-status[hidden] { display: none !important; }
.form-submit-status.is-error { color: #7d2019; background: #fff1ef; border-color: #e5aaa4; }
.form-submit-status.is-success { color: #175b3b; background: #eff9f3; border-color: #9acaae; }
.iom-expert-placeholder-form [data-expert-submit][disabled] { opacity: .65; cursor: wait; }

/* Light-touch styling for the two native public Gravity Forms: General Contact
   and Newsletter. Gravity Forms remains responsible for field markup and errors. */
.content-panel > .gform_wrapper,
.newsletter-form .gform_wrapper {
  margin-top: 20px;
}

.content-panel > .gform_wrapper .gform_fields,
.newsletter-form .gform_wrapper .gform_fields {
  row-gap: 16px;
}

.content-panel > .gform_wrapper .gfield_label,
.newsletter-form .gform_wrapper .gfield_label {
  color: var(--ink);
  font-weight: 750;
}

.content-panel > .gform_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.content-panel > .gform_wrapper select,
.content-panel > .gform_wrapper textarea,
.newsletter-form .gform_wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.newsletter-form .gform_wrapper select,
.newsletter-form .gform_wrapper textarea {
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #b8c0c6;
  border-radius: 8px;
  box-shadow: none;
}

.content-panel > .gform_wrapper textarea,
.newsletter-form .gform_wrapper textarea { min-height: 150px; }

.content-panel > .gform_wrapper input:focus,
.content-panel > .gform_wrapper select:focus,
.content-panel > .gform_wrapper textarea:focus,
.newsletter-form .gform_wrapper input:focus,
.newsletter-form .gform_wrapper select:focus,
.newsletter-form .gform_wrapper textarea:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(240, 74, 10, .14);
  outline-offset: 1px;
}

.content-panel > .gform_wrapper .gform_button,
.newsletter-form .gform_wrapper .gform_button {
  min-height: 46px;
  padding: 12px 20px;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.content-panel > .gform_wrapper .gform_button:hover,
.content-panel > .gform_wrapper .gform_button:focus-visible,
.newsletter-form .gform_wrapper .gform_button:hover,
.newsletter-form .gform_wrapper .gform_button:focus-visible {
  background: var(--orange-dark, #c83c08);
}

.newsletter-form .gform_wrapper,
.newsletter-form .gform_wrapper .gfield_label,
.newsletter-form .gform_wrapper .gfield_description,
.newsletter-form .gform_wrapper .gfield_required,
.newsletter-form .gform_wrapper .gform-field-label { color: #fff; }

.iom-thank-you-message {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 650;
  line-height: 1.5;
}


/* 0.18.16: Native Gravity Forms selects need tighter vertical padding than
   text inputs so option text stays vertically centred rather than clipped. */
.content-panel > .gform_wrapper select,
.newsletter-form .gform_wrapper select {
  padding: 3px 14px;
}

/* 0.18.18: Speak to an Expert uses a custom facade rather than native Gravity
   Forms markup. Give its select controls the same vertical treatment while
   retaining the standard form-control height. */
.iom-expert-placeholder-form select {
  min-height: 46px;
  padding: 3px 14px;
}

/* Thank You: dedicated confirmation layout avoids the generic page hero
   repeating the page excerpt/body and gives successful enquiries a purposeful
   final destination. */
.thank-you-page {
  background: #f9f7f3;
}

.thank-you-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  overflow: hidden;
  min-height: 520px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 56px rgba(10, 37, 52, .08);
}

.thank-you-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 76px);
}

.thank-you-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(240, 74, 10, .22);
}

.thank-you-card__icon svg {
  width: 25px;
  height: 25px;
}

.thank-you-card__copy h1 {
  margin: 0 0 18px;
  font-size: clamp(46px, 6vw, 72px);
  line-height: .98;
  letter-spacing: -.045em;
}

.thank-you-card__message,
.thank-you-card__message .iom-thank-you-message {
  max-width: 590px;
  margin: 0;
  color: #344957;
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 450;
  line-height: 1.6;
}

.thank-you-card__message p:last-child {
  margin-bottom: 0;
}

.thank-you-card__actions {
  margin-top: 32px;
}

.thank-you-card__media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #e7e4df;
}

.thank-you-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 31, 45, .58) 100%);
  pointer-events: none;
}

.thank-you-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thank-you-card__next {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  left: 30px;
  max-width: 520px;
  padding: 20px 22px;
  color: #fff;
  background: rgba(7, 37, 52, .92);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.thank-you-card__next span {
  display: block;
  margin-bottom: 6px;
  color: #ff7b3c;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.thank-you-card__next strong {
  display: block;
  font-size: 17px;
  line-height: 1.45;
}

.thank-you-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 22px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.thank-you-step {
  display: flex;
  gap: 16px;
  min-width: 0;
  padding: 22px 24px;
  background: #fff;
}

.thank-you-step__number {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}

.thank-you-step strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}

.thank-you-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .thank-you-card {
    grid-template-columns: 1fr;
  }

  .thank-you-card__media {
    min-height: 390px;
  }

  .thank-you-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .thank-you-card__copy {
    padding: 36px 26px 40px;
  }

  .thank-you-card__copy h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .thank-you-card__actions .button {
    width: 100%;
  }

  .thank-you-card__media {
    min-height: 330px;
  }

  .thank-you-card__next {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }
}

/* --------------------------------------------------------------------------
   Theme 0.18.22: final launch visual fixes
   -------------------------------------------------------------------------- */

/* Native General Contact consent copy uses Gravity Forms markup rather than
 * the custom Speak to an Expert .form-consent component. Keep its Privacy
 * Policy link visually consistent with the rest of the site. */
.content-panel > .gform_wrapper .gfield_consent_label a,
.content-panel > .gform_wrapper .gfield--type-consent a {
  color: var(--orange) !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-panel > .gform_wrapper .gfield_consent_label a:hover,
.content-panel > .gform_wrapper .gfield_consent_label a:focus-visible,
.content-panel > .gform_wrapper .gfield--type-consent a:hover,
.content-panel > .gform_wrapper .gfield--type-consent a:focus-visible {
  color: var(--orange-dark, #c83c08) !important;
}

/* The Case Study archive has a permanent filter column, so three cards across
 * leaves the card copy unnecessarily narrow on large desktop screens. */
@media (min-width: 1241px) {
  .content-archive-grid.case-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Finder no-match output sits on a white panel inside the dark finder. Give
 * the message and fallback action explicit colours rather than relying on
 * inherited finder text/button colours. */
.finder-results > p {
  margin: 0 0 14px;
  color: var(--ink);
}

.finder-results .finder-results__fallback {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(240, 74, 10, .18);
}

.finder-results .finder-results__fallback:hover,
.finder-results .finder-results__fallback:focus-visible {
  color: #fff;
  background: var(--orange-dark, #c83c08);
}

/* 0.18.23: retain a small page-background gap above the footer when the
 * Trusted Organisations strip is not rendered. If approved logos are added
 * later, the trusted strip becomes the final main child and supplies its own
 * spacing as before. */
main > .global-cta:last-child {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.page-home main > .home-expert-section:last-child {
  padding-bottom: clamp(24px, 3vw, 36px);
}
