/* Metis - site stylesheet
   Source of truth lives in src/static/styles.css; dist/ is generated by build.py. */

@font-face {
  font-family: Metis;
  src: url('assets/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #171817;
  --ink-2: #202220;
  --paper: #ffffff;
  --canvas: #f4f4f1;
  --line: #dadcd8;
  --line-strong: #b9bdb7;
  --line-input: #8a8e88;
  --line-dark: rgba(255, 255, 255, .14);
  --text: #171817;
  --text-2: #565b56;
  --text-on-dark: #ffffff;
  --text-2-on-dark: #b7bbb6;
  --orange: #ff5a24;
  --orange-hover: #ea4d1a;
  --orange-text: #c13a10;
  --gutter: clamp(20px, 5vw, 72px);
  --max: 1280px;
  --header-h: 72px;
  --section: clamp(64px, 8vw, 120px);
  --section-sm: clamp(48px, 6vw, 88px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: light;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 24px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Metis, Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, picture { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
button, a, input, textarea { -webkit-tap-highlight-color: transparent; }
/* Focus ring. The ring is judged against the surface it sits on, not the element
   it wraps: --orange-text clears 3:1 on paper and canvas, --orange clears it on
   the ink surfaces below, and the orange CTA band needs ink. Width and offset are
   the same everywhere. */
:focus-visible { outline: 2px solid var(--orange-text); outline-offset: 4px; }
.skip-link:focus-visible,
.site-header :focus-visible,
.hero :focus-visible,
.page-hero :focus-visible,
.section-dark :focus-visible,
.industry-stage :focus-visible,
.model-ink :focus-visible,
.site-footer :focus-visible { outline-color: var(--orange); }
.cta-band :focus-visible { outline-color: var(--ink); }
/* The desktop nav panel is a white sheet inside the ink header. */
.nav-panel :focus-visible { outline-color: var(--orange-text); }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
strong { font-weight: 600; }

.wrap { width: min(100% - var(--gutter) * 2, var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 100; background: var(--orange); color: var(--ink); padding: 14px 18px; font-weight: 600; }
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 560; letter-spacing: -.02em; line-height: 1.2; overflow-wrap: anywhere; }
.display, .page-title, .section-title { text-wrap: balance; }
.display { font-size: clamp(2.75rem, 5.4vw, 5rem); line-height: 1.02; letter-spacing: -.04em; font-weight: 580; }
.page-title { font-size: clamp(2.375rem, 4.2vw, 3.625rem); line-height: 1.06; letter-spacing: -.035em; font-weight: 560; }
.section-title { font-size: clamp(1.875rem, 2.9vw, 2.625rem); line-height: 1.12; letter-spacing: -.03em; font-weight: 540; max-width: 22ch; }
.section-title + .section-intro { margin-top: 22px; }
.section-intro { font-size: 1.125rem; line-height: 1.6; color: var(--text-2); max-width: 60ch; }
.section-intro + .link-arrow { margin-top: 22px; }
.lead { font-size: clamp(1.125rem, 1.5vw, 1.3125rem); line-height: 1.55; }
.accent { color: var(--orange); }
/* Eyebrow. --orange clears 4.5:1 only on the ink surfaces listed below, so the
   default is --orange-text, which clears it on paper and canvas. .model .eyebrow
   is named because .model > p would otherwise win the colour on specificity. */
.eyebrow { font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-text); }
.model .eyebrow { color: var(--orange-text); }
.site-header .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.tile-ink .eyebrow,
.tile-featured .eyebrow,
.industry-stage .eyebrow,
.model-ink .eyebrow,
.site-footer .eyebrow { color: var(--orange); }
.muted { color: var(--text-2); }
.prose > p + p { margin-top: 1.1em; }
.prose h2 { margin-top: 2.2em; font-size: 1.375rem; letter-spacing: -.02em; }
.prose h2:first-child { margin-top: 0; }
.prose h2 + p { margin-top: .7em; }
.prose h3 { margin-top: 2em; margin-bottom: .6em; }
.prose a { font-weight: 600; border-bottom: 1px solid var(--line-strong); transition: color .2s var(--ease), border-color .2s var(--ease); }
.prose a:hover { color: var(--orange-text); border-color: currentColor; }
.prose-page { max-width: 68ch; }
.prose-page .muted { margin-top: 2.4em; font-size: .9rem; }
h3 { font-size: 1.3125rem; }

/* Reveal on scroll: only applies when JS is running and motion is allowed. */
.js .reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Buttons and links ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px; border: 1px solid transparent;
  font-size: .9375rem; font-weight: 560; letter-spacing: -.005em; line-height: 1; white-space: nowrap;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-sm { min-height: 42px; padding: 0 20px; font-size: .9rem; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--ink-2); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #ececea; }
.btn-ghost { border-color: currentColor; }
.btn-ghost:hover { background: rgba(255, 255, 255, .1); }
.section-paper .btn-ghost:hover, .section-canvas .btn-ghost:hover { background: rgba(23, 24, 23, .06); }
.btn-orange { background: var(--orange); color: var(--ink); }
.btn-orange:hover { background: var(--orange-hover); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .9375rem; font-weight: 600; line-height: 1.4;
  transition: color .2s var(--ease), gap .2s var(--ease);
}
.link-arrow .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.link-arrow:hover { color: var(--orange-text); }
.link-arrow:hover .icon { transform: translateX(4px); }
.section-dark .link-arrow:hover, .site-footer .link-arrow:hover { color: var(--orange); }

/* ---------- Header and navigation ---------- */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: var(--ink); color: #fff; border-bottom: 1px solid var(--line-dark); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { font-size: 1.75rem; line-height: 1; letter-spacing: -.05em; font-weight: 680; display: inline-flex; align-items: center; gap: 6px; }
.brand-symbol { font-size: 1.2em; letter-spacing: -.22em; color: var(--orange); font-weight: 800; transform: translateY(-1px); padding-right: 6px; }
.menu-toggle { display: none; }

.nav-list { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 40px); }
.nav-item { position: relative; }
.nav-item-head { display: flex; align-items: center; gap: 2px; }
.nav-link { display: inline-flex; align-items: center; height: var(--header-h); font-size: .9375rem; font-weight: 500; color: #e7e9e5; transition: color .2s var(--ease); position: relative; }
.nav-link:hover, .nav-link[aria-current="page"] { color: #fff; }
.nav-link[aria-current="page"]::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--orange); }
.nav-cta { margin-left: clamp(4px, 1vw, 16px); }
.nav-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; color: #c9ccc7; }
.nav-menu-toggle .icon { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.nav-menu-toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }

.nav-panel {
  position: absolute; top: calc(100% - 1px); left: -20px; min-width: 320px;
  background: #fff; color: var(--ink); padding: 18px 8px 10px;
  box-shadow: 0 24px 48px -12px rgba(23, 24, 23, .28), 0 0 0 1px var(--line);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility 0s linear .18s;
}
.has-menu:hover .nav-panel, .has-menu:focus-within .nav-panel, .has-menu.is-open .nav-panel { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
/* A deliberate close (Escape, or a click on the toggle) wins over hover and
   :focus-within, so the panel shuts while the pointer or focus is still on the
   item. script.js clears is-dismissed once both have left, and never sets it
   together with is-open. */
.has-menu.is-dismissed .nav-panel { opacity: 0; visibility: hidden; transform: translateY(6px); transition: none; }
.nav-panel-list a { display: block; padding: 10px 16px; font-size: .95rem; font-weight: 500; transition: background-color .15s var(--ease), color .15s var(--ease); }
.nav-panel-list a:hover { background: var(--canvas); color: var(--orange-text); }
.nav-panel-all { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 10px 8px 0; padding: 14px 8px 8px; border-top: 1px solid var(--line); font-size: .9rem; font-weight: 600; }
.nav-panel-all .icon { width: 18px; height: 18px; }
.nav-panel-all:hover { color: var(--orange-text); }

/* ---------- Sections ---------- */
.section { padding-block: var(--section); }
.section-sm { padding-block: var(--section-sm); }
.section-paper { background: var(--paper); }
.section-canvas { background: var(--canvas); }
.section-dark { background: var(--ink); color: var(--text-on-dark); }
.section-dark .section-intro, .section-dark .muted { color: var(--text-2-on-dark); }
.section + .section-paper.section, .section-paper + .section-paper { border-top: 1px solid var(--line); }
.section-head { margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .link-arrow { margin-top: 24px; }

/* ---------- Home hero ---------- */
.hero { position: relative; isolation: isolate; background: var(--ink); color: #fff; overflow: hidden; display: flex; align-items: center; min-height: clamp(560px, calc(100svh - var(--header-h)), 820px); }
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 50%; }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(23, 24, 23, .92) 0%, rgba(23, 24, 23, .55) 48%, rgba(23, 24, 23, .05) 100%), linear-gradient(180deg, rgba(23, 24, 23, .5), transparent 30%, transparent 70%, rgba(23, 24, 23, .6)); }
.hero-content { padding-block: clamp(56px, 8vw, 96px); }
.hero-lead { margin-top: 28px; font-size: clamp(1.0625rem, 1.4vw, 1.25rem); line-height: 1.6; color: #e3e5e1; max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-brand { font-size: 1rem; font-weight: 600; letter-spacing: -.01em; color: var(--orange); margin-bottom: 24px; }
.hero-note { margin-top: 18px; font-size: .9rem; color: #c9ccc7; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero { position: relative; isolation: isolate; background: var(--ink); color: #fff; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: var(--gutter); bottom: 0; width: 80px; height: 3px; background: var(--orange); }
.page-hero-content { padding-block: clamp(64px, 8vw, 112px); }
.page-hero-content > * { max-width: 800px; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero .lead { margin-top: 24px; color: #e3e5e1; max-width: 36em; }
.page-hero .hero-actions { margin-top: 34px; }
.page-hero-compact .page-hero-content { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- Statement ---------- */
.statement-inner > * { max-width: 880px; }
.statement-inner::before { content: ''; display: block; width: 48px; height: 3px; background: var(--orange); margin-bottom: 32px; }
.statement-inner .lead { margin-top: 28px; color: var(--text-2); }
.statement-inner .link-arrow { margin-top: 30px; }

/* ---------- Tiles (consulting services grid) ---------- */
.tiles { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.tile { position: relative; display: flex; flex-direction: column; justify-content: flex-end; min-height: 240px; padding: 30px 30px 26px; background: var(--paper); border: 1px solid var(--line); isolation: isolate; overflow: hidden; transition: border-color .2s var(--ease), transform .25s var(--ease); }
.tile:hover { transform: translateY(-2px); }
.tile::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); z-index: 1; }
.tile:hover::before { transform: scaleX(1); }
.tile h3 { font-size: 1.375rem; letter-spacing: -.02em; }
.tile p { margin-top: 10px; font-size: .9875rem; line-height: 1.55; color: var(--text-2); max-width: 40ch; }
.tile-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-size: .9rem; font-weight: 600; }
.tile-cta .icon { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.tile:hover .tile-cta .icon { transform: translateX(4px); }
.tile-canvas { background: var(--canvas); border-color: var(--canvas); }
.tile-ink { background: var(--ink); border-color: var(--ink); color: #fff; }
.tile-ink p { color: var(--text-2-on-dark); }
.tile-featured { grid-column: span 6; grid-row: span 2; min-height: 496px; color: #fff; border-color: var(--ink); background: var(--ink); }
.tile-featured .tile-media { position: absolute; inset: 0; z-index: -2; }
.tile-featured .tile-media img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 40%; }
.tile-featured::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(23, 24, 23, .1) 0%, rgba(23, 24, 23, .55) 55%, rgba(23, 24, 23, .92) 100%); }
.tile-featured h3 { font-size: clamp(1.625rem, 2.2vw, 2rem); }
.tile-featured p { color: #e3e5e1; max-width: 44ch; }
.tile-half { grid-column: span 6; }
.tile-third { grid-column: span 4; }

/* ---------- Columns (home expertise band): open columns, vertical dividers ---------- */
.columns { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(40px, 5vw, 64px); }
.columns > li { padding: 6px 28px 0; border-left: 1px solid var(--line-dark); }
.columns > li:first-child { padding-left: 0; border-left: 0; }
.section-paper .columns > li, .section-canvas .columns > li { border-left-color: var(--line-strong); }
.columns h3 { font-size: 1.25rem; }
.columns h3::before { content: ''; display: block; width: 22px; height: 2px; background: var(--orange); margin-bottom: 18px; }
.columns p { margin-top: 12px; font-size: .975rem; line-height: 1.6; color: var(--text-2-on-dark); }
.section-paper .columns p, .section-canvas .columns p { color: var(--text-2); }
.columns .link-arrow { margin-top: 18px; font-size: .9rem; }
.columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ---------- Split (media + text) ---------- */
.split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.split-media img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split-data-center { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.split-data-center .data-center-photo { height: auto; aspect-ratio: 3 / 2; }
.who-photo { object-position: 22% 50%; }
.split-body > p { margin-top: 22px; color: var(--text-2); max-width: 58ch; }
.split-body .link-arrow { margin-top: 30px; }
.split-reverse .split-media { order: 2; }
.inline-list { margin-top: 30px; display: grid; gap: 14px; }
.inline-list li { padding-left: 22px; position: relative; color: var(--text-2); line-height: 1.55; }
.inline-list li::before { content: ''; position: absolute; left: 0; top: .75em; width: 10px; height: 2px; background: var(--orange); }
.inline-list strong { color: var(--text); }

/* ---------- Industry slideshow ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; border: 0; }
.industry-carousel { margin-top: clamp(36px, 5vw, 56px); }
.industry-stage { background: var(--ink); color: #fff; }
.industry-slide { display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr); min-height: 460px; }
.industry-slide[hidden], .industry-controls[hidden], .industry-selectors[hidden] { display: none; }
.industry-slide + .industry-slide { border-top: 1px solid var(--line-dark); }
.is-ready .industry-slide { border-top: 0; }
.industry-image { min-width: 0; height: 100%; touch-action: pan-y pinch-zoom; overflow: hidden; }
.industry-image img { width: 100%; height: 100%; object-fit: cover; }
.industry-body { padding: clamp(30px, 4vw, 56px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.industry-body h3 { margin-top: 28px; font-size: clamp(1.8rem, 2.8vw, 2.5rem); line-height: 1.12; }
.industry-body > p:not(.eyebrow) { margin-top: 22px; color: #c9ccc7; font-size: 1rem; line-height: 1.65; }
.industry-body .link-arrow { margin-top: 32px; }
.industry-body .link-arrow:hover { color: var(--orange); }
.is-ready .industry-image img { animation: industry-enter .45s var(--ease); }
@keyframes industry-enter { from { opacity: .65; } to { opacity: 1; } }
.industry-controls { display: flex; align-items: center; justify-content: space-between; padding-block: 18px; border-bottom: 1px solid var(--line-strong); }
.industry-status { font-size: .875rem; font-variant-numeric: tabular-nums; color: var(--text-2); }
.industry-status [data-industry-count] { color: var(--ink); font-weight: 650; }
.industry-arrows { display: flex; gap: 10px; }
.industry-arrows button { width: 48px; height: 48px; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: background-color .2s, color .2s; }
.industry-arrows button:hover { background: var(--ink); color: #fff; }
[data-industry-prev] .icon { transform: rotate(180deg); }
.industry-selectors { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.industry-selectors button { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; padding: 20px 16px 20px 0; border-top: 3px solid transparent; text-align: left; font-size: .875rem; line-height: 1.4; font-weight: 550; }
.industry-selectors button span { font-size: .75rem; color: var(--text-2); font-variant-numeric: tabular-nums; }
.industry-selectors button[aria-pressed="true"] { border-top-color: var(--orange); }
.industry-selectors button[aria-pressed="true"] span, .industry-selectors button:hover { color: var(--orange-text); }
@media (max-width: 900px) {
  .industry-slide { grid-template-columns: 1fr; }
  .industry-image { aspect-ratio: 3 / 2; }
  .industry-body { min-height: 320px; }
  .industry-body h3 { margin-top: 16px; }
  .industry-selectors { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .industry-body { padding: 28px 24px; min-height: 345px; }
  .industry-body h3 { font-size: 1.875rem; }
  .industry-body .link-arrow { margin-top: 24px; }
  .industry-selectors { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-selectors button { padding-block: 14px; gap: 4px; }
}

/* ---------- Platforms ticker: one full-bleed line of vendor logos ----------
   The logo list comes from src/partials/platform-logos.html (generated by tools/make-logos.py).
   Without JavaScript, or with reduced motion, the list is static and wraps inside the gutters.
   With JavaScript, script.js clones the list to fill the line and sets
   --ticker-distance (one list plus one gap) and --ticker-duration on the track.
   Logos render as ink silhouettes and show their own colours on hover, which also pauses the line. */
.platforms { --ticker-gap: clamp(44px, 5vw, 80px); --logo-scale: 1; }
.platforms-head { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); align-items: baseline; gap: 8px clamp(32px, 5vw, 80px); }
.platforms-title { font-size: 1.375rem; letter-spacing: -.02em; }
.platforms-intro { font-size: .95rem; line-height: 1.55; color: var(--text-2); max-width: 58ch; }
.ticker { margin-top: 30px; padding: 30px var(--gutter); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.ticker-track { display: flex; column-gap: var(--ticker-gap); }
.ticker-list { display: flex; flex-wrap: wrap; align-items: center; gap: 28px var(--ticker-gap); }
.ticker-list li { display: flex; align-items: center; height: calc(36px * var(--logo-scale)); }
.ticker-list img { display: block; height: calc(var(--logo-h, 34px) * var(--logo-scale)); width: auto; filter: brightness(0); opacity: .72; transition: filter .25s var(--ease), opacity .25s var(--ease); }
.ticker-list li:hover img { filter: none; opacity: 1; }
.js .ticker.is-ready { padding-inline: 0; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 64px, #000 calc(100% - 64px), transparent); mask-image: linear-gradient(90deg, transparent, #000 64px, #000 calc(100% - 64px), transparent); }
.js .ticker.is-ready .ticker-track { width: max-content; will-change: transform; animation: ticker-scroll var(--ticker-duration, 90s) linear infinite; }
.js .ticker.is-ready .ticker-list { flex-wrap: nowrap; }
.js .ticker.is-ready:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll { to { transform: translateX(calc(-1 * var(--ticker-distance, 100%))); } }
.platforms-foot { margin-top: 22px; }
.platforms-note { font-size: .875rem; line-height: 1.5; color: var(--text-2); max-width: 64ch; }

/* ---------- Two-column statement with points ---------- */
.why-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.why-grid .section-intro { margin-top: 22px; }
.why-grid .link-arrow { margin-top: 26px; }
.points { display: grid; gap: 36px; }
.points li { padding-left: 28px; border-left: 2px solid var(--orange); }
.points h3 { font-size: 1.3125rem; }
.points p { margin-top: 10px; color: var(--text-2); line-height: 1.6; max-width: 52ch; }
.section-dark .points p { color: var(--text-2-on-dark); }

/* ---------- Capability grid and situations ---------- */
/* One bordered matrix: the 1px gap shows the grid colour through as dividers,
   and each cell sits on the surface that contrasts its section. */
.cap-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; margin-top: clamp(40px, 5vw, 64px); background: var(--line-strong); border: 1px solid var(--line-strong); }
.cap-grid > li { background: var(--canvas); padding: 26px 26px 28px; }
.section-canvas .cap-grid > li { background: var(--paper); }
.section-dark .cap-grid { background: var(--line-dark); border-color: var(--line-dark); }
.section-dark .cap-grid > li { background: var(--ink-2); }
.cap-grid h3 { font-size: 1.125rem; letter-spacing: -.015em; }
.cap-grid h3::before { content: ''; display: block; width: 22px; height: 2px; background: var(--orange); margin-bottom: 18px; }
.cap-grid p { margin-top: 10px; font-size: .95rem; line-height: 1.6; color: var(--text-2); }
.section-dark .cap-grid p { color: var(--text-2-on-dark); }
.cap-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.situations { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(40px, 5vw, 72px); margin-top: clamp(36px, 4vw, 56px); border-bottom: 1px solid var(--line-strong); }
.situations > li { display: grid; grid-template-columns: 22px 1fr; column-gap: 16px; padding: 26px 0 28px; border-top: 1px solid var(--line-strong); font-size: 1.25rem; line-height: 1.45; letter-spacing: -.015em; font-weight: 500; text-wrap: pretty; }
.situations > li::before { content: ''; width: 14px; height: 2px; background: var(--orange); margin-top: .7em; }
.situations > li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.section-dark .situations, .section-dark .situations > li { border-color: var(--line-dark); }

/* ---------- Deliverables: one paper sheet (the report you receive) on the dark band ---------- */
.deliverables { margin-top: clamp(36px, 4vw, 56px); padding: 6px clamp(24px, 3vw, 40px); background: var(--paper); color: var(--text); }
.section-paper .deliverables { background: var(--canvas); }
.deliverables > li { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); column-gap: clamp(24px, 4vw, 56px); align-items: start; padding: 22px 0 24px; border-top: 1px solid var(--line); line-height: 1.55; }
.deliverables > li:first-child { border-top: 0; }
.deliverables strong { display: grid; grid-template-columns: 14px 1fr; column-gap: 12px; align-items: start; color: var(--text); font-size: 1.0625rem; letter-spacing: -.01em; }
.deliverables strong::before { content: ''; width: 14px; height: 2px; background: var(--orange); margin-top: .75em; }
.deliverables span { color: var(--text-2); font-size: .95rem; }

/* ---------- Engagement models ---------- */
.models { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: clamp(40px, 5vw, 64px); }
.model { padding: 34px 32px 36px; border: 1px solid var(--line); background: var(--paper); display: flex; flex-direction: column; }
.model-canvas { background: var(--canvas); border-color: var(--canvas); }
.model-ink { background: var(--ink); border-color: var(--ink); color: #fff; }
.model .eyebrow { margin-bottom: 14px; }
.model h3 { font-size: 1.5rem; letter-spacing: -.025em; }
.model > p { margin-top: 14px; color: var(--text-2); line-height: 1.6; }
.model-ink > p { color: var(--text-2-on-dark); }
.model h4 { margin-top: 28px; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.model-ink h4 { color: var(--text-2-on-dark); }
.model ul { margin-top: 10px; display: grid; gap: 8px; font-size: .95rem; line-height: 1.5; }
.model ul li { padding-left: 18px; position: relative; }
.model ul li::before { content: ''; position: absolute; left: 0; top: .7em; width: 8px; height: 2px; background: var(--orange); }
.model .link-arrow { margin-top: auto; padding-top: 30px; }
.models-note { margin-top: 26px; font-size: .95rem; line-height: 1.6; color: var(--text-2); max-width: 66ch; }

/* ---------- Method (how we work phases) ---------- */
.method { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 32px; margin-top: clamp(40px, 5vw, 64px); counter-reset: phase; }
.method > li { position: relative; padding-top: 30px; border-top: 1px solid var(--line-strong); counter-increment: phase; }
.method > li::before { content: ''; position: absolute; top: -2px; left: 0; width: 44px; height: 3px; background: var(--orange); }
.method h3 { font-size: 1.5rem; letter-spacing: -.025em; }
.method h3::before { content: counter(phase, decimal-leading-zero); display: block; font-size: 2.25rem; line-height: 1; font-weight: 500; letter-spacing: -.03em; color: var(--orange-text); margin-bottom: 22px; font-variant-numeric: tabular-nums; }
.method p { margin-top: 14px; color: var(--text-2); line-height: 1.6; font-size: .975rem; }
.method h4 { margin-top: 22px; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.method ul { margin-top: 8px; display: grid; gap: 6px; font-size: .925rem; line-height: 1.5; }

/* ---------- Phases (how a service engagement runs): labeled rows keyed to the method numerals ---------- */
.phases { border-top: 1px solid var(--line-strong); }
.phases > li { display: grid; grid-template-columns: 40px 132px minmax(0, 1fr); column-gap: 16px; padding: 24px 0 26px; border-bottom: 1px solid var(--line-strong); }
.phases > li::before { content: attr(data-phase); font-size: .8125rem; font-weight: 600; color: var(--orange-text); font-variant-numeric: tabular-nums; padding-top: .4em; }
.phases h3 { font-size: 1.125rem; letter-spacing: -.015em; }
.phases p { font-size: .975rem; line-height: 1.6; color: var(--text-2); }

/* ---------- FAQ: native disclosure rows, no JavaScript ---------- */
.faq { border-top: 1px solid var(--line-strong); }
.faq details { border-bottom: 1px solid var(--line-strong); }
.faq summary { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 20px 0; font-size: 1.0625rem; font-weight: 560; letter-spacing: -.01em; line-height: 1.4; cursor: pointer; list-style: none; transition: color .2s var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; flex-shrink: 0; width: 11px; height: 11px; margin: .3em 4px 0 0; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform .2s var(--ease); }
.faq details[open] summary::after { transform: translateY(6px) rotate(-135deg); }
.faq summary:hover { color: var(--orange-text); }
.faq summary:focus-visible { outline: 2px solid var(--orange-text); outline-offset: 4px; }
.faq details p { padding: 0 0 24px; max-width: 62ch; font-size: .975rem; color: var(--text-2); line-height: 1.6; }

/* ---------- Targets: named targeted assessments as a row of labels ---------- */
.targets { margin-top: clamp(32px, 4vw, 48px); display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 8px clamp(32px, 5vw, 72px); align-items: start; }
.targets h3 { font-size: 1.125rem; letter-spacing: -.015em; }
.targets > p { font-size: .95rem; line-height: 1.6; color: var(--text-2); max-width: 44ch; }
.targets ul { grid-column: 2; grid-row: 1 / 3; display: flex; flex-wrap: wrap; gap: 10px; }
.targets li { padding: 11px 16px; border: 1px solid var(--line-strong); background: var(--paper); font-size: .95rem; font-weight: 550; letter-spacing: -.01em; }

/* ---------- Report contents: table of contents beside one example finding ---------- */
.report { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 72px); margin-top: clamp(40px, 5vw, 64px); align-items: start; }
.toc { counter-reset: toc; border-top: 1px solid var(--line-strong); }
.toc > li { counter-increment: toc; display: grid; grid-template-columns: 40px minmax(0, 1fr); column-gap: 12px; padding: 18px 0 20px; border-bottom: 1px solid var(--line-strong); }
.toc > li::before { content: counter(toc, decimal-leading-zero); font-size: .8125rem; font-weight: 600; color: var(--orange-text); font-variant-numeric: tabular-nums; padding-top: .35em; }
.toc strong { font-size: 1.0625rem; letter-spacing: -.01em; }
.toc span { grid-column: 2; margin-top: 6px; font-size: .95rem; line-height: 1.55; color: var(--text-2); }
.finding { padding: 30px 32px 28px; background: var(--canvas); border-left: 3px solid var(--orange); }
.finding h3 { margin-top: 14px; font-size: 1.25rem; }
.finding dl { margin-top: 22px; display: grid; gap: 14px; }
.finding dl > div { display: grid; grid-template-columns: 158px minmax(0, 1fr); column-gap: 16px; }
.finding dt { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); padding-top: .25em; }
.finding dd { margin: 0; font-size: .95rem; line-height: 1.55; }
.finding-note { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-strong); font-size: .875rem; color: var(--text-2); line-height: 1.5; }

/* ---------- Related (links to two other pages) ---------- */
.related { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: clamp(32px, 4vw, 48px); }
.related a { display: flex; flex-direction: column; gap: 10px; padding: 28px 30px; border: 1px solid var(--line); background: var(--paper); transition: border-color .2s var(--ease), color .2s var(--ease); }
.related a:hover { border-color: var(--ink); }
.related a:hover h3 { color: var(--orange-text); }
.related .eyebrow { color: var(--text-2); }
.related h3 { font-size: 1.25rem; transition: color .2s var(--ease); }
.related p { font-size: .95rem; color: var(--text-2); line-height: 1.55; }

/* ---------- Service grid (consulting overview) ---------- */
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: clamp(40px, 5vw, 64px); }
.service-grid > li { position: relative; padding: 36px 36px 34px; background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .2s var(--ease); }
.section-paper .service-grid > li { background: var(--canvas); border-color: var(--canvas); }
.service-grid > li:hover { border-color: var(--ink); }
.service-grid > li::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.service-grid > li:hover::before { transform: scaleX(1); }
.service-grid h3 { font-size: 1.5rem; letter-spacing: -.025em; }
.service-grid h3 a { transition: color .2s var(--ease); }
.service-grid h3 a:hover { color: var(--orange-text); }
.service-grid > li > p { margin-top: 14px; color: var(--text-2); line-height: 1.6; max-width: 52ch; }
.service-grid dl { margin: 26px 0 0; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: 18px; }
.service-grid dt { font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.service-grid dd { margin: 6px 0 0; font-size: .95rem; line-height: 1.55; }
.service-grid dd ul { display: grid; gap: 6px; }
.service-grid dd li { padding-left: 18px; position: relative; }
.service-grid dd li::before { content: ''; position: absolute; left: 0; top: .7em; width: 8px; height: 2px; background: var(--orange); }
.service-grid .link-arrow { margin-top: auto; padding-top: 26px; }

/* ---------- Expertise sections ---------- */
.expertise-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.expertise-grid .section-intro { margin-top: 22px; }
.expertise-grid .link-arrow { margin-top: 26px; }
.expertise-grid .cap-grid { margin-top: 6px; }
.expertise-grid-reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.expertise-grid-reverse > :first-child { order: 2; }

/* ---------- Sector detail (industries page) ---------- */
.sector-detail { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 64px; }
.sector-detail > li { padding-top: 26px; border-top: 2px solid var(--ink); }
.sector-detail > li:last-child:nth-child(odd) { grid-column: 1 / -1; }
.sector-detail > li:last-child:nth-child(odd) p { max-width: 68ch; }
.sector-detail h2 { font-size: 1.625rem; letter-spacing: -.025em; }
.sector-detail p { margin-top: 16px; color: var(--text-2); line-height: 1.6; }
.sector-detail h3 { margin-top: 24px; font-size: .8125rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--text-2); }
.sector-detail ul { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.sector-detail ul a { font-size: .95rem; font-weight: 600; border-bottom: 1px solid var(--line-strong); transition: color .2s var(--ease), border-color .2s var(--ease); }
.sector-detail ul a:hover { color: var(--orange-text); border-color: currentColor; }

/* ---------- CTA band: the scoping-call offer with what happens next ---------- */
.cta-band { background: var(--orange); color: var(--ink); }
.cta-inner { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 40px; align-items: center; }
.cta-inner .section-title { max-width: 22ch; }
.nowrap { white-space: nowrap; }
.cta-inner p { margin-top: 20px; max-width: 46ch; color: #3b2418; }
.cta-steps { margin-top: 26px; display: grid; gap: 10px; counter-reset: step; max-width: 58ch; }
.cta-steps li { counter-increment: step; position: relative; padding-left: 30px; font-size: .95rem; line-height: 1.55; color: #3b2418; }
.cta-steps li::before { content: counter(step); position: absolute; left: 0; top: 0; font-weight: 650; color: var(--ink); font-variant-numeric: tabular-nums; }
.cta-steps strong { color: var(--ink); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.cta-secondary { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 600; color: var(--ink); border-bottom: 1px solid rgba(23, 24, 23, .35); padding-bottom: 2px; text-align: right; transition: border-color .2s var(--ease); }
.cta-secondary:hover { border-color: var(--ink); }
.cta-secondary .icon { width: 18px; height: 18px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact-aside h2 { font-size: 1.25rem; margin-bottom: 14px; }
.contact-aside p { color: var(--text-2); }
.contact-aside .expect { margin-top: 36px; display: grid; gap: 18px; }
.contact-aside .expect li { padding-left: 22px; position: relative; color: var(--text-2); line-height: 1.55; }
.contact-aside .expect li::before { content: ''; position: absolute; left: 0; top: .75em; width: 10px; height: 2px; background: var(--orange); }
.contact-aside .expect strong { color: var(--text); }
.contact-email { margin-top: 36px; font-size: .95rem; color: var(--text-2); }
.contact-email a { font-weight: 600; color: var(--text); border-bottom: 1px solid var(--line-strong); }
.contact-email a:hover { color: var(--orange-text); border-color: currentColor; }
.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .9rem; font-weight: 600; }
/* Form control boundaries carry --line-input, which clears the 3:1 minimum for
   non-text contrast on white; --line-strong does not. */
.field input, .field textarea { width: 100%; font: inherit; font-size: 1rem; color: var(--text); background: #fff; border: 1px solid var(--line-input); padding: 14px 16px; border-radius: 0; transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
.field input::placeholder, .field textarea::placeholder { color: #767b76; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(255, 90, 36, .28); }
.field textarea { min-height: 160px; resize: vertical; }
.field-help { font-size: .875rem; color: var(--text-2); }
.field-error { font-size: .875rem; color: #b3260a; font-weight: 500; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #b3260a; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.form-note { font-size: .875rem; color: var(--text-2); }
.form-status { padding: 16px 18px; border: 1px solid var(--line); background: var(--canvas); font-size: .95rem; line-height: 1.55; }
.form-status.is-success { border-color: #1f7a3a; background: #eef7f0; }
.form-status.is-error { border-color: #b3260a; background: #fbeeea; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-help a { color: var(--text); font-weight: 600; border-bottom: 1px solid var(--line-strong); transition: color .2s var(--ease), border-color .2s var(--ease); }
.field-help a:hover { color: var(--orange-text); border-color: currentColor; }
.field-check label { display: grid; grid-template-columns: 20px minmax(0, 1fr); column-gap: 12px; align-items: start; font-weight: 500; line-height: 1.5; cursor: pointer; }
.field-check input { width: 20px; height: 20px; margin: .2em 0 0; padding: 0; accent-color: var(--orange); cursor: pointer; }
.field-check input:focus { box-shadow: 0 0 0 3px rgba(255, 90, 36, .28); }
.field-check .field-help { padding-left: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #fff; padding-block: clamp(56px, 7vw, 88px) 28px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 48px 40px; padding-bottom: clamp(40px, 5vw, 64px); }
.footer-brand p { margin-top: 20px; font-size: .95rem; line-height: 1.6; color: var(--text-2-on-dark); max-width: 34ch; }
.footer-col h2 { font-size: .8125rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-2-on-dark); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: .95rem; color: #e7e9e5; transition: color .2s var(--ease); }
.footer-col ul a:hover { color: var(--orange); }
.footer-contact p { font-size: .95rem; line-height: 1.6; color: var(--text-2-on-dark); max-width: 30ch; }
.footer-contact .link-arrow { margin-top: 18px; color: #fff; }
.footer-email { margin-top: 18px; }
.footer-email a { border-bottom: 1px solid var(--line-dark); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding-top: 24px; border-top: 1px solid var(--line-dark); color: var(--text-2-on-dark); font-size: .875rem; }
.footer-legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; }
.footer-legal a { color: #e7e9e5; font-weight: 500; transition: color .2s var(--ease); }
.footer-legal a:hover { color: var(--orange); }
.back-top { display: inline-flex; align-items: center; gap: 10px; color: #e7e9e5; font-weight: 500; transition: color .2s var(--ease); }
.back-top:hover { color: var(--orange); }
.back-top .icon { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .tile-featured { min-height: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .brand { font-size: 1.625rem; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 10px; height: 44px; padding: 0 4px; font-size: .9375rem; font-weight: 500; }
  .menu-toggle .icon { width: 22px; height: 22px; }
  .menu-toggle .icon-close, .menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
  .menu-toggle[aria-expanded="true"] .icon-close { display: block; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100vh - var(--header-h)); overflow-y: auto; background: var(--ink); border-bottom: 1px solid var(--line-dark); padding: 8px var(--gutter) 28px; }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-item { border-bottom: 1px solid var(--line-dark); }
  .nav-link { height: auto; padding: 18px 0; font-size: 1.25rem; }
  .nav-link[aria-current="page"]::after { display: none; }
  .nav-item-head { justify-content: space-between; }
  .nav-menu-toggle { width: 44px; height: 44px; color: #fff; }
  .nav-menu-toggle .icon { width: 20px; height: 20px; }
  .nav-panel { position: static; min-width: 0; background: none; color: #fff; box-shadow: none; padding: 0 0 18px; opacity: 1; visibility: visible; transform: none; display: none; transition: none; }
  /* The panel drops its white sheet here and sits on the ink nav. */
  .nav-panel :focus-visible { outline-color: var(--orange); }
  .has-menu.is-open .nav-panel { display: block; }
  .has-menu:hover .nav-panel, .has-menu:focus-within .nav-panel { display: none; }
  .has-menu.is-open:hover .nav-panel, .has-menu.is-open:focus-within .nav-panel { display: block; }
  .has-menu.is-dismissed .nav-panel { display: none; }
  .nav-panel-list a { padding: 10px 0 10px 16px; color: #e7e9e5; font-size: 1.0625rem; border-left: 1px solid var(--line-dark); }
  .nav-panel-list a:hover { background: none; color: var(--orange); }
  .nav-panel-all { margin: 8px 0 0; padding: 12px 0 0 16px; border-top: 0; color: #fff; }
  .nav-panel-all:hover { color: var(--orange); }
  .nav-cta { border-bottom: 0; padding-top: 22px; margin-left: 0; }
  .nav-cta a { width: 100%; min-height: 50px; font-size: 1rem; }

  .hero { min-height: clamp(520px, calc(100svh - var(--header-h)), 720px); }
  .hero-media img { object-position: 60% 50%; }
  .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile-featured, .tile-half, .tile-third { grid-column: span 1; grid-row: auto; }
  .tile-featured { grid-column: span 2; min-height: 380px; }
  .columns, .cap-grid, .method { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .columns { row-gap: 40px; }
  .columns > li:nth-child(odd) { padding-left: 0; border-left: 0; }
  .method { row-gap: 44px; }
  .split, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .split-data-center .split-media { max-width: none; }
  .split-media { max-width: 520px; }
  .split-media img { aspect-ratio: 5 / 4; }
  .who-photo { aspect-ratio: 1 / 1; object-position: 0% 50%; }
  .split-reverse .split-media { order: 0; }
  .models { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-grid-reverse > :first-child { order: 0; }
  .expertise-grid .cap-grid { margin-top: 0; }
  .sector-detail { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; align-items: start; }
  .cta-actions { align-items: flex-start; }
  .cta-secondary { text-align: left; }
  .targets, .report { grid-template-columns: 1fr; }
  .targets ul { grid-column: 1; grid-row: auto; margin-top: 12px; }
}

@media (max-width: 700px) {
  .platforms { --ticker-gap: 36px; --logo-scale: .8; }
  .platforms-head { grid-template-columns: 1fr; }
  .ticker { margin-top: 24px; padding-block: 24px; }
  .js .ticker.is-ready { -webkit-mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent); mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent); }
  .platforms-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 600px) {
  .display { font-size: clamp(2.5rem, 11vw, 3.25rem); }
  .page-title { font-size: clamp(2.125rem, 9vw, 2.75rem); }
  .section-title { font-size: clamp(1.75rem, 7vw, 2.125rem); }
  .hero-content { padding-block: 48px 64px; }
  .hero-lead { font-size: 1.0625rem; }
  .hero-actions .btn { width: 100%; }
  .hero-media img { object-position: 66% 50%; opacity: .8; }
  .tiles { grid-template-columns: 1fr; gap: 12px; }
  .tile { min-height: 0; padding: 26px 24px 24px; }
  .tile-featured { grid-column: span 1; min-height: 340px; }
  .columns, .cap-grid, .situations, .deliverables, .method, .related, .service-grid { grid-template-columns: 1fr; }
  .service-grid { gap: 12px; }
  .service-grid > li { padding: 28px 24px 26px; }
  .cap-grid > li { padding: 24px 22px 26px; }
  .columns { row-gap: 0; }
  .columns > li { padding: 24px 0 28px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .columns > li:first-child { border-top: 0; padding-top: 0; }
  .situations > li { font-size: 1.125rem; padding: 22px 0 24px; }
  .deliverables { padding: 4px 22px; }
  .deliverables > li { grid-template-columns: 1fr; row-gap: 6px; padding: 20px 0 22px; }
  .deliverables span { padding-left: 26px; }
  .method { row-gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .phases > li { grid-template-columns: 36px minmax(0, 1fr); }
  .phases p { grid-column: 2; margin-top: 8px; }
  .finding { padding: 24px 22px; }
  .finding dl > div { grid-template-columns: 1fr; row-gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

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

/* Printing never waits on the reveal observer or on script timing. */
@media print {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}
