/* Consolidated layout layer
   Keeps the approved Manseur brand identity and the live site's behaviour
   while adopting selected structures from the Advisory reference. */

:root {
  --ad-ink: var(--ma-navy-950);
  --ad-ink-deep: var(--ma-navy-950);
  --ad-cream: var(--ma-neutral-50);
  --ad-cream-deep: var(--ma-neutral-100);
  --ad-paper: var(--ma-white);
  --ad-bronze: var(--ma-gold-600);
  --ad-bronze-dark: var(--ma-gold-text);
  --ad-sage: var(--ma-navy-800);
  --ad-muted: var(--ma-muted);
  --ad-line: var(--ma-line);
  --ad-line-light: rgba(255, 255, 255, 0.24);
  --ad-shadow: var(--ma-shadow-md);
  --ad-display: var(--ma-font-display);
  --ad-body: var(--ma-font-body);
  --bg: var(--ad-cream);
  --panel: rgba(255, 253, 248, 0.84);
  --panel-strong: var(--ad-paper);
  --ink: var(--ad-ink);
  --ink-2: var(--ad-muted);
  --muted: var(--ad-muted);
  --accent: var(--ad-bronze);
  --accent-2: var(--ad-sage);
  --serif: var(--ad-display);
  --sans: var(--ad-body);
  --mono: var(--ad-body);
  --maxw: 1240px;
  --header-h: 82px;
  --footer-h: 0px;
}

* { box-sizing: border-box; }

html,
body {
  width: 100%;
  min-height: 100%;
  height: auto;
  overflow-x: hidden;
  overflow-y: visible;
  background: var(--ad-cream);
}

html { scroll-behavior: smooth; }

body {
  display: grid;
  grid-template-rows: auto minmax(calc(100vh - var(--header-h)), 1fr) auto;
  color: var(--ad-ink);
  background: var(--ad-cream);
  font-family: var(--ad-body);
  font-size: clamp(15px, 0.25vw + 14px, 18px);
  line-height: 1.65;
}

body,
button,
input,
select,
textarea { font-family: var(--ad-body); }

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section-head h1,
.summary-title h3,
.engagement-title h4,
.contact-section h1,
.contact-form-title,
.article-header h1,
.article-body h2,
.article-body h3,
.newsletter-dialog h2,
.booking-intro h1 {
  color: var(--ad-ink);
  font-family: var(--ad-display);
  font-weight: 450;
  letter-spacing: -0.025em;
}

em,
.hero h1 em,
.section-head h1 em,
.summary-title h3 em,
.engagement-title h4 em,
.contact-section h1 em,
.article-header h1 em,
.newsletter-dialog h2 em,
.booking-intro h1 em {
  color: var(--ad-bronze);
  font-style: italic;
}

a { text-underline-offset: 0.22em; }

:focus-visible {
  outline: 3px solid #d99a76;
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--ad-bronze-dark);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--ad-ink-deep);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.site-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgba(17, 43, 63, 0.035) 50%, transparent 50.08%),
    linear-gradient(rgba(17, 43, 63, 0.035) 1px, transparent 1px),
    var(--ad-cream);
  background-size: 100% 100%, 100% 120px, auto;
}

.site-background::before,
.site-background::after {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid rgba(166, 95, 63, 0.14);
  transform: rotate(45deg);
}

.site-background::before {
  top: 22vh;
  right: -12vw;
  width: 38vw;
  aspect-ratio: 1;
}

.site-background::after {
  top: 29vh;
  right: -5vw;
  width: 24vw;
  aspect-ratio: 1;
}

.site-header,
.site-main,
.site-footer { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  height: var(--header-h);
  z-index: 100;
  border: 0;
  border-bottom: 1px solid var(--ad-line);
  background: rgba(245, 240, 231, 0.96);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.shell {
  width: min(100%, var(--maxw));
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 54px);
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand-lockup {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  min-height: 44px;
  color: var(--ad-ink);
  text-decoration: none;
}

.brand-lockup::before { display: none; content: none; }

.brand-lockup .mark {
  display: block;
  width: 34px;
  height: 34px;
}

.brand-wordmark {
  font-family: var(--ad-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.brand-wordmark em,
.footer-wordmark em { color: var(--ad-bronze); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.links {
  display: flex;
  align-items: center;
  gap: 1px;
}

.links a,
.nav-parent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 8px;
  border: 0;
  border-radius: 0;
  color: var(--ad-ink);
  background: transparent;
  font-family: var(--ad-body);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.095em;
  text-decoration: none;
  text-transform: uppercase;
}

.links a:hover,
.links a:focus-visible {
  color: var(--ad-bronze-dark);
  border-color: transparent;
  background: rgba(166, 95, 63, 0.08);
}

.links a.active,
.links a[aria-current="page"] {
  color: var(--ad-bronze-dark);
  border-color: transparent;
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--ad-bronze);
}

.links .nav-book,
.links .nav-book[aria-current="page"] {
  min-height: 42px;
  margin-left: 7px;
  padding-inline: 14px;
  color: #fff;
  background: var(--ad-bronze);
  box-shadow: none;
}

.links .nav-book:hover,
.links .nav-book:focus-visible {
  color: #fff;
  background: var(--ad-bronze-dark);
}

.lang-toggle {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--ad-line);
  border-radius: 0;
  background: transparent;
}

.lang-toggle button {
  min-width: 36px;
  min-height: 34px;
  padding: 6px 8px;
  border: 0;
  color: var(--ad-muted);
  background: transparent;
  font-family: var(--ad-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-toggle button.on {
  color: #fff;
  background: var(--ad-ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ad-line);
  border-radius: 0;
  color: var(--ad-ink);
  background: transparent;
}

.menu-toggle span { width: 18px; height: 1px; background: currentColor; }

.site-main { min-height: 0; overflow: visible; }

.page-scroll {
  display: block;
  height: auto;
  overflow: visible;
  scroll-padding-block: calc(var(--header-h) + 24px);
}

.page-scroll [id] { scroll-margin-block-start: calc(var(--header-h) + 24px); }

.page-panel {
  width: 100%;
  min-height: min(760px, calc(100vh - var(--header-h)));
  margin: 0;
  padding: clamp(64px, 8vw, 110px) 0;
  background: transparent;
  backdrop-filter: none;
}

.page-panel > .screen-section,
.home-panel > section:not(.home-hero):not(.closing-band),
.home-panel > aside {
  width: min(calc(100% - clamp(40px, 9vw, 112px)), var(--maxw));
  margin-inline: auto;
}

.screen-section { padding: 0 !important; border: 0 !important; }

.section-head {
  display: grid;
  grid-template-columns: minmax(110px, 0.22fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(28px, 5vw, 78px);
  margin: 0 0 clamp(34px, 5vw, 62px);
  padding: 0 0 clamp(24px, 3vw, 34px);
  border-bottom: 1px solid var(--ad-line) !important;
}

.section-head .num,
.num,
.eyebrow,
.editorial-kicker,
.home-alternatives header > span,
.home-criteria header > span,
.home-modes header > span,
.home-insights > div > span,
.advisory-service-mode > header > span,
.quebec-rail > span,
.quebec-municipal > span,
.quebec-offer > span {
  color: var(--ad-bronze-dark);
  font-family: var(--ad-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-head h1 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(46px, 6.2vw, 84px);
  line-height: 0.98;
  text-wrap: balance;
}

/* Home */
.home-panel { padding: 0; }

.home-hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(820px, calc(100vh - var(--header-h)));
  overflow: hidden;
  color: #fff;
  background: var(--ad-ink-deep);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 100% 88px, 88px 100%;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - clamp(40px, 9vw, 112px)), var(--maxw));
  padding-block: clamp(84px, 11vw, 150px);
}

.home-hero .eyebrow {
  display: block;
  margin: 0 0 30px;
  color: #d5a080;
}

.home-hero .eyebrow::after { display: none; }

.home-hero h1 {
  max-width: 1050px;
  margin: 0 0 32px;
  color: #fff;
  font-size: clamp(52px, 7.6vw, 104px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.038em;
  text-wrap: balance;
}

.home-hero h1 em { color: #d7a283; }

.home-hero .lede {
  max-width: 770px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-family: var(--ad-body) !important;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.home-hero__ornament {
  position: absolute;
  top: 50%;
  right: max(4vw, calc((100vw - var(--maxw)) / 2));
  z-index: 1;
  width: clamp(190px, 27vw, 420px);
  aspect-ratio: 1;
  opacity: 0.65;
  transform: translateY(-45%);
}

.home-hero__ornament::before,
.home-hero__ornament::after,
.home-hero__ornament span {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(215, 162, 131, 0.5);
  transform: rotate(45deg);
}

.home-hero__ornament::after { inset: 26%; border-color: rgba(255,255,255,.25); }
.home-hero__ornament span:nth-child(1) { inset: 40%; border-color: rgba(215,162,131,.72); }
.home-hero__ornament span:nth-child(2) { inset: 49%; border: 0; background: var(--ad-bronze); }
.home-hero__ornament span:nth-child(3) { inset: 0 50%; width: 1px; border: 0; background: rgba(255,255,255,.18); transform: none; }
.home-hero__ornament span:nth-child(4) { inset: 50% 0; height: 1px; border: 0; background: rgba(255,255,255,.18); transform: none; }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-cta a,
.closing-band a,
.quebec-actions a,
.service-mode-links a,
.services-reference-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ad-bronze);
  color: #fff;
  background: var(--ad-bronze);
  font-family: var(--ad-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hero-cta .cta-primary { color: var(--ad-ink-deep) !important; border-color: #ddb294 !important; background: #ddb294 !important; }
.hero-cta .cta-secondary { color: #fff !important; border-color: rgba(255,255,255,.5) !important; background: transparent !important; }
.hero-cta a:hover { transform: translateY(-1px); }

.home-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  margin-block: clamp(44px, 6vw, 74px);
  padding: 24px 28px;
  border: 1px solid var(--ad-line);
  border-left: 4px solid var(--ad-bronze);
  background: rgba(255,253,248,.7);
}

.home-alert span { color: var(--ad-bronze-dark); font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.home-alert p { max-width: 920px; margin: 8px 0 0; font-size: 14px; line-height: 1.65; }
.home-alert > a { color: var(--ad-ink); font-size: 12px; font-weight: 600; text-decoration: none; white-space: nowrap; }

.editorial-split {
  display: grid;
  grid-template-columns: minmax(110px, .25fr) minmax(0, 1fr);
  gap: clamp(30px, 7vw, 110px);
  padding-block: clamp(72px, 10vw, 132px);
  border-top: 1px solid var(--ad-line);
}

.editorial-split h2,
.home-alternatives h2,
.home-criteria h2,
.home-modes h2,
.home-proof h2,
.home-insights h2,
.closing-band h2 {
  margin: 0;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.04;
  text-wrap: balance;
}

.editorial-split > div:last-child { max-width: 880px; }
.editorial-split p { margin: 25px 0 0; color: var(--ad-muted); font-size: clamp(16px, 1.25vw, 20px); line-height: 1.72; }
.editorial-split strong { color: var(--ad-ink); }
.editorial-split .editorial-emphasis { padding-left: 22px; border-left: 2px solid var(--ad-bronze); color: var(--ad-ink); font-family: var(--ad-display); font-size: clamp(23px, 2.3vw, 32px); line-height: 1.35; }

.home-alternatives {
  padding-block: clamp(72px, 10vw, 132px);
  border-top: 1px solid var(--ad-line);
}

.home-alternatives header,
.home-criteria header,
.home-modes header { max-width: 850px; margin-bottom: 46px; }
.home-alternatives header > span,
.home-criteria header > span,
.home-modes header > span { display: block; margin-bottom: 16px; }
.home-alternatives header p,
.home-criteria header p { max-width: 720px; color: var(--ad-muted); }

.alternative-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ad-line);
  border-left: 1px solid var(--ad-line);
}

.alternative-grid article {
  min-height: 260px;
  padding: 28px 24px;
  border-right: 1px solid var(--ad-line);
  border-bottom: 1px solid var(--ad-line);
  background: rgba(255,253,248,.36);
}

.alternative-grid h3 { margin: 0 0 18px; font-size: 27px; line-height: 1.1; }
.alternative-grid p { margin: 0; color: var(--ad-muted); font-size: 14px; line-height: 1.65; }
.section-punchline { max-width: 850px; margin: 30px 0 0; color: var(--ad-ink); font-family: var(--ad-display); font-size: clamp(22px, 2.2vw, 31px); line-height: 1.35; }

.home-criteria {
  padding-block: clamp(72px, 10vw, 132px);
  border-top: 1px solid var(--ad-line);
}

.home-criteria ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ad-line); }
.home-criteria li { display: grid; grid-template-columns: 80px minmax(0, 1fr); gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--ad-line); }
.home-criteria li > span { color: var(--ad-bronze); font-family: var(--ad-display); font-size: 25px; }
.home-criteria li div { display: grid; grid-template-columns: minmax(250px,.65fr) minmax(0,1fr); gap: 40px; }
.home-criteria h3 { margin: 0; font-size: clamp(23px, 2.2vw, 31px); }
.home-criteria li p { margin: 0; color: var(--ad-muted); font-size: 14px; }

.home-modes {
  padding-block: clamp(72px, 10vw, 132px);
  border-top: 1px solid var(--ad-line);
}

.mode-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--ad-line); border-left: 1px solid var(--ad-line); }
.mode-grid a { min-height: 250px; padding: 28px; border-right: 1px solid var(--ad-line); border-bottom: 1px solid var(--ad-line); color: var(--ad-ink); background: rgba(255,253,248,.5); text-decoration: none; transition: background .18s ease, color .18s ease; }
.mode-grid a:hover { color: #fff; background: var(--ad-ink); }
.mode-grid a > span { color: var(--ad-bronze); font-size: 11px; letter-spacing: .15em; }
.mode-grid h3 { margin: 46px 0 12px; color: inherit; font-size: clamp(34px, 3.5vw, 50px); }
.mode-grid p { margin: 0; color: inherit; opacity: .75; }
.text-link { display: inline-block; margin-top: 28px; color: var(--ad-bronze-dark); font-size: 13px; font-weight: 600; text-decoration: none; }

.home-proof { border-top: 1px solid var(--ad-line); }
.proof-stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1px; margin-top: 42px; background: var(--ad-line); border: 1px solid var(--ad-line); }
.proof-stats div { min-height: 150px; padding: 24px 20px; background: var(--ad-paper); }
.proof-stats strong { display: block; color: var(--ad-bronze); font-family: var(--ad-display); font-size: 48px; font-weight: 400; line-height: 1; }
.proof-stats span { display: block; margin-top: 13px; color: var(--ad-muted); font-size: 12px; line-height: 1.4; }

.home-insights { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-block: clamp(70px, 9vw, 120px); border-top: 1px solid var(--ad-line); }
.home-insights h2 { margin-top: 14px; }
.home-insights p { max-width: 650px; color: var(--ad-muted); }
.home-insights > a { color: var(--ad-bronze-dark); font-weight: 600; text-decoration: none; white-space: nowrap; }

.closing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(54px, 7vw, 88px) max(clamp(20px, 4.5vw, 56px), calc((100vw - var(--maxw)) / 2 + 54px));
  color: #fff;
  background: var(--ad-ink-deep);
}

.closing-band h2 { max-width: 820px; color: #fff; font-size: clamp(34px, 4.4vw, 58px); }
.closing-band > div { display: flex; flex-wrap: wrap; gap: 10px; }
.closing-band .closing-secondary { color: #fff; border-color: rgba(255,255,255,.5); background: transparent; }

/* Services */
.services-intro {
  max-width: 790px;
  margin: -18px 0 clamp(48px, 6vw, 76px) calc(22% + clamp(28px, 5vw, 78px));
  color: var(--ad-muted);
  font-size: clamp(18px, 1.6vw, 23px);
}

.advisory-service-stack { border-top: 1px solid var(--ad-line); }

.advisory-service-mode {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
  padding-block: clamp(58px, 8vw, 96px);
  border-bottom: 1px solid var(--ad-line);
}

.advisory-service-mode > header { position: sticky; top: calc(var(--header-h) + 24px); align-self: start; }
.advisory-service-mode > header > span { display: block; margin-bottom: 16px; }
.advisory-service-mode > header h2 { margin: 0; font-size: clamp(38px, 4.4vw, 60px); line-height: 1.04; text-wrap: balance; }
.advisory-service-mode > header p { margin: 22px 0 0; color: var(--ad-muted); }

.service-detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.service-detail-grid:has(> article:only-child) { grid-template-columns: 1fr; }
.service-detail-grid article { display: flex; flex-direction: column; min-height: 100%; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--ad-line); background: rgba(255,253,248,.72); }
.service-detail-grid h3 { margin: 0 0 16px; font-size: clamp(26px, 2.6vw, 37px); line-height: 1.08; }
.service-detail-grid p { margin: 0 0 18px; color: var(--ad-muted); font-size: 14px; }
.service-detail-grid ul { margin: 0; padding: 18px 0 0; border-top: 1px solid var(--ad-line); list-style: none; }
.service-detail-grid li { position: relative; margin: 0 0 9px; padding-left: 18px; color: var(--ad-ink); font-size: 13px; line-height: 1.55; }
.service-detail-grid li::before { content: ""; position: absolute; top: .68em; left: 0; width: 6px; height: 6px; background: var(--ad-bronze); transform: rotate(45deg); }
.service-detail-grid .service-outcome { margin-top: auto; padding-top: 20px; color: var(--ad-ink); font-family: var(--ad-display); font-size: 18px; line-height: 1.4; }
.service-detail-grid article > a { margin-top: 14px; color: var(--ad-bronze-dark); font-size: 12px; font-weight: 600; text-decoration: none; }
.service-mode-links { grid-column: 2; display: flex; flex-wrap: wrap; gap: 10px; margin-top: -34px; }
.service-mode-links a,
.services-reference-links a { min-height: 42px; padding: 10px 14px; color: var(--ad-ink); border-color: var(--ad-line); background: transparent; }
.service-mode-links a:hover,
.services-reference-links a:hover { color: #fff; background: var(--ad-ink); }

.services-reference-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-block: 34px; }
.services-reference-links p { margin: 0 auto 0 0; font-family: var(--ad-display); font-size: 22px; }
.services-page > .closing-band { width: calc(100vw - 0px); margin: clamp(52px, 8vw, 94px) calc(50% - 50vw) calc(-1 * clamp(64px, 8vw, 110px)); }

/* Existing live pages */
.expand-card,
.sustain-card,
.hubspot-form-shell,
.newsletter-form-shell,
.decision-review-form-card,
.tool-card,
.insight-card {
  border: 1px solid var(--ad-line);
  border-radius: 0;
  background: rgba(255,253,248,.78);
  box-shadow: none;
}

.expand-card[open] { background: var(--ad-paper); }
.expand-summary { min-height: 110px; padding: 24px; }
.expand-body { padding: 24px; border-top: 1px solid var(--ad-line); }
.expand-body ul,
.phases { border-color: var(--ad-line); }
.expand-body li::before { color: var(--ad-bronze); }
.expand-mark { color: var(--ad-bronze); }

.engagements-positioning { max-width: 850px; color: var(--ad-muted); }
.engagements-positioning strong { color: var(--ad-ink); }
.engagements.engagements-four { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, 1fr); gap: 16px; align-items: stretch; }
.engagements-four .engagement-card { display: grid; grid-template-rows: auto 1fr; height: 100%; min-height: 520px; }
.engagements-four .expand-body { display: flex; flex-direction: column; }
.engagements-four .expand-body > .phases:last-child { margin-top: auto; }
.engagement-title .kicker { color: var(--ad-bronze-dark); }
.engagement-card .engagement-title h4 { font-family: var(--ad-display); font-size: clamp(27px, 2.5vw, 38px); font-weight: 450; }
.ph.on .bar { background: var(--ad-bronze); }
.deliverables .deliverables-list li::marker { color: var(--ad-bronze); }
.engagement-inline-cta { color: var(--ad-bronze-dark); font-weight: 600; }

.about-approach-section,
.about-principles-section { margin-top: clamp(70px, 9vw, 120px); padding-top: clamp(54px, 7vw, 90px) !important; border-top: 1px solid var(--ad-line) !important; }
.approach { gap: 16px; }
.step { padding: 22px; border: 1px solid var(--ad-line); background: rgba(255,253,248,.62); }
.step h5 { margin: 0 0 12px; font-size: 29px; }
.method-bridge { border-color: var(--ad-line); }
.principle .n { color: var(--ad-bronze); }

.decision-review-section .wrap { max-width: 1030px; }
.decision-review-section h1 { max-width: 920px; }
.decision-review-intro { max-width: 820px; color: var(--ad-muted); }
.decision-review-details { max-width: 820px; }
.decision-review-form-card { max-width: 940px; }

.contact-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); border-color: var(--ad-line); }
.contact-action .val { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-action .action-button { min-width: 0; }
.action-button,
.footer-contact-button,
.hubspot-form-shell .hs-button,
.newsletter-form-shell .hs-button,
.booking-fallback .action-button {
  min-height: 46px;
  border: 1px solid var(--ad-ink) !important;
  border-radius: 0 !important;
  color: #fff !important;
  background: var(--ad-ink) !important;
  font-family: var(--ad-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .03em !important;
}
.action-button:hover,
.hubspot-form-shell .hs-button:hover,
.newsletter-form-shell .hs-button:hover { border-color: var(--ad-bronze) !important; background: var(--ad-bronze) !important; }
.contact-linkedin { color: var(--ad-ink) !important; border-color: var(--ad-line) !important; background: transparent !important; }
.contact-form-section { border-color: var(--ad-line); }

/* Quebec */
.quebec-layout { display: grid; grid-template-columns: minmax(150px,.24fr) minmax(0,1fr); gap: clamp(42px,7vw,100px); }
.quebec-rail { position: sticky; top: calc(var(--header-h) + 28px); align-self: start; padding: 22px 0; border-top: 2px solid var(--ad-bronze); border-bottom: 1px solid var(--ad-line); }
.quebec-rail > span { display: block; }
.quebec-rail strong { display: block; margin-top: 18px; color: var(--ad-ink); font-family: var(--ad-display); font-size: clamp(38px,4vw,56px); font-weight: 400; line-height: .95; }
.quebec-rail p { margin: 18px 0 0; color: var(--ad-muted); font-size: 10px; letter-spacing: .08em; }
.quebec-content { max-width: 900px; }
.quebec-intro { margin: 0; color: var(--ad-muted); font-size: clamp(17px,1.35vw,21px); line-height: 1.72; }
.quebec-content h2 { margin: 0; font-size: clamp(30px,3.2vw,44px); line-height: 1.08; text-wrap: balance; }
.quebec-questions,
.quebec-requirements,
.quebec-municipal,
.quebec-offer { margin-top: clamp(50px,7vw,82px); padding-top: clamp(34px,5vw,54px); border-top: 1px solid var(--ad-line); }
.quebec-questions ol { margin: 30px 0 0; padding: 0; list-style: none; }
.quebec-questions li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--ad-line); }
.quebec-questions li > span { color: var(--ad-bronze); font-family: var(--ad-display); font-size: 24px; }
.quebec-questions li p { margin: 0; color: var(--ad-ink); font-family: var(--ad-display); font-size: clamp(21px,2.1vw,29px); line-height: 1.35; }
.quebec-requirements ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 34px; margin: 28px 0 0; padding: 0; list-style: none; }
.quebec-requirements li { position: relative; padding: 14px 0 14px 20px; border-bottom: 1px solid var(--ad-line); font-size: 14px; }
.quebec-requirements li::before { content: ""; position: absolute; top: 1.45em; left: 0; width: 6px; height: 6px; background: var(--ad-bronze); transform: rotate(45deg); }
.quebec-municipal { padding: 32px; border: 1px solid var(--ad-line); border-left: 4px solid var(--ad-sage); background: rgba(255,253,248,.65); }
.quebec-municipal > span,
.quebec-offer > span { display: block; margin-bottom: 12px; }
.quebec-municipal h2 { font-size: clamp(26px,2.7vw,38px); }
.quebec-municipal p { margin: 16px 0 0; color: var(--ad-muted); }
.quebec-offer { padding: clamp(32px,5vw,52px); color: #fff; border: 0; background: var(--ad-ink); }
.quebec-offer > span { color: #d7a283; }
.quebec-offer p { margin: 0; color: rgba(255,255,255,.82); font-family: var(--ad-display); font-size: clamp(24px,2.7vw,37px); line-height: 1.38; }
.quebec-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.quebec-actions a { min-height: 44px; color: #fff; border-color: rgba(255,255,255,.42); background: transparent; }
.quebec-actions a:first-child { color: var(--ad-ink); border-color: #d7a283; background: #d7a283; }

/* Insights */
.insights-page .section-head { margin-bottom: 28px; }
.insights-intro { max-width: 800px; margin: 0 0 clamp(42px,6vw,70px) calc(22% + clamp(28px,5vw,78px)); color: var(--ad-muted); font-family: var(--ad-body) !important; font-size: clamp(18px,1.5vw,22px); }
.insights-publications { padding-top: 14px; border-top: 1px solid var(--ad-line); }
.insight-list { gap: 14px; }
.insight-card { transition: transform .18s ease, border-color .18s ease; }
.insight-card:hover { border-color: var(--ad-bronze); transform: translateY(-2px); }
.insights-tools { margin-top: clamp(60px,8vw,96px); padding-top: clamp(44px,6vw,70px); border-color: var(--ad-line); }
.insights-subscribe { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: clamp(48px,6vw,76px); padding: 30px; border: 1px solid var(--ad-line); border-left: 4px solid var(--ad-bronze); background: var(--ad-paper); }
.insights-subscribe p { margin: 0; }

/* Readiness: visual treatment only; content, scoring and buttons remain live. */
.readiness-shell { max-width: 900px; margin-left: calc(22% + clamp(28px,5vw,78px)); }
.readiness-shell > p { max-width: 760px; color: var(--ad-muted) !important; font-size: 16px !important; }
.readiness-assessment { margin-top: 38px; }
.readiness-section-head { margin: 48px 0 0 !important; padding: 14px 18px !important; color: var(--ad-bronze-dark) !important; border: 1px solid var(--ad-line); background: var(--ad-cream-deep) !important; }
.readiness-question { align-items: center !important; gap: 24px !important; padding: 20px 18px !important; border: 1px solid var(--ad-line) !important; border-top: 0 !important; background: rgba(255,253,248,.68); }
.readiness-question-title { color: var(--ad-ink) !important; font-family: var(--ad-display) !important; font-size: 20px !important; font-weight: 500 !important; line-height: 1.3 !important; }
.readiness-question-description { color: var(--ad-muted) !important; font-size: 13px !important; }
.readiness-scale { flex: 0 0 auto; gap: 8px !important; }
.readiness-score { width: 38px !important; height: 38px !important; border-color: var(--ad-line) !important; border-radius: 0 !important; color: var(--ad-ink) !important; background: var(--ad-paper) !important; font-family: var(--ad-body) !important; }
.readiness-score[aria-pressed="true"] { color: #fff !important; border-color: var(--ad-bronze) !important; background: var(--ad-bronze) !important; }
#rdy-bar { position: sticky; bottom: 16px; z-index: 10; display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 28px; padding: 18px 20px; color: #fff; border-left: 4px solid var(--ad-bronze); background: var(--ad-ink-deep); box-shadow: var(--ad-shadow); }
#rdy-verdict { flex: 1; min-width: 220px; font-size: 14px; }
.readiness-result-download,
.readiness-secondary-action,
.readiness-skip-download { border-radius: 0; }
.readiness-download-dialog { border: 1px solid var(--ad-line); background: var(--ad-paper); }

/* Newsletter remains floating and user-triggered. */
.newsletter-trigger {
  right: 18px;
  bottom: 18px;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid #d7a283;
  border-radius: 0;
  color: var(--ad-ink-deep);
  background: #d7a283;
  font-family: var(--ad-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .11em;
  box-shadow: 0 12px 34px rgba(10,33,51,.2);
}
.newsletter-trigger:hover,
.newsletter-trigger:focus-visible { color: #fff; border-color: var(--ad-ink); background: var(--ad-ink); }
.newsletter-backdrop { background: rgba(10,33,51,.68); backdrop-filter: blur(5px); }
.newsletter-dialog { border: 0; border-top: 4px solid var(--ad-bronze); background: var(--ad-cream); box-shadow: 0 34px 100px rgba(0,0,0,.34); }
.newsletter-close { border-color: var(--ad-line); background: transparent; }
.newsletter-eyebrow { color: var(--ad-bronze-dark); }

/* Footer */
.site-footer {
  height: auto;
  min-height: 0;
  color: rgba(255,255,255,.76);
  background: var(--ad-ink-deep);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(230px,1.1fr) minmax(150px,.65fr) minmax(130px,.5fr) minmax(170px,.6fr);
  align-items: start;
  gap: clamp(28px,4.5vw,72px);
  min-height: 0;
  padding-block: clamp(44px,6vw,70px);
}

.site-footer .footer-brand {
  display: block;
  color: rgba(255,255,255,.68);
  font-family: var(--ad-body);
  text-transform: none;
}

.site-footer .footer-brand::before { display: none; content: none; }
.footer-wordmark { display: inline-block; color: #fff; font-family: var(--ad-display); font-size: 31px; font-weight: 500; line-height: 1; text-decoration: none; }
.site-footer .footer-brand p { margin: 16px 0 10px; color: rgba(255,255,255,.76); font-size: 13px; }
.site-footer .footer-brand > span { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .08em; }
.footer-navigation,
.footer-links,
.site-footer .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-navigation > span,
.footer-links > span,
.site-footer .footer-contact > span { margin-bottom: 5px; color: #d7a283; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-navigation a,
.footer-links a,
.site-footer .footer-contact a { color: rgba(255,255,255,.76); font-size: 12px; text-decoration: none; }
.footer-navigation a:hover,
.footer-links a:hover,
.site-footer .footer-contact a:hover { color: #fff; }

@media (max-width: 1180px) {
  :root { --header-h: 74px; }
  .links a { padding-inline: 6px; font-size: 9px; }
  .links .nav-book { padding-inline: 10px; }
  .brand-wordmark { display: none; }
  .brand-lockup { min-width: 38px; }
  .alternative-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 920px) {
  :root { --header-h: 68px; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
  .nav-actions { gap: 10px; }
  .links {
    position: fixed;
    top: var(--header-h);
    left: 12px;
    right: 12px;
    display: none;
    max-height: calc(100vh - var(--header-h) - 20px);
    overflow-y: auto;
    padding: 10px;
    border: 1px solid var(--ad-line);
    background: var(--ad-paper);
    box-shadow: var(--ad-shadow);
  }
  .nav-actions.open .links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .links a { justify-content: flex-start; min-height: 48px; padding: 13px 14px; border-bottom: 1px solid var(--ad-line); font-size: 10px; }
  .links a.active,
  .links a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--ad-bronze); }
  .links .nav-book,
  .links .nav-book[aria-current="page"] { justify-content: center; margin: 10px 0 0; color: #fff; border: 0; background: var(--ad-bronze); }
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .services-intro,
  .insights-intro,
  .readiness-shell { margin-left: 0; }
  .advisory-service-mode { grid-template-columns: 1fr; }
  .advisory-service-mode > header { position: static; }
  .service-mode-links { grid-column: auto; margin-top: -24px; }
  .editorial-split { grid-template-columns: 1fr; gap: 22px; }
  .home-criteria li div { grid-template-columns: 1fr; gap: 10px; }
  .proof-stats { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .quebec-layout { grid-template-columns: 1fr; }
  .quebec-rail { position: static; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 12px 24px; }
  .quebec-rail strong { grid-row: span 2; margin: 0; }
  .engagements.engagements-four { grid-template-columns: 1fr; grid-template-rows: none; }
  .engagements-four .engagement-card { min-height: 0; }
}

@media (max-width: 700px) {
  .page-panel { padding-block: 50px; }
  .page-panel > .screen-section,
  .home-panel > section:not(.home-hero):not(.closing-band),
  .home-panel > aside,
  .home-hero__content { width: calc(100% - 32px); }
  .home-hero { min-height: auto; }
  .home-hero__content { padding-block: 74px 90px; }
  .home-hero__ornament { right: -25%; opacity: .35; }
  .home-hero h1 { font-size: clamp(45px, 14vw, 68px); }
  .home-hero h1 br { display: none; }
  .home-alert { grid-template-columns: 1fr; gap: 18px; padding: 22px; }
  .alternative-grid,
  .mode-grid,
  .service-detail-grid,
  .quebec-requirements ul { grid-template-columns: 1fr; }
  .alternative-grid article,
  .mode-grid a { min-height: 0; }
  .home-criteria li { grid-template-columns: 44px 1fr; }
  .home-insights,
  .closing-band,
  .insights-subscribe { align-items: flex-start; flex-direction: column; }
  .closing-band { padding-inline: 20px; }
  .services-page > .closing-band { margin-bottom: -50px; }
  .contact-actions { grid-template-columns: 1fr; }
  .readiness-question { align-items: stretch !important; flex-direction: column; }
  .readiness-scale { justify-content: flex-end; }
  #rdy-bar { bottom: 8px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding-block: 42px; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .newsletter-trigger { right: 10px; bottom: 10px; }
}

@media (max-width: 460px) {
  .shell { padding-inline: 12px; }
  .brand-lockup .mark { width: 31px; height: 31px; }
  .lang-toggle button { min-width: 34px; }
  .proof-stats { grid-template-columns: 1fr 1fr; }
  .proof-stats div { min-height: 130px; padding: 18px 14px; }
  .quebec-actions a,
  .hero-cta a,
  .service-mode-links a,
  .services-reference-links a { width: 100%; }
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .site-footer .footer-brand { grid-column: auto; }
}

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

/* Brand fidelity
   The Advisory reference supplies structure and layout only. The identity below
   deliberately restores the approved Manseur logo suite, palette, type and
   component language introduced on main. */
:root {
  --ad-ink: var(--ma-navy-950);
  --ad-ink-deep: var(--ma-navy-950);
  --ad-cream: var(--ma-neutral-50);
  --ad-cream-deep: var(--ma-neutral-100);
  --ad-paper: var(--ma-white);
  --ad-bronze: var(--ma-gold-600);
  --ad-bronze-dark: var(--ma-gold-text);
  --ad-sage: var(--ma-navy-800);
  --ad-muted: var(--ma-muted);
  --ad-line: var(--ma-line);
  --ad-line-light: rgba(255, 255, 255, .24);
  --ad-shadow: var(--ma-shadow-md);
  --ad-display: var(--ma-font-display);
  --ad-body: var(--ma-font-body);
  --bg: var(--ma-neutral-50);
  --panel: rgba(255, 255, 255, .94);
  --panel-strong: var(--ma-white);
  --ink: var(--ma-text);
  --ink-2: var(--ma-muted);
  --muted: var(--ma-muted);
  --accent: var(--ma-gold-text);
  --accent-2: var(--ma-navy-800);
  --serif: var(--ma-font-display);
  --sans: var(--ma-font-body);
  --mono: var(--ma-font-display);
  --maxw: 1440px;
  --header-h: 76px;
}

html,
body {
  color: var(--ma-text);
  background: var(--ma-neutral-50);
  font-family: var(--ma-font-body);
}

body,
button,
input,
select,
textarea { font-family: var(--ma-font-body); }

h1,
h2,
h3,
h4,
h5,
h6,
.hero h1,
.section-head h1,
.summary-title h3,
.engagement-title h4,
.contact-section h1,
.contact-form-title,
.article-header h1,
.article-body h2,
.article-body h3,
.newsletter-dialog h2,
.booking-intro h1 {
  color: var(--ma-navy-950);
  font-family: var(--ma-font-display);
  font-weight: 600;
}

em,
.hero h1 em,
.section-head h1 em,
.summary-title h3 em,
.engagement-title h4 em,
.contact-section h1 em,
.article-header h1 em,
.newsletter-dialog h2 em,
.booking-intro h1 em {
  color: var(--ma-gold-700);
  font-style: normal;
}

:focus-visible { outline-color: var(--ma-gold-500); }
::selection { background: var(--ma-navy-800); }
.skip-link { background: var(--ma-navy-950); }

.site-background {
  opacity: .2;
  background: url("../img/background-handshake.jpeg") center / cover no-repeat;
}

.site-background::before,
.site-background::after { display: none; content: none; }

.site-header {
  border-bottom: 1px solid var(--ma-line);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 3px 12px rgba(3, 26, 53, .035);
  backdrop-filter: none;
}

.brand-lockup {
  min-width: 190px;
  min-height: 52px;
  color: var(--ma-navy-950);
}

.brand-lockup::before {
  content: "";
  display: block;
  width: 184px;
  height: 50px;
  background: url("../img/branding/logo-horizontal.svg?v=20260902-brand") left center / contain no-repeat;
}

.brand-lockup .mark,
.brand-wordmark { display: none; }

.links a,
.nav-parent {
  min-height: 44px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: var(--ma-radius-sm);
  color: var(--ma-navy-900);
  font-family: var(--ma-font-display);
  font-weight: 700;
}

.links a:hover,
.links a:focus-visible {
  color: var(--ma-navy-950);
  border-color: var(--ma-line);
  background: var(--ma-neutral-100);
}

.links a.active,
.links a[aria-current="page"] {
  color: var(--ma-white);
  border-color: var(--ma-navy-900);
  background: var(--ma-navy-900);
  box-shadow: none;
}

.links .nav-book,
.links .nav-book[aria-current="page"] {
  color: var(--ma-white);
  border-color: var(--ma-navy-900);
  border-radius: var(--ma-radius-sm);
  background: var(--ma-navy-900);
}

.links .nav-book:hover,
.links .nav-book:focus-visible {
  color: var(--ma-white);
  border-color: var(--ma-navy-950);
  background: var(--ma-navy-950);
}

.lang-toggle {
  border-color: var(--ma-bluegray-300);
  border-radius: var(--ma-radius-sm);
  background: var(--ma-white);
}

.lang-toggle button {
  color: var(--ma-navy-900);
  font-family: var(--ma-font-display);
  font-weight: 700;
}

.lang-toggle button.on { background: var(--ma-navy-900); }

.menu-toggle {
  border-color: var(--ma-bluegray-300);
  border-radius: var(--ma-radius-sm);
  color: var(--ma-navy-900);
  background: var(--ma-white);
}

.section-head { border-color: var(--ma-line) !important; }

.section-head .num { display: block; }

.section-head .num,
.num,
.eyebrow,
.editorial-kicker,
.home-alternatives header > span,
.home-criteria header > span,
.home-modes header > span,
.home-insights > div > span,
.advisory-service-mode > header > span,
.quebec-rail > span,
.quebec-municipal > span,
.quebec-offer > span {
  color: var(--ma-gold-text);
  font-family: var(--ma-font-display);
  font-weight: 700;
}

.section-head h1,
.home-hero h1,
.editorial-split h2,
.home-alternatives h2,
.home-criteria h2,
.home-modes h2,
.home-proof h2,
.home-insights h2,
.closing-band h2 { font-weight: 600; }

.section-head h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.04;
}

.quebec-page .section-head h1 { font-size: clamp(42px, 4.6vw, 66px); }

.home-hero,
.closing-band,
.quebec-offer { background: var(--ma-navy-950); }

.home-hero .eyebrow,
.home-hero h1 em,
.quebec-offer > span { color: var(--ma-gold-300); }

.home-hero__ornament::before,
.home-hero__ornament span { border-color: rgba(239, 189, 90, .5); }
.home-hero__ornament span:nth-child(1) { border-color: rgba(239, 189, 90, .72); }
.home-hero__ornament span:nth-child(2) { background: var(--ma-gold-500); }

.hero-cta .cta-primary {
  color: var(--ma-navy-950) !important;
  border-color: var(--ma-gold-300) !important;
  border-radius: var(--ma-radius-sm);
  background: var(--ma-gold-300) !important;
}

.hero-cta .cta-secondary {
  border-radius: var(--ma-radius-sm);
  color: var(--ma-white) !important;
}

.home-alert,
.alternative-grid article,
.mode-grid a,
.proof-stats div,
.service-detail-grid article,
.step,
.quebec-municipal,
.insights-subscribe {
  border: 1px solid var(--ma-line);
  border-radius: var(--ma-radius-md);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--ma-shadow-sm);
}

.home-alert,
.insights-subscribe { border-left: 4px solid var(--ma-gold-600); }

.alternative-grid,
.mode-grid,
.proof-stats {
  gap: 16px;
  border: 0;
  background: transparent;
}

.mode-grid a:hover {
  color: var(--ma-white);
  border-color: var(--ma-navy-900);
  background: var(--ma-navy-900);
  box-shadow: var(--ma-shadow-md);
}

.text-link,
.home-insights > a,
.service-detail-grid article > a,
.engagement-inline-cta { color: var(--ma-gold-text); }

.service-detail-grid li::before,
.quebec-requirements li::before { background: var(--ma-gold-600); }

.expand-card,
.sustain-card,
.hubspot-form-shell,
.newsletter-form-shell,
.decision-review-form-card,
.tool-card,
.insight-card {
  border: 1px solid var(--ma-line) !important;
  border-radius: var(--ma-radius-md);
  background: var(--ma-white) !important;
  box-shadow: var(--ma-shadow-sm);
}

.expand-card[open],
.insight-card:hover,
.tool-card:hover {
  border-color: var(--ma-bluegray-300) !important;
  box-shadow: var(--ma-shadow-md);
}

.expand-body { border-color: var(--ma-line); }
.expand-body li::before,
.expand-mark,
.principle .n,
.deliverables .deliverables-list li::marker { color: var(--ma-gold-700); }
.ph.on .bar { background: var(--ma-gold-600); }
.engagement-title .kicker { color: var(--ma-gold-text); }
.engagement-card .engagement-title h4 { font-family: var(--ma-font-display); font-weight: 600; }

.engagements.engagements-three { align-items: stretch; }
.engagements-three .engagement-card { height: 100%; }

.action-button,
.footer-contact-button,
.hubspot-form-shell .hs-button,
.newsletter-form-shell .hs-button,
.booking-fallback .action-button {
  border-color: var(--ma-navy-900) !important;
  border-radius: var(--ma-radius-sm) !important;
  color: var(--ma-white) !important;
  background: var(--ma-navy-900) !important;
  font-family: var(--ma-font-display) !important;
  font-weight: 700 !important;
}

.action-button:hover,
.hubspot-form-shell .hs-button:hover,
.newsletter-form-shell .hs-button:hover {
  border-color: var(--ma-navy-950) !important;
  background: var(--ma-navy-950) !important;
}

.contact-linkedin {
  color: var(--ma-navy-900) !important;
  border-color: var(--ma-bluegray-300) !important;
  background: var(--ma-white) !important;
}

.quebec-rail { border-color: var(--ma-gold-600) var(--ma-line) var(--ma-line); }
.quebec-questions li > span { color: var(--ma-gold-600); }
.quebec-municipal { border-left-color: var(--ma-gold-600); }

.quebec-actions a,
.closing-band a,
.service-mode-links a,
.services-reference-links a {
  border-radius: var(--ma-radius-sm);
  font-family: var(--ma-font-display);
  font-weight: 700;
}

.quebec-actions a:first-child,
.closing-band a:first-child {
  color: var(--ma-navy-950);
  border-color: var(--ma-gold-300);
  background: var(--ma-gold-300);
}

.services-reference-links a,
.service-mode-links a {
  color: var(--ma-navy-900);
  border-color: var(--ma-bluegray-300);
  background: var(--ma-white);
}

.services-reference-links a:hover,
.service-mode-links a:hover {
  color: var(--ma-white);
  border-color: var(--ma-navy-900);
  background: var(--ma-navy-900);
}

.readiness-section-head {
  color: var(--ma-gold-text) !important;
  border-color: var(--ma-line);
  border-radius: var(--ma-radius-sm) var(--ma-radius-sm) 0 0;
  background: var(--ma-neutral-100) !important;
}

.readiness-question {
  border-color: var(--ma-line) !important;
  background: rgba(255, 255, 255, .94);
}

.readiness-question-title {
  color: var(--ma-navy-950) !important;
  font-family: var(--ma-font-display) !important;
  font-weight: 600 !important;
}

.readiness-score {
  border-color: var(--ma-bluegray-300) !important;
  border-radius: 50% !important;
  color: var(--ma-navy-900) !important;
  background: var(--ma-white) !important;
  font-family: var(--ma-font-display) !important;
}

.readiness-score[aria-pressed="true"] {
  color: var(--ma-white) !important;
  border-color: var(--ma-navy-900) !important;
  background: var(--ma-navy-900) !important;
}

#rdy-bar {
  border-left-color: var(--ma-gold-600);
  border-radius: var(--ma-radius-sm);
  background: var(--ma-navy-950);
  box-shadow: var(--ma-shadow-md);
}

.readiness-result-download,
.readiness-secondary-action,
.readiness-skip-download { border-radius: var(--ma-radius-sm); }

.readiness-download-dialog {
  border-color: var(--ma-line);
  border-radius: var(--ma-radius-md);
  background: var(--ma-white);
}

.newsletter-trigger {
  color: var(--ma-white);
  border-color: var(--ma-navy-900);
  border-radius: var(--ma-radius-sm);
  background: var(--ma-navy-900);
  font-family: var(--ma-font-display);
  font-weight: 700;
  box-shadow: var(--ma-shadow-md);
}

.newsletter-trigger:hover,
.newsletter-trigger:focus-visible {
  color: var(--ma-navy-950);
  border-color: var(--ma-gold-300);
  background: var(--ma-gold-300);
}

.newsletter-backdrop { background: rgba(3, 26, 53, .68); }
.newsletter-dialog {
  border-top-color: var(--ma-gold-600);
  border-radius: var(--ma-radius-md);
  background: var(--ma-white);
  box-shadow: var(--ma-shadow-md);
}
.newsletter-close { border-color: var(--ma-line); }
.newsletter-eyebrow { color: var(--ma-gold-text); }

.site-footer {
  color: rgba(255, 255, 255, .76);
  background: var(--ma-navy-950);
}

.footer-wordmark {
  display: block;
  width: 184px;
  height: 50px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: url("../img/branding/logo-horizontal-reversed.svg?v=20260902-brand") left center / contain no-repeat;
}

.footer-wordmark em { color: transparent; }
.footer-navigation > span,
.footer-links > span,
.site-footer .footer-contact > span { color: var(--ma-gold-300); }
.footer-navigation a,
.footer-links a,
.site-footer .footer-contact a { color: rgba(255, 255, 255, .78); }

@media (max-width: 1180px) and (min-width: 921px) {
  .brand-lockup { min-width: 44px; }
  .brand-lockup::before {
    width: 42px;
    height: 42px;
    background-image: url("../img/branding/logo-mark.svg?v=20260902-brand");
  }
}

@media (max-width: 920px) {
  :root { --header-h: 64px; }
  .brand-lockup { min-width: 148px; min-height: 46px; }
  .brand-lockup::before {
    width: 144px;
    height: 42px;
    background-image: url("../img/branding/logo-horizontal.svg?v=20260902-brand");
  }
  .links {
    border-color: var(--ma-line);
    border-radius: var(--ma-radius-md);
    background: var(--ma-white);
    box-shadow: var(--ma-shadow-md);
  }
  .links a { border-radius: var(--ma-radius-sm); }
  .links a.active,
  .links a[aria-current="page"] { box-shadow: none; }
}

@media (max-width: 700px) {
  .footer-wordmark { width: 154px; height: 42px; }
  .section-head h1 { font-size: clamp(34px, 9.8vw, 40px); }
  .contact-section h1,
  .decision-review-section h1 { font-size: clamp(36px, 9.6vw, 40px); line-height: 1.08; }
  .booking-intro h1 { font-size: clamp(38px, 10vw, 46px); }
}

@media (max-width: 460px) {
  :root { --header-h: 60px; }
  .brand-lockup { min-width: 132px; }
  .brand-lockup::before { width: 130px; height: 40px; }
}

/* Interaction and layout refinements */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  width: 100%;
}

.site-main { padding-top: var(--header-h); }
html { scroll-padding-top: calc(var(--header-h) + 18px); }

main h2,
main h3,
main h4 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

main h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: pretty;
}

main h1 br { display: none; }
.section-head h1 { max-width: 1120px; }
.article-header h1 { max-width: 1120px; font-size: clamp(38px, 5.2vw, 72px); }

a,
button,
.action-button,
.hero-cta a,
.closing-band a,
.quebec-actions a,
.service-engagement-cta,
.services-reference-links a,
.engagement-inline-cta,
.readiness-result-download,
.readiness-secondary-action,
.readiness-skip-download {
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ma-gold-500);
  outline-offset: 3px;
}

.links a:hover,
.links a:focus-visible,
.nav-parent:hover,
.nav-parent:focus-visible {
  color: var(--ma-navy-950);
  border-color: var(--ma-bluegray-300);
  background: var(--ma-neutral-100);
}

.links a.active:hover,
.links a[aria-current="page"]:hover,
.links a.active:focus-visible,
.links a[aria-current="page"]:focus-visible {
  color: var(--ma-white);
  border-color: var(--ma-navy-950);
  background: var(--ma-navy-950);
}

.links .nav-book:hover,
.links .nav-book:focus-visible {
  color: var(--ma-navy-950);
  border-color: var(--ma-gold-300);
  background: var(--ma-gold-300);
}

.lang-toggle button:not(.on):hover,
.lang-toggle button:not(.on):focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible,
.newsletter-close:hover,
.newsletter-close:focus-visible,
.readiness-dialog-close:hover,
.readiness-dialog-close:focus-visible {
  color: var(--ma-navy-950);
  border-color: var(--ma-gold-500);
  background: rgba(239, 189, 90, .18);
}

.hero-cta .cta-primary:hover,
.hero-cta .cta-primary:focus-visible,
.closing-band a:first-child:hover,
.closing-band a:first-child:focus-visible,
.quebec-actions a:first-child:hover,
.quebec-actions a:first-child:focus-visible {
  color: var(--ma-navy-950) !important;
  border-color: var(--ma-white) !important;
  background: var(--ma-white) !important;
  transform: translateY(-2px);
}

.hero-cta .cta-secondary:hover,
.hero-cta .cta-secondary:focus-visible,
.closing-band .closing-secondary:hover,
.closing-band .closing-secondary:focus-visible,
.quebec-actions a:not(:first-child):hover,
.quebec-actions a:not(:first-child):focus-visible {
  color: var(--ma-navy-950) !important;
  border-color: var(--ma-white) !important;
  background: var(--ma-white) !important;
  transform: translateY(-2px);
}

.action-button:not(.contact-linkedin):hover,
.action-button:not(.contact-linkedin):focus-visible,
.footer-contact-button:hover,
.footer-contact-button:focus-visible,
.hubspot-form-shell .hs-button:hover,
.hubspot-form-shell .hs-button:focus-visible,
.newsletter-form-shell .hs-button:hover,
.newsletter-form-shell .hs-button:focus-visible,
.booking-fallback .action-button:hover,
.booking-fallback .action-button:focus-visible,
.engagement-inline-cta:hover,
.engagement-inline-cta:focus-visible,
.service-engagement-cta:hover,
.service-engagement-cta:focus-visible,
.readiness-result-download:hover,
.readiness-result-download:focus-visible {
  color: var(--ma-navy-950) !important;
  border-color: var(--ma-gold-300) !important;
  background: var(--ma-gold-300) !important;
  box-shadow: var(--ma-shadow-md);
  transform: translateY(-2px);
}

.contact-linkedin:hover,
.contact-linkedin:focus-visible,
.services-reference-links a:hover,
.services-reference-links a:focus-visible,
.service-mode-links a:hover,
.service-mode-links a:focus-visible,
.readiness-secondary-action:hover,
.readiness-secondary-action:focus-visible,
.readiness-skip-download:hover,
.readiness-skip-download:focus-visible {
  color: var(--ma-white) !important;
  border-color: var(--ma-navy-900) !important;
  background: var(--ma-navy-900) !important;
  transform: translateY(-1px);
}

.readiness-score:not([aria-pressed="true"]):hover,
.readiness-score:not([aria-pressed="true"]):focus-visible {
  color: var(--ma-navy-950) !important;
  border-color: var(--ma-gold-500) !important;
  background: rgba(239, 189, 90, .18) !important;
}

.text-link:hover,
.text-link:focus-visible,
.home-alert > a:hover,
.home-alert > a:focus-visible,
.services-secondary:hover,
.services-secondary:focus-visible,
.about-column-link:hover,
.about-column-link:focus-visible,
.article-sources a:hover,
.article-sources a:focus-visible,
.article-engagement-cta a:hover,
.article-engagement-cta a:focus-visible {
  color: var(--ma-navy-950);
  text-decoration-color: var(--ma-gold-500);
}

.footer-navigation a:hover,
.footer-navigation a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.site-footer .footer-contact a:hover,
.site-footer .footer-contact a:focus-visible {
  color: var(--ma-gold-300);
}

/* Homepage: richer modes and three published articles. */
.mode-grid a {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.mode-grid h3 { margin: 34px 0 16px; }
.mode-grid p { font-size: 15px; line-height: 1.68; }

.home-insights {
  display: block;
  padding-block: clamp(72px, 9vw, 118px);
}

.home-insights-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .6fr);
  gap: 36px;
  align-items: end;
}

.home-insights-intro > span { grid-column: 1 / -1; }
.home-insights-intro h2 { margin-top: 14px; }
.home-insights-intro p { max-width: 640px; margin: 0; color: var(--ma-muted); }

.home-insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.home-insight-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 34px);
  overflow: hidden;
  color: var(--ma-navy-950);
  border: 1px solid var(--ma-line);
  border-top: 4px solid var(--ma-navy-900);
  border-radius: var(--ma-radius-md);
  background: var(--ma-white);
  box-shadow: var(--ma-shadow-sm);
  text-decoration: none;
}

.home-insight-card:hover,
.home-insight-card:focus-visible {
  border-color: var(--ma-gold-500);
  box-shadow: var(--ma-shadow-md);
  transform: translateY(-4px);
}

.home-insight-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 14px;
  color: var(--ma-muted);
  font-family: var(--ma-font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-insight-meta > span { color: var(--ma-gold-text); }
.home-insight-card h3 { margin: 42px 0 16px; font-size: clamp(25px, 2.3vw, 34px); line-height: 1.12; }
.home-insight-card h3 em { color: var(--ma-gold-text); font-style: normal; }
.home-insight-card p { margin: 0; color: var(--ma-muted); font-size: 14px; line-height: 1.62; }
.home-insight-arrow { margin-top: auto; padding-top: 24px; color: var(--ma-gold-text); font-size: 26px; }
.home-insights > .text-link { margin-top: 28px; }

/* Services: one complete tile per mode. */
.service-row-stack {
  display: grid;
  gap: 18px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 86px);
  padding: clamp(30px, 4.5vw, 56px);
  border: 1px solid var(--ma-line);
  border-radius: var(--ma-radius-md);
  background: var(--ma-white);
  box-shadow: var(--ma-shadow-sm);
}

.service-row > header > span {
  display: block;
  margin-bottom: 18px;
  color: var(--ma-gold-text);
  font-family: var(--ma-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-row > header h2 { margin: 0; font-size: clamp(34px, 4vw, 54px); line-height: 1.06; }
.service-row > header p { margin: 22px 0 0; color: var(--ma-muted); font-size: 16px; line-height: 1.68; }
.service-row-details { display: flex; min-width: 0; flex-direction: column; }
.service-row-details h3 { margin: 0 0 14px; color: var(--ma-navy-900); font-size: 18px; }
.service-row-details ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ma-line); }
.service-row-details li { position: relative; padding: 12px 0 12px 20px; border-bottom: 1px solid var(--ma-line); font-size: 14px; line-height: 1.5; }
.service-row-details li::before { content: ""; position: absolute; top: 1.35em; left: 2px; width: 7px; height: 7px; background: var(--ma-gold-600); transform: rotate(45deg); }
.service-leave { display: grid; gap: 8px; margin: 24px 0; padding: 20px 22px; border-left: 4px solid var(--ma-gold-600); border-radius: 0 var(--ma-radius-sm) var(--ma-radius-sm) 0; background: var(--ma-neutral-100); }
.service-leave strong { color: var(--ma-gold-text); font-family: var(--ma-font-display); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.service-leave span { color: var(--ma-navy-950); font-family: var(--ma-font-display); font-size: 19px; line-height: 1.45; }
.service-engagement-cta { align-self: flex-start; display: inline-flex; align-items: center; gap: 12px; min-height: 46px; margin-top: auto; padding: 11px 16px; color: var(--ma-white); border: 1px solid var(--ma-navy-900); border-radius: var(--ma-radius-sm); background: var(--ma-navy-900); font-family: var(--ma-font-display); font-size: 12px; font-weight: 700; text-decoration: none; }

/* Insights: branded editorial rows inspired by the supplied reference. */
.insights-publications { padding-top: 0; border-top: 1px solid var(--ma-line); }
.insights-publications .insight-list { display: block; max-width: none; }
.insights-publications .insight-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 42px;
  grid-template-rows: auto;
  column-gap: clamp(28px, 4.5vw, 64px);
  row-gap: 0;
  align-items: center;
  min-height: 0;
  padding: clamp(42px, 5vw, 70px) 4px;
  color: var(--ma-navy-950);
  border: 0 !important;
  border-bottom: 1px solid var(--ma-line) !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  text-decoration: none;
}

.insights-publications .insight-card:hover,
.insights-publications .insight-card:focus-visible {
  border-color: var(--ma-gold-500) !important;
  background: rgba(239, 189, 90, .09) !important;
  box-shadow: inset 4px 0 0 var(--ma-gold-600);
  transform: none;
}

.insight-index { color: var(--ma-gold-700); font-family: var(--ma-font-display); font-size: clamp(54px, 6vw, 82px); font-weight: 600; line-height: 1; letter-spacing: -.04em; }
.insights-publications .insight-card-content { display: block; }
.insights-publications .insight-card-meta { display: flex; flex-wrap: wrap; gap: 5px 9px; margin-bottom: 20px; color: var(--ma-muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.insights-publications .insight-card h2 { margin: 0 0 16px; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.08; }
.insights-publications .insight-card h2 em { color: inherit; font-style: normal; }
.insights-publications .insight-card p { max-width: 950px; margin: 0; color: var(--ma-muted); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.58; }
.insight-row-arrow { justify-self: end; color: var(--ma-gold-700); font-size: 34px; transition: transform .18s ease; }
.insight-row:hover .insight-row-arrow,
.insight-row:focus-visible .insight-row-arrow { transform: translateX(5px); }

/* Engagement card alignment. */
.engagements-three .engagement-card { display: grid; grid-template-rows: auto 1fr; }
.engagements-three .expand-body { display: flex; min-height: 100%; flex-direction: column; }
.engagements-three .deliverables { display: flex; flex: 0 0 300px; min-height: 300px; flex-direction: column; justify-content: center; margin: auto 0 0; }
.engagements-three .expand-body > .phases:last-child { margin-top: 0; }

@media (max-width: 920px) {
  .service-row { grid-template-columns: 1fr; }
  .home-insights-intro { grid-template-columns: 1fr; gap: 18px; }
  .home-insights-intro > span { grid-column: auto; }
  .home-insight-list { grid-template-columns: 1fr; }
  .home-insight-card { min-height: 0; }
  .engagements-three .deliverables { flex-basis: auto; min-height: 0; margin-top: 18px; }
  .engagements-three .expand-body > .phases:last-child { margin-top: 18px; }
}

@media (max-width: 700px) {
  .contact-section h1 { font-size: clamp(29px, 8.1vw, 34px); }
  .mode-grid a { min-height: 0; }
  .home-insight-card h3 { margin-top: 28px; }
  .insights-publications .insight-card { grid-template-columns: 62px minmax(0, 1fr) 28px; gap: 16px; padding: 34px 2px; }
  .insight-index { font-size: 44px; }
  .insights-publications .insight-card-meta { margin-bottom: 14px; font-size: 9px; }
  .insights-publications .insight-card h2 { font-size: clamp(26px, 7.6vw, 34px); }
  .insight-row-arrow { font-size: 26px; }
  .service-row { padding: 26px 22px; }
  .service-row > header h2 { font-size: clamp(31px, 9vw, 40px); }
}

@media (max-width: 460px) {
  .insights-publications .insight-card { grid-template-columns: 48px minmax(0, 1fr); }
  .insight-index { font-size: 36px; }
  .insight-row-arrow { display: none; }
  .service-engagement-cta { width: 100%; justify-content: center; }
}

/* Final page-level refinements */
body { display: block; }

.home-panel h2 { font-size: clamp(34px, 3.8vw, 50px); }

.site-footer {
  height: auto;
  min-height: 0;
}

.site-footer .footer-grid {
  gap: clamp(24px, 3.8vw, 58px);
  padding-block: clamp(34px, 4.5vw, 50px);
}

.footer-navigation,
.footer-links,
.site-footer .footer-contact { gap: 8px; }
.site-footer .footer-brand p { margin: 12px 0 8px; }

.page-panel:not(.home-panel) > .screen-section:first-child > .section-head {
  display: block;
  grid-template-columns: 1fr;
  width: 100%;
  margin-inline: 0;
  margin-bottom: 30px;
}

.page-panel:not(.home-panel) > .screen-section:first-child > .section-head h1 {
  width: 100%;
  max-width: none;
}

.services-intro,
.insights-intro,
.readiness-shell { margin-left: 0; }

.booking-intro {
  width: 100%;
  margin-inline: 0;
}

.links a:not(.nav-book):hover,
.links a:not(.nav-book):focus-visible {
  color: var(--ma-navy-950);
  border-color: transparent;
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--ma-gold-600);
}

.links a.active:not(.nav-book),
.links a[aria-current="page"]:not(.nav-book),
.links a.active:not(.nav-book):hover,
.links a[aria-current="page"]:not(.nav-book):hover,
.links a.active:not(.nav-book):focus-visible,
.links a[aria-current="page"]:not(.nav-book):focus-visible {
  color: var(--ma-navy-950);
  border-color: transparent;
  background: transparent;
  box-shadow: inset 0 -3px 0 var(--ma-gold-600);
}

.service-regimes {
  display: grid;
  gap: 28px;
  margin-top: clamp(34px, 5vw, 64px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--ma-line);
  border-left: 4px solid var(--ma-gold-600);
  border-radius: var(--ma-radius-md);
  background: var(--ma-neutral-100);
}

.service-regimes h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); }
.service-regimes p { max-width: 840px; margin: 12px 0 0; color: var(--ma-muted); font-size: 17px; line-height: 1.6; }
.service-regimes ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 24px; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ma-line); }
.service-regimes li { position: relative; min-height: 62px; padding: 17px 8px 14px 20px; border-bottom: 1px solid var(--ma-line); font-size: 13px; line-height: 1.45; }
.service-regimes li::before { content: ""; position: absolute; top: 1.62em; left: 2px; width: 7px; height: 7px; background: var(--ma-gold-600); transform: rotate(45deg); }

.engagement-inline-cta {
  color: var(--ma-white) !important;
  border-color: var(--ma-navy-900) !important;
  background: var(--ma-navy-900) !important;
}

.engagements-three .expand-summary { height: 247px; min-height: 247px; align-items: stretch; }
.engagements-three .engagement-title { display: flex; width: 100%; flex-direction: column; }
.engagements-three .engagement-title h4 { height: 3.4em; min-height: 3.4em; }
.engagements-three .engagement-title .duration { margin-top: auto; }

.decision-review-form-card {
  max-width: 940px;
  margin-top: clamp(46px, 6vw, 72px);
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
}

.decision-review-form-title { margin-bottom: 20px; color: var(--ma-navy-950); font-size: clamp(34px, 3.8vw, 50px); }

.quebec-offer p { font-size: clamp(18px, 1.7vw, 24px); line-height: 1.55; }

.insights-page > .section-head h1 {
  max-width: none;
  font-size: clamp(42px, 4.4vw, 62px);
  white-space: nowrap;
}

.insights-page .insights-intro {
  width: 100%;
  max-width: none;
  font-size: clamp(17px, 1.35vw, 20px);
}

.about-approach-section .section-head { display: block; grid-template-columns: 1fr; }
.about-approach-section .section-head h2 { max-width: none; font-size: clamp(38px, 4.2vw, 56px); white-space: nowrap; }

.booking-copy h2 { margin: 0; font-size: clamp(26px, 2.8vw, 38px); line-height: 1.12; }
.booking-expectations { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.booking-expectations li { position: relative; padding-left: 20px; color: var(--ma-navy-950); font-size: 16px; line-height: 1.55; }
.booking-expectations li::before { content: ""; position: absolute; top: .64em; left: 2px; width: 7px; height: 7px; background: var(--ma-gold-600); transform: rotate(45deg); }
.booking-copy .booking-privacy { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--ma-line); }

@media (max-width: 1040px) {
  .service-regimes ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insights-page > .section-head h1 { white-space: normal; }
  .about-approach-section .section-head h2 { white-space: normal; }
}

@media (max-width: 920px) {
  .engagements-three .expand-summary { height: auto; min-height: 0; }
  .engagements-three .engagement-title h4 { height: auto; min-height: 0; }
  .engagements-three .engagement-title .duration { margin-top: 8px; }
}

@media (max-width: 700px) {
  .home-panel h2 { font-size: clamp(32px, 9.4vw, 40px); }
  .site-footer .footer-grid { padding-block: 34px; }
  .service-regimes { padding: 24px 20px; }
  .service-regimes ul { grid-template-columns: 1fr; }
  .service-regimes li { min-height: 0; }
  .insights-page > .section-head h1 { font-size: clamp(31px, 8.8vw, 38px); }
}

@media (max-width: 460px) {
  .site-footer .footer-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 24px 16px;
  }
  .site-footer .footer-brand { grid-column: 1 / -1; }
  .footer-navigation { grid-row: 2 / span 2; }
  .footer-links { grid-column: 2; grid-row: 2; }
  .site-footer .footer-contact { grid-column: 2; grid-row: 3; }
}

/* Editorial and contact refinements — September review */
.home-problem h2 {
  max-width: none;
  font-size: clamp(34px, 3.25vw, 46px);
  line-height: 1.08;
}

.home-problem h2 > span {
  display: block;
  white-space: nowrap;
}

.section-punchline {
  max-width: 920px;
  padding-left: 22px;
  border-left: 4px solid var(--ma-gold-600);
}

.home-criteria header h2 {
  max-width: none;
  font-size: clamp(32px, 3.25vw, 46px);
  line-height: 1.08;
  white-space: nowrap;
}

.home-criteria header { margin-bottom: 32px; }

.home-criteria li {
  grid-template-columns: clamp(82px, 9vw, 130px) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: start;
  padding: clamp(22px, 2.5vw, 32px) 0;
}

.home-criteria li > span {
  font-size: clamp(48px, 4.6vw, 66px);
  font-weight: 600;
  line-height: .92;
  letter-spacing: -.04em;
}

.home-criteria li div { display: block; }
.home-criteria h3 { margin: 0 0 8px; font-size: clamp(25px, 2.25vw, 34px); line-height: 1.12; }
.home-criteria li p { max-width: 1040px; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.45; }

.mode-grid a > span {
  font-family: var(--ma-font-display);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.035em;
}

.mode-grid h3 { margin-top: 24px; }

.engagements-three .expand-body { padding-top: 24px; }
.engagements-three .engagement-description-slot {
  display: flex;
  flex: 0 0 250px;
  min-height: 250px;
  flex-direction: column;
}
.engagements-three .engagement-description-slot > :first-child { margin-top: 0; }
.engagements-three .deliverables {
  flex: 0 0 250px;
  min-height: 250px;
  justify-content: flex-start;
  margin: 0 0 28px;
  padding-top: 22px;
  border-top: 1px solid var(--ma-line);
}
.engagements-three .expand-body > .phases:last-child { margin-top: auto; }

.footer-positioning {
  margin: 14px 0 2px !important;
  color: var(--ma-white) !important;
  font-family: var(--ma-font-display);
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1.35;
}
.footer-positioning + p { margin: 0 0 8px !important; }

.footer-navigation > span,
.footer-links > span,
.site-footer .footer-contact > span { font-size: 10px; }

.footer-navigation a,
.footer-links a,
.site-footer .footer-contact a {
  font-size: 13.5px;
  line-height: 1.45;
}

.decision-review-section .wrap {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}
.decision-review-section h1 {
  max-width: none;
  margin: 0 0 clamp(28px, 3.5vw, 42px);
  padding-bottom: clamp(22px, 2.8vw, 34px);
  border-bottom: 1px solid var(--ma-line);
  font-size: clamp(42px, 4.45vw, 64px);
  white-space: nowrap;
}
.decision-review-intro,
.decision-review-details { max-width: 940px; }

.quebec-page .section-head h1 {
  max-width: none;
  font-size: clamp(40px, 4.3vw, 62px);
  line-height: 1.06;
}
.quebec-title-main,
.quebec-title-question {
  display: block;
  white-space: nowrap;
}
.quebec-title-question { margin-top: 4px; }

.insights-publications .insight-card {
  padding-block: clamp(18px, 2vw, 26px);
}
.insights-publications .insight-card-meta { margin-bottom: 10px; }
.insights-publications .insight-card h2 { margin-bottom: 10px; font-size: clamp(28px, 3.1vw, 44px); }
.insight-index { font-size: clamp(48px, 5.2vw, 72px); }

.insights-tools {
  width: 100%;
  max-width: none;
  margin-top: clamp(46px, 5vw, 66px);
  padding: clamp(34px, 4vw, 50px) 0 0 !important;
  border: 0 !important;
  border-top: 1px solid var(--ma-line) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.insights-tools-heading {
  display: block;
  margin-bottom: 24px;
}
.insights-tools-heading .num { display: none; }
.insights-tools-heading h2 { width: 100%; font-size: clamp(34px, 3.8vw, 50px); }
.tool-list,
.tool-card { width: 100%; max-width: none; }

.insights-subscribe {
  width: 100%;
  max-width: none;
  min-height: 116px;
  margin-top: 16px;
  padding: 20px 26px;
}

.contact-page-wrap { max-width: none; }
.contact-page-wrap > h1 { margin-bottom: clamp(38px, 5vw, 64px); }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}
.contact-sidebar { min-width: 0; }
.contact-action-stack { display: grid; gap: 12px; }
.contact-download-group { display: grid; gap: 9px; margin-top: 10px; }
.contact-download-label {
  color: var(--ma-gold-text);
  font-family: var(--ma-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-sidebar .contact-option-button {
  display: flex;
  width: 100%;
  height: 58px;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 18px;
  color: var(--ma-navy-950) !important;
  border: 1px solid var(--ma-bluegray-300) !important;
  border-radius: var(--ma-radius-sm);
  background: var(--ma-white) !important;
  box-shadow: var(--ma-shadow-sm);
  font-family: var(--ma-font-display);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  text-decoration: none;
}
.contact-sidebar .contact-option-button:hover,
.contact-sidebar .contact-option-button:focus-visible {
  color: var(--ma-white) !important;
  border-color: var(--ma-navy-900) !important;
  background: var(--ma-navy-900) !important;
  box-shadow: var(--ma-shadow-md);
  transform: translateY(-1px);
}
.contact-sidebar .contact-option-button svg { width: 20px; height: 20px; flex: 0 0 20px; }
.contact-expectations {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--ma-line);
}
.contact-expectations h2 { margin: 0; font-size: clamp(28px, 2.8vw, 38px); line-height: 1.12; }
.contact-expectations ul { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.contact-expectations li { position: relative; padding-left: 20px; color: var(--ma-muted); font-size: 16px; line-height: 1.5; }
.contact-expectations li::before { content: ""; position: absolute; top: .64em; left: 2px; width: 7px; height: 7px; background: var(--ma-gold-600); transform: rotate(45deg); }
.contact-layout .contact-form-section {
  margin: 0;
  padding: 0;
  border: 0 !important;
}
.contact-layout .contact-form-title { margin: 0 0 18px; }

@media (max-width: 1040px) {
  .home-problem h2 > span,
  .home-criteria header h2,
  .decision-review-section h1,
  .quebec-title-main,
  .quebec-title-question { white-space: normal; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .home-criteria header { margin-bottom: 24px; }
  .home-criteria li { grid-template-columns: 48px minmax(0, 1fr); gap: 16px; padding: 20px 0; }
  .home-criteria li > span { font-size: 34px; }
  .home-criteria h3 { font-size: 23px; }
  .home-criteria li p { font-size: 14.5px; }
  .engagements-three .engagement-description-slot { flex-basis: auto; min-height: 0; }
  .engagements-three .deliverables { flex-basis: auto; min-height: 0; margin-top: 22px; margin-bottom: 22px; }
  .insights-subscribe { min-height: 0; padding: 22px; }
  .contact-page-wrap > h1 { margin-bottom: 34px; }
  .contact-sidebar .contact-option-button { height: 58px; }
}
