/* =========================================================================
   Astra Insight — styles
   Editorial / consulting aesthetic. Restraint over decoration.
   ========================================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --ink:        #0B1F3A;   /* deep navy */
  --ink-2:      #0F172A;   /* body text */
  --blue:       #1E40AF;   /* royal blue accent */
  --blue-soft:  #2E50C7;
  --slate:      #475569;   /* secondary text */
  --slate-2:    #64748B;
  --slate-3:    #94A3B8;
  --paper:      #FFFFFF;
  --paper-2:    #F8FAFC;
  --paper-3:    #F1F5F9;
  --rule:       #E2E8F0;
  --rule-2:     #CBD5E1;
  --ink-rule:   rgba(11, 31, 58, 0.12);

  /* Type */
  --serif: 'Fraunces', 'Source Serif 4', 'Iowan Old Style', Georgia, serif;
  --sans:  'Geist', 'Söhne', 'Helvetica Neue', Arial, sans-serif;
  --mono:  'Geist Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --gutter: 32px;
  --section-y: 112px;
}

/* ---------- Base ---------- */
html { font-family: var(--sans); color: var(--ink-2); background: var(--paper); }
body {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11", "ss03";
  letter-spacing: -0.005em;
}
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); font-feature-settings: "ss01"; }
.mono  { font-family: var(--mono); }

.display-1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
}
.display-2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  font-variation-settings: "opsz" 120;
  color: var(--ink);
}
.h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 96;
  color: var(--ink);
}
.h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.014em;
  color: var(--ink);
}
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink-2);
  font-variation-settings: "opsz" 36;
}
.italic { font-style: italic; }

.label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.label-ink { color: var(--ink); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--blue);
  display: inline-block;
  flex-shrink: 0;
}

.body-l { font-size: 18px; line-height: 1.6; color: var(--ink-2); }
.muted  { color: var(--slate); }
.muted-2 { color: var(--slate-2); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding-block: var(--section-y); }
.section-sm { padding-block: 72px; }

.rule { height: 1px; background: var(--rule); border: 0; }
.rule-strong { background: var(--rule-2); }
.rule-vt { width: 1px; background: var(--rule); }

.grid { display: grid; gap: var(--gutter); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-12 { grid-template-columns: repeat(12, 1fr); }

@media (max-width: 900px) {
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .cols-12 { grid-template-columns: repeat(6, 1fr); }
  :root { --section-y: 72px; --gutter: 24px; }
}

/* ---------- Ledger top strip ---------- */
.ledger {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-2);
}
.ledger__right span[data-today] { font-family: var(--mono); letter-spacing: 0.08em; }
.ledger__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 38px;
  gap: 24px;
  overflow: hidden;
  white-space: nowrap;
}
.ledger__locs span + span { margin-left: 22px; position: relative; }
.ledger__locs span + span::before {
  content: "·"; position: absolute; left: -14px; color: var(--slate-3);
}
.ledger__right { display: flex; gap: 28px; }

@media (max-width: 720px) {
  .ledger__locs span:nth-child(n+3) { display: none; }
  .ledger__right span:first-child { display: none; }
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 116px; gap: 32px;
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--ink);
}
.brand__logo {
  height: 88px;
  width: auto;
  display: block;
}
.brand--lg .brand__logo { height: 160px; }
@media (max-width: 560px) {
  .brand__logo { height: 64px; }
  .brand--lg .brand__logo { height: 120px; }
}

.nav__links {
  display: flex; gap: 36px; align-items: center;
}
.nav__links a {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  letter-spacing: -0.005em;
  transition: color .15s ease;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--ink); }

.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  padding: 10px 16px;
  border: 1px solid var(--ink);
  transition: background .15s ease, color .15s ease;
}
.nav__cta:hover { background: var(--ink); color: var(--paper); }
.nav__cta svg { width: 12px; height: 12px; }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--rule-2);
}
.nav__toggle span {
  display: block; width: 18px; height: 1px; background: var(--ink);
  margin: 4px auto;
}

@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start;
    gap: 0;
    position: absolute; top: 116px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    padding: 16px var(--gutter) 24px;
  }
  .nav.open .nav__links a {
    width: 100%; padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--serif); font-size: 22px;
  }
}

/* ---------- Buttons / Links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 22px;
  font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--ink); color: var(--paper);
  transition: background .2s ease;
}
.btn:hover { background: var(--blue); }
.btn svg { width: 14px; height: 14px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: border-color .2s ease, gap .2s ease;
}
.link-arrow:hover { border-bottom-color: var(--ink); gap: 14px; }
.link-arrow svg { width: 12px; height: 12px; }

/* ---------- Hero v3 (editorial · orbital) ---------- */
.hero-v3 {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.hero-v3__bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0.2) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 30%, rgba(0,0,0,0.2) 100%);
}
.hero-v3__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 104px;
  padding-bottom: 112px;
  min-height: 620px;
}

.hero-v3__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px 9px 14px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  background: rgba(255,255,255,0.02);
}

.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(74,222,128,0.18);
  animation: statusPulse 2.4s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.92); }
}

.hero-v3__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 7.2vw, 108px);
  line-height: 0.96;
  letter-spacing: -0.028em;
  font-variation-settings: "opsz" 144;
  color: var(--paper);
  margin-bottom: 36px;
}
.hero-v3__title em {
  font-style: italic;
  color: #6BA4E5;
  font-variation-settings: "opsz" 144;
}

.hero-v3__sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 48px;
}

.hero-v3__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--white { background: var(--paper); color: var(--ink); }
.btn--white:hover { background: #6BA4E5; color: var(--paper); }

.btn--ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.28);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.06); border-color: var(--paper); }

/* Orbital visual */
.hero-v3__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 620px;
  justify-self: end;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.hero-v3__visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 80px rgba(107,164,229,0.18));
}

@media (max-width: 1000px) {
  .hero-v3__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 72px;
    padding-bottom: 72px;
    min-height: 0;
  }
  .hero-v3__visual {
    max-width: 380px;
    margin: 0 auto;
    order: 2;
  }
  .hero-v3__content { order: 1; }
}
@media (max-width: 560px) {
  .hero-v3__eyebrow { font-size: 10px; letter-spacing: 0.2em; padding: 8px 14px 8px 12px; }
  .hero-v3__visual { max-width: 300px; }
}

/* ---------- Hero (home, original — kept for legacy/other pages if needed) ---------- */
.hero {
  padding-top: 96px;
  padding-bottom: 120px;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}
.hero__lede {
  margin-top: 32px;
  max-width: 480px;
}
.hero__actions {
  display: flex; gap: 20px; margin-top: 40px; flex-wrap: wrap;
}
.hero__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--ink-rule);
  max-width: 540px;
}
.hero__meta dt { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); margin-bottom: 8px; }
.hero__meta dd { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.hero__meta dd em { font-style: italic; color: var(--slate); }

.hero__visual {
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero__visual::after {
  content: "";
  position: absolute; left: 16px; bottom: 16px;
  width: 8px; height: 8px; background: var(--blue);
}
.hero__visual-cap {
  position: absolute; right: 18px; bottom: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--slate); text-transform: uppercase;
}
.hero__visual-cap-tl {
  position: absolute; left: 18px; top: 18px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  color: var(--slate); text-transform: uppercase;
}

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; }
}

/* SVG visual animations */
.scanline { animation: scan 5.5s ease-in-out infinite; transform-origin: 0 0; }
@keyframes scan {
  0%   { transform: translateY(-160px); opacity: 0; }
  10%  { opacity: 0.65; }
  50%  { transform: translateY(160px); opacity: 0.65; }
  60%  { opacity: 0; }
  100% { transform: translateY(160px); opacity: 0; }
}
.node-pulse { animation: nodePulse 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes nodePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.35); }
}

/* ---------- Trusted strip ---------- */
.trusted {
  padding: 36px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.trusted__inner {
  display: flex; align-items: center; gap: 56px; flex-wrap: wrap;
}
.trusted__label {
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--slate-2);
  padding-right: 32px;
  border-right: 1px solid var(--rule);
}
.trusted__names {
  display: flex; gap: 48px; flex-wrap: wrap;
}
.trusted__names span {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-feature-settings: "smcp";
}

@media (max-width: 720px) {
  .trusted__label { border-right: 0; padding-right: 0; }
  .trusted__names { gap: 24px; }
  .trusted__names span { font-size: 16px; }
}

/* ---------- Section header ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--ink-rule);
  margin-bottom: 64px;
}
.section-head__left .label { display: block; margin-bottom: 18px; }
.section-head__right { padding-top: 4px; }
@media (max-width: 900px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; margin-bottom: 40px; }
}

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink-rule);
}
.service {
  padding: 40px 32px 44px;
  border-bottom: 1px solid var(--ink-rule);
  border-right: 1px solid var(--ink-rule);
  position: relative;
  transition: background .25s ease;
}
.service:nth-child(3n) { border-right: 0; }
.service:hover { background: var(--paper-2); }
.service:hover .service__num { color: var(--blue); }
.service__num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 28px;
  transition: color .2s ease;
}
.service__name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}
.service__desc { color: var(--slate); font-size: 15px; line-height: 1.6; margin-bottom: 28px; }
.service__link { font-size: 12px; letter-spacing: 0.12em; }

.service--wide {
  grid-column: 1 / -1;
  border-right: 0 !important;
  background: var(--paper-2);
  padding: 48px 40px 52px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 56px;
  align-items: end;
}
.service--wide .service__num { margin-bottom: 16px; color: var(--blue); }
.service--wide .service__name { font-size: 32px; margin-bottom: 0; }
.service--wide .service__desc { max-width: 540px; margin-bottom: 0; font-size: 16px; }
.service--wide:hover { background: var(--paper-3); }
.service--wide .service__link { white-space: nowrap; }

@media (max-width: 900px) {
  .services { grid-template-columns: 1fr; }
  .service { border-right: 0; padding: 32px 4px; }
  .service--wide { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
}
.stats--duo { grid-template-columns: repeat(2, 1fr); }

/* Profile block — qualitative statements about the firm */
.profile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
}
.profile__card {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
  background: var(--paper);
  transition: background .2s ease;
}
.profile__card:hover { background: var(--paper-2); }
.profile__card:nth-child(2n) { border-right: 0; }
.profile__card:nth-last-child(-n+2) { border-bottom: 0; }
.profile__label {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 22px;
}
.profile__phrase {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--ink);
  font-variation-settings: "opsz" 72;
}
@media (max-width: 720px) {
  .profile { grid-template-columns: 1fr; }
  .profile__card { border-right: 0 !important; border-bottom: 1px solid var(--ink-rule) !important; padding: 32px 24px; }
  .profile__card:last-child { border-bottom: 0 !important; }
}
.stat {
  padding: 48px 24px;
  border-right: 1px solid var(--ink-rule);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}
.stat__num sup {
  font-family: var(--mono); font-size: 14px; vertical-align: super;
  color: var(--blue); margin-left: 4px; letter-spacing: 0;
}
.stat__label {
  margin-top: 18px;
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--slate);
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; }
  .stat:nth-child(odd) { border-right: 1px solid var(--ink-rule); }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--ink-rule); }
}

/* ---------- Featured insight ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.feature__media {
  aspect-ratio: 4 / 5;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.feature__media-pattern {
  position: absolute; inset: 0;
}
.feature__media-cap {
  position: absolute; left: 24px; bottom: 24px;
  font-family: var(--sans); font-weight: 500; font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.feature__media-no {
  position: absolute; right: 24px; top: 24px;
  font-family: var(--serif); font-size: 56px; color: rgba(255,255,255,0.18);
  line-height: 1;
}
.feature__meta {
  display: flex; gap: 20px;
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 24px;
}
.feature__meta span + span { padding-left: 20px; border-left: 1px solid var(--rule); }
.feature__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}
.feature__byline {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
}
.feature__byline-name { font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); }
.feature__byline-role { font-size: 13px; color: var(--slate); }

@media (max-width: 980px) {
  .feature { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Industries strip ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
}
.industry {
  padding: 40px 20px 40px;
  border-right: 1px solid var(--ink-rule);
  transition: background .2s ease;
}
.industry:last-child { border-right: 0; }
.industry:hover { background: var(--paper-2); }
.industry__icon {
  width: 36px; height: 36px;
  margin-bottom: 36px;
  color: var(--ink);
}
.industry__name {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 10px;
}
.industry__note {
  font-size: 11px;
  color: var(--slate-2);
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@media (max-width: 1080px) {
  .industries { grid-template-columns: repeat(3, 1fr); }
  .industry:nth-child(3n) { border-right: 0; }
  .industry:nth-child(n+4) { border-top: 1px solid var(--ink-rule); }
}
@media (max-width: 600px) {
  .industries { grid-template-columns: repeat(2, 1fr); }
  .industry:nth-child(n) { border-right: 1px solid var(--ink-rule); border-top: 1px solid var(--ink-rule); }
  .industry:nth-child(2n) { border-right: 0; }
  .industry:nth-child(1), .industry:nth-child(2) { border-top: 0; }
}

/* ---------- CTA ---------- */
.cta {
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0; opacity: 0.06;
  pointer-events: none;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.cta__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--paper);
  font-variation-settings: "opsz" 144;
}
.cta__title em { font-style: italic; color: rgba(255,255,255,0.6); }
.cta__copy {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 420px;
}
.cta .btn { background: var(--paper); color: var(--ink); }
.cta .btn:hover { background: var(--blue); color: var(--paper); }
.cta .link-arrow { color: var(--paper); }
.cta .link-arrow:hover { border-bottom-color: var(--paper); }
@media (max-width: 980px) {
  .cta__grid { grid-template-columns: 1fr; gap: 40px; }
  .cta { padding: 80px 0; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding-top: 80px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--rule);
}
.footer__brand { max-width: 320px; }
.footer__tag {
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.footer__col h6 {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 20px;
}
.footer__col ul li { margin-bottom: 10px; }
.footer__col a {
  font-size: 14px; color: var(--ink-2);
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--blue); }

.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate-2);
}
.footer__bottom-links { display: flex; gap: 28px; }

@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  padding-top: 88px;
  padding-bottom: 88px;
  border-bottom: 1px solid var(--ink-rule);
}
.page-hero__crumbs {
  font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--slate); margin-bottom: 32px;
}
.page-hero__crumbs a { color: var(--slate); }
.page-hero__crumbs a:hover { color: var(--ink); }
.page-hero__crumbs span { color: var(--slate-3); padding: 0 8px; }
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
}
.page-hero__lede { max-width: 460px; }
@media (max-width: 900px) {
  .page-hero__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Service detail (services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.4fr;
  gap: 56px;
  padding: 72px 0;
  border-bottom: 1px solid var(--ink-rule);
}
.service-row:last-of-type { border-bottom: 0; }
.service-row__num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate);
}
.service-row__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.service-row__tag {
  display: inline-block;
  margin-top: 28px;
  padding: 6px 14px;
  font-family: var(--sans); font-weight: 500; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--slate);
  border: 1px solid var(--rule-2);
}
.service-row__body p { color: var(--slate); font-size: 16px; line-height: 1.65; margin-bottom: 20px; }
.service-row__list {
  margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 28px;
}
.service-row__list li {
  font-size: 14px; color: var(--ink-2);
  padding-left: 18px; position: relative;
  line-height: 1.5;
}
.service-row__list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 1px; background: var(--blue);
}
@media (max-width: 980px) {
  .service-row { grid-template-columns: 1fr; gap: 20px; padding: 56px 0; }
  .service-row__list { grid-template-columns: 1fr; }
}

/* ---------- Industry detail rows ---------- */
.industry-row {
  display: grid;
  grid-template-columns: 80px 1.2fr 1.2fr 1fr;
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid var(--ink-rule);
  align-items: start;
}
.industry-row__num { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); }
.industry-row__title { font-family: var(--serif); font-size: 32px; line-height: 1.1; letter-spacing: -0.014em; color: var(--ink); }
.industry-row__lede { color: var(--slate); font-size: 15px; line-height: 1.6; }
.industry-row__risks li {
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}
.industry-row__risks li:last-child { border-bottom: 0; }
.industry-row__risks-head {
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--slate-2); margin-bottom: 10px;
}
@media (max-width: 1080px) {
  .industry-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- Insights / article cards ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-rule);
}
.insight {
  padding: 44px 32px 48px;
  border-bottom: 1px solid var(--ink-rule);
  border-right: 1px solid var(--ink-rule);
  transition: background .2s ease;
  display: flex; flex-direction: column;
}
.insight:nth-child(3n) { border-right: 0; }
.insight:hover { background: var(--paper-2); }
.insight__meta {
  display: flex; gap: 16px;
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--slate);
  margin-bottom: 32px;
}
.insight__meta span + span { padding-left: 16px; border-left: 1px solid var(--rule); }
.insight__title {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 18px;
}
.insight__lede { color: var(--slate); font-size: 15px; line-height: 1.6; margin-bottom: 28px; flex-grow: 1; }
.insight__byline {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.insight__author { font-size: 13px; color: var(--ink-2); }
.insight__author b { font-weight: 500; }
.insight__cat { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); }
@media (max-width: 900px) {
  .insights-grid { grid-template-columns: 1fr; }
  .insight { border-right: 0; padding: 40px 0; }
}

/* ---------- Featured article (insights hero) ---------- */
.feat-article {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--ink-rule);
  margin-bottom: 0;
  align-items: center;
}
.feat-article__media { aspect-ratio: 4 / 5; background: var(--ink); position: relative; overflow: hidden; }
.feat-article__cat {
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 28px;
}
.feat-article__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 24px;
}
.feat-article__lede { color: var(--slate); font-size: 17px; line-height: 1.6; margin-bottom: 28px; }
@media (max-width: 980px) {
  .feat-article { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- About: leadership ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-rule);
}
.team--duo {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
}
.team--duo .partner { padding: 44px 40px 52px; }
.team--duo .partner__avatar { aspect-ratio: 4 / 3; }
.team--duo .partner__name { font-size: 28px; }
.team--duo .partner:nth-child(2n) { border-right: 0; }
.partner {
  padding: 32px 24px 40px;
  border-bottom: 1px solid var(--ink-rule);
  border-right: 1px solid var(--ink-rule);
}
.partner:nth-child(4n) { border-right: 0; }
.partner__avatar {
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
}
.partner__initials {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.02em;
}
.partner__name { font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1.2; margin-bottom: 6px; letter-spacing: -0.008em; }
.partner__role { font-size: 11px; color: var(--slate); font-family: var(--sans); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.partner__bio { margin-top: 14px; font-size: 13px; color: var(--slate); line-height: 1.55; }

@media (max-width: 1080px) {
  .team { grid-template-columns: repeat(2, 1fr); }
  .partner:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .team { grid-template-columns: 1fr; }
  .partner { border-right: 0 !important; }
}

/* ---------- HQ + Regions served ---------- */
.hq-region-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
}
.hq-card {
  padding: 40px 40px 44px;
  border-right: 1px solid var(--ink-rule);
}
.hq-card__label {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 24px;
}
.hq-card__city {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144;
}
.hq-card__city sup {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-left: 10px;
  vertical-align: 22px;
}
.hq-card__addr {
  font-style: normal;
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 24px;
}
.hq-card__contact {
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-2);
}
.hq-card__contact a {
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.hq-card__contact a:hover { border-bottom-color: var(--blue); color: var(--blue); }

.regions-served {
  padding: 40px 40px 44px;
}
.regions-served__label {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--slate-2);
  margin-bottom: 8px;
}
.regions-served__list { display: grid; }
.regions-served__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
}
.regions-served__list li:last-child { border-bottom: 0; }
.regions-served__name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.regions-served__tag {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-2);
}

.response-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 40px;
  background: var(--ink);
  color: var(--paper);
  border-top: 4px solid var(--blue);
}
.response-band__label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #6BA4E5;
  white-space: nowrap;
}
.response-band__copy {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  color: var(--paper);
}
.response-band__contact {
  display: flex; gap: 24px;
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.response-band__contact a { color: rgba(255,255,255,0.9); border-bottom: 1px solid rgba(255,255,255,0.25); transition: border-color .15s ease; }
.response-band__contact a:hover { border-bottom-color: #6BA4E5; color: #6BA4E5; }

@media (max-width: 900px) {
  .hq-region-grid { grid-template-columns: 1fr; }
  .hq-card { border-right: 0; border-bottom: 1px solid var(--ink-rule); padding: 32px 24px; }
  .regions-served { padding: 32px 24px; }
  .hq-card__city { font-size: 44px; }
  .response-band { grid-template-columns: 1fr; padding: 28px 24px; gap: 16px; }
  .response-band__contact { flex-direction: column; gap: 6px; }
}

/* ---------- Offices ---------- */
.offices {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink-rule);
}
.office {
  padding: 32px 24px;
  border-right: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
}
.office:nth-child(4n) { border-right: 0; }
.office__city {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 18px;
}
.office__city sup { font-family: var(--mono); font-size: 10px; vertical-align: super; color: var(--blue); margin-left: 6px; letter-spacing: 0.1em; }
.office__addr {
  font-size: 13px; color: var(--slate); line-height: 1.55; margin-bottom: 16px;
  font-style: normal;
}
.office__phone { font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; color: var(--ink-2); }
@media (max-width: 980px) {
  .offices { grid-template-columns: repeat(2, 1fr); }
  .office:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .offices { grid-template-columns: 1fr; }
  .office { border-right: 0 !important; }
}

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
.form { display: grid; gap: 28px; }
.field { display: grid; gap: 8px; }
.field label {
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--slate);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-2);
  outline: none;
  transition: border-color .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-bottom-color: var(--ink);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Pull quote ---------- */
.pullquote {
  padding: 96px 0;
  border-top: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
}
.pullquote blockquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.014em;
  color: var(--ink);
  max-width: 920px;
  font-style: italic;
  font-variation-settings: "opsz" 96;
}
.pullquote blockquote::before {
  content: "“"; font-size: 1.4em; color: var(--blue); margin-right: 6px; line-height: 0; vertical-align: -0.15em;
}
.pullquote cite {
  display: block; margin-top: 32px;
  font-style: normal;
  font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--slate);
}

/* ---------- Values list (about) ---------- */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  border-top: 1px solid var(--ink-rule);
}
.value {
  padding: 48px 32px;
  border-right: 1px solid var(--ink-rule);
  border-bottom: 1px solid var(--ink-rule);
}
.value:nth-child(3n) { border-right: 0; }
.value__num { font-family: var(--sans); font-weight: 600; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--slate); margin-bottom: 24px; }
.value__name { font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 14px; }
.value__desc { color: var(--slate); font-size: 14px; line-height: 1.6; }
@media (max-width: 900px) {
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0 !important; }
}

/* ---------- Animations (subtle reveals) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: reveal .9s cubic-bezier(.2,.7,.2,1) forwards;
  }
  .reveal-1 { animation-delay: .05s; }
  .reveal-2 { animation-delay: .18s; }
  .reveal-3 { animation-delay: .32s; }
  .reveal-4 { animation-delay: .46s; }
  .reveal-5 { animation-delay: .60s; }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Focus visibility */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}
