/* ============================================================
   Corrigent Consultants — Production site
   Fraunces · Inter · JetBrains Mono
   Navy 0f2845 · Gold c4953d · Paper faf8f3
   ============================================================ */

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; }
img,svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input,textarea,select { font: inherit; color: inherit; }

/* ── Tokens ────────────────────────────────────────────────── */
:root {
  /* Ink + paper */
  --c-ink: #0a0f1c;
  --c-ink-2: #2a3142;
  --c-paper: #ffffff;
  --c-paper-2: #f5f8ff;   /* very pale blue tint */
  --c-paper-3: #e4ecfb;

  /* Brand blues (from logo) */
  --c-navy: #1a3a8f;          /* CORRIGENT royal blue */
  --c-navy-deep: #102560;     /* deeper background blue */
  --c-navy-darker: #07153d;   /* near-black blue */
  --c-blue: #2563d6;          /* primary action */
  --c-blue-light: #3b82f6;    /* hover / lighter action */
  --c-blue-sky: #5da3f0;      /* sky tint from logo */
  --c-blue-pale: #8ec5f5;     /* palest band */

  /* Aliases so existing rules keep working */
  --c-gold: var(--c-blue-light);
  --c-gold-soft: #cfe4ff;
  --c-gold-dim: rgba(59,130,246,0.30);
  --c-gold-faint: rgba(59,130,246,0.10);

  --c-rule: rgba(10,15,28,0.08);
  --c-rule-strong: rgba(10,15,28,0.15);
  --c-success: #10b981;
  --c-warning: #f59e0b;
  --c-danger: #ef4444;

  --grad-brand: linear-gradient(135deg, #5da3f0 0%, #2563d6 50%, #1f2caa 100%);
  --grad-brand-soft: linear-gradient(135deg, #8ec5f5 0%, #5da3f0 100%);

  --shadow-sm: 0 1px 2px rgba(10,15,28,0.06), 0 1px 3px rgba(10,15,28,0.08);
  --shadow-md: 0 8px 16px -8px rgba(10,15,28,0.15), 0 4px 8px rgba(10,15,28,0.06);
  --shadow-lg: 0 24px 48px -24px rgba(15,40,143,0.30), 0 8px 16px rgba(10,15,28,0.06);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --f-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --pad-x: clamp(20px, 4vw, 64px);
  --pad-y: clamp(56px, 9vw, 120px);
  --max-w: 1320px;
}

/* Plus Jakarta Sans behaves better as a display with letter-spacing tuned in,
   and we use color (not italic) for emphasis since this is a corporate sans. */
.display { font-feature-settings: 'ss01' on, 'ss02' on; }
.display em {
  font-style: normal;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.display strong { color: var(--c-navy); font-weight: 700; }

/* ── Base ──────────────────────────────────────────────────── */
body {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--c-gold); color: var(--c-navy-deep); }

.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

/* ── Typography utilities ──────────────────────────────────── */
.display { font-family: var(--f-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.022em; color: inherit; }
.h1 { font-size: clamp(38px, 5.8vw, 80px); }
.h2 { font-size: clamp(30px, 4vw, 52px); }
.h3 { font-size: clamp(22px, 2.4vw, 30px); }
.h4 { font-size: clamp(18px, 1.6vw, 22px); font-weight: 700; }

.mono { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.mono-gold { color: var(--c-gold); }
.eyebrow { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); display:inline-flex; align-items:center; gap: 14px; }
.eyebrow::before { content:''; width: 28px; height: 1px; background: var(--c-gold); }

.lede { font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; color: var(--c-ink); opacity: 0.75; max-width: 64ch; }
.body { font-size: 15px; line-height: 1.7; color: var(--c-ink); opacity: 0.75; }

/* Section */
.section { padding: var(--pad-y) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  font-family: var(--f-body); font-weight: 700; font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid transparent;
  background: transparent; color: inherit;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn { border-radius: var(--r-sm); }
.btn-primary { background: var(--c-blue); color: #fff; border-color: var(--c-blue); box-shadow: 0 4px 12px -4px rgba(37,99,214,0.5); }
.btn-primary:hover { background: var(--c-navy); border-color: var(--c-navy); box-shadow: 0 6px 16px -4px rgba(15,40,143,0.5); }

.btn-navy { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.btn-navy:hover { background: var(--c-navy-deep); border-color: var(--c-navy-deep); }

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

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.btn .arrow { display: inline-block; transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.link {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600; color: var(--c-navy);
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  transition: color .2s ease;
}
.link .arrow { transition: transform .25s ease; }
.link:hover { color: var(--c-gold); }
.link:hover .arrow { transform: translateX(4px); }

/* ── Header ────────────────────────────────────────────────── */
.utility-bar {
  background: var(--c-navy-darker); color: var(--c-gold-soft);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 10px 0;
}
.utility-bar .container { display:flex; justify-content:space-between; align-items:center; }
.utility-bar a { color: rgba(255,255,255,0.7); transition: color .2s; }
.utility-bar a:hover { color: var(--c-gold-soft); }

.site-header {
  background: var(--c-navy); color: #fff;
  border-bottom: 1px solid var(--c-gold-dim);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container { display:flex; align-items:center; justify-content:space-between; padding-top: 18px; padding-bottom: 18px; gap: 32px; }

.brand { display:flex; align-items:center; gap: 14px; }
.brand-mark {
  width: 44px; height: 44px;
  background: #ffffff; padding: 6px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display:flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-family: var(--f-display); font-weight: 800; font-size: 18px; letter-spacing: 0.02em; }
.brand-text .sub { font-size: 9px; letter-spacing: 0.34em; color: var(--c-blue-sky); margin-top: 5px; font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 13px; color: rgba(255,255,255,0.85);
  padding: 6px 0; display: inline-flex; align-items: center; gap: 5px;
  border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.main-nav a:hover { color: var(--c-gold-soft); }
.main-nav a.is-active { color: var(--c-gold-soft); border-bottom-color: var(--c-gold); }
.main-nav .caret { font-size: 8px; opacity: 0.7; }

.header-cta { display: inline-flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  background: transparent; border: 1px solid var(--c-gold-dim); color: var(--c-gold-soft);
  width: 44px; height: 44px; align-items: center; justify-content: center;
  flex-direction: column; gap: 5px; padding: 0;
}
.menu-toggle span { display:block; width: 18px; height: 1.5px; background: var(--c-gold-soft); }
.menu-toggle span:last-child { width: 12px; margin-left: auto; }

/* Mega menu */
.mega-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--c-paper);
  color: var(--c-ink);
  border-bottom: 1.5px solid var(--c-ink);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.25);
  padding: 48px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility 0s linear .25s;
}
.has-mega { position: relative; }
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .25s, transform .25s, visibility 0s; }
.mega-menu .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.mega-col h6 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin: 0 0 16px; }
.mega-col ul { list-style: none; padding: 0; margin: 0; }
.mega-col li a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--c-rule);
  font-size: 14px; color: var(--c-ink);
  transition: color .2s, padding-left .2s;
}
.mega-col li a:hover { color: var(--c-gold); padding-left: 6px; }
.mega-col li a::after { content: '›'; color: var(--c-gold); opacity: 0; transition: opacity .2s; }
.mega-col li a:hover::after { opacity: 1; }
.mega-feature {
  background: var(--c-paper-2); padding: 24px;
  border-top: 2px solid var(--c-gold);
}
.mega-feature .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.mega-feature .title { font-family: var(--f-display); font-weight: 500; font-size: 22px; margin: 10px 0 12px; line-height: 1.2; }
.mega-feature .desc { font-size: 13px; color: var(--c-ink); opacity: 0.7; line-height: 1.6; }
.mega-feature .link { margin-top: 16px; }

/* Mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--c-navy-deep); color: #fff;
  padding: 80px 28px 32px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.6,0,.2,1);
  z-index: 200;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-drawer.is-open { transform: translateX(0); }
.mobile-drawer .close {
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px;
  background: transparent; border: 1px solid var(--c-gold-dim); color: var(--c-gold-soft);
  font-family: var(--f-display); font-size: 20px;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }
.mobile-drawer nav a {
  font-family: var(--f-display); font-size: 28px; font-weight: 400;
  padding: 18px 0; border-bottom: 1px solid var(--c-gold-dim);
  color: #fff; display:flex; align-items:center; justify-content:space-between;
}
.mobile-drawer nav a .num { font-family: var(--f-mono); font-size: 11px; color: var(--c-gold); }
.mobile-drawer .drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.mobile-drawer .drawer-meta { margin-top: 24px; font-size: 12px; color: var(--c-gold-soft); line-height: 1.8; opacity: 0.7; }
.drawer-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden; transition: opacity .3s, visibility 0s linear .3s;
  z-index: 150;
}
.drawer-backdrop.is-open { opacity: 1; visibility: visible; transition: opacity .3s; }
body.no-scroll { overflow: hidden; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 60%, var(--c-navy-darker) 100%); color: #fff; padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 10vw, 140px); position: relative; overflow: hidden; }
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 80vw; height: 80vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at 30% 30%, rgba(93,163,240,0.18) 0%, rgba(31,44,170,0.05) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
}
.hero::after {
  content: '';
  position: absolute; bottom: -40%; left: -15%;
  width: 70vw; height: 70vw; max-width: 800px; max-height: 800px;
  background: radial-gradient(circle, rgba(37,99,214,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; text-align: center; }
.hero h1 { color: #fff; margin: 24px auto 28px; max-width: 18ch; }
.hero .lede { color: #cbd5e6; opacity: 1; margin: 0 auto 40px; max-width: 56ch; font-size: clamp(15px, 1.3vw, 18px); }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.hero-flank {
  display: flex; justify-content: center; margin-bottom: 28px;
}
.hero-flank .rule { width: 36px; height: 1px; background: var(--c-gold); align-self: center; }
.hero-flank .label { padding: 0 16px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.28em; color: var(--c-gold-soft); text-transform: uppercase; }

/* Hero stats band */
.stats-band {
  background: var(--c-navy-deep); color: #fff;
  border-top: 1px solid var(--c-gold-dim);
  border-bottom: 1px solid var(--c-gold-dim);
}
.stats-band .grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats-band .stat {
  padding: 36px 24px;
  border-right: 1px solid var(--c-gold-dim);
}
.stats-band .stat:last-child { border-right: none; }
.stats-band .num { font-family: var(--f-display); font-weight: 800; font-size: clamp(36px, 3.8vw, 52px); color: var(--c-blue-sky); line-height: 1; letter-spacing: -0.02em; }
.stats-band .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: #9fb0c8; margin-top: 10px; }

/* ── Inner-page hero ─────────────────────────────────────── */
.page-hero {
  padding: clamp(56px, 8vw, 120px) 0;
  border-bottom: 1px solid var(--c-rule);
  position: relative; overflow: hidden;
}
.page-hero .breadcrumb { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-ink); opacity: 0.5; margin-bottom: 28px; }
.page-hero .breadcrumb .sep { color: var(--c-gold); margin: 0 12px; }
.page-hero .breadcrumb .current { color: var(--c-navy); }
.page-hero h1 { margin: 14px 0 28px; max-width: 16ch; }
.page-hero .grid-split { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: end; }
.page-hero .ornament {
  position: absolute; top: -10%; right: -3%;
  width: 60vw; height: 60vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle at 30% 30%, rgba(93,163,240,0.18) 0%, rgba(31,44,170,0.04) 50%, transparent 70%);
  pointer-events: none;
  filter: blur(16px);
  font-size: 0;
}
.page-hero .inline-stats {
  display: flex; gap: 56px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--c-rule);
}
.page-hero .inline-stats .num { font-family: var(--f-display); font-weight: 800; font-size: clamp(28px, 3vw, 42px); color: var(--c-blue); line-height: 1; letter-spacing: -0.02em; }
.page-hero .inline-stats .lbl { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6; margin-top: 6px; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--c-paper);
  padding: 36px;
  border-top: 2px solid var(--c-gold);
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(15,40,69,0.25); }
.card { border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.card:hover { box-shadow: var(--shadow-lg); }
.card .num { font-family: var(--f-display); font-weight: 800; font-size: 48px; color: var(--c-blue); line-height: 1; margin-bottom: 20px; letter-spacing: -0.03em; }
.card h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(22px, 2vw, 28px); margin: 0 0 14px; line-height: 1.18; }
.card .desc { font-size: 14px; line-height: 1.65; color: var(--c-ink); opacity: 0.7; flex: 1; }
.card .foot { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--c-rule); }
.card .foot .ic-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--c-gold); color: var(--c-gold);
  display:flex; align-items:center; justify-content:center;
  transition: background .25s, color .25s, transform .25s;
}
.card:hover .foot .ic-arrow { background: var(--c-gold); color: var(--c-navy-deep); transform: rotate(45deg); }

/* ── Imagery placeholders ─────────────────────────────────── */
.img-ph {
  background: linear-gradient(135deg, var(--c-paper-2) 0%, var(--c-paper-3) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.img-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(196,149,61,0.18) 0%, transparent 60%);
}
.img-ph::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0 24px, rgba(0,0,0,0.02) 24px 25px);
}
.img-ph .lbl {
  position: relative; z-index: 1;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.img-real {
  background-size: cover; background-position: center;
  background-color: var(--c-paper-3);
  position: relative;
}
.img-real::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15) 100%);
}

/* ── Marquee ──────────────────────────────────────────────── */
.marquee {
  overflow: hidden;
  padding: 24px 0;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee .track {
  display: flex; gap: 64px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.marquee .track:hover { animation-play-state: paused; }
.marquee.dir-rev .track { animation-direction: reverse; }
.marquee .item {
  font-family: var(--f-display); font-weight: 500; font-size: clamp(20px, 2vw, 26px);
  color: var(--c-ink); opacity: 0.55; flex-shrink: 0; letter-spacing: 0.01em;
}
.marquee.italics .item { font-style: italic; opacity: 0.4; }
@keyframes marquee {
  to { transform: translateX(calc(-50% - 32px)); }
}

/* ── Pull quote ──────────────────────────────────────────── */
.pull-quote {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
}
.pull-quote .mark {
  width: 56px; height: 56px; margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700;
  font-size: 28px; line-height: 1;
  box-shadow: var(--shadow-md);
}
.pull-quote blockquote {
  margin: 0 auto; max-width: 24ch;
  font-family: var(--f-display); font-weight: 600;
  font-size: clamp(26px, 3.2vw, 42px); line-height: 1.3; letter-spacing: -0.015em;
}
.pull-quote blockquote em { font-style: normal; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pull-quote cite { font-style: normal; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.5; margin-top: 36px; display: inline-block; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--c-navy-darker); color: #9fb0c8;
  padding: clamp(56px, 8vw, 96px) 0 28px;
}
.site-footer .grid {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr 1.4fr;
  gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--c-gold-dim);
}
.site-footer h6 { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin: 0 0 18px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 7px 0; font-size: 13px; }
.site-footer li a { color: #cbd5e6; transition: color .2s; }
.site-footer li a:hover { color: #fff; }
.site-footer .brand-block .name { font-family: var(--f-display); font-weight: 800; font-size: 24px; color:#fff; letter-spacing: -0.01em; }
.site-footer .brand-block .name em { color: var(--c-blue-sky); font-style: normal; font-weight: 800; }
.site-footer .brand-block .sub { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.3em; color: var(--c-gold); margin-top: 10px; }
.site-footer .brand-block p { margin-top: 24px; font-size: 13px; line-height: 1.7; max-width: 340px; color: #cbd5e6; }
.site-footer .social { display: flex; gap: 10px; margin-top: 28px; }
.site-footer .social a {
  width: 38px; height: 38px;
  border: 1px solid var(--c-gold-dim); color: var(--c-gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 14px;
  transition: background .2s, border-color .2s, color .2s;
}
.site-footer .social a:hover { background: var(--c-gold); color: var(--c-navy-deep); border-color: var(--c-gold); }
.site-footer .meta { display: flex; justify-content: space-between; align-items: center; margin-top: 22px; font-size: 11px; color: #7f8ea5; letter-spacing: 0.06em; }
.site-footer .meta a { transition: color .2s; }
.site-footer .meta a:hover { color: #fff; }

/* ── Reveal animations ────────────────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.3,1); }
[data-reveal].is-in { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="100"] { transition-delay: 100ms; }
[data-reveal][data-delay="200"] { transition-delay: 200ms; }
[data-reveal][data-delay="300"] { transition-delay: 300ms; }
[data-reveal][data-delay="400"] { transition-delay: 400ms; }

/* ── Section: Three flagship practices ───────────────────── */
.practices { background: var(--c-paper-2); }
.practices .head { display:flex; justify-content:space-between; align-items: flex-end; margin-bottom: 56px; gap: 32px; flex-wrap: wrap; }
.practices .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ── Industries grid (premium) ───────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ind-card {
  background: var(--c-paper); padding: 32px 26px; min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
  transition: background .25s, color .25s;
  cursor: pointer;
}
.ind-card .bignum {
  position: absolute; top: -16px; right: 12px;
  font-family: var(--f-display); font-weight: 800;
  font-size: 86px; line-height: 1; color: var(--c-gold-faint);
  letter-spacing: -0.05em;
  transition: color .25s, transform .35s;
}
.ind-card:hover { background: var(--c-navy-deep); color: #fff; }
.ind-card:hover h4 { color: #fff; }
.ind-card:hover .bignum { color: rgba(196,149,61,0.4); transform: translateY(-8px); }
.ind-card:hover .ind-stat { color: var(--c-gold-soft); }
.ind-card:hover .rule { background: var(--c-gold); }
.ind-card h4 { font-family: var(--f-display); font-weight: 500; font-size: 24px; margin: 0 0 10px; position: relative; line-height: 1.15; }
.ind-card .ind-stat { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); position: relative; }
.ind-card .rule { width: 32px; height: 1px; background: var(--c-gold); margin-top: 24px; transition: background .25s; }

/* ── Methodology timeline (dark) ─────────────────────────── */
.timeline-dark { background: var(--c-navy-deep); color: #fff; padding: clamp(80px, 10vw, 120px) 0; }
.timeline-dark .grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; margin-top: 56px; }
.timeline-dark .line { position: absolute; top: 28px; left: 8%; right: 8%; height: 1px; background: var(--c-gold-dim); }
.timeline-dark .step { position: relative; }
.timeline-dark .dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--c-navy); border: 1.5px solid var(--c-blue-sky); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 16px;
  margin-bottom: 22px;
  box-shadow: 0 0 0 4px rgba(93,163,240,0.15);
}
.timeline-dark h4 { font-family: var(--f-display); font-weight: 500; font-size: 20px; margin: 0 0 10px; color: #fff; line-height: 1.2; }
.timeline-dark .desc { font-size: 13px; line-height: 1.65; color: #9fb0c8; }

/* ── Testimonial ───────────────────────────────────────── */
.testimonial { padding: clamp(80px, 10vw, 120px) 0; }
.testimonial .grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.testimonial .img-real { aspect-ratio: 4/5; }
.testimonial blockquote { margin: 0; font-family: var(--f-display); font-weight: 400; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.3; }
.testimonial blockquote em { color: var(--c-gold); font-style: italic; }
.testimonial .who { margin-top: 24px; }
.testimonial .who .name { font-family: var(--f-display); font-weight: 500; font-size: 18px; }
.testimonial .who .role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-top: 6px; }
.testimonial .rule { width: 60px; height: 1px; background: var(--c-gold); margin-top: 18px; }

/* ── Insights row ─────────────────────────────────────── */
.insights .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.insight {
  background: var(--c-paper);
  border-top: 1px solid var(--c-rule);
  padding-top: 24px;
  display: flex; flex-direction: column;
}
.insight .img-ph { aspect-ratio: 16/10; margin-bottom: 22px; }
.insight .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 10px; }
.insight h4 { font-family: var(--f-display); font-weight: 500; font-size: 22px; line-height: 1.2; margin: 0 0 12px; }
.insight .body { font-size: 13px; }
.insight .meta { display: flex; justify-content: space-between; margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--c-rule); font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-ink); opacity: 0.6; }

/* ── Final CTA on navy ───────────────────────────────── */
.cta-dark { background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-deep) 60%, var(--c-navy-darker) 100%); color: #fff; text-align: center; padding: clamp(80px, 11vw, 140px) 0; position: relative; overflow: hidden; }
.cta-dark::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(93,163,240,0.18) 0%, transparent 60%);
  pointer-events: none;
  filter: blur(8px);
}
.cta-dark .container { position: relative; }
.cta-dark .eyebrow { color: var(--c-gold-soft); justify-content: center; }
.cta-dark h2 { color: #fff; margin: 24px auto 18px; max-width: 18ch; }
.cta-dark p { color: #cbd5e6; max-width: 56ch; margin: 0 auto 36px; font-size: clamp(15px, 1.2vw, 17px); line-height: 1.6; }
.cta-dark .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Forms ──────────────────────────────────────────── */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; }
.field label {
  font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--c-ink); opacity: 0.6; margin-bottom: 8px;
}
.field input,
.field textarea,
.field select,
.field .fake-select {
  padding: 15px 18px; border: 1px solid var(--c-rule-strong);
  background: var(--c-paper); color: var(--c-ink);
  font-size: 14px; outline: none;
  transition: border-color .2s, background .2s;
  font-family: var(--f-body);
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--c-gold); }
.field textarea { resize: vertical; min-height: 110px; }
.field .fake-select { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.field .fake-select .ph { color: rgba(0,0,0,0.4); }
.field .fake-select .caret { color: var(--c-gold); }

/* ── Specimen table (Expertise) ────────────────────── */
.specimen { padding-top: 56px; }
.specimen .row {
  display: grid; grid-template-columns: 80px 1.5fr 2fr 130px 56px;
  padding: 28px 0; border-bottom: 1px solid var(--c-rule);
  align-items: center; gap: 24px;
  transition: background .2s, padding-left .2s;
  cursor: pointer;
}
.specimen .row:first-of-type { border-top: 2px solid var(--c-ink); }
.specimen .row:hover { background: var(--c-paper-2); padding-left: 12px; }
.specimen .row.head { padding: 14px 0; border-bottom: 1px solid var(--c-rule-strong); cursor: default; }
.specimen .row.head:hover { background: transparent; padding-left: 0; }
.specimen .row.head > div { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; }
.specimen .roman { font-family: var(--f-display); color: var(--c-blue); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.specimen .name { font-family: var(--f-display); font-weight: 500; font-size: 24px; line-height: 1.2; }
.specimen .desc { font-size: 14px; line-height: 1.65; color: var(--c-ink); opacity: 0.7; }
.specimen .time { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; text-align: right; }
.specimen .arr {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--c-gold); color: var(--c-gold);
  display: flex; align-items: center; justify-content: center;
  margin-left: auto;
  transition: background .25s, color .25s;
}
.specimen .row:hover .arr { background: var(--c-gold); color: var(--c-navy-deep); }

/* ── Functions grid ───────────────────────────────── */
.functions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.fn h4 { font-family: var(--f-display); font-weight: 500; font-size: 24px; margin: 0; padding-bottom: 14px; border-bottom: 2px solid var(--c-gold); }
.fn ul { list-style: none; padding: 0; margin: 18px 0 0; }
.fn li {
  padding: 11px 0; border-bottom: 1px solid var(--c-rule);
  font-size: 13px; display: flex; justify-content: space-between; align-items: center;
  transition: padding-left .2s, color .2s;
}
.fn li:hover { color: var(--c-gold); padding-left: 6px; cursor: pointer; }
.fn li::after { content: '›'; color: var(--c-gold); opacity: 0; transition: opacity .2s; }
.fn li:hover::after { opacity: 1; }

/* ── Sector roster (Clients) ──────────────────────── */
.roster-group {
  display: grid; grid-template-columns: 280px 1fr; gap: 56px;
  padding: 40px 0; border-top: 1.5px solid var(--c-ink);
}
.roster-group .label .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 10px; }
.roster-group .label h3 { font-family: var(--f-display); font-weight: 500; font-size: 28px; margin: 0; line-height: 1.2; }
.roster-group .label .count { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; margin-top: 8px; }
.roster-group .logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(0,0,0,0.08); }
.roster-group .logos .cell {
  background: var(--c-paper); padding: 28px 18px; min-height: 110px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 500; font-size: 17px; text-align: center; line-height: 1.2;
  transition: background .2s;
}
.roster-group .logos .cell:hover { background: var(--c-paper-2); }
.roster-group .logos .cell.empty { background: var(--c-paper); }

/* ── Case studies ────────────────────────────────── */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: var(--c-paper); border-top: 2px solid var(--c-gold);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.case-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(15,40,69,0.25); }
.case-card .img-ph, .case-card .img-real { aspect-ratio: 16/10; }
.case-card .body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.case-card .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 14px; }
.case-card h3 { font-family: var(--f-display); font-weight: 500; font-size: 24px; line-height: 1.2; margin: 0 0 14px; }
.case-card .desc { font-size: 14px; line-height: 1.65; opacity: 0.75; margin: 0 0 24px; flex: 1; }
.case-card .meta { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--c-rule); }
.case-card .meta .stat { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.6; }

/* ── Triptych testimonials (dark) ─────────────────── */
.triptych-dark { background: var(--c-navy-deep); color: #fff; padding: clamp(80px, 10vw, 120px) 0; }
.triptych-dark .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 32px; }
.triptych-dark .item { border-top: 1px solid var(--c-gold-dim); padding-top: 28px; }
.triptych-dark .mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 22px; color: #fff;
  margin-bottom: 20px;
}
.triptych-dark blockquote { color: #fff; font-family: var(--f-display); font-weight: 400; font-size: 22px; line-height: 1.35; margin: 24px 0 28px; }
.triptych-dark blockquote em { color: var(--c-gold); font-style: italic; }
.triptych-dark cite { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); font-style: normal; }

/* ── About: Mission/Vision split ──────────────────── */
.mv-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { padding: 56px; position: relative; overflow: hidden; min-height: 360px; }
.mv-card .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 22px; }
.mv-card h3 { font-family: var(--f-display); font-weight: 400; font-size: clamp(24px, 2.4vw, 32px); line-height: 1.3; margin: 0; }
.mv-card h3 em { color: var(--c-gold); font-style: italic; font-weight: 300; }
.mv-mission { background: var(--c-paper-2); }
.mv-vision { background: var(--c-navy-deep); color: #fff; }
.mv-vision h3 { color: #fff; }
.mv-vision::after { display: none; }

/* ── About: Timeline (vertical) ───────────────────── */
.timeline-light { background: var(--c-paper-2); padding: clamp(80px, 10vw, 120px) 0; }
.timeline-list { position: relative; padding-left: 120px; }
.timeline-list .axis { position: absolute; top: 8px; bottom: 8px; left: 38px; width: 1px; background: var(--c-gold-dim); }
.timeline-list .milestone { position: relative; padding-bottom: 56px; }
.timeline-list .year-dot {
  position: absolute; left: -100px; top: 0;
  width: 76px; height: 76px; border-radius: 50%;
  background: #fff; border: 2px solid var(--c-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 800; font-size: 17px;
  color: var(--c-navy);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.10);
}
.timeline-list .content { display: grid; grid-template-columns: 1fr 1.6fr; gap: 56px; padding-top: 16px; }
.timeline-list h3 { font-family: var(--f-display); font-weight: 500; font-size: 30px; margin: 0; line-height: 1.2; }
.timeline-list .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-top: 8px; }
.timeline-list p { font-size: 15px; line-height: 1.7; opacity: 0.75; margin: 0; }

/* ── About: Principles 2x2 ────────────────────────── */
.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.principles .pr {
  padding: 48px 40px 48px 0;
  border-top: 1.5px solid var(--c-ink);
  display: grid; grid-template-columns: 90px 1fr; gap: 24px;
}
.principles .pr:nth-child(odd) { border-right: 1px solid var(--c-rule); }
.principles .pr:nth-child(even) { padding-left: 40px; }
.principles .pr .num { font-family: var(--f-display); font-weight: 800; color: var(--c-blue); font-size: 52px; line-height: 1; letter-spacing: -0.03em; }
.principles .pr h4 { font-family: var(--f-display); font-weight: 500; font-size: 24px; margin: 0 0 12px; line-height: 1.2; }
.principles .pr p { font-size: 14px; line-height: 1.65; opacity: 0.75; margin: 0; }

/* ── Leadership ───────────────────────────────────── */
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader { background: var(--c-paper); overflow: hidden; }
.leader .img-ph, .leader .img-real { aspect-ratio: 4/5; }
.leader .body { padding: 28px; }
.leader h3 { font-family: var(--f-display); font-weight: 500; font-size: 22px; margin: 0; line-height: 1.2; }
.leader .role { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-top: 6px; }
.leader .rule { width: 40px; height: 1px; background: var(--c-gold); margin: 18px 0; }
.leader p { font-size: 13px; line-height: 1.65; opacity: 0.75; margin: 0; }
.leader .link { margin-top: 22px; }

/* ── Contact: 3 entry cards ───────────────────────── */
.entry-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.entry-card {
  padding: 44px; min-height: 380px;
  display: flex; flex-direction: column;
  border-top: 3px solid var(--c-gold);
  position: relative; overflow: hidden;
  transition: transform .3s;
}
.entry-card:hover { transform: translateY(-4px); }
.entry-card .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 24px; }
.entry-card h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(28px, 3vw, 36px); margin: 0 0 16px; line-height: 1.15; }
.entry-card p { font-size: 14px; line-height: 1.65; opacity: 0.7; margin: 0 0 32px; }
.entry-card .btn { align-self: flex-start; margin-top: auto; }
.entry-employers { background: var(--c-navy-deep); color: #fff; }
.entry-employers h3 { color: #fff; }
.entry-employers p { color: #cbd5e6; opacity: 1; }
.entry-employers::after {
  content: '01'; position: absolute; bottom: -60px; right: -20px;
  font-family: var(--f-display); font-weight: 800;
  font-size: 240px; color: rgba(93,163,240,0.10); line-height: 1; pointer-events: none;
  letter-spacing: -0.06em;
}
.entry-candidates { background: var(--c-paper-2); }
.entry-whatsapp { background: var(--c-paper); border: 1.5px solid var(--c-ink); border-top: 3px solid var(--c-gold); }

/* ── Contact: form layout ─────────────────────────── */
.brief-section { padding: clamp(80px, 9vw, 120px) 0; background: var(--c-paper-2); }
.brief-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.brief-side h2 { margin-bottom: 24px; }
.brief-side .rule { background: var(--c-gold); height: 1px; margin: 28px 0 24px; }
.brief-side .channels { font-size: 14px; line-height: 1.95; }
.brief-side .channels .key { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.5; margin-right: 10px; }
.brief-form { background: var(--c-paper); padding: 48px; border-top: 2px solid var(--c-gold); }

/* ── Contact: why connect dark ────────────────────── */
.why-connect { background: var(--c-navy-deep); color: #fff; padding: clamp(80px, 10vw, 120px) 0; }
.why-connect h2 { color: #fff; max-width: 24ch; margin: 18px 0 48px; }
.why-connect .grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--c-gold-dim); }
.why-connect .item { background: var(--c-navy-deep); padding: 36px 24px; min-height: 200px; }
.why-connect .item .num { font-family: var(--f-display); font-weight: 800; color: var(--c-blue-sky); font-size: 36px; line-height: 1; margin-bottom: 18px; letter-spacing: -0.03em; }
.why-connect .item h4 { font-family: var(--f-display); font-weight: 500; color: #fff; font-size: 17px; line-height: 1.3; margin: 0; }

/* ── Contact: visit split ─────────────────────────── */
.visit-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
.visit-split .text { padding: clamp(40px, 6vw, 64px) var(--pad-x); display: flex; flex-direction: column; justify-content: center; }
.visit-split .text .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 18px; }
.visit-split .text h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); margin: 0 0 18px; line-height: 1.2; }
.visit-split .text p { font-size: 15px; line-height: 1.7; opacity: 0.75; margin: 0 0 24px; }
.visit-split .text .row { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-split .map {
  background: linear-gradient(135deg, #1a3a6b 0%, var(--c-navy-deep) 100%);
  position: relative; overflow: hidden;
}
.visit-split .map::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 60% 50%, var(--c-gold) 0%, transparent 1.5%),
    repeating-linear-gradient(0deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 61px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,0.04) 60px 61px);
}
.visit-split .map::after {
  content: 'DELHI NCR';
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.32em; color: var(--c-gold-soft);
}

/* ── Mobile sticky CTA ───────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--c-navy-deep); color: #fff;
  padding: 12px 16px;
  border-top: 2px solid var(--c-gold);
  z-index: 90;
  gap: 10px; align-items: center;
}
.sticky-cta .text { flex: 1; }
.sticky-cta .text .lbl { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); }
.sticky-cta .text .sub { font-size: 11px; color: #cbd5e6; margin-top: 2px; }
.sticky-cta .actions { display: flex; gap: 8px; }
.sticky-cta .btn { padding: 10px 14px; font-size: 10px; letter-spacing: 0.1em; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .utility-bar .container { font-size: 9px; }
  .practices .grid,
  .cases,
  .insights .grid,
  .triptych-dark .grid,
  .leaders { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .functions { grid-template-columns: repeat(2, 1fr); }
  .timeline-dark .grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .timeline-dark .line { display: none; }
  .why-connect .grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer .grid { grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
  .site-footer .brand-block { grid-column: 1 / -1; margin-bottom: 8px; }
  .mega-menu .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .main-nav, .utility-bar { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-cta .btn-primary { display: none; }
  .practices .grid,
  .cases,
  .insights .grid,
  .triptych-dark .grid,
  .leaders,
  .industries-grid,
  .functions,
  .timeline-dark .grid,
  .why-connect .grid,
  .entry-cards,
  .mv-split,
  .principles,
  .form { grid-template-columns: 1fr; }
  .principles .pr:nth-child(odd) { border-right: none; }
  .principles .pr:nth-child(even) { padding-left: 0; }
  .principles .pr { padding-right: 0; gap: 18px; }
  .page-hero .grid-split { grid-template-columns: 1fr; gap: 32px; }
  .roster-group { grid-template-columns: 1fr; gap: 28px; }
  .roster-group .logos { grid-template-columns: repeat(2, 1fr); }
  .testimonial .grid { grid-template-columns: 1fr; }
  .testimonial .img-real { aspect-ratio: 4/3; }
  .brief-grid { grid-template-columns: 1fr; gap: 40px; }
  .brief-form { padding: 32px 24px; }
  .visit-split { grid-template-columns: 1fr; }
  .visit-split .map { aspect-ratio: 4/3; }
  .stats-band .grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat { border-right: none; border-bottom: 1px solid var(--c-gold-dim); }
  .stats-band .stat:nth-child(even) { border-right: none; }
  .stats-band .stat:nth-child(odd) { border-right: 1px solid var(--c-gold-dim); }
  .stats-band .stat:nth-last-child(-n+2) { border-bottom: none; }
  .timeline-list { padding-left: 76px; }
  .timeline-list .axis { left: 26px; }
  .timeline-list .year-dot { left: -68px; width: 56px; height: 56px; font-size: 13px; }
  .timeline-list .content { grid-template-columns: 1fr; gap: 12px; }
  .practices .head { flex-direction: column; align-items: flex-start; }
  .specimen .row { grid-template-columns: 50px 1fr 56px; gap: 16px; padding: 22px 0; }
  .specimen .row .desc, .specimen .row .time { display: none; }
  .specimen .row.head .desc, .specimen .row.head .time { display: none; }
  .specimen .row.head { grid-template-columns: 50px 1fr 56px; }
  .specimen .roman { font-size: 22px; }
  .specimen .name { font-size: 19px; }
  .practices .head .link { display: none; }
  .practices, .industries-section { padding: 56px 0; }
  body { padding-bottom: 68px; }
  .sticky-cta { display: flex; }
  .hero { padding: 64px 0 80px; }
  .hero .cta-row .btn { flex: 1; justify-content: center; }
  .cta-dark .cta-row .btn { flex: 1; justify-content: center; min-width: 0; }
  .entry-card { min-height: auto; padding: 32px 24px; }
  .why-connect .item { min-height: auto; padding: 28px 22px; }
  .mv-card { padding: 36px 28px; min-height: auto; }
  .case-card .body { padding: 22px; }
  .timeline-dark .step { padding-left: 0; }
  .marquee { padding: 16px 0; }
  .pull-quote { padding: 64px 0; }
}

@media (max-width: 520px) {
  .hero .lede, .page-hero .lede { font-size: 15px; }
  .card { padding: 28px 24px; }
  .card .num { font-size: 44px; }
  .case-card .body { padding: 22px; }
  .roster-group .logos { grid-template-columns: 1fr 1fr; }
  .roster-group .logos .cell { padding: 18px 12px; min-height: 80px; font-size: 14px; }
  .insight h4 { font-size: 19px; }
  .btn { padding: 14px 20px; font-size: 11px; }
  .ind-card .bignum { font-size: 80px; }
}
