/* Tokens */
:root {
  --ink: #0A1F49;
  --ink-deep: #071634;
  --accent-blue: #3E6FD9;
  --paper: #F4F5F1;
  --paper-alt: #ECEDE7;
  --gold: #B99B6B;
  --gold-deep: #7A5C2E;
  --gold-dim: #F1E6D3;
  --slate: #47505F;
  --slate-2: #7B8494;
  --line: #D7DAE0;
  --line-dark: rgba(255, 255, 255, 0.16);
  --white: #FFFFFF;

  --font-serif: 'Bodoni Moda', 'Didot', 'Bodoni MT', Georgia, serif;
  --font-display: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 56px);
  --header-height: 76px;
}

/* Base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
button { font: inherit; }

h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 1.5rem + 4.2vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.008em;
  color: var(--ink);
  max-width: 18ch;
}
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.26;
  letter-spacing: -0.004em;
  color: var(--ink);
}

.kicker {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}
.kicker.light { color: var(--gold); }

.lede { font-size: 1.12rem; max-width: 52ch; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(72px, 9vw, 128px); }
.section.shade { background: var(--paper-alt); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.section-note { font-size: 0.9rem; color: var(--slate-2); }

/* Links and buttons */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  white-space: nowrap;
}
.arrow-link::after { content: "→"; transition: transform 0.2s ease; }
.arrow-link:hover { border-bottom-color: currentColor; }
.arrow-link:hover::after { transform: translateX(5px); }
.arrow-link.light { color: var(--gold); }
.arrow-link.small { font-size: 0.72rem; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-solid { background: var(--ink); color: var(--white); }
.btn-solid:hover { background: var(--gold-deep); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--gold-dim); }
.btn-outline { border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); }

.kind-tag {
  display: inline-block;
  padding: 3px 9px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 24px rgba(10, 31, 73, 0.08); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: var(--header-height);
}
.wordmark { display: inline-flex; align-items: center; }
.logo-img { height: 42px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; align-items: center; gap: 26px; }
.nav-item { position: static; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.nav-link:hover, .nav-link.is-active, .nav-item.is-open .nav-link { border-bottom-color: var(--gold); }
.nav-caret {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}
.nav-item.is-open .nav-caret { transform: translateY(1px) rotate(-135deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(10, 31, 73, 0.1);
}
.mega-menu[hidden] { display: none; }
.mega-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  padding-block: 40px 44px;
}
.mega-lead { display: flex; flex-direction: column; align-items: start; gap: 18px; }
.mega-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 2px 32px;
}
.mega-list a {
  display: block;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--slate);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mega-list a:hover { color: var(--ink); border-bottom-color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 8px var(--gutter) 32px;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
}
.mobile-nav[hidden] { display: none; }
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.mobile-caret {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.mobile-link[aria-expanded="true"] .mobile-caret { transform: translateY(3px) rotate(-135deg); }
.mobile-sublist { padding: 6px 0 14px; }
.mobile-sublist[hidden] { display: none; }
.mobile-sublist a { display: block; padding: 9px 0; color: var(--slate); text-decoration: none; }
.mobile-nav .btn { margin-top: 24px; }

/* Hero */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(560px, 82vh, 820px);
  background: var(--ink);
  overflow: hidden;
}
.hero-stage { position: relative; flex: 1; display: grid; }
.hero-slide {
  position: relative;
  grid-area: 1 / 1;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(72px, 10vw, 140px) clamp(28px, 4vw, 48px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }

.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 22, 52, 0.94) 8%, rgba(7, 22, 52, 0.62) 46%, rgba(7, 22, 52, 0.34) 100%),
    linear-gradient(to right, rgba(10, 31, 73, 0.86), rgba(10, 31, 73, 0.12) 68%);
}
.hero-slide.is-active .hero-media img,
.hero-slide.is-active .hero-media video { animation: slow-zoom 12s ease-out forwards; }
@keyframes slow-zoom { from { transform: scale(1.06); } to { transform: scale(1); } }

.hero-body { position: relative; z-index: 1; width: 100%; }
.hero-body .kicker {
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.82);
}
.hero-body h1 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
  max-width: 15ch;
  margin-top: 16px;
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-size: clamp(2.6rem, 1.2rem + 5.4vw, 5.6rem);
}
.hero-deck {
  margin-top: 22px;
  max-width: 54ch;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero-body .arrow-link { margin-top: 30px; }

.hero-controls { position: relative; z-index: 2; padding-bottom: clamp(16px, 2.2vw, 26px); }
.hero-tabs { display: flex; gap: clamp(12px, 2.5vw, 36px); }
.hero-tab {
  flex: 1;
  max-width: 260px;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: color 0.2s ease;
}
.hero-tab:hover, .hero-tab.is-active { color: var(--white); }
.hero-tab-track { display: block; height: 2px; background: rgba(255, 255, 255, 0.28); margin-bottom: 10px; }
.hero-tab-fill { display: block; width: 0; height: 100%; background: var(--accent-blue); }
.hero-tab.is-active .hero-tab-fill { width: 100%; }
.hero-tab-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(96px, 13vw, 152px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}
.hero-scroll:hover { color: var(--white); }
.hero-scroll-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-scroll-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: hero-scroll-bob 2s ease-in-out infinite;
}
@keyframes hero-scroll-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding-block: clamp(80px, 11vw, 152px);
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 22, 52, 0.9), rgba(7, 22, 52, 0.55)),
    linear-gradient(to right, rgba(10, 31, 73, 0.88), rgba(10, 31, 73, 0.2) 72%);
}
.page-hero-body { position: relative; z-index: 1; }
.page-hero-body > * { animation: rise 0.65s ease backwards; }
.page-hero-body > *:nth-child(2) { animation-delay: 0.08s; }
.page-hero-body > *:nth-child(3) { animation-delay: 0.16s; }
.page-hero-body > *:nth-child(4) { animation-delay: 0.22s; }
.page-hero h1 { color: var(--white); margin-top: 20px; max-width: 16ch; }
.page-hero-back {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}
.page-hero-back:hover { color: var(--white); }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }

/* Marquee */
.marquee { background: var(--white); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-row { display: flex; width: max-content; animation: track-left 60s linear infinite; }
.marquee-row + .marquee-row { border-top: 1px solid var(--line); animation-name: track-right; }
.marquee:hover .marquee-row { animation-play-state: paused; }
.marquee-set { display: flex; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 24px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  color: var(--slate);
  white-space: nowrap;
}
.marquee-item::after { content: ""; width: 5px; height: 5px; background: var(--gold); }
@keyframes track-left { to { transform: translateX(-50%); } }
@keyframes track-right { from { transform: translateX(-50%); } }

/* Brief builder and detail assessment */
.brief-grid,
.assess-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.brief-lead h2,
.assess-lead h2 { margin-block: 20px 18px; }
.brief-media { overflow: hidden; margin-top: clamp(32px, 5vw, 56px); aspect-ratio: 4 / 3; max-height: 340px; background: var(--paper-alt); }
.brief-media img { width: 100%; height: 100%; object-fit: cover; }
.brief-panel,
.assess-panel { background: var(--white); border: 1px solid var(--line); padding: clamp(24px, 3vw, 40px); }
.brief-step[hidden] { display: none; }
.brief-count {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-2);
}
.brief-step h3 { margin-block: 10px 24px; font-size: 1.5rem; }
.chip-set { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 10px 18px;
  background: none;
  border: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--slate);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-selected { background: var(--ink); border-color: var(--ink); color: var(--white); }
.brief-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.brief-back { padding: 0; background: none; border: none; font-size: 0.85rem; color: var(--slate-2); cursor: pointer; }
.brief-back:hover { color: var(--ink); }
.brief-back[hidden] { display: none; }
.brief-answer { flex: 1; min-width: 180px; font-size: 0.9rem; color: var(--slate-2); }
.brief-send[hidden] { display: none; }

/* Detail assessment */
.assess-result { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.assess-result[hidden] { display: none; }
.assess-answer { font-size: 1.02rem; line-height: 1.6; color: var(--slate); max-width: 56ch; }
.assess-send { margin-top: 20px; }

/* Feature band */
.feature-band { display: grid; grid-template-columns: 1fr 1fr; background: var(--ink); color: rgba(255, 255, 255, 0.74); }
.feature-media { position: relative; min-height: 460px; }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-panel { display: flex; align-items: center; padding: clamp(48px, 6vw, 88px) var(--gutter); }
.feature-inner { max-width: 560px; }
.feature-inner h2 { color: var(--white); margin-block: 20px 16px; }
.feature-figures {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: clamp(28px, 4vw, 44px);
  row-gap: 28px;
  margin-block: 40px 36px;
}
.feature-figures .figure { max-width: 140px; padding: 0; border: none; }
.figure-value {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.figure-label { margin-top: 8px; font-size: 0.95rem; }
.feature-figures .figure-label { font-size: 0.85rem; line-height: 1.4; }

/* Insight cards */
.insight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(24px, 3vw, 40px); }
.insight-card { display: flex; flex-direction: column; text-decoration: none; }
.insight-media { display: block; overflow: hidden; aspect-ratio: 16 / 10; background: var(--paper-alt); }
.insight-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insight-card:hover .insight-media img { transform: scale(1.05); }
.insight-body { display: flex; flex-direction: column; flex: 1; padding-top: 20px; }
.insight-category {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-deep);
}
.insight-title {
  display: block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.22;
  letter-spacing: -0.006em;
  color: var(--ink);
}
.insight-card:hover .insight-title { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.insight-deck { display: block; margin-top: 12px; color: var(--slate); }
.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 0.82rem;
  color: var(--slate-2);
}

/* Featured article */
.featured-article {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  text-decoration: none;
}
.featured-media { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--paper-alt); }
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-article:hover .featured-media img { transform: scale(1.04); }
.featured-body { display: block; }
.featured-title {
  display: block;
  margin-top: 14px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.featured-article:hover .featured-title { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 5px; }
.featured-body .insight-deck { font-size: 1.08rem; max-width: 46ch; }

/* Filter bar */
.filter-bar { background: var(--white); border-bottom: 1px solid var(--line); }
.filter-inner { display: flex; gap: 10px; padding-block: 16px; overflow-x: auto; }
.filter {
  flex: none;
  padding: 8px 16px;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--slate);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.filter:hover { border-color: var(--ink); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* Practice list (services & industries pages) */
.practice { display: grid; grid-template-columns: 360px 1fr; gap: clamp(28px, 4vw, 72px); padding-block: 56px; border-top: 1px solid var(--line); }
.practice:first-child { border-top: none; padding-top: 0; }
/* Alternate media alignment by row. */
.practice:nth-child(even) { grid-template-columns: 1fr 360px; }
.practice:nth-child(even) .practice-head { order: 2; }
.practice:nth-child(even) .practice-body { order: 1; }
.practice-thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 20px;
  background: var(--paper-alt);
}
.practice-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.practice-thumb:hover img { transform: scale(1.06); }
.practice-head h3 { margin-top: 12px; font-size: 1.6rem; }
.practice-head h3 a { text-decoration: none; color: inherit; }
.practice-head h3 a:hover { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.practice-body p { max-width: 62ch; }
.practice-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.practice-points li {
  padding: 7px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--slate);
}
.practice-body .arrow-link { display: inline-block; margin-top: 24px; }

/* Article */
.article-header { padding-block: clamp(40px, 5vw, 72px) clamp(28px, 3vw, 44px); }
.article-header-inner { max-width: 940px; }
.article-back {
  display: inline-block;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-2);
  text-decoration: none;
}
.article-back:hover { color: var(--ink); }
.article-header h1 { color: var(--ink); margin-top: 18px; max-width: 20ch; font-size: clamp(2.2rem, 1.4rem + 3.2vw, 3.9rem); }
.article-deck { margin-top: 22px; max-width: 60ch; font-size: 1.2rem; color: var(--slate); }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--slate-2);
}

.article-figure { margin-block: 0 clamp(40px, 5vw, 72px); }
.article-figure img { width: 100%; height: clamp(260px, 42vw, 520px); object-fit: cover; }

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  padding-bottom: clamp(64px, 8vw, 112px);
}
.article-aside { position: sticky; top: calc(var(--header-height) + 32px); }
.takeaways { margin-top: 20px; }
.takeaways li {
  padding-left: 20px;
  padding-block: 10px;
  position: relative;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}
.takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 7px;
  height: 7px;
  background: var(--gold);
}

.article-body { max-width: 68ch; }
.article-body section + section { margin-top: 44px; }
.article-body h2 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  max-width: 24ch;
  margin-bottom: 18px;
}
.article-body p { font-size: 1.1rem; line-height: 1.75; }
.article-body p + p { margin-top: 20px; }

.pull-quote {
  margin-block: 48px;
  padding-left: clamp(20px, 3vw, 36px);
  border-left: 3px solid var(--gold);
}
.pull-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.95rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.pull-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.86rem;
  color: var(--slate-2);
}

.article-byline {
  margin-top: 56px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}
.byline-name { margin-top: 16px; font-family: var(--font-serif); font-weight: 500; font-size: 1.2rem; color: var(--ink); }
.byline-title { font-size: 0.92rem; color: var(--slate-2); }
.article-byline .arrow-link { margin-top: 16px; }

/* Split grid */
.split-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(32px, 4vw, 56px); }
.split { display: block; border-top: 2px solid var(--ink); padding-top: 22px; text-decoration: none; }
.split h3 { margin-bottom: 10px; }
a.split:hover h3 { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }

/* Process */
.process {
  display: flex;
  flex-wrap: wrap;
  column-gap: clamp(32px, 5vw, 56px);
  row-gap: 36px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  list-style: none;
}
.process-step { flex: 1 1 200px; min-width: 200px; border: none; padding: 0; }
.process-step:nth-child(even) { margin-top: 26px; }
.process-index { font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; color: var(--gold-deep); }
.process-step h3 { margin-block: 10px; }

/* Role cards (careers page) */
.role-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(28px, 3vw, 44px); }
.role { display: flex; flex-direction: column; align-items: start; }
.role-media { display: block; width: 100%; overflow: hidden; aspect-ratio: 4 / 3; margin-bottom: 18px; background: var(--paper-alt); }
.role-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.role:hover .role-media img { transform: scale(1.06); }
.role-track {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-deep);
}
.role-main { display: flex; flex-direction: column; flex: 1; width: 100%; }
.role-main h3 { margin-block: 8px; font-size: 1.3rem; }
.role-main p { flex: 1; }
.role-main .arrow-link { margin-top: 16px; }

/* Mission quote (About) */
.mission-quote { max-width: 760px; margin: 0 auto; text-align: center; }
.mission-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 1.2rem + 1.8vw, 2.5rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.mission-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--slate-2);
}

/* Availability statement */
.availability { padding-block: clamp(48px, 6vw, 80px); }
.availability-inner {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}
.availability-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink);
}

/* CTA bands */
.cta-band,
.cta-dual { background: var(--ink); }
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(56px, 7vw, 96px);
}
.cta-inner h2 { color: var(--white); max-width: 24ch; }

.cta-dual .container { padding-block: clamp(56px, 7vw, 96px); }
.cta-dual-kicker { margin-bottom: clamp(28px, 4vw, 44px); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.cta-col { display: flex; flex-direction: column; align-items: start; gap: 18px; }
.cta-col:last-child { border-left: 1px solid var(--line-dark); padding-left: clamp(40px, 6vw, 80px); }
.cta-col h2 { color: var(--white); font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); max-width: 20ch; }
.cta-col-note {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -8px;
}
.cta-col .btn { margin-top: 10px; }

/* Trust line */
.trust-line {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--slate-2);
  padding-block: 28px;
  border-top: 1px solid var(--line);
  background: var(--paper-alt);
}

/* Footer */
.site-footer { background: var(--ink-deep); color: rgba(255, 255, 255, 0.66); font-size: 0.94rem; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-block: clamp(56px, 6vw, 80px) 48px;
}
.footer-wordmark {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: -0.005em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-wordmark span { color: var(--gold); }
.footer-top .kicker { display: block; margin-bottom: 18px; }
.footer-nav li { padding-block: 5px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-contact { display: flex; flex-direction: column; gap: 5px; align-items: start; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px 40px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.84rem;
}
/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* Chat widget */
.chat-widget { position: fixed; right: 24px; bottom: 24px; z-index: 90; }
.chat-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--ink);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(10, 31, 73, 0.32);
  transition: background-color 0.2s ease;
}
.chat-toggle:hover { background: var(--gold-deep); }
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 48px));
  max-height: 470px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 24px 54px rgba(10, 31, 73, 0.2);
  overflow: hidden;
}
.chat-panel[hidden] { display: none; }
.chat-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; background: var(--ink); }
.chat-header p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
}
.chat-close { padding: 0 4px; background: none; border: none; color: var(--white); font-size: 1.35rem; line-height: 1; cursor: pointer; }
.chat-messages { flex: 1; display: flex; flex-direction: column; gap: 10px; padding: 16px; overflow-y: auto; background: var(--paper); }
.chat-msg { max-width: 86%; padding: 10px 14px; font-size: 0.9rem; line-height: 1.5; white-space: pre-line; }
.chat-msg.bot { align-self: flex-start; background: var(--white); border: 1px solid var(--line); }
.chat-msg.user { align-self: flex-end; background: var(--ink); color: var(--white); }
.chat-input-row { display: flex; border-top: 1px solid var(--line); background: var(--white); }
.chat-input-row input { flex: 1; padding: 13px 14px; background: none; border: none; font-family: var(--font-body); font-size: 0.9rem; outline: none; }
.chat-input-row button { width: 48px; background: var(--ink); border: none; color: var(--white); font-size: 1.05rem; cursor: pointer; }
.chat-input-row button:hover { background: var(--gold-deep); }
.chat-input-row button[disabled] { opacity: 0.55; cursor: default; }

/* Responsive */
@media (max-width: 1100px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .brief-grid { grid-template-columns: 1fr; }
  .assess-grid { grid-template-columns: 1fr; }
  .practice, .practice:nth-child(even) { grid-template-columns: 1fr; gap: 18px; }
  .practice:nth-child(even) .practice-head, .practice:nth-child(even) .practice-body { order: initial; }
  .practice-thumb { max-width: 420px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .feature-band { grid-template-columns: 1fr; }
  .feature-media { min-height: 300px; }
}

@media (max-width: 820px) {
  .featured-article { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-height: 66px; }
  .logo-img { height: 34px; }
  .hero { min-height: 0; padding-top: 40px; }
  .hero-tabs { gap: 10px; }
  .hero-tab-label { font-size: 0.68rem; }
  .hero-scroll { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-col:last-child { border-left: none; border-top: 1px solid var(--line-dark); padding-left: 0; padding-top: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .chat-widget { right: 16px; bottom: 16px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-row { animation: none; flex-wrap: wrap; width: 100%; }
  .marquee-set[aria-hidden="true"] { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: none; }
  .page-hero-body > * { animation: none; }
  .hero-slide.is-active .hero-media img,
  .hero-slide.is-active .hero-media video { animation: none; }
  .insight-media img, .featured-media img { transition: none; }
  .insight-card:hover .insight-media img,
  .featured-article:hover .featured-media img { transform: none; }
  .arrow-link::after, .nav-caret, .mobile-caret { transition: none; }
  .hero-scroll-dot { animation: none; }
}
