/* Rivers & Moorehead — design tokens */
:root {
  /* Direction B (default) — Institutional Grid */
  --bg: #f2ede0;            /* cream field */
  --bg-elev: #e9e2d0;       /* warm cream elev */
  --bg-tint: #e1d8c1;       /* deepest cream */
  --surface: #faf6eb;       /* ivory */
  --ink: #0a2a44;           /* deep blue ink */
  --ink-2: #1a3a5a;
  --ink-3: #4b627a;
  --ink-4: #8a97a8;
  --rule: #d3c9b1;
  --rule-2: #beb093;
  --accent: #0e3a5c;
  --accent-deep: #07223a;   /* signature deep blue */
  --accent-soft: #2a5b84;
  --accent-2: #c8a05a;      /* brass — brighter to read on deep blue */
  --positive: #2f6a4e;
  --danger: #8b2a1f;

  --sans: "Instrument Sans", "Neue Haas Grotesk Text Pro", "Söhne", "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --display: "Instrument Sans", "Söhne", "Neue Haas Grotesk Display Pro", "Inter", -apple-system, Helvetica, Arial, sans-serif;
  --serif: "Newsreader", "GT Sectra", "Tiempos Headline", "Canela", "Source Serif 4", Georgia, serif;

  --maxw: 1360px;
  --gutter: 32px;
  --col-gap: 24px;
  --row-gap: 72px;

  --radius: 2px;
  --radius-lg: 4px;

  --t-fast: 140ms cubic-bezier(.2,.6,.2,1);
  --t-med: 280ms cubic-bezier(.2,.6,.2,1);
  --rm-header-bottom: 107px;
  --rm-home-ticker-height: 58px;
}

[data-direction="A"] {
  /* Editorial Monolith */
  --bg: #f2ede3;
  --bg-elev: #e8e1d3;
  --surface: #fbf8f1;
  --ink: #0a0a0a;
  --ink-2: #1c1c1c;
  --ink-3: #4a4640;
  --ink-4: #8a8376;
  --rule: #d1c9b6;
  --rule-2: #bdb39d;
  --accent: #0a0a0a;
  --accent-2: #8a6a2e;
}

[data-density="compact"] {
  --row-gap: 48px;
  --gutter: 24px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0;
}
.num {
  font-family: var(--sans);
  font-variant-numeric: tabular-nums;
  margin: 0;
}
.display {
  font-family: var(--display);
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-weight: 500;
}
[data-direction="A"] .display {
  font-family: var(--serif);
  letter-spacing: -0.015em;
  font-weight: 400;
}
.serif { font-family: var(--serif); font-weight: 400; font-optical-sizing: auto; }
.phrase-nowrap { white-space: nowrap; }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }
.rule-strong { border-top: 1px solid var(--ink); }

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
}

/* Buttons */
.btn,
.wp-block-button .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  cursor: pointer;
}
.btn:hover,
.wp-block-button .wp-block-button__link:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ghost {
  background: transparent; color: var(--accent);
}
.btn--ghost:hover { background: var(--accent); color: var(--bg); }
.btn svg { width: 12px; height: 12px; }
.wp-block-button { display: inline-flex; }
.wp-block-button .wp-block-button__link { text-decoration: none; }
.wp-block-button.btn--ghost .wp-block-button__link {
  background: transparent;
  color: var(--accent);
}
.wp-block-button.btn--ghost .wp-block-button__link:hover {
  background: var(--accent);
  color: var(--bg);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap var(--t-fast);
}
.link-arrow:hover { gap: 12px; }

/* chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--bg);
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--positive);
}

/* Section frame */
section.sec { padding: var(--row-gap) 0; border-top: 1px solid var(--rule); }
section.sec:first-of-type { border-top: 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  transition: background var(--t-fast);
}
.site-header {
  border-top: 6px solid var(--accent-deep);
}
.site-header.is-scrolled {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}
.brand__logo {
  display: block;
  height: 70px;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand__name {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
[data-direction="A"] .brand__name {
  font-family: var(--serif);
  font-size: 16px;
}
.brand__sub {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav {
  display: flex;
  gap: 4px;
  justify-self: center;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  font-size: 15px;
  color: var(--ink-2);
  border-radius: 2px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-link:hover, .nav-link.is-active {
  color: var(--ink);
  background: var(--bg-elev);
}
.nav-link svg {
  width: 8px;
  height: 8px;
  margin-left: 4px;
  flex: 0 0 auto;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--surface);
  border: 1px solid var(--rule);
  padding: 24px;
  min-width: 560px;
  box-shadow: 0 24px 48px rgba(14,17,22,0.08);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
}
.nav-item--has-menu:hover .nav-menu,
.nav-item--has-menu:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-menu__grid {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: 32px;
}
.nav-menu__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.nav-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--ink-2);
  border-bottom: 1px dotted var(--rule);
  transition: color var(--t-fast), padding var(--t-fast);
}
.nav-menu button:last-child { border-bottom: 0; }
.nav-menu button:hover { color: var(--accent); padding-left: 4px; }

.header-actions { display: flex; gap: 8px; }
.header-actions .btn { padding: 10px 14px; font-size: 12px; }

/* Section heading (shared) */
.sec-head {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: var(--col-gap);
  padding-bottom: 48px;
}
.sec-head--no-meta {
  grid-template-columns: 1fr;
}
.sec-head__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sec-head__meta .num {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
}
.sec-head__title {
  font-size: clamp(32px, 4vw, 56px);
  margin: 0 0 20px;
  max-width: 18ch;
}
.sec-head__lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
}

/* Footer */
.site-footer {
  margin-top: 120px;
  padding: 64px 0 32px;
  border-top: 1px solid var(--ink);
  background: #fff;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  padding-bottom: 48px;
}
.footer__mark {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__logo {
  display: block;
  height: 72px;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.footer__name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
[data-direction="A"] .footer__name { font-family: var(--serif); }
.footer__sub {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer__cta { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 40px 0;
}
.footer__cols .eyebrow {
  margin-bottom: 16px;
  display: block;
}
.footer__cols button,
.footer__office {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-2);
  text-align: left;
}
.footer__cols button:hover { color: var(--ink); }
.footer__office { padding: 10px 0; line-height: 1.5; }
.footer__office strong { color: var(--ink); font-weight: 500; }
.footer__office a { color: var(--ink); }
.footer__office a:hover { color: var(--accent-deep); }

.footer__disclaimer {
  padding-top: 18px;
  max-width: 980px;
  font-size: 12px;
  line-height: 1.55;
  color: var(--ink-3);
}
.footer__disclaimer-copy {
  margin-bottom: 6px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-2);
}

.footer__legal {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  font-size: 12px;
  color: var(--ink-3);
}
.footer__legal-links { display: flex; gap: 24px; align-items: center; }
.footer__legal-links button { font-size: 12px; color: var(--ink-3); }
.footer__legal-links button:hover { color: var(--ink); }

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  width: min(680px, calc(100vw - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 18px 54px rgba(7, 34, 58, 0.18);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.cookie-banner p {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.cookie-banner__details {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.cookie-banner__actions .btn {
  min-height: 42px;
  padding: 10px 13px;
  white-space: nowrap;
}

/* Utility */
.stack-4 > * + * { margin-top: 4px; }
.stack-8 > * + * { margin-top: 8px; }
.stack-12 > * + * { margin-top: 12px; }
.stack-16 > * + * { margin-top: 16px; }
.stack-24 > * + * { margin-top: 24px; }
.stack-32 > * + * { margin-top: 32px; }

/* HERO */
.hero { padding: 48px 0 0; }
.hero--dark {
  background-color: #0a2a44;
  background-image:
    radial-gradient(ellipse 80% 70% at 20% 20%, rgba(200,160,90,0.12), transparent 65%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(20,70,110,0.35), transparent 70%),
    linear-gradient(180deg, #0e3a5c 0%, #0a2a44 55%, #07223a 100%);
  color: var(--bg);
  padding: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--accent-2);
}
.hero--dark .hero__bg {
  display: none;
}
.hero--dark .hero__bg img {
  display: none;
}
.hero--dark .hero__bg::after {
  display: none;
}
.hero--dark .hero__inner { position: relative; z-index: 1; padding: 80px var(--gutter) 64px; }
.hero--dark .hero__meta { border-color: rgba(200,160,90,0.3); }
.hero--dark .eyebrow, .hero--dark .hero__coord { color: rgba(250,246,235,0.7); }
.hero--dark .hero__title { color: var(--bg); }
.hero--dark .hero__title-em { color: var(--accent-2); font-style: italic; }
.hero--dark .hero__title em { color: var(--accent-2); }
.hero--dark .hero__lede { color: rgba(250,246,235,0.85); }
.hero--dark .hero__stats { border-top-color: rgba(200,160,90,0.25); }
.hero--dark .hero__stat-v { color: var(--accent-2); }
.hero--dark .hero__stat-l { color: rgba(250,246,235,0.86); }
.hero--dark .ticker {
  background: rgba(0,0,0,0.3);
  border-color: rgba(200,160,90,0.2);
}
.hero--dark .ticker__label { background: var(--accent-deep); border-color: rgba(200,160,90,0.2); color: rgba(250,246,235,0.7); }
.hero--dark .ticker__t { color: rgba(250,246,235,0.9); }
.hero--dark .ticker__v { color: rgba(250,246,235,0.5); }
.hero--dark .ticker__dot { background: var(--accent-2); }

.btn--brass,
.wp-block-button.btn--brass .wp-block-button__link { background: var(--accent-2); border-color: var(--accent-2); color: var(--accent-deep); }
.btn--brass:hover,
.wp-block-button.btn--brass .wp-block-button__link:hover { background: #d7b070; border-color: #d7b070; }
.btn--ghost-light,
.wp-block-button.btn--ghost-light .wp-block-button__link { background: transparent; color: var(--bg); border-color: rgba(250,246,235,0.5); }
.btn--ghost-light:hover,
.wp-block-button.btn--ghost-light .wp-block-button__link:hover { background: var(--bg); color: var(--accent-deep); border-color: var(--bg); }
.hero__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--col-gap);
  padding-bottom: 64px;
}
.hero__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.hero__coord { font-size: 12px; color: var(--ink-3); letter-spacing: 0.04em; }

.hero__title {
  grid-column: 1 / 8;
  font-size: clamp(42px, 5vw, 82px);
  margin: 56px 0 0;
  letter-spacing: -0.025em;
  line-height: 1.0;
  min-height: 4em;
}
.hero__title-em { color: var(--ink-3); }
.hero__title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-3);
}
.hero__title-rotator {
  display: inline-block;
  min-width: min(21ch, 100%);
  transition: opacity 180ms ease, transform 180ms ease;
}
.hero__title-rotator.is-changing {
  opacity: 0.24;
  transform: translateY(0.08em);
}
[data-direction="A"] .hero__title-em {
  font-style: italic;
  color: var(--ink-2);
}

.hero__body {
  grid-column: 8 / 13;
  margin-top: 64px;
  align-self: start;
}
.hero__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 40ch;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__figure {
  grid-column: 1 / -1;
  margin: 56px 0 0;
  display: grid;
  grid-template-columns: 10fr 2fr;
  gap: 20px;
  align-items: end;
}
.hero__image {
  aspect-ratio: 21 / 9;
  background: var(--accent-deep);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--rule);
}
.hero__image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero__figcap {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: var(--ink-3);
  padding-bottom: 8px;
  border-left: 1px solid var(--rule);
  padding-left: 16px;
}
.hero__figcap .eyebrow { font-size: 12px; }

/* Duotone image treatment — cream + blue */
.duotone img {
  filter: grayscale(100%) contrast(1.05) brightness(1.02);
  mix-blend-mode: multiply;
  opacity: 0.92;
}
.duotone {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 100%);
}
.duotone::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(242,237,224,0.18) 0%, rgba(242,237,224,0.35) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__stats {
  grid-column: 1 / -1;
  margin-top: 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--col-gap);
  justify-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero__stat.is-layout-flow > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  min-width: min(180px, 100%);
  text-align: center;
}
.hero__stat-v {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ink);
}
.hero__stat-l {
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  letter-spacing: 0;
  margin: 0;
}
/* Ticker */
.ticker {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 58px;
  background: var(--bg-elev);
}
.page--home .ticker {
  position: relative;
  z-index: 2;
}
.page--home .ticker.is-fixed {
  position: fixed;
  top: var(--rm-header-bottom);
  left: 0;
  right: 0;
  z-index: 49;
  background: var(--accent-deep);
  border-color: rgba(200,160,90,0.34);
  box-shadow: 0 14px 28px rgba(7,34,58,0.18);
}
body.has-fixed-home-ticker .page--home .hero--dark {
  padding-bottom: var(--rm-home-ticker-height);
}
.ticker__label {
  padding: 14px 24px;
  border-right: 1px solid var(--rule);
  flex-shrink: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.ticker__track {
  display: flex;
  align-items: baseline;
  gap: 40px;
  min-width: max-content;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
  padding: 16px 24px;
  will-change: transform;
}
.ticker.is-layout-flow > *,
.ticker__track.is-layout-flow > *,
.ticker__item.is-layout-flow > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}
.ticker__item {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  flex: 0 0 auto;
  font-size: 12.5px;
  line-height: 1;
}
.ticker__dot {
  width: 6px; height: 6px;
  background: var(--positive);
  border-radius: 50%;
  align-self: center;
  flex: 0 0 auto;
}
.ticker__t { color: var(--ink-2); }
.ticker__v { color: var(--ink-3); font-size: 12px; }
.ticker__t,
.ticker__v {
  margin: 0;
  line-height: 1.05;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Selected clients */
.client-logo-strip {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.client-logo-strip__inner {
  padding-top: 24px;
  padding-bottom: 26px;
}
.client-logo-strip__title {
  margin: 0 0 14px;
  color: var(--ink-3);
}
.client-logo-marquee {
  overflow: hidden;
  cursor: grab;
}
.client-logo-marquee:active {
  cursor: grabbing;
}
.client-logo-marquee:not(.swiper-initialized) {
  overflow-x: auto;
}
.client-logo-marquee .swiper-wrapper {
  align-items: center;
  transition-timing-function: linear !important;
  will-change: transform;
}
.client-logo-slide {
  width: clamp(132px, 14vw, 190px);
  height: 72px;
  display: flex;
  flex: 0 0 auto;
}
.client-logo-slide__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
}
.client-logo-slide--dark .client-logo-slide__link {
  background: var(--accent-deep);
  padding-inline: 24px;
}
.client-logo-slide img {
  display: block;
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: saturate(0.82);
  transition: filter var(--t-fast), opacity var(--t-fast);
}
.client-logo-slide:hover img,
.client-logo-slide__link:focus-visible img {
  filter: saturate(1);
}
.client-logo-slide__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.page--home .services--home .sec-head {
  grid-template-columns: 1fr;
  gap: 0;
}
.page--home .services--home .sec-head__meta:empty {
  display: none;
}
.page--home .services--home .sec-head__body {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: end;
}
.page--home .services--home .sec-head__title {
  max-width: 28ch;
  margin: 0;
}
.page--home .services--home .sec-head__lede {
  max-width: 44ch;
  margin: 0;
}
/* Services list — editorial grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}
.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  grid-template-rows: auto auto auto;
  gap: 4px 20px;
  align-items: start;
  padding: 28px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  transition: background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast);
  position: relative;
  color: var(--ink);
}
.service-row:visited { color: var(--ink); }
.service-row:nth-child(2n) { border-right: 0; }
.page--home .services--home .service-row--wide {
  grid-column: 1 / -1;
  grid-template-columns: calc(50% - 60px) 20px minmax(0, 1fr);
  border-right: 0;
}
.service-row:hover,
.service-row:focus-visible {
  background: #f5efe1;
  box-shadow: inset 0 0 0 1px rgba(200,160,90,0.16), inset 3px 0 0 var(--accent-2);
  outline: none;
}
.service-row__kicker { grid-column: 1; grid-row: 1; }
.service-row__title {
  grid-column: 1; grid-row: 2;
  font-family: var(--display); font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em; line-height: 1.2;
  margin-top: 4px;
  color: var(--ink);
  transition: color var(--t-fast), transform var(--t-fast);
}
[data-direction="A"] .service-row__title { font-family: var(--serif); }
.service-row__body {
  grid-column: 1; grid-row: 3;
  font-size: 14px; color: var(--ink-3);
  margin-top: 10px; max-width: 52ch;
  transition: color var(--t-fast);
}
.service-row__cta {
  grid-column: 2; grid-row: 1 / 4;
  align-self: start; margin-top: 2px;
  color: var(--ink-4);
  transition: color var(--t-fast), transform var(--t-fast);
}
.service-row:hover .service-row__title,
.service-row:focus-visible .service-row__title {
  color: var(--ink);
}
.service-row:hover .service-row__body,
.service-row:focus-visible .service-row__body {
  color: var(--ink-2);
}
.service-row:hover .service-row__cta,
.service-row:focus-visible .service-row__cta {
  color: var(--accent-2);
  transform: translateX(4px);
}
body.post-type-archive-rm_service .service-row {
  --service-archive-bg: transparent;
  --service-archive-border: var(--rule);
  --service-archive-text: var(--ink);
  --service-archive-muted: var(--ink-4);
  --service-archive-body: var(--ink-3);
  --service-archive-body-hover: var(--ink-2);
  --service-archive-hover-bg: #f5efe1;

  background: var(--service-archive-bg);
  border-color: var(--service-archive-border);
  color: var(--service-archive-text);
}
body.post-type-archive-rm_service .service-row:is(:nth-child(4n+1), :nth-child(4n+2)) {
  --service-archive-bg: var(--accent-deep);
  --service-archive-border: rgba(250,246,235,0.18);
  --service-archive-text: var(--bg);
  --service-archive-muted: rgba(250,246,235,0.7);
  --service-archive-body: rgba(250,246,235,0.78);
  --service-archive-body-hover: rgba(250,246,235,0.88);
  --service-archive-hover-bg: var(--accent);
}
body.post-type-archive-rm_service .service-row:visited,
body.post-type-archive-rm_service .service-row .service-row__title {
  color: var(--service-archive-text);
}
body.post-type-archive-rm_service .service-row .service-row__kicker,
body.post-type-archive-rm_service .service-row .service-row__cta {
  color: var(--service-archive-muted);
}
body.post-type-archive-rm_service .service-row .service-row__body {
  color: var(--service-archive-body);
}
body.post-type-archive-rm_service .service-row:hover,
body.post-type-archive-rm_service .service-row:focus-visible {
  background: var(--service-archive-hover-bg);
}
body.post-type-archive-rm_service .service-row:hover .service-row__title,
body.post-type-archive-rm_service .service-row:focus-visible .service-row__title {
  color: var(--service-archive-text);
}
body.post-type-archive-rm_service .service-row:hover .service-row__body,
body.post-type-archive-rm_service .service-row:focus-visible .service-row__body {
  color: var(--service-archive-body-hover);
}

/* Approach */
.approach__steps,
.approach__steps-block {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.approach__step {
  padding: 40px 28px 48px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
}
.approach__step:last-child { border-right: 0; }
.approach__n {
  font-size: 28px;
  color: var(--accent-2);
  letter-spacing: 0;
  font-style: italic;
  margin: 0;
}
.approach__t {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}
[data-direction="A"] .approach__t { font-family: var(--serif); }
.approach__b {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

/* Engagements */
.engagements__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
}
.case-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  text-align: left;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background var(--t-fast);
  min-height: 280px;
}
.case-card:hover { background: var(--surface); }
.case-card--lg {
  grid-column: 1 / -1;
  min-height: 320px;
  background: var(--bg-elev);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0 48px;
  padding: 0;
}
.case-card--lg .case-card__img {
  grid-column: 1;
  grid-row: 1 / 5;
  aspect-ratio: auto;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  position: relative;
  background: var(--accent-deep);
}
.case-card--lg .case-card__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.case-card__img--sm {
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 0 20px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.case-card__img--sm img { width: 100%; height: 100%; object-fit: cover; }
.case-card--lg .case-card__meta { grid-column: 2; grid-row: 1; padding: 32px 32px 0 0; }
.case-card--lg .case-card__headline { grid-column: 2; grid-row: 2; font-size: 32px; max-width: 22ch; padding: 16px 32px 0 0; }
.case-card--lg .case-card__summary { grid-column: 2; grid-row: 3; max-width: 42ch; padding: 16px 32px 0 0; font-size: 16px; align-self: start; }
.case-card--lg .case-card__foot { grid-column: 2; grid-row: 4; padding: 16px 32px 32px 0; align-self: end; }
.case-card__meta { display: flex; justify-content: space-between; align-items: baseline; }
.case-card__metric { font-size: 28px; letter-spacing: -0.01em; }
.case-card__headline {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}
[data-direction="A"] .case-card__headline { font-family: var(--serif); }
.case-card__summary {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0;
}
.case-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dotted var(--rule);
}
.case-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.case-card__tag {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 4px 8px;
  border: 1px solid var(--rule);
}
.engagements__foot { padding-top: 32px; display: flex; justify-content: flex-end; }

/* Homepage case proof */
.case-proof {
  background: #fff;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.case-proof__head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  padding-bottom: 44px;
}
.case-proof__head h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 12px 0 0;
  max-width: 13ch;
}
.case-proof__intro {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}
.case-proof__intro p {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.55;
  margin: 0;
  max-width: 52ch;
}
.case-proof__rotator {
  border-top: 1px solid var(--ink);
}
.case-proof__viewport {
  position: relative;
}
.case-proof__panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--rule);
}
.case-proof__rotator.is-enhanced .case-proof__panel {
  display: none;
}
.case-proof__rotator.is-enhanced .case-proof__panel.is-active {
  display: grid;
  animation: caseProofIn 360ms cubic-bezier(.2,.6,.2,1);
}
.proof-card {
  min-height: 430px;
  padding: 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  color: var(--ink);
  transition: background var(--t-fast), transform var(--t-fast);
}
.proof-card:hover {
  background: #faf4e5;
  transform: translateY(-2px);
}
.proof-card__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.proof-card__logo {
  width: 132px;
  height: 88px;
  padding: 14px;
  border: 1px solid var(--rule);
  background: #f7f2e7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proof-card__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.proof-card__logo--dark {
  width: 180px;
  height: 72px;
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  padding: 18px 14px;
}
.proof-card__logo span {
  font-family: var(--display);
  color: var(--accent-2);
  font-size: 42px;
  line-height: 1;
}
.proof-card__type,
.proof-card__tag {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.proof-card__type {
  padding-top: 4px;
  text-align: right;
}
.proof-card__tag {
  min-height: 28px;
  color: var(--accent-2);
}
.proof-card h3 {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 14ch;
}
.proof-card__sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.4;
}
.proof-card__sub span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: var(--rule-2);
}
.proof-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.proof-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding-top: 16px;
  border-top: 1px dotted var(--rule);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.proof-card:hover .proof-card__cta {
  color: var(--accent-2);
}
.proof-card__cta svg {
  width: 12px;
  height: 12px;
  transition: transform var(--t-fast);
}
.proof-card:hover .proof-card__cta svg {
  transform: translateX(3px);
}
.case-proof__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0 0;
}
.case-proof__control,
.case-proof__dot {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.case-proof__control:hover,
.case-proof__dot:hover,
.case-proof__dot.is-active {
  color: var(--ink);
}
.case-proof__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.case-proof__dot {
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.case-proof__dot span,
.team-carousel__dot span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}
.case-proof__dot.is-active {
  border-color: var(--rule-2);
  background: #faf4e5;
}
.case-proof__dot.is-active span,
.team-carousel__dot.is-active span {
  opacity: 1;
}

@keyframes caseProofIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .case-proof__rotator.is-enhanced .case-proof__panel.is-active,
  .team-carousel.is-enhanced .team-carousel__panel.is-active {
    animation: none;
  }

  .proof-card:hover {
    transform: none;
  }
}

/* Insights */
.insights__list {
  border-top: 1px solid var(--ink);
}
.insight-row {
  width: 100%;
  display: grid;
  grid-template-columns: 140px 200px 1fr 32px;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  transition: padding var(--t-fast);
}
.insight-row:hover { padding-left: 8px; }
.insight-row__img {
  width: 140px; height: 96px;
  overflow: hidden;
  align-self: center;
  border: 1px solid var(--rule-2);
}
.insight-row__img img { width: 100%; height: 100%; object-fit: cover; }
.insight-row__body {
  display: contents;
}
.insight-row__body .insight-row__meta {
  align-self: center;
}
.insight-row__body .insight-row__foot {
  align-self: center;
}
.insight-row__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--ink-3);
}
.insight-row__meta .num { font-size: 12px; }
.insight-row__read { color: var(--ink-4); }
.insight-row__title {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0;
  max-width: 28ch;
}
[data-direction="A"] .insight-row__title { font-family: var(--serif); }
.insight-row__foot {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  font-size: 12px; color: var(--ink-3);
}

/* Team */
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--col-gap);
}
.page--home .team-sec .sec-head {
  grid-template-columns: 1fr;
  gap: 16px;
}
.page--home .team-sec .sec-head__title {
  max-width: 42ch;
}

.team-carousel {
  border-top: 1px solid var(--ink);
}
.team-carousel__viewport {
  position: relative;
}
.team-carousel__panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--col-gap);
  padding-top: 28px;
}
.team-carousel.is-enhanced .team-carousel__panel {
  display: none;
}
.team-carousel.is-enhanced .team-carousel__panel.is-active {
  display: grid;
  animation: caseProofIn 360ms cubic-bezier(.2,.6,.2,1);
}
.team-carousel__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0 0;
}
.team-carousel__control,
.team-carousel__dot {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.team-carousel__control:hover,
.team-carousel__dot:hover,
.team-carousel__dot.is-active {
  color: var(--ink);
}
.team-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-carousel__dot {
  width: 28px;
  height: 28px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team-carousel__dot.is-active {
  border-color: var(--rule-2);
  background: #faf4e5;
}
.team-card { display: flex; flex-direction: column; gap: 0; }
.team-card__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
  color: var(--ink-4);
  overflow: hidden;
}
.team-card__portrait-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.team-card__portrait-link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: -3px;
}
.team-card__portrait-link img {
  transition: transform var(--t-med);
}
.team-card__portrait-link:hover img {
  transform: scale(1.025);
}
.team-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card__placeholder {
  position: absolute;
  bottom: 8px; left: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-4);
  letter-spacing: 0.04em;
}
.team-card__body { padding: 16px 0 0; }
.team-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.team-card__name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.team-card__name-link {
  color: inherit;
  text-decoration: none;
}
.team-card__name-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.team-card__name-link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
[data-direction="A"] .team-card__name { font-family: var(--serif); }
.team-card__role {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 2px;
}
.team-card__cred {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  padding-top: 4px;
}
.team-card__bio {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 12px 0 0;
  text-wrap: pretty;
}
.team-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 14px;
}
.team-card__link {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
}
.team-card__link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-2);
}
.team-card__details {
  margin-top: 16px;
}
.team-card__details summary {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
}
.team-card__details summary::-webkit-details-marker { display: none; }
.team-card__detail-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
  padding-bottom: 2px;
}
.team-card__detail-toggle::after {
  content: "→";
  font-size: 12px;
  line-height: 1;
  transition: transform 160ms ease, color 160ms ease;
}
.team-card__details summary:hover .team-card__detail-toggle {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-2);
}
.team-card__details[open] .team-card__detail-toggle {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-2);
}
.team-card__details[open] .team-card__detail-toggle::after {
  transform: rotate(90deg);
}
.team-card__detail-content {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--ink-2);
}
.team-card__detail-content > :first-child { margin-top: 0; }
.team-card__detail-content p:first-child { margin-top: 0; }
.team-card__detail-content h3 {
  margin: 18px 0 10px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--ink-3);
}
.team-card__detail-content ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.team-card--compact .team-card__bio { margin-top: 10px; }
.team-sec__hq--page { margin-bottom: 48px; }
.team-sec__foot { margin-top: 40px; display: flex; justify-content: center; }

/* About and leadership profile pages */
.about-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
}
.about-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-height: 172px;
  padding: 28px 32px 30px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.about-fact:nth-child(4n) { border-right: 0; }
.about-fact:last-child { border-right: 0; }
.about-fact__value {
  font-size: 34px;
  color: var(--accent-deep);
  line-height: 1;
}
.about-fact__label {
  margin-top: 0;
  max-width: 26ch;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.45;
}
.about-scope__grid,
.about-boundaries__grid,
.about-credentials__grid,
.team-profile__grid {
  display: grid;
  grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
  gap: var(--col-gap);
  border-top: 1px solid var(--ink);
  padding-top: 40px;
}
.about-scope__title,
.about-boundaries__title,
.about-credentials__title,
.team-profile__title {
  margin: 14px 0 0;
  font-size: 32px;
  max-width: 18ch;
}
.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: about-list;
}
.about-list li {
  counter-increment: about-list;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
}
.about-list li:first-child { padding-top: 0; }
.about-list li::before {
  content: counter(about-list, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-4);
  padding-top: 3px;
}
.about-boundaries { background: var(--bg-elev); }
.about-boundaries__copy {
  max-width: 70ch;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.about-boundaries__copy p:first-child { margin-top: 0; }
.about-boundaries__copy p:last-child { margin-bottom: 0; }
.about-credentials__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.about-credentials__item {
  min-height: 84px;
  padding: 18px 24px 18px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink-2);
  font-size: 14px;
}
.about-credentials__item:nth-child(odd) { border-right: 1px solid var(--rule); }
.about-credentials__item:nth-child(even) { padding-left: 24px; }
.team-profile__aside {
  display: grid;
  gap: 24px;
  align-content: start;
}
.team-profile__portrait {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--bg-elev);
}
.team-profile__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-profile__facts {
  margin: 0;
  border-top: 1px solid var(--rule);
}
.team-profile__facts div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.team-profile__facts dt {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.team-profile__facts dd {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}
.team-profile__facts a {
  border-bottom: 1px solid var(--rule-2);
}
.team-profile__body {
  max-width: 78ch;
}
.team-profile__copy {
  margin-top: 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.65;
}
.team-profile__copy > :first-child { margin-top: 0; }
.team-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Credentials strip */
.credentials__row {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: var(--col-gap);
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.credentials__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.credentials__item {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  margin: 0;
}
.credentials__item::before {
  content: "§";
  color: var(--accent-2);
  margin-right: 8px;
  font-family: var(--serif);
}

/* Approach plate */
.approach__plate {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 56px;
  border-top: 1px solid var(--rule);
}
.approach__plate-img {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  position: relative;
}
.approach__plate-img .wp-block-image,
.statement__img .wp-block-image,
.plate-band__img .wp-block-image,
.team-sec__hq-img .wp-block-image {
  margin: 0;
  width: 100%;
  height: 100%;
}
.approach__plate-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.1) sepia(0.15);
  mix-blend-mode: multiply;
}
.approach__plate-img .wp-block-image img,
.statement__img .wp-block-image img,
.plate-band__img .wp-block-image img,
.team-sec__hq-img .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.approach__plate-text .serif {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--ink);
  margin: 16px 0 20px;
  text-wrap: pretty;
}
.approach__plate-by {
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  margin: 0;
}

/* Plate band — full-bleed imagery */
.plate-band {
  position: relative;
  min-height: 560px;
  color: var(--bg);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-top: 1px solid var(--accent-2);
  border-bottom: 1px solid var(--accent-2);
  background-color: #0a2a44;
  background-image:
    radial-gradient(ellipse 80% 70% at 25% 30%, rgba(200,160,90,0.15), transparent 65%),
    linear-gradient(180deg, #0e3a5c 0%, #0a2a44 55%, #07223a 100%);
}
.plate-band__img { position: absolute; inset: 0; opacity: 0.2; }
.plate-band__img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.3) brightness(0.5);
  mix-blend-mode: screen;
}
.plate-band__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,42,68,0.4) 0%, rgba(7,28,46,0.85) 100%);
}
.plate-band__inner {
  position: relative; z-index: 1;
  padding: 96px 0 64px;
}
.plate-band .eyebrow { color: rgba(250,246,235,0.7); }
.plate-band__h {
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 24px 0 48px;
  max-width: 18ch;
  color: var(--bg);
}
.plate-band__h .serif,
.plate-band__h em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-2);
}
.plate-band__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,160,90,0.3);
  max-width: 720px;
}
.plate-band__meta > div { display: flex; flex-direction: column; gap: 6px; }
.plate-band__meta .eyebrow { font-size: 12px; color: rgba(250,246,235,0.55); }
.plate-band__meta .num { font-size: 14px; color: var(--accent-2); }

/* Team HQ plate */
.team-sec__hq {
  margin: 56px 0 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  border: 1px solid var(--accent-2);
  background: var(--accent-deep);
  color: var(--bg);
}
.team-sec__hq-img { aspect-ratio: 16/9; overflow: hidden; }
.team-sec__hq-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.55);
  mix-blend-mode: multiply;
}
.team-sec__hq-cap {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  border-left: 1px solid rgba(200,160,90,0.3);
}
.team-sec__hq-cap .eyebrow { color: rgba(250,246,235,0.6); }
.team-sec__hq-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--accent-2);
  line-height: 1.0;
  margin-top: 4px;
}
.team-sec__hq-body {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(250,246,235,0.85);
}

/* CTA */
.cta {
  background-color: #0a2a44;
  background-image:
    radial-gradient(ellipse 80% 70% at 20% 20%, rgba(200,160,90,0.15), transparent 65%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(20,70,110,0.35), transparent 70%),
    linear-gradient(180deg, #0e3a5c 0%, #0a2a44 55%, #07223a 100%);
  color: var(--bg); margin: 0; position: relative; overflow: hidden;
}
.cta--hero { border-top: 1px solid var(--accent-2); border-bottom: 1px solid var(--accent-2); }
.cta__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: 0.18; }
.cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.3) brightness(0.5);
  mix-blend-mode: screen;
}
.cta__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,28,46,0.56) 0%, rgba(7,28,46,0.86) 100%);
}
.cta__inner { position: relative; z-index: 1; }
.cta__sig {
  margin-top: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(200,160,90,0.3);
  max-width: 620px;
}
.cta__sig-rule {
  width: 64px; height: 1px;
  background: var(--accent-2);
}
.cta__sig-text {
  display: flex; flex-direction: column; gap: 4px;
}
.cta__sig-text .eyebrow { color: rgba(250,246,235,0.55); }
.cta__sig-text .serif {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bg);
  margin: 0;
}

/* Statement */
.statement {
  background: var(--accent-deep);
  color: var(--bg);
  border-top: 0;
  margin: 48px 0;
}
.statement__inner {
  display: grid;
  grid-template-columns: 6fr 6fr;
  gap: 0;
  align-items: stretch;
}
.statement__img {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}
.statement__img img { width: 100%; height: 100%; object-fit: cover; }
.statement__img .wp-block-image {
  position: absolute;
  inset: 0;
  opacity: 0.62;
}
.statement__img img {
  filter: saturate(0.86) contrast(1.08);
}
.statement__img::before {
  content: "";
  position: absolute;
  inset: 36px;
  z-index: 1;
  border: 1px solid rgba(250,246,235,0.24);
  background: linear-gradient(135deg, rgba(10,42,68,0.32), rgba(10,42,68,0.02));
}
.statement__text {
  padding: 64px 56px 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.statement .eyebrow { color: rgba(250,246,235,0.65); }
.statement__h {
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.2;
  margin: 0;
  max-width: 24ch;
  color: var(--bg);
  letter-spacing: -0.01em;
}
.statement__h em {
  font-style: italic;
  color: var(--accent-2);
  font-weight: 400;
}
.statement__p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250,246,235,0.82);
  max-width: 52ch;
  margin: 0;
}

/* CTA phone brass */
.cta__phone .num { color: var(--accent-2); }
.cta__inner { padding: 96px 0 96px; }
.cta__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.cta .eyebrow, .cta__id { color: rgba(255,255,255,0.6); }
.cta__title {
  font-size: clamp(40px, 5.2vw, 80px);
  margin: 56px 0 40px;
  max-width: 22ch;
  color: var(--bg);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}
.cta__title .serif,
.cta__title em { color: var(--accent-2); font-style: italic; }
.cta__body {
  font-size: 17px;
  color: rgba(250,246,235,0.8);
  max-width: 56ch;
  margin: 0 0 40px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}
.cta__actions {
  display: inline-flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
}
.cta--home .cta__title {
  margin-bottom: 52px;
}
.cta .btn {
  background: var(--bg); color: var(--ink); border-color: var(--bg);
}
.cta .btn:hover { background: var(--accent-2); color: var(--bg); border-color: var(--accent-2); }
.cta__phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px;
  color: var(--bg);
}
.cta__phone .num { font-size: 20px; letter-spacing: -0.01em; }

/* Responsive */
@media (max-width: 1100px) {
  .brand__logo { height: 60px; }
  .hero__title { grid-column: 1 / -1; font-size: clamp(40px, 7.2vw, 64px); }
  .hero__title-rotator { min-width: 0; }
  .hero__body { grid-column: 1 / -1; }
  .hero__stats, .team__grid, .team-carousel__panel, .approach__steps, .approach__steps-block {
    grid-template-columns: repeat(2, 1fr);
  }
  .services__grid, .engagements__grid { grid-template-columns: 1fr; }
  .page--home .services--home .service-row--wide {
    grid-template-columns: minmax(0, 1fr) 20px;
  }
  body.post-type-archive-rm_service .service-row:is(:nth-child(4n+1), :nth-child(4n+2)) {
    --service-archive-bg: transparent;
    --service-archive-border: var(--rule);
    --service-archive-text: var(--ink);
    --service-archive-muted: var(--ink-4);
    --service-archive-body: var(--ink-3);
    --service-archive-body-hover: var(--ink-2);
    --service-archive-hover-bg: #f5efe1;
  }
  body.post-type-archive-rm_service .service-row:nth-child(odd) {
    --service-archive-bg: var(--accent-deep);
    --service-archive-border: rgba(250,246,235,0.18);
    --service-archive-text: var(--bg);
    --service-archive-muted: rgba(250,246,235,0.7);
    --service-archive-body: rgba(250,246,235,0.78);
    --service-archive-body-hover: rgba(250,246,235,0.88);
    --service-archive-hover-bg: var(--accent);
  }
  .case-card--lg { grid-template-columns: 1fr; }
  .case-card--lg .case-card__headline, .case-card--lg .case-card__summary { grid-column: 1; }
  .insight-row { grid-template-columns: 100px 140px 1fr 24px; gap: 16px; }
  .insight-row__img { width: 100px; height: 72px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .nav { display: none; }
}

/* Shared page atoms */
.breadcrumb {
  display: flex;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-3);
  padding-bottom: 32px;
}
.breadcrumb a,
.breadcrumb button { font: inherit; color: var(--ink-3); text-transform: inherit; letter-spacing: inherit; }
.breadcrumb a:hover,
.breadcrumb button:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink-4); }

/* Service hero (shared) */
.service-hero { padding-top: 48px; }
.service-hero__kicker { display: block; margin-bottom: 16px; }
.service-hero__title {
  font-size: clamp(40px, 5.6vw, 80px);
  max-width: 20ch;
  margin: 0 0 24px;
}
.service-hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 0;
}

/* Dark page hero — shared across all inner pages */
.page-hero--dark {
  background-color: #0a2a44;
  background-image:
    radial-gradient(ellipse 80% 70% at 20% 20%, rgba(200,160,90,0.13), transparent 65%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(20,70,110,0.35), transparent 70%),
    linear-gradient(180deg, #0e3a5c 0%, #0a2a44 55%, #07223a 100%);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid var(--accent-2);
}
.page-hero--dark .page-hero__bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.18; }
.page-hero--dark .page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(100%) contrast(1.3) brightness(0.5);
  mix-blend-mode: screen;
  opacity: 0.5;
}
.page-hero--dark .page-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(14,58,92,0.85) 0%, rgba(10,42,68,0.72) 40%, rgba(7,28,46,0.96) 100%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(200,160,90,0.18), transparent 70%);
}
.page-hero__inner {
  position: relative; z-index: 1;
  padding: 72px var(--gutter) 80px;
}
.page-hero__kicker {
  display: block;
  margin-bottom: 16px;
  color: rgba(250,246,235,0.7) !important;
}
.page-hero__title {
  font-size: clamp(46px, 6vw, 88px);
  max-width: 20ch;
  margin: 0 0 24px;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--bg);
}
.page-hero__title .serif,
.page-hero__title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent-2);
  font-weight: 400;
}
.page-hero__lede {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(250,246,235,0.8);
  max-width: 62ch;
  margin: 0;
}
.breadcrumb--light { color: rgba(250,246,235,0.7); margin-bottom: 40px; }
.breadcrumb--light a,
.breadcrumb--light button { color: rgba(250,246,235,0.9); }
.breadcrumb--light a:hover,
.breadcrumb--light button:hover { color: var(--accent-2); }
.breadcrumb--light span { color: rgba(250,246,235,0.4); }

.filters--light { margin-top: 40px; }
.filters--light .filter {
  color: rgba(250,246,235,0.75);
  border-color: rgba(250,246,235,0.3);
  background: transparent;
}
.filters--light .filter:hover { color: var(--bg); border-color: rgba(250,246,235,0.6); }
.filters--light .filter.is-active {
  background: var(--accent-2);
  color: var(--accent-deep);
  border-color: var(--accent-2);
}

/* Case hero logo */
.case-hero__logo {
  width: clamp(88px, 9vw, 132px);
  min-height: 72px;
  margin: 26px 0 22px;
  padding: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(200,160,90,0.45);
}
.case-hero__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 52px;
  object-fit: contain;
}
.case-hero--dark .page-hero__lede {
  max-width: 58ch;
}

/* Insight/article hero on dark */
.page-hero--article .insight-hero__wrap { max-width: 820px; margin: 0 auto; }
.page-hero--article .insight-hero__meta {
  display: flex; gap: 24px; margin-bottom: 24px; align-items: center;
}
.page-hero--article .insight-hero__meta .eyebrow,
.page-hero--article .insight-hero__meta .num { color: rgba(250,246,235,0.65); }
.page-hero--article .insight-hero__title {
  font-size: clamp(36px, 4.4vw, 60px);
  margin: 0 0 20px;
  color: var(--bg);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-hero--article .insight-hero__dek {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: rgba(250,246,235,0.85);
  line-height: 1.45;
  margin: 0 0 40px;
  max-width: 52ch;
}
.page-hero--article .insight-hero__author {
  display: flex; gap: 16px; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(200,160,90,0.3);
  color: var(--bg);
}
.page-hero--article .insight-hero__portrait {
  width: 56px; height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(200,160,90,0.4);
}
.page-hero--article .insight-hero__author-name { color: var(--bg); font-weight: 500; }
.page-hero--article .insight-hero__author-role { color: rgba(250,246,235,0.6); font-size: 13px; }

/* Contact hero on dark */
.page-hero--dark.contact-hero .contact-facts {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  border-top: 1px solid rgba(200,160,90,0.3);
  padding-top: 24px;
}
.page-hero--dark.contact-hero .contact-facts > div {
  display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: baseline;
}
.page-hero--dark.contact-hero .contact-facts dt {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,246,235,0.6);
}
.page-hero--dark.contact-hero .contact-facts dd {
  margin: 0;
  color: var(--bg);
  font-size: 15px;
  line-height: 1.5;
}
.page-hero--dark.contact-hero .contact-facts dd.num { color: var(--accent-2); font-size: 16px; }
.page-hero--dark.contact-hero .contact-hero__title {
  font-size: clamp(36px, 4.6vw, 64px);
  color: var(--bg);
  margin: 16px 0 20px;
  max-width: 16ch;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-hero--dark.contact-hero .contact-hero__lede {
  font-size: 17px;
  color: rgba(250,246,235,0.8);
  line-height: 1.55;
  margin: 0;
  max-width: 48ch;
}
.page-hero--dark.contact-hero .rfp {
  background: var(--bg);
  color: var(--ink);
  padding: 40px;
  border: 1px solid var(--accent-2);
}

/* Service detail */
.service-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
}
.service-detail__col {
  padding: 32px 32px 40px 0;
  border-right: 1px solid var(--rule);
  padding-left: 32px;
}
.service-detail__col:first-child { padding-left: 0; }
.service-detail__col:last-child { border-right: 0; }
.service-detail__h {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 20px;
  font-weight: 500;
}
.service-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-detail__list li {
  padding: 10px 0;
  border-bottom: 1px dotted var(--rule);
  font-size: 14px;
  color: var(--ink-2);
  list-style: none;
}

.service-next__inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: end;
  padding: 48px 32px;
  background: var(--bg-elev);
  border: 1px solid var(--rule);
}
.service-next__text h2 { font-size: clamp(28px, 3.4vw, 44px); margin: 12px 0 12px; max-width: 20ch; }
.service-next__text p { color: var(--ink-2); margin: 0; max-width: 48ch; }
.service-next__inner > div:last-child { justify-self: end; }

/* Case detail */
.facts-table {
  width: 100%;
  border-collapse: collapse;
}
.facts-table tr { border-bottom: 1px solid var(--rule); }
.facts-table tr:first-child { border-top: 1px solid var(--ink); }
.facts-table th, .facts-table td {
  padding: 14px 0;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  vertical-align: top;
}
.facts-table th {
  width: 200px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-right: 32px;
  padding-top: 16px;
}
.facts-table td { color: var(--ink-2); }

.case-body__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--col-gap);
}
.case-body__section {
  padding: 32px 0;
  border-top: 1px solid var(--rule);
}
.page--service .case-body__section {
  grid-column: span 2;
}
.case-body__h {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.case-body__p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.case-body__p ul {
  margin: 18px 0 0;
  padding-left: 20px;
}
.case-body__p li {
  margin: 8px 0;
}
.page--service .case-body__p {
  max-width: 78ch;
}

.service-faq__grid {
  display: grid;
  grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
  gap: var(--col-gap);
  border-top: 1px solid var(--ink);
  padding-top: 40px;
}
.service-faq__title {
  margin: 14px 0 0;
  font-size: 32px;
  max-width: 18ch;
}
.service-faq__items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.service-faq__item {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.service-faq__item summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
}
.service-faq__item p {
  max-width: 74ch;
  margin: 14px 0 0;
  color: var(--ink-2);
  line-height: 1.6;
}

.case-nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--ink);
}

.engagements__grid--full { grid-template-columns: repeat(2, 1fr); }

/* Filters */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.filter {
  padding: 8px 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 999px;
  transition: all var(--t-fast);
}
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Insight article */
.insight-hero { padding-top: 48px; }
.insight-hero__wrap { max-width: 900px; }
.insight-hero__meta {
  display: flex;
  gap: 20px;
  align-items: baseline;
  margin-bottom: 24px;
}
.insight-hero__meta .num { font-size: 12px; color: var(--ink-3); }
.insight-hero__read { color: var(--ink-4); }
.insight-hero__title {
  font-size: clamp(34px, 4.8vw, 64px);
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 22ch;
}
.insight-hero__dek {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0 0 40px;
  max-width: 48ch;
  font-style: italic;
}
.insight-hero__author {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.insight-hero__portrait {
  width: 56px; height: 56px;
  aspect-ratio: 1; color: var(--ink-3); flex-shrink: 0;
}
.insight-hero__author-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}
.insight-hero__author-role {
  font-size: 13px;
  color: var(--ink-3);
}

.article { max-width: 720px; margin: 0 auto; font-size: 17px; line-height: 1.7; color: var(--ink-2); }
.article__h {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
  color: var(--ink);
}
[data-direction="A"] .article__h { font-family: var(--serif); }
.article__p { margin: 0 0 24px; }
.article__rule { margin: 48px 0 24px; }
.article__sig { font-size: 14px; color: var(--ink-3); }
.article__sig a { border-bottom: 1px solid currentColor; }
.inline-link { font: inherit; color: var(--ink); border-bottom: 1px solid var(--ink); padding: 0; }

.team__grid--full {
  grid-template-columns: repeat(4, 1fr);
  gap: 40px var(--col-gap);
}

/* Contact / RFP */
.contact-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding-top: 48px;
}
.contact-hero__title {
  font-size: clamp(36px, 4.6vw, 64px);
  margin: 16px 0 20px;
  max-width: 16ch;
}
.contact-hero__lede {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0 0 40px;
  max-width: 40ch;
}
.contact-facts { margin: 0; padding-top: 24px; border-top: 1px solid var(--rule); }
.contact-facts > div {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 14px 0;
  border-bottom: 1px dotted var(--rule);
  gap: 16px;
}
.contact-facts dt {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact-facts dd {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.contact-facts dd a {
  color: var(--bg);
  border-bottom: 1px solid rgba(250,246,235,0.35);
}
.contact-facts dd a:hover {
  color: var(--accent-2);
  border-bottom-color: var(--accent-2);
}

.rfp {
  background: var(--surface);
  border: 1px solid var(--ink);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rfp__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ink);
}
.rfp__h {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 4px;
}
[data-direction="A"] .rfp__h { font-family: var(--serif); }
.rfp__id { font-size: 12px; color: var(--ink-3); }
.rfp__row { display: flex; flex-direction: column; gap: 8px; }
.rfp__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rfp__row label { display: flex; flex-direction: column; gap: 6px; }
.rfp__row label span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rfp input, .rfp select, .rfp textarea {
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  padding: 10px 0;
  outline: none;
  transition: border-color var(--t-fast);
  font-family: var(--sans);
}
.rfp input:focus, .rfp select:focus, .rfp textarea:focus {
  border-bottom-color: var(--ink);
}
.rfp textarea { border: 1px solid var(--rule-2); padding: 12px; resize: vertical; }
.rfp textarea:focus { border-color: var(--ink); }
.rfp__row-label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.rfp__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.rfp__row--timing .rfp__chips {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 0;
}
.rfp__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--rule-2);
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.rfp__row--timing .rfp__chip {
  width: 100%;
  height: 100%;
  min-width: 0;
}
.rfp__chip:hover { border-color: var(--ink); }
.rfp__chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.rfp__chip:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.rfp__security {
  padding: 12px 14px;
  border: 1px solid var(--rule-2);
}
.rfp__turnstile {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.rfp__turnstile iframe { max-width: 100%; }
.rfp__security--testing .rfp__turnstile {
  height: 0 !important;
  min-height: 0 !important;
  overflow: hidden;
}
.rfp__turnstile-status {
  margin: 8px 0 0;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.5;
}
.rfp__security[data-state="complete"] .rfp__turnstile-status { color: var(--ink-2); }
.rfp__security[data-state="error"] .rfp__turnstile-status,
.rfp__security[data-state="expired"] .rfp__turnstile-status { color: #8a2f22; }
.rfp__security .rfp__security-message { margin-top: 10px; }
.rfp__security-message {
  padding: 12px 14px;
  border: 1px solid var(--rule-2);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.rfp__security-message a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule-2);
}
.rfp__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  margin-top: 8px;
}
.rfp__small { font-size: 12px; color: var(--ink-3); max-width: 36ch; line-height: 1.5; }

.careers-hero__grid {
  grid-template-columns: 1.25fr 1fr;
  align-items: start;
}
.careers-copy {
  max-width: 760px;
}
.careers-copy .contact-hero__lede {
  max-width: 70ch;
}
.careers-copy__sections {
  display: grid;
  gap: 24px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(250,246,235,0.25);
}
.careers-copy__sections h2 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--bg);
}
.careers-copy__sections p {
  margin: 0 0 10px;
  color: rgba(250,246,235,0.78);
  line-height: 1.58;
  max-width: 70ch;
}
.careers-copy__sections p:last-child {
  margin-bottom: 0;
}
.careers-community {
  padding-top: 6px;
}
.careers-community__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.community-logo {
  min-height: 124px;
  padding: 12px;
  border: 1px solid rgba(250,246,235,0.26);
  background: rgba(250,246,235,0.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.community-logo--featured {
  grid-column: 1 / -1;
  min-height: 224px;
  padding: 20px;
  border-color: var(--accent-2);
  background: rgba(250,246,235,0.12);
}
.community-logo__image-wrap {
  min-height: 74px;
  padding: 10px;
  border: 1px solid rgba(250,246,235,0.18);
  background: rgba(250,246,235,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.community-logo--dsn .community-logo__image-wrap {
  background: var(--ink);
}
.community-logo__image {
  width: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}
.community-logo--swing .community-logo__image {
  max-height: 62px;
}
.community-logo--featured .community-logo__image-wrap {
  min-height: 146px;
}
.community-logo--featured .community-logo__image {
  max-height: 126px;
}
.community-logo__name {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.35;
  min-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  color: rgba(250,246,235,0.72);
}
.community-logo--featured .community-logo__name {
  font-size: 12px;
  color: var(--bg);
}
.community-logo__note {
  margin-top: -4px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: rgba(250,246,235,0.72);
}
.careers-form {
  position: sticky;
  top: 112px;
}

.contact-offices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.contact-office {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
}
.contact-office__address {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.contact-office__phone {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-deep);
}
.contact-office__note {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}

.contact-success__inner { padding: 80px 0 120px; max-width: 700px; margin: 0 auto; text-align: center; }
.contact-success__title { font-size: clamp(40px, 5vw, 72px); margin: 16px 0 24px; }
.contact-success__p { font-size: 17px; color: var(--ink-2); line-height: 1.55; margin: 0 0 40px; }
.contact-success__ref {
  display: inline-flex;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid var(--rule);
  margin-bottom: 40px;
  align-items: center;
}

/* Tweaks panel */
.tweaks {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--ink);
  color: var(--bg);
  padding: 0;
  width: 320px;
  z-index: 100;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.tweaks.is-open { display: block; }
.tweaks__head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tweaks__close { color: var(--bg); font-size: 14px; }
.tweaks__body { padding: 18px; display: flex; flex-direction: column; gap: 20px; }
.tweak-group { display: flex; flex-direction: column; gap: 8px; }
.tweak-group__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.tweak-options { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.tweak-option {
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--bg);
  text-align: left;
  font-size: 12px;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.tweak-option:hover { background: rgba(255,255,255,0.1); }
.tweak-option.is-active {
  background: var(--bg); color: var(--ink); border-color: var(--bg);
}
.tweak-swatches { display: flex; gap: 8px; }
.tweak-swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform var(--t-fast);
}
.tweak-swatch.is-active { border-color: var(--bg); transform: scale(1.1); }

/* Responsive */
@media (max-width: 1100px) {
  .contact-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-hero__grid > *,
  .careers-copy,
  .contact-facts,
  .contact-facts > div {
    min-width: 0;
    max-width: 100%;
  }
  .careers-form { position: static; }
  .service-detail__grid, .case-body__grid { grid-template-columns: 1fr; }
  .page--service .case-body__section { grid-column: auto; }
  .service-detail__col { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--rule); }
  .team__grid--full { grid-template-columns: repeat(2, 1fr); }
  .engagements__grid--full { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .contact-facts > div,
  .page-hero--dark.contact-hero .contact-facts > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-facts dd {
    overflow-wrap: anywhere;
  }
}

/* ============================================
   CLIENTS PAGE
   ============================================ */

/* Profile stripe — three big data points on cream */
.client-profile {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.client-profile__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.client-profile__cell {
  padding: 56px 40px 56px 0;
  border-right: 1px solid var(--rule);
  position: relative;
}
.client-profile__cell:last-child { border-right: 0; }
.client-profile__cell:not(:first-child) { padding-left: 40px; }
.client-profile__num {
  font-family: var(--display);
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
}
.client-profile__num .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent-2);
}
.client-profile__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.client-profile__detail {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 28ch;
}

/* National reach — map + narrative */
.reach {
  padding: 96px 0;
  border-bottom: 1px solid var(--rule);
}
.reach__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 80px;
  align-items: center;
}
.reach__map {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(200,160,90,0.14), transparent 30%),
    linear-gradient(135deg, #f8f4ec 0%, #efe6d4 100%);
  border: 1px solid rgba(200,160,90,0.42);
}
.reach__map-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reach__map-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  background: rgba(250,246,235,0.92);
  border: 1px solid rgba(200,160,90,0.42);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.4;
  padding: 7px 10px;
  text-transform: uppercase;
}
.reach__narrative .num-badge {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}
.reach__narrative h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 18ch;
}
.reach__narrative h2 .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.reach__narrative p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 42ch;
  margin: 0 0 20px;
}
.reach__proof-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
  max-width: 46ch;
}
.reach__proof-points div {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}
.reach__proof-points strong {
  display: block;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1;
  color: var(--accent-deep);
  font-weight: 650;
}
.reach__proof-points span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink-2);
}
.reach__cities {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.reach__city {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.reach__city span:first-child { color: var(--ink); }
.reach__city span:last-child {
  color: var(--ink-3);
  font-family: var(--sans);
  font-size: 12px;
}

/* Representative clients — wordmark grid */
.roster {
  padding: 96px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.roster__head {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0;
  align-items: end;
}
.roster__head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  max-width: 14ch;
}
.roster__head h2 .serif {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}
.roster__head-note {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 48ch;
  padding-bottom: 8px;
}
.roster__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid var(--rule);
}
.roster__cell {
  aspect-ratio: 1 / 0.65;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease;
}
.roster__cell:hover { background: #f5efe1; }
.roster__cell:hover .roster__cell-meta { opacity: 1; transform: translateY(0); }
.roster__wordmark {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-align: center;
  line-height: 1.1;
}
.roster__wordmark--serif {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 20px;
}
.roster__wordmark--caps {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  font-weight: 600;
}
.roster__wordmark--tight {
  letter-spacing: -0.03em;
  font-weight: 600;
}
.roster__cell-meta {
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-3);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.roster__disclaimer {
  margin-top: 40px;
  font-size: 13px;
  color: var(--ink-3);
  font-style: italic;
  max-width: 68ch;
}

/* Case studies — detailed engagement cards */
.cases-detail {
  padding: 96px 0;
  background: #f5efe1;
  border-bottom: 1px solid var(--rule);
}
.cases-detail--archive {
  background: #fff;
}
.cases-detail__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.cases-detail__head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  max-width: 14ch;
}
.cases-detail__head h2 .serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.cases-detail__count {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-bottom: 12px;
}
.cases-detail__count .big {
  display: block;
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
  color: var(--accent-2);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.cases-detail__count .legend {
  display: block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
  line-height: 1.6;
}
.cases-detail__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-bottom: 40px;
}
.cases-detail__chip {
  background: none;
  border: 0;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  cursor: pointer;
  border-right: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.cases-detail__chip:hover { background: var(--bg); color: var(--ink); }
.cases-detail__chip.is-active {
  background: var(--ink);
  color: var(--bg);
}
.cases-detail__chip-count {
  font-family: var(--sans);
  font-size: 12px;
  opacity: 0.6;
}
.case-library__controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.4fr) auto;
  gap: 16px;
  align-items: end;
  padding: 24px 0;
  margin-bottom: 40px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.case-library__field {
  display: grid;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.case-library__field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink);
  padding: 0 40px 0 14px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}
.cases-detail--archive .case-library__field select {
  background: #fff;
}
.case-library__reset {
  min-height: 48px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 0 18px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.case-library__reset:hover {
  background: var(--ink);
  color: var(--bg);
}
.cases-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  background: var(--bg);
}
.cases-detail--archive .cases-detail__grid {
  background: #fff;
}
.case-card {
  padding: 32px 32px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  background: var(--bg);
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  border-top: 0;
  border-left: 0;
  color: inherit;
  position: relative;
  transition: background 0.2s ease;
}
.cases-detail--archive .case-card {
  background: #fff;
}
.case-card:hover { background: #faf4e5; }
.cases-detail--archive .case-card:hover { background: #faf4e5; }
.case-card:hover .case-card__cta { color: var(--accent-2); }
.case-card:hover .case-card__cta svg { transform: translateX(3px); }
.case-card__logo {
  aspect-ratio: 1 / 1;
  background: #f5efe1;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  position: relative;
}
.case-card__logo svg { width: 100%; height: 100%; display: block; }
.case-card__logo-fallback {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  color: var(--accent-2);
}
.case-card__body { display: flex; flex-direction: column; min-height: 100%; }
.case-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.case-card__num { color: var(--accent-2); }
.case-card__tag {
  color: var(--ink-3);
  padding: 4px 8px;
  border: 1px solid var(--rule);
  background: var(--bg);
}
.case-card__name {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 500;
}
.case-card__sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.case-card__sub span { position: relative; }
.case-card__sub span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: var(--rule);
}
.case-card__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 20px;
  flex: 1;
  text-wrap: pretty;
}
.case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: auto;
  transition: color 0.15s ease;
}
.case-card__cta svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.case-library__empty {
  margin: 32px 0 0;
  padding: 24px;
  border: 1px solid var(--rule);
  background: var(--bg);
  color: var(--ink-2);
}

/* Industries */
.industry-index__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--rule);
}
.industry-card {
  min-height: 320px;
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background var(--t-fast);
}
.industry-card:hover { background: var(--surface); }
.industry-card h2 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.industry-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.industry-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.industry-card__cta svg {
  width: 14px;
  height: 14px;
}
.industry-section__grid {
  display: grid;
  grid-template-columns: minmax(240px, 4fr) minmax(0, 8fr);
  gap: var(--col-gap);
  border-top: 1px solid var(--ink);
  padding-top: 40px;
}
.industry-section__title {
  margin: 14px 0 0;
  font-size: 32px;
  max-width: 18ch;
}
.industry-service-list {
  display: grid;
  border-top: 1px solid var(--rule);
}
.industry-service {
  display: grid;
  grid-template-columns: minmax(180px, 3fr) minmax(0, 5fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.industry-service span {
  font-weight: 500;
  color: var(--ink);
}
.industry-service small {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .cases-detail__head { grid-template-columns: 1fr; gap: 24px; }
  .case-library__controls { grid-template-columns: 1fr; align-items: stretch; }
  .cases-detail__grid { grid-template-columns: 1fr; }
  .case-card { grid-template-columns: 88px 1fr; gap: 20px; padding: 24px; }
}

/* Where we're most useful */
.useful { padding: 96px 0; border-bottom: 1px solid var(--rule); background: #f5efe1; }
.useful__head { margin-bottom: 56px; max-width: 720px; }
.useful__head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.useful__head h2 .serif,
.useful__head h2 em { font-family: var(--serif); font-style: italic; font-weight: 400; }
.useful__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.useful__card {
  padding: 36px 28px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}
.useful__card h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
.useful__card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.useful__card-foot {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

/* Testimonials — editorial pull quotes */
.pull-quotes { padding: 120px 0; border-bottom: 1px solid var(--rule); }
.pull-quotes__head { margin-bottom: 72px; max-width: 720px; }
.pull-quotes__head h2 {
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
}
.pull-quotes__head h2 .serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.pull-quote {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 60px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.pull-quote:last-child { border-bottom: 1px solid var(--rule); }
.pull-quote__meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.8;
}
.pull-quote__meta .sector { color: var(--ink); display: block; margin-bottom: 4px; font-weight: 500; }
.pull-quote__intro {
  margin: 0 0 20px;
  max-width: 58ch;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-2);
}
.pull-quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: pretty;
  max-width: 52ch;
}
.pull-quote blockquote::before { content: "“"; font-size: 1.2em; line-height: 0; color: var(--accent-2); margin-right: 4px; }
.pull-quote blockquote::after { content: "”"; font-size: 1.2em; line-height: 0; color: var(--accent-2); margin-left: 2px; }
.pull-quote__attr {
  margin-top: 24px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.pull-quote__attr strong { color: var(--ink); font-weight: 500; }

/* Case CTA */
.clients-cta {
  padding: 96px 0;
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.clients-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 85% 40%, rgba(200,160,90,0.18), transparent 65%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(30,80,120,0.25), transparent 70%);
  pointer-events: none;
}
.clients-cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.clients-cta h2 {
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  color: var(--bg);
  max-width: 16ch;
}
.clients-cta h2 .serif { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--accent-2); }
.clients-cta__eyebrow { color: rgba(250,246,235,0.6); }
.clients-cta__right { padding-bottom: 8px; }
.clients-cta__right p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(250,246,235,0.75);
  margin: 0 0 24px;
}
.clients-cta__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(250,246,235,0.18);
}
.clients-cta__link {
  background: none;
  border: 0;
  padding: 0;
  text-align: left;
  color: var(--bg);
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  transition: color 0.15s ease;
  border-bottom: 1px solid transparent;
}
.clients-cta__link:hover { color: var(--accent-2); }
.clients-cta__link span:last-child {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(250,246,235,0.5);
}

@media (max-width: 1100px) {
  .client-profile__inner { grid-template-columns: 1fr; }
  .client-profile__cell { border-right: 0; border-bottom: 1px solid var(--rule); padding: 40px 0 !important; }
  .client-profile__cell:last-child { border-bottom: 0; }
  .reach__grid { grid-template-columns: 1fr; gap: 48px; }
  .roster__head { grid-template-columns: 1fr; gap: 24px; }
  .roster__grid { grid-template-columns: repeat(3, 1fr); }
  .useful__grid { grid-template-columns: repeat(2, 1fr); }
  .pull-quote { grid-template-columns: 1fr; gap: 20px; }
  .clients-cta__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .brand__logo { height: 50px; }
  .roster__grid { grid-template-columns: repeat(2, 1fr); }
  .useful__grid { grid-template-columns: 1fr; }
  .about-facts__grid,
  .about-credentials__list,
  .team-profile__facts div {
    grid-template-columns: 1fr;
  }
  .about-fact,
  .about-fact:nth-child(3n),
  .about-credentials__item:nth-child(odd) {
    border-right: 0;
  }
  .about-credentials__item:nth-child(even) { padding-left: 0; }
  .rfp__row--2 { grid-template-columns: 1fr; }
  .rfp__row--timing .rfp__chips { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rfp__chip { white-space: normal; }
  .careers-community__logos { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page--home .ticker.is-fixed {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    box-shadow: none;
  }
  body.has-fixed-home-ticker .page--home .hero--dark {
    padding-bottom: 0;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.nav-menu a,
.footer__cols a,
.footer__legal-links a {
  color: inherit;
  text-decoration: none;
}

.nav-menu a {
  display: block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 13.5px;
  color: var(--ink-2);
  border-bottom: 1px dotted var(--rule);
  transition: color var(--t-fast), padding var(--t-fast);
}

.nav-menu a:last-child {
  border-bottom: 0;
}

.nav-menu a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer__cols a,
.footer__legal-links a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-2);
}

.footer__legal-links a {
  padding: 0;
}

.footer__cols a:hover,
.footer__legal-links a:hover {
  color: var(--ink);
}

@media (max-width: 820px) {
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

.rm-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--ink);
}

.rm-nav-toggle span:last-child,
.rm-nav-toggle span:first-child {
  width: 18px;
  height: 1px;
  background: currentColor;
  display: block;
}

.site-header.is-open .rm-nav-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.site-header.is-open .rm-nav-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.roster__grid--logos {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roster__cell--logo {
  align-items: stretch;
}

.roster__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--rule);
}

.roster__logo-image,
.case-card__logo img {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.case-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  padding: 24px;
  border: 1px solid var(--rule);
  background: #fff;
}

.page--clients .roster__logo-wrap,
.page--clients .case-card__logo {
  background: #fff;
  isolation: isolate;
}

.contact-form-wrap {
  padding-top: 0;
}

.rfp__chips input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.rfp__chip {
  position: relative;
}

.default-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.default-page__title {
  font-size: clamp(40px, 5vw, 72px);
  margin: 0 0 24px;
}

.default-page__content {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
}

.default-page__content h2,
.article h2,
.case-body__p h2 {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 40px 0 16px;
}

.default-page__content p,
.article p,
.case-body__p p {
  margin: 0 0 20px;
}

[data-filter-items] [data-item-hidden="true"] {
  display: none !important;
}

[data-case-library] [data-item-hidden="true"] {
  display: none !important;
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    align-items: center;
  }

  .rm-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .header-actions {
    display: none;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 0;
    justify-self: stretch;
    padding-top: 16px;
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
    font-size: 15px;
  }

  .nav-item--has-menu .nav-menu {
    display: none;
  }

  .nav-menu__grid {
    grid-template-columns: 1fr;
  }

  .hero__inner,
  .hero__stats,
  .sec-head,
  .cta__inner,
  .contact-hero__grid,
  .service-detail__grid,
  .service-faq__grid,
  .case-body__grid,
  .clients-cta__grid,
  .about-scope__grid,
  .about-boundaries__grid,
  .about-credentials__grid,
  .team-profile__grid {
    grid-template-columns: 1fr !important;
  }

  .hero__title,
  .hero__body {
    grid-column: 1 / -1;
  }

  .hero__body {
    margin-top: 24px;
  }

  .hero__stats {
    gap: 24px;
  }

  .approach__plate,
  .team-sec__hq {
    grid-template-columns: 1fr;
  }

  .cta__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .services__grid,
  .engagements__grid,
  .case-proof__head,
  .case-proof__panel,
  .team-carousel__panel,
  .engagements__grid--full,
  .team__grid,
  .team__grid--full,
  .contact-offices__grid,
  .cases-detail__grid,
  .industry-index__grid,
  .industry-section__grid,
  .roster__grid--logos {
    grid-template-columns: 1fr !important;
  }

  .case-card--lg {
    grid-template-columns: 1fr;
  }

  .case-card--lg .case-card__img,
  .case-card--lg .case-card__meta,
  .case-card--lg .case-card__headline,
  .case-card--lg .case-card__summary,
  .case-card--lg .case-card__foot {
    grid-column: 1;
    padding-right: 0;
  }

  .about-facts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-fact:nth-child(3n) { border-right: 1px solid var(--rule); }
  .about-fact:nth-child(2n) { border-right: 0; }
  .team-profile__body { max-width: none; }
}

@media (max-width: 640px) {
  .phrase-nowrap {
    white-space: normal;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
  }
  .cookie-banner__actions {
    justify-content: flex-start;
  }
  .industry-service {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-facts__grid,
  .about-credentials__list,
  .team-profile__facts div {
    grid-template-columns: 1fr;
  }

  .about-fact,
  .about-fact:nth-child(2n),
  .about-fact:nth-child(3n),
  .about-credentials__item:nth-child(odd) {
    border-right: 0;
  }

  .about-credentials__item:nth-child(even) { padding-left: 0; }
}

.reach__benefits {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
}
.reach__benefits section {
  display: grid;
  gap: 6px;
}
.reach__benefits h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
}
.reach__benefits p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .client-logo-strip__inner {
    padding-top: 20px;
    padding-bottom: 22px;
  }

  .client-logo-slide {
    width: 150px;
    height: 64px;
  }

  .client-logo-slide__link {
    padding-inline: 14px;
  }

  .client-logo-slide img {
    max-height: 46px;
  }

  .page--home .services--home .sec-head__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page--home .services--home .sec-head__title {
    max-width: 22ch;
  }
}
