@font-face {
  font-family: "Roboto";
  src: url("fonts/Roboto-Medium.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Raleway";
  src: url("fonts/Raleway-Variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  --navy: #091334;
  --white: #ffffff;
  --ice: #cae0ea;
  --steel: #8da7ba;
  --accent: #487494;
  --paper: #f8f9f7;
  --mist: #eef2f2;
  --ink-soft: #091334;
  --ink-faint: #091334;
  --line: rgba(9, 19, 52, 0.14);
  --line-dark: rgba(255, 255, 255, 0.2);
  --max: 1280px;
  --page-x: clamp(24px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: Raleway, "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  font-weight: 300;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main { counter-reset: editorial-section; }
body::selection { color: var(--white); background: var(--accent); }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1, h2, h3 {
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  text-align: left !important;
  direction: ltr;
}
h1 { font-size: clamp(58px, 5.2vw, 94px); line-height: 0.95; }
h2 { font-size: clamp(42px, 4.5vw, 68px); }
h3 { font-size: clamp(20px, 1.7vw, 27px); line-height: 1.16; }
p { color: var(--ink-soft); font-size: clamp(16px, 1.15vw, 18px); }

.scroll-progress { position: fixed; inset: 0 0 auto; z-index: 100; height: 2px; pointer-events: none; }
.scroll-progress span { display: block; width: 100%; height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; }
.skip-link { position: fixed; top: 14px; left: 18px; z-index: 120; padding: 10px 14px; color: var(--white); background: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 13px var(--page-x);
  background: rgba(248, 249, 247, 0.9);
  border-bottom: 1px solid rgba(9, 19, 52, 0.1);
  backdrop-filter: blur(18px);
  transition: min-height 240ms ease, background 240ms ease;
}
.site-header.is-scrolled { min-height: 62px; background: rgba(248, 249, 247, 0.97); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: 48px; height: 48px; }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 36px); font-family: Roboto, Arial, sans-serif; font-size: 10px; font-weight: 500; text-transform: uppercase; }
.main-nav a { position: relative; padding: 9px 0; color: var(--ink-soft); text-decoration: none; }
.main-nav a::after { position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform 220ms ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.main-nav .nav-contact { padding: 11px 17px; color: var(--white); background: var(--navy); }
.main-nav .nav-contact::after { display: none; }
.main-nav .nav-contact:hover, .main-nav .nav-contact:focus-visible { background: var(--accent); }
.language-switcher { display: inline-flex; align-items: center; gap: 6px; margin-left: 2px; color: var(--navy); }
.language-switcher a { padding: 7px 0; }
.language-switcher a::after { display: none; }
.language-switcher a:not([aria-current="page"]) { opacity: .48; }
.language-switcher a:hover, .language-switcher a:focus-visible { opacity: 1; }
.language-switcher span { opacity: .28; }

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 880px;
  padding: 128px var(--page-x) 104px;
  overflow: hidden;
  background: var(--paper);
}
.hero-copy { position: relative; z-index: 2; width: min(55%, 760px); min-width: 0; }
.eyebrow { margin: 0; color: var(--navy); font-family: Roboto, Arial, sans-serif; font-size: 10px; font-weight: 500; text-align: left; text-transform: uppercase; }
.hero h1 { position: relative; max-width: 800px; margin-top: 22px; }
.hero h1::after {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 30px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms 260ms cubic-bezier(.22,1,.36,1);
}
.hero-copy.is-visible h1::after { transform: scaleX(1); }
.hero-subtitle { max-width: 720px; margin: 30px 0 0; color: var(--navy); font-size: clamp(19px, 1.45vw, 23px); line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 1px solid var(--navy);
  border-radius: 0;
  font-family: Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary { color: var(--white); background: var(--navy); }
.button.primary:hover, .button.primary:focus-visible { background: var(--accent); border-color: var(--accent); }
.button.secondary { color: var(--navy); background: rgba(255, 255, 255, 0.38); }
.button.secondary:hover, .button.secondary:focus-visible { color: var(--white); background: var(--navy); }
.button.light { color: var(--navy); background: var(--white); border-color: var(--white); }
.hero-visual { position: absolute; inset: 0; z-index: 0; }
.portrait-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.02) 18%, rgba(0,0,0,.24) 37%, rgba(0,0,0,.76) 57%, #000 74%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.02) 18%, rgba(0,0,0,.24) 37%, rgba(0,0,0,.76) 57%, #000 74%, #000 100%);
}
.portrait-frame picture { display: block; width: 100%; height: 100%; }
.portrait { width: 104%; height: 100%; max-width: none; object-fit: cover; object-position: 70% 34%; filter: grayscale(1) contrast(1.08); mix-blend-mode: multiply; transform: translate(8%, var(--portrait-shift, 0)) scale(1.035); transform-origin: center; }
.hero-signature {
  position: absolute;
  right: var(--page-x);
  bottom: 74px;
  z-index: 3;
  width: min(250px, 22vw);
  padding-top: 15px;
  border-top: 1px solid rgba(9,19,52,.32);
  text-align: left;
}
.hero-signature span { display: block; color: var(--navy); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.hero-signature p { margin: 9px 0 0; color: var(--navy); font-size: 13px; line-height: 1.45; }

.proof-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); width: min(calc(100% - (2 * var(--page-x))), var(--max)); margin: 0 auto; background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-strip article { position: relative; display: flex; min-width: 0; min-height: 148px; padding: 30px clamp(14px, 1.7vw, 24px); flex-direction: column; align-items: center; justify-content: center; text-align: center; border-left: 1px solid var(--line); transition: background 260ms ease; }
.proof-strip article::after { width: 22px; height: 2px; margin-top: 17px; background: var(--accent); content: ""; transition: width 260ms ease; }
.proof-strip article:hover { background: rgba(202,224,234,.3); }
.proof-strip article:hover::after { width: 42px; }
.proof-strip article:last-child { border-right: 1px solid var(--line); }
.proof-strip span, .proof-strip strong { display: block; font-family: Roboto, Arial, sans-serif; }
.proof-strip span { margin-bottom: 10px; font-size: clamp(15px, 1.35vw, 22px); font-weight: 500; line-height: 1.08; white-space: nowrap; }
.proof-strip strong { color: var(--ink-soft); font-size: 12px; line-height: 1.35; }

.section { position: relative; padding: clamp(104px, 10vw, 156px) var(--page-x); overflow: hidden; border-top: 1px solid var(--line); counter-increment: editorial-section; }
.section::after {
  position: absolute;
  top: clamp(104px, 10vw, 156px);
  left: max(var(--page-x), calc((100vw - var(--max)) / 2));
  width: 34px;
  color: var(--accent);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  content: "0" counter(editorial-section);
  pointer-events: none;
}
.section-heading, .pillar-grid, .pathway-grid, .situation-list, .expertise-grid, .mandate-list { width: min(100%, var(--max)); margin-right: auto; margin-left: auto; }
.section-heading { position: relative; text-align: left; }
.section-heading .eyebrow { display: flex; min-height: 18px; align-items: center; margin-left: 44px; }
.section-heading h2 { max-width: 980px; margin-top: 22px; }
.section-intro { max-width: 760px; margin: 26px 0 0; font-size: clamp(17px, 1.3vw, 20px); line-height: 1.55; }

.profile-section { color: var(--navy); background: var(--steel); }
.profile-section::after, .experience-section::after { color: rgba(9,19,52,.66); }
.profile-section .eyebrow, .profile-section p { color: var(--navy); }
.profile-section h2 { color: var(--navy); }
.profile-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr); gap: clamp(54px, 9vw, 140px); align-items: start; }
.profile-copy { padding-top: 0; }
.profile-copy p { margin: 0; font-size: clamp(18px, 1.35vw, 21px); line-height: 1.55; }
.profile-copy p + p { margin-top: 24px; }

.value-section { background: var(--paper); }
.pathway-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(48px, 6vw, 78px); border: 1px solid var(--line); }
.pathway-panel { position: relative; display: flex; flex-direction: column; min-height: 580px; padding: clamp(34px, 4.4vw, 62px); background: var(--white); transition: background 280ms ease, transform 280ms ease; }
.pathway-panel::after { position: absolute; top: 32px; right: 34px; color: var(--accent); font-size: 22px; content: "↗"; transition: transform 240ms ease; }
.pathway-panel:hover { background: rgba(202,224,234,.24); }
.pathway-panel:hover::after { transform: translate(4px, -4px); }
.pathway-panel + .pathway-panel { border-left: 1px solid var(--line); }
.pathway-panel.retail-panel { background: rgba(202,224,234,.42); }
.pathway-panel h3 { max-width: 540px; margin-top: 24px; font-size: clamp(29px, 2.65vw, 42px); line-height: 1.08; }
.pathway-statement { max-width: 520px; margin: 25px 0 0; font-size: 15px; line-height: 1.6; }
.focus-list { display: grid; gap: 0; margin: 42px 0 44px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.focus-list li { padding: 12px 0; color: var(--ink-soft); border-bottom: 1px solid var(--line); font-size: 14px; }
.text-link { display: inline-flex; justify-content: space-between; gap: 24px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--navy); font-family: Roboto, Arial, sans-serif; font-size: 12px; font-weight: 500; text-decoration: none; text-transform: uppercase; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.support-section { background: var(--white); }
.pillar-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(44px, 5.5vw, 72px); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.pillar-grid article { min-height: 250px; padding: clamp(28px, 3vw, 40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color 240ms ease, background 240ms ease; }
.pillar-grid article:hover { color: var(--white); background: var(--navy); }
.pillar-grid article:hover p, .pillar-grid article:hover span { color: rgba(255,255,255,.68); }
.pillar-grid span { display: block; margin-bottom: 38px; color: var(--navy); font-size: 11px; font-weight: 780; }
.pillar-grid h3, .mandate-list h3 { margin-bottom: 16px; }
.pillar-grid p, .mandate-list p { margin: 0; font-size: 15px; line-height: 1.58; }

.situations-section { background: var(--ice); }
.situation-list { margin-top: clamp(46px, 6vw, 78px); border-top: 1px solid rgba(9,19,52,.25); }
.situation-list article { display: grid; grid-template-columns: 48px minmax(250px,.65fr) minmax(0,1fr); gap: clamp(20px,4vw,66px); align-items: start; padding: 28px 0; border-bottom: 1px solid rgba(9,19,52,.25); }
.situation-list span { color: var(--navy); font-size: 11px; font-weight: 780; }
.situation-list p { max-width: 650px; margin: 0; font-size: 15px; }

.experience-section { background: var(--steel); color: var(--navy); }
.experience-section h2, .experience-section h3 { color: var(--navy); }
.experience-section .eyebrow, .experience-section p { color: var(--navy); }
.expertise-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: clamp(48px,6vw,78px); border-top: 1px solid rgba(9,19,52,.28); border-left: 1px solid rgba(9,19,52,.28); }
.expertise-grid article { position: relative; min-height: 220px; padding: clamp(26px,3vw,38px); border-right: 1px solid rgba(9,19,52,.28); border-bottom: 1px solid rgba(9,19,52,.28); transition: color 260ms ease, background 260ms ease; }
.expertise-grid article::after { position: absolute; right: 24px; bottom: 22px; color: var(--accent); font-size: 19px; content: "↗"; opacity: 0; transform: translate(-4px,4px); transition: opacity 220ms ease, transform 220ms ease; }
.expertise-grid article:hover { color: var(--white); background: var(--navy); }
.expertise-grid article:hover p { color: var(--white); }
.expertise-grid article:hover::after { opacity: 1; transform: translate(0); }
.expertise-grid p { margin: 18px 0 0; font-size: 14px; line-height: 1.6; }

.mandates-section { background: var(--paper); }
.mandate-list { margin-top: clamp(44px,5.5vw,72px); border-top: 1px solid var(--line); }
.mandate-list article { display: grid; grid-template-columns: minmax(270px,.4fr) minmax(0,1fr); gap: clamp(28px,6vw,86px); padding: clamp(27px,3vw,40px) 0; border-bottom: 1px solid var(--line); }

.contact-section { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(290px,.34fr); gap: clamp(48px,8vw,116px); align-items: center; padding-top: clamp(104px,10vw,148px); padding-right: max(var(--page-x), calc((100vw - var(--max)) / 2)); padding-bottom: clamp(104px,10vw,148px); padding-left: max(var(--page-x), calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--navy); }
.contact-section::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--steel); content: ""; }
.contact-section .eyebrow, .contact-section p { color: var(--white); }
.contact-section h2 { max-width: 780px; margin: 16px 0 28px; color: var(--white); font-size: clamp(40px,4vw,62px); }
.contact-copy p { max-width: 760px; }
.contact-section .button { margin-top: 24px; }
.contact-section .quiet-cta,
.detail-cta .quiet-cta { color: var(--white); background: transparent; border-color: rgba(255,255,255,.58); }
.contact-section .quiet-cta:hover,
.contact-section .quiet-cta:focus-visible,
.detail-cta .quiet-cta:hover,
.detail-cta .quiet-cta:focus-visible { color: var(--navy); background: var(--steel); border-color: var(--steel); }
.contact-card { display: grid; gap: 13px; padding-top: 27px; font-style: normal; border-top: 1px solid rgba(255,255,255,.3); }
.contact-card span { color: var(--white); font-family: Roboto, Arial, sans-serif; font-size: 10px; font-weight: 500; text-transform: uppercase; }
.contact-card a { color: var(--white); font-size: 17px; text-decoration-color: rgba(255,255,255,.42); text-underline-offset: 5px; }
.contact-card small { margin-top: 16px; color: var(--white); font-size: 12px; }
.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px var(--page-x); color: var(--white); background: var(--navy); border-top: 1px solid rgba(255,255,255,.2); font-size: 11px; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a { text-decoration-color: rgba(255,255,255,.38); text-underline-offset: 4px; }

/* Editorial detail pages */
.page-hero { padding: clamp(150px,15vw,220px) var(--page-x) clamp(90px,10vw,150px); background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero-inner { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.55fr); gap: clamp(60px,10vw,150px); width: min(100%,var(--max)); margin: 0 auto; align-items: end; }
.page-hero h1 { max-width: 920px; margin-top: 22px; font-size: clamp(54px,6vw,96px); }
.page-hero-copy { padding-top: 24px; border-top: 1px solid var(--line); }
.page-hero-copy p { margin: 0; font-size: clamp(17px,1.3vw,20px); }
.page-hero-copy p + p { margin-top: 20px; }
.page-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.typical-section { background: var(--ice); }
.editorial-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); width: min(100%,var(--max)); margin: clamp(48px,6vw,78px) auto 0; border-top: 1px solid rgba(9,19,52,.23); border-left: 1px solid rgba(9,19,52,.23); }
.editorial-grid article { min-height: 218px; padding: clamp(28px,3vw,40px); border-right: 1px solid rgba(9,19,52,.23); border-bottom: 1px solid rgba(9,19,52,.23); }
.editorial-grid p { margin: 18px 0 0; font-size: 15px; }
.focus-section { background: var(--white); }
.focus-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); width: min(100%,var(--max)); margin: clamp(48px,6vw,78px) auto 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.focus-grid article { position: relative; min-height: 250px; padding: clamp(28px,3vw,40px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background 260ms ease, transform 260ms ease; }
.focus-grid article::after { position: absolute; top: 28px; right: 28px; color: var(--accent); font-size: 18px; content: "↗"; opacity: 0; transform: translate(-4px,4px); transition: opacity 220ms ease, transform 220ms ease; }
.focus-grid article:hover { background: rgba(202,224,234,.26); }
.focus-grid article:hover::after { opacity: 1; transform: translate(0); }
.focus-grid p { margin: 18px 0 0; font-size: 15px; }
.focus-number { display: block; margin-bottom: 26px; color: var(--accent); font-family: Roboto, Arial, sans-serif; font-size: 11px; font-weight: 500; }
.topic-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; margin: 25px 0 0; padding: 17px 0 0; list-style: none; border-top: 1px solid var(--line); }
.topic-list li { padding: 7px 0; color: var(--navy); border-bottom: 1px solid rgba(9,19,52,.08); font-size: 13px; line-height: 1.45; }
.focus-grid-expanded > article:last-child { grid-column: 1 / -1; }
.focus-grid-expanded > article:last-child .topic-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.approach-section { background: var(--paper); }
.process-list { width: min(100%,var(--max)); margin: clamp(48px,6vw,78px) auto 0; border-top: 1px solid var(--line); }
.process-list article { display: grid; grid-template-columns: 64px minmax(230px,.5fr) minmax(0,1fr); gap: clamp(20px,4vw,64px); padding: clamp(30px,3.5vw,46px) 0; border-bottom: 1px solid var(--line); }
.process-list > article > span { color: var(--navy); font-family: Roboto, Arial, sans-serif; font-size: 12px; font-weight: 500; }
.process-copy p { margin: 14px 0 0; font-size: 15px; }
.process-output { padding-left: clamp(20px,3vw,42px); border-left: 1px solid var(--line); }
.process-output strong { color: var(--navy); font-family: Roboto, Arial, sans-serif; font-size: 10px; text-transform: uppercase; }
.process-output p { margin: 10px 0 0; font-size: 15px; }
.outcomes-section { background: var(--white); }
.outcomes-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); width: min(100%,var(--max)); margin: clamp(46px,6vw,76px) auto 0; padding: 0; list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.outcomes-list li { padding: 20px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 650; }
.detail-cta { position: relative; padding: clamp(104px,10vw,156px) var(--page-x); color: var(--white); background: var(--navy); }
.detail-cta::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--steel); content: ""; }
.detail-cta-inner { width: min(100%,var(--max)); margin: 0 auto; }
.detail-cta .eyebrow, .detail-cta p { color: var(--white); }
.detail-cta h2 { max-width: 920px; margin-top: 16px; color: var(--white); }
.detail-cta p { max-width: 760px; margin: 28px 0 0; }
.detail-cta .button { margin-top: 26px; }

/* Legal and system pages */
.legal-page { min-height: calc(100vh - 72px); padding: clamp(138px, 14vw, 190px) var(--page-x) clamp(92px, 9vw, 130px); background: var(--paper); }
.legal-hero, .legal-content { width: min(100%, 960px); margin-right: auto; margin-left: auto; }
.legal-hero { padding-bottom: clamp(46px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin-top: 18px; font-size: clamp(52px, 6vw, 88px); }
.legal-content { padding-top: clamp(46px, 6vw, 70px); }
.legal-content section + section { margin-top: 52px; padding-top: 48px; border-top: 1px solid var(--line); }
.legal-content h2 { max-width: 780px; font-size: clamp(28px, 3vw, 40px); line-height: 1.1; }
.legal-content h3 { margin-top: 36px; font-size: clamp(20px, 2vw, 25px); line-height: 1.2; }
.legal-content p, .legal-content li, .legal-content address, .legal-details { color: var(--navy); font-size: 16px; line-height: 1.72; }
.legal-content p { margin: 20px 0 0; }
.legal-content address { margin-top: 24px; font-style: normal; }
.legal-content ul { margin: 20px 0 0; padding-left: 22px; }
.legal-content li + li { margin-top: 9px; }
.legal-content a { text-decoration-color: rgba(9,19,52,.38); text-underline-offset: 4px; }
.legal-details { margin: 25px 0 0; }
.legal-details div { display: grid; grid-template-columns: minmax(170px, .42fr) minmax(0, 1fr); gap: 28px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.legal-details dt { font-family: Roboto, Arial, sans-serif; font-weight: 500; }
.legal-details dd { margin: 0; }
.error-page { display: flex; min-height: 100vh; align-items: center; padding: 130px var(--page-x) 80px; background: var(--ice); }
.error-inner { width: min(100%, 920px); margin: 0 auto; }
.error-inner h1 { max-width: 850px; margin-top: 22px; }
.error-inner > p:not(.eyebrow) { max-width: 620px; margin: 30px 0 0; font-size: 19px; }
.error-inner .button { margin-top: 34px; }

.js-enabled [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 680ms cubic-bezier(.22,1,.36,1), transform 680ms cubic-bezier(.22,1,.36,1); }
.js-enabled [data-reveal-delay="1"] { transition-delay: 100ms; }
.js-enabled [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.js-enabled .pillar-grid[data-reveal] article,
.js-enabled .expertise-grid[data-reveal] article,
.js-enabled .editorial-grid[data-reveal] article,
.js-enabled .focus-grid[data-reveal] article {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms cubic-bezier(.22,1,.36,1), transform 560ms cubic-bezier(.22,1,.36,1), color 260ms ease, background 260ms ease;
}
.js-enabled .pillar-grid[data-reveal].is-visible article,
.js-enabled .expertise-grid[data-reveal].is-visible article,
.js-enabled .editorial-grid[data-reveal].is-visible article,
.js-enabled .focus-grid[data-reveal].is-visible article { opacity: 1; transform: translateY(0); }
.js-enabled [data-reveal].is-visible article:nth-child(2) { transition-delay: 70ms; }
.js-enabled [data-reveal].is-visible article:nth-child(3) { transition-delay: 140ms; }
.js-enabled [data-reveal].is-visible article:nth-child(4) { transition-delay: 210ms; }
.js-enabled [data-reveal].is-visible article:nth-child(5) { transition-delay: 280ms; }
.js-enabled [data-reveal].is-visible article:nth-child(6) { transition-delay: 350ms; }
.js-enabled [data-reveal].is-visible article:nth-child(7) { transition-delay: 420ms; }
:focus-visible { outline: 3px solid rgba(72,116,148,.58); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .js-enabled [data-reveal] { opacity: 1; transform: none; }
}
@media (max-width: 1000px) {
  .hero { min-height: 800px; }
  .hero-copy { width: min(68%,720px); }
  .portrait { width: 120%; opacity: .68; transform: translate(11%,var(--portrait-shift,0)) scale(1.02); }
  .hero-signature { display: none; }
  .profile-layout, .page-hero-inner { grid-template-columns: 1fr; }
  .profile-copy, .page-hero-copy { max-width: 780px; }
  .expertise-grid, .focus-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .focus-grid-expanded > article:last-child .topic-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 900px) {
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip span { font-size: 21px; }
  .proof-strip article { min-height: 104px; }
}
@media (max-width: 760px) {
  :root { --page-x: 18px; }
  html { scroll-padding-top: 64px; }
  .site-header, .site-header.is-scrolled { min-height: 60px; padding: 10px var(--page-x); }
  .brand-logo { width: 40px; height: 40px; }
  .main-nav { gap: 14px; }
  .main-nav a:nth-child(3) { display: none; }
  .main-nav a { font-size: 9px; }
  .main-nav .nav-contact { padding: 9px 12px; }
  .language-switcher { gap: 4px; margin-left: -2px; }
  .hero { min-height: 790px; align-items: flex-start; padding-top: 100px; padding-bottom: 64px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(41px,11.2vw,58px); }
  h2 { font-size: clamp(35px,9vw,48px); }
  .hero-subtitle { font-size: 18px; }
  .portrait-frame { -webkit-mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.05) 22%,rgba(0,0,0,.42) 56%,#000 100%); mask-image: linear-gradient(90deg,transparent 0%,rgba(0,0,0,.05) 22%,rgba(0,0,0,.42) 56%,#000 100%); }
  .portrait { width: 170%; opacity: .2; object-position: 66% 36%; transform: translate(19%,var(--portrait-shift,0)); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .proof-strip, .pillar-grid, .pathway-grid, .expertise-grid, .editorial-grid, .focus-grid, .outcomes-list { grid-template-columns: 1fr; }
  .proof-strip { width: calc(100% - 36px); }
  .proof-strip article { min-height: auto; border-right: 1px solid var(--line); }
  .section { padding-top: 94px; padding-bottom: 94px; }
  .section::after { display: none; }
  .section-heading { padding-top: 0; padding-right: 0; }
  .section-heading .eyebrow { min-height: 0; margin-left: 0; }
  .pathway-panel { min-height: auto; }
  .pathway-panel + .pathway-panel { border-top: 1px solid var(--line); border-left: 0; }
  .pillar-grid, .expertise-grid, .editorial-grid, .focus-grid, .outcomes-list { border-left: 0; }
  .pillar-grid article, .expertise-grid article, .editorial-grid article, .focus-grid article, .outcomes-list li { min-height: auto; border-left: 1px solid var(--line); }
  .focus-grid-expanded > article:last-child { grid-column: auto; }
  .topic-list, .focus-grid-expanded > article:last-child .topic-list { grid-template-columns: 1fr; }
  .topic-list li { font-size: 14px; }
  .situation-list article, .mandate-list article, .process-list article { grid-template-columns: 1fr; gap: 10px; }
  .situation-list article { padding: 25px 0; }
  .process-output { margin-top: 10px; padding: 20px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .contact-section { grid-template-columns: 1fr; align-items: start; }
  .page-hero { padding-top: 124px; }
  .page-actions { flex-direction: column; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .legal-details div { grid-template-columns: 1fr; gap: 2px; }
  .legal-content section + section { margin-top: 42px; padding-top: 38px; }
}
@media (max-width: 420px) {
  .hero, .section, .contact-section, .page-hero, .detail-cta { padding-right: 16px; padding-left: 16px; }
  .proof-strip { width: calc(100% - 32px); }
}
