/* ============================================================
   Cybersecurity Group
   McKinsey / Big-4-Inspired Enterprise Design System
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:       #04111f;
  --navy-2:     #0c1f35;
  --navy-3:     #14304d;
  --blue:       #0e52b7;
  --blue-h:     #0940a0;
  --blue-lt:    #e8f1fb;
  --gold:       #c49a2a;
  --gold-lt:    #f9f1d8;

  /* Neutral */
  --white:      #ffffff;
  --off:        #f7f9fc;
  --lt:         #eef2f8;
  --border:     #e2e8f0;
  --border-md:  #cbd5e1;
  --border-dk:  #3a5068;

  /* Text */
  --t1:  #0f1b2d;
  --t2:  #334155;
  --t3:  #64748b;
  --t4:  #94a3b8;
  --tw:  #ffffff;
  --tw2: rgba(255,255,255,0.7);
  --tw3: rgba(255,255,255,0.4);

  /* Fonts */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizes */
  --nav-h:  76px;
  --r-xs:   2px;
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;

  /* Transitions */
  --t: all .25s cubic-bezier(.4,0,.2,1);

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--t1); background: var(--white); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Layout ──────────────────────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--wide  { max-width: 1440px; }
.container--tight { max-width: 960px; }

.section      { padding: 100px 0; }
.section--lg  { padding: 130px 0; }
.section--sm  { padding: 64px 0; }

.section--white  { background: var(--white); }
.section--off    { background: var(--off); }
.section--navy   { background: var(--navy); }
.section--navy2  { background: var(--navy-2); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.18;
  color: var(--t1);
}

.t-white h1,
.t-white h2,
.t-white h3,
.t-white h4 { color: var(--tw); }

/* Section label — small-caps eyebrow used throughout */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-label--white { color: var(--tw2); }
.section-label--white::before { background: var(--gold); }

.section-label--gold { color: var(--gold); }
.section-label--gold::before { background: var(--gold); }

/* Section headers */
.section-hdr { margin-bottom: 64px; }
.section-hdr--center { text-align: center; }
.section-hdr--center .section-label { justify-content: center; }

.section-hdr h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  max-width: 800px;
}

.section-hdr--center h2 { margin-left: auto; margin-right: auto; }

.section-hdr p {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--t3);
  line-height: 1.85;
  max-width: 600px;
}

.section-hdr--center p { margin-left: auto; margin-right: auto; }

/* Pull rule beneath headings — McKinsey style */
.rule { width: 48px; height: 3px; background: var(--gold); margin: 20px 0; }
.section-hdr--center .rule { margin: 20px auto; }
.t-white .rule { background: var(--gold); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--t);
  white-space: nowrap;
  position: relative;
}

/* Primary — solid blue */
.btn-primary {
  background: var(--blue);
  color: var(--tw);
  border: 1.5px solid var(--blue);
}
.btn-primary:hover {
  background: var(--blue-h);
  border-color: var(--blue-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14,82,183,.3);
}

/* Outline — dark on light sections */
.btn-outline {
  background: transparent;
  color: var(--t1);
  border: 1.5px solid var(--border-md);
}
.btn-outline:hover {
  border-color: var(--t1);
  background: var(--off);
}

/* Ghost — on dark sections */
.btn-ghost {
  background: transparent;
  color: var(--tw);
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost:hover {
  border-color: var(--tw);
  background: rgba(255,255,255,.07);
}

/* Arrow icon helper */
.btn-arrow { transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--lg { padding: 16px 36px; font-size: 0.95rem; }

/* ── Tags / Pills ───────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--t3);
  letter-spacing: 0.04em;
}

.tag--blue { background: var(--blue-lt); border-color: rgba(14,82,183,.2); color: var(--blue); }
.tag--gold { background: var(--gold-lt); border-color: rgba(196,154,42,.3); color: var(--gold); }

/* ── Scroll fade animations ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

.fade-in {
  opacity: 0;
  transition: opacity .7s ease;
}
.fade-in.visible { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: var(--t);
}

.nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav.scrolled .nav-link { color: var(--t2); }
.nav.scrolled .nav-link:hover { color: var(--t1); }
.nav.scrolled .nav-logo-name { color: var(--t1); }
.nav.scrolled .nav-logo-tag  { color: var(--t3); }

/* initial (on dark hero) */
.nav .nav-link { color: rgba(255,255,255,.82); }
.nav .nav-link:hover { color: var(--tw); }
.nav .nav-logo-name { color: var(--tw); }
.nav .nav-logo-tag  { color: var(--tw2); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text { line-height: 1.2; }

.nav-logo-name {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--t);
}

.nav-logo-tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--t);
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  margin-right: 24px;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: var(--r-sm);
  transition: var(--t);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* ── Dropdown menus ─────────────────────────────────────────── */
.nav-item {
  position: relative;
}

/* Suppress underline on items that have dropdowns — caret handles affordance */
.nav-item.has-dropdown > .nav-link::after { display: none; }

.nav-item.has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-item.has-dropdown > .nav-link::before {
  content: '';
  order: 2;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s;
  flex-shrink: 0;
  opacity: 0.6;
}

.nav-item.has-dropdown:hover > .nav-link::before,
.nav-item.has-dropdown:focus-within > .nav-link::before {
  transform: rotate(-135deg) translateY(-2px);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  padding: 8px;
  margin-top: 10px;       /* visual gap — bridged by ::after below */
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
}

.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Invisible bridge fills the margin-top gap so the cursor
   never leaves the hover area while moving toward the dropdown */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -12px;
  right: -12px;
  height: 14px;           /* must be >= margin-top on .nav-dropdown */
  display: none;
}
.nav-item.has-dropdown:hover::after { display: block; }

/* Small arrow pointer above dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.nav-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--t2);
  transition: var(--t);
  text-decoration: none;
}

.nav-dropdown-item:hover { background: var(--off); color: var(--t1); }
.nav-dropdown-item:hover .nav-dropdown-icon { color: var(--blue); }

.nav-dropdown-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-lt);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  color: var(--blue);
  transition: var(--t);
}

.nav-dropdown-icon svg { width: 15px; height: 15px; }

.nav-dropdown-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 2px;
}

.nav-dropdown-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--t3);
  line-height: 1.4;
}

.nav-dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 12px;
}

.nav-dropdown-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  transition: var(--t);
}

.nav-dropdown-all:hover { background: var(--blue-lt); }

/* ── Mobile drawer groups (accordion) ───────────────────────── */
.nav-drawer-group { display: flex; flex-direction: column; }

.nav-drawer-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--t2);
  border-radius: var(--r-sm);
  transition: var(--t);
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.nav-drawer-group-toggle:hover { background: var(--off); color: var(--t1); }

.nav-drawer-group-caret {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s;
  flex-shrink: 0;
}

.nav-drawer-group.open .nav-drawer-group-caret { transform: rotate(-135deg); }

.nav-drawer-sub {
  display: none;
  flex-direction: column;
  padding: 4px 0 8px 16px;
  gap: 2px;
}

.nav-drawer-sub-link {
  padding: 10px 14px;
  font-size: 0.9rem;
  color: var(--t3);
  border-radius: var(--r-sm);
  transition: var(--t);
  border-left: 2px solid var(--border);
}

.nav-drawer-sub-link:hover { color: var(--blue); background: var(--blue-lt); border-left-color: var(--blue); }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--tw);
  border-radius: 2px;
  transition: var(--t);
}
.nav.scrolled .nav-burger span { background: var(--t1); }

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--white);
  z-index: 99;
  padding: 32px;
  display: none;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer-link {
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--t2);
  border-radius: var(--r-sm);
  transition: var(--t);
}
.nav-drawer-link:hover { background: var(--off); color: var(--t1); }
.nav-drawer .btn-primary { margin-top: 16px; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Subtle geometric background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 60%, black, transparent);
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 65% 45%, rgba(14,82,183,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(196,154,42,.05) 0%, transparent 70%);
}

/* Hero layout */
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Hero left content */
.hero-left {}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  position: relative;
}

.hero-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(196,154,42,.4);
  animation: pulse-gold 2.5s ease-out infinite;
}

@keyframes pulse-gold {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-eyebrow-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tw2);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--tw);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--tw2);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-creds {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}

.hero-cred-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--tw3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.hero-cred-badge {
  padding: 5px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-sm);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--tw2);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* Hero right: metrics panel */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--t);
}

.hero-metric:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(196,154,42,.3);
}

.hero-metric-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(196,154,42,.12);
  border: 1px solid rgba(196,154,42,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.hero-metric-icon svg { width: 22px; height: 22px; }

.hero-metric-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--tw);
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

.hero-metric-lbl {
  font-size: 0.82rem;
  color: var(--tw2);
  font-weight: 500;
}

/* Hero visual (right column) */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-svg {
  width: 100%;
  max-width: 460px;
}

/* Floating service label tags */
.hero-vtag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}
.hero-vtag--tr { top: 8%;   right: 0;  border-color: rgba(196,154,42,0.35); color: #c49a2a; }
.hero-vtag--mr { top: 38%;  right: 0;  }
.hero-vtag--br { bottom: 8%; right: 0; border-color: rgba(196,154,42,0.35); color: #c49a2a; }
.hero-vtag--ml { top: 38%;  left: 0;   }

/* Ring spin animation */
@keyframes hero-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-ring-spin {
  animation: hero-ring-spin 40s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Node pulse animation */
@keyframes hero-node-pulse {
  0%, 100% { opacity: 0.85; }
  50%       { opacity: 0.30; }
}
@keyframes hero-node-pulse-slow {
  0%, 100% { opacity: 0.65; }
  50%       { opacity: 0.20; }
}
.hero-node-pulse      { animation: hero-node-pulse      3s ease-in-out infinite; }
.hero-node-pulse-slow { animation: hero-node-pulse-slow 5s ease-in-out infinite 1.5s; }

/* ══════════════════════════════════════════════════════════════
   CREDENTIALS STRIP
   ══════════════════════════════════════════════════════════════ */
.cred-strip {
  background: var(--navy-2);
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
  padding: 20px 0;
}

.cred-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cred-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.cred-item-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--tw);
  letter-spacing: 0.04em;
}

.cred-item-sub {
  font-size: 0.68rem;
  color: var(--tw3);
  letter-spacing: 0.04em;
}

.cred-sep {
  width: 1px;
  height: 28px;
  background: var(--border-dk);
}

/* ══════════════════════════════════════════════════════════════
   FIRM INTRO
   ══════════════════════════════════════════════════════════════ */
.firm-intro {}
.firm-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.firm-intro__left {}
.firm-intro__left h2 { font-size: clamp(1.9rem, 3vw, 2.8rem); letter-spacing: -.02em; margin-bottom: 24px; }
.firm-intro__left p  { font-size: 1rem; color: var(--t2); line-height: 1.9; margin-bottom: 20px; }
.firm-intro__left p:last-of-type { margin-bottom: 36px; }

.firm-intro__right {}

.firm-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.firm-stat {
  background: var(--white);
  padding: 32px 28px;
  transition: var(--t);
}

.firm-stat:hover { background: var(--off); }

.firm-stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  display: block;
}

.firm-stat-num span { font-size: 1.8rem; color: var(--gold); }

.firm-stat-lbl {
  font-size: 0.8rem;
  color: var(--t3);
  font-weight: 500;
  margin-top: 8px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   PRACTICE AREAS
   ══════════════════════════════════════════════════════════════ */
.practices {}

.practice-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.practice-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: start;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  transition: var(--t);
  cursor: default;
}

.practice-item:last-child { border-bottom: 1px solid var(--border); }

.practice-item:hover { background: var(--off); padding-left: 16px; padding-right: 16px; margin: 0 -16px; }

.practice-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 4px;
}

.practice-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.practice-body p {
  font-size: 0.92rem;
  color: var(--t3);
  line-height: 1.8;
  max-width: 580px;
}

.practice-body .practice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.practice-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  padding-top: 4px;
  white-space: nowrap;
  transition: var(--t);
}

.practice-link:hover { gap: 10px; }
.practice-link svg { width: 16px; height: 16px; }

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
   ══════════════════════════════════════════════════════════════ */
.stats-strip { background: var(--navy); }

.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 60px 0;
  text-align: center;
  border-right: 1px solid var(--border-dk);
  position: relative;
}

.stat-block:last-child { border-right: none; }

.stat-block-num {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--tw);
  line-height: 1;
  display: block;
}

.stat-block-gold { color: var(--gold); }

.stat-block-lbl {
  display: block;
  font-size: 0.82rem;
  color: var(--tw2);
  font-weight: 500;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════════
   APPROACH / PILLARS
   ══════════════════════════════════════════════════════════════ */
.approach {}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.approach-card {
  background: var(--white);
  padding: 44px 40px;
  transition: var(--t);
}

.approach-card:hover { background: var(--off); }

.approach-card-num {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  display: block;
}

.approach-card h3 { font-size: 1.15rem; margin-bottom: 12px; }

.approach-card p { font-size: 0.9rem; color: var(--t3); line-height: 1.85; }

/* ══════════════════════════════════════════════════════════════
   LEADERSHIP
   ══════════════════════════════════════════════════════════════ */
.leadership {}

.leadership-main {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

/* Photo frame */
.leader-photo-wrap {
  position: relative;
}

.leader-photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--lt);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.leader-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--t4);
  padding: 32px;
  text-align: center;
}

.leader-photo-placeholder svg { width: 64px; height: 64px; opacity: .35; }
.leader-photo-placeholder p   { font-size: 0.78rem; opacity: .6; font-style: italic; line-height: 1.5; }

.leader-photo-badge {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: var(--navy);
  color: var(--tw);
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

.leader-photo-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Leader info */
.leader-info {}

.leader-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.leader-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.leader-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
}

.leader-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--border-md); }

.leader-location {
  font-size: 0.85rem;
  color: var(--t3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.leader-bio {
  font-size: 0.97rem;
  color: var(--t2);
  line-height: 1.9;
  margin-bottom: 32px;
}

.leader-bio strong { color: var(--t1); font-weight: 600; }

.leader-credentials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.cred-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: var(--t);
}

.cred-row:hover { border-color: var(--border-md); }

.cred-row-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.cred-row-name {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--t1);
}

.cred-row-full { font-size: 0.75rem; color: var(--t3); }

.cred-row-issuer {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--t4);
  font-weight: 600;
  white-space: nowrap;
}

/* Advisory network callout */
.network-callout {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 24px 28px;
  margin-top: 48px;
}

.network-callout h4 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.network-callout p {
  font-size: 0.85rem;
  color: var(--t3);
  line-height: 1.8;
}

/* ══════════════════════════════════════════════════════════════
   CLIENT RESULTS
   ══════════════════════════════════════════════════════════════ */
.results { background: var(--navy-2); }

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-dk);
  border: 1px solid var(--border-dk);
  border-radius: var(--r-md);
  overflow: hidden;
}

.result-card {
  background: var(--navy-3);
  padding: 44px 36px;
  transition: var(--t);
}

.result-card:hover { background: rgba(255,255,255,.04); }

.result-industry {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.result-industry::before {
  content: '';
  width: 16px;
  height: 1.5px;
  background: var(--gold);
}

.result-card h3 {
  font-size: 1.05rem;
  color: var(--tw);
  margin-bottom: 14px;
  line-height: 1.4;
}

.result-card p {
  font-size: 0.85rem;
  color: var(--tw2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.result-metric {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  border-top: 1px solid var(--border-dk);
  padding-top: 20px;
}

.result-metric-lbl { display: block; font-size: 0.75rem; color: var(--tw3); font-family: var(--sans); font-weight: 500; margin-top: 4px; }

/* ══════════════════════════════════════════════════════════════
   INSIGHTS / PERSPECTIVES
   ══════════════════════════════════════════════════════════════ */
.insights {}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--t);
  background: var(--white);
}

.insight-card:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.insight-card-img {
  height: 180px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.insight-card-img-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.insight-card-img-num {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
  line-height: 1;
}

.insight-card-img-tag {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 1;
}

.insight-card-body { padding: 28px 28px 32px; }

.insight-card-cat {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.insight-card-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--t1);
  margin-bottom: 12px;
}

.insight-card-excerpt {
  font-size: 0.85rem;
  color: var(--t3);
  line-height: 1.8;
  margin-bottom: 20px;
}

.insight-card-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t);
}

.insight-card-link:hover { gap: 10px; }
.insight-card-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════════════════════════════
   INDUSTRIES
   ══════════════════════════════════════════════════════════════ */
.industries {}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.industry-item {
  background: var(--white);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: var(--t);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: default;
}

.industry-item:hover { background: var(--blue-lt); }

.industry-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: var(--lt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--t);
}

.industry-item:hover .industry-item-icon { background: var(--blue); }
.industry-item:hover .industry-item-icon svg { color: var(--white); }
.industry-item-icon svg { width: 20px; height: 20px; color: var(--t3); transition: var(--t); }

.industry-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--t1);
  font-family: var(--sans);
  line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════ */
.cta-band { background: var(--navy); }

.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--tw);
  letter-spacing: -0.02em;
}

.cta-band h2 em { font-style: normal; color: var(--gold); }

.cta-band p {
  font-size: 1rem;
  color: var(--tw2);
  margin-top: 12px;
  line-height: 1.75;
  max-width: 520px;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: flex-end;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════════════════════════ */
.contact-section {}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-left {}
.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.contact-left > p {
  font-size: 0.97rem;
  color: var(--t2);
  line-height: 1.9;
  margin-bottom: 40px;
}

.contact-methods { display: flex; flex-direction: column; gap: 0; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.contact-method:first-child { border-top: 1px solid var(--border); }

.contact-method-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--blue-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-method-icon svg { width: 18px; height: 18px; }

.contact-method-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--t4);
  margin-bottom: 3px;
}

.contact-method-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--t1);
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-md);
}

.form-card h3 {
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.form-card > p {
  font-size: 0.9rem;
  color: var(--t3);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  color: var(--t1);
  transition: var(--t);
  outline: none;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: var(--t4); }

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(14,82,183,.1);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

select option { background: var(--white); }

textarea { resize: vertical; min-height: 110px; }

.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #dc2626; background: #fff5f5; }

.form-error { font-size: 0.75rem; color: #dc2626; margin-top: 5px; display: none; }
.form-group.error .form-error { display: block; }

.form-group.ok input { border-color: #16a34a; }

.form-submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 0.95rem;
  border-radius: var(--r-sm);
  margin-top: 6px;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--t4);
  margin-top: 14px;
  text-align: center;
}

.form-privacy svg { width: 13px; height: 13px; flex-shrink: 0; }

/* Form success */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}

.form-success.visible { display: block; }

.form-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #16a34a;
}

.form-success-icon svg { width: 30px; height: 30px; }

.form-success h4 { font-size: 1.3rem; margin-bottom: 10px; }
.form-success p  { font-size: 0.9rem; color: var(--t3); line-height: 1.8; }

/* Form state: not configured */
.form-fallback {
  display: none;
  background: var(--gold-lt);
  border: 1px solid rgba(196,154,42,.35);
  border-radius: var(--r-sm);
  padding: 18px 20px;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--t2);
  line-height: 1.7;
}

.form-fallback.visible { display: block; }
.form-fallback strong { color: var(--t1); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer { background: var(--navy); }

.footer-main { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand > p {
  font-size: 0.87rem;
  color: var(--tw2);
  line-height: 1.8;
  margin: 20px 0 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tw2);
  transition: var(--t);
}

.footer-social-a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social-a svg { width: 16px; height: 16px; }

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tw3);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 0.86rem;
  color: var(--tw2);
  transition: var(--t);
}

.footer-link:hover { color: var(--tw); padding-left: 4px; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.8rem; color: var(--tw3); }

.footer-legal { display: flex; gap: 20px; }

.footer-legal-a {
  font-size: 0.8rem;
  color: var(--tw3);
  transition: var(--t);
}

.footer-legal-a:hover { color: var(--tw2); }

/* Toast */
.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  max-width: 380px;
  animation: slideUp .3s ease;
}

@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }

.toast--ok   { border-left: 3px solid #16a34a; }
.toast--err  { border-left: 3px solid #dc2626; }
.toast--info { border-left: 3px solid var(--blue); }

.toast-icon svg { width: 18px; height: 18px; }
.toast--ok   .toast-icon { color: #16a34a; }
.toast--err  .toast-icon { color: #dc2626; }
.toast--info .toast-icon { color: var(--blue); }

.toast-title { font-size: 0.85rem; font-weight: 700; color: var(--t1); }
.toast-msg   { font-size: 0.78rem; color: var(--t3); margin-top: 2px; }

/* Page header (inner pages) */
.page-hdr {
  padding: calc(var(--nav-h) + 72px) 0 72px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hdr::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 110%, rgba(14,82,183,.18) 0%, transparent 60%);
  pointer-events: none;
}

.page-hdr-content { position: relative; z-index: 1; }

.page-hdr h1 {
  color: var(--tw);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.page-hdr p {
  color: var(--tw2);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   ARTICLE / INSIGHT PAGES
   ══════════════════════════════════════════════════════════════ */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.article-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--gold); }
.article-breadcrumb svg { opacity: 0.4; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.article-meta-sep { opacity: 0.35; }

/* Article page section — more generous padding than default */
.article-section { padding: 72px 0 100px; }

/* Two-column layout: article + sidebar */
.article-layout {
  display: grid;
  grid-template-columns: minmax(auto, 680px) 260px;
  gap: 72px;
  align-items: start;
}

/* ── Article prose ── */
.article-body {
  /* Cap line length at ~68 characters for comfortable reading */
  max-width: 68ch;
}

/* Opening paragraph — larger, offset for visual entry point */
.article-lead {
  font-size: 1.15rem;
  line-height: 1.95;
  color: var(--t1);
  margin-bottom: 52px;
  border-left: 3px solid var(--gold);
  padding-left: 22px;
}

/* Section headings — clear visual breaks */
.article-body h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--t1);
  margin: 64px 0 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* Gap between h2 and the first paragraph after it */
.article-body h2 + p,
.article-body h2 + .article-callout,
.article-body h2 + .article-points {
  margin-top: 24px;
}

.article-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--t1);
  margin: 44px 0 14px;
  letter-spacing: 0.005em;
}

/* Body paragraphs — generous size, height, and spacing */
.article-body p {
  font-size: 1.06rem;
  line-height: 1.95;
  color: var(--t2);
  margin-bottom: 1.6em;
}

/* Callout box */
.article-callout {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 28px 30px;
  margin: 44px 0;
}
.article-callout--action { border-left-color: var(--blue); }
.article-callout-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.article-callout--action .article-callout-label { color: var(--blue); }
.article-callout p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--t2);
  margin-bottom: 14px;
}
.article-callout p:last-child { margin-bottom: 0; }

/* Numbered points */
.article-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 44px 0;
}
.article-point {
  display: flex;
  gap: 24px;
  padding: 28px 28px;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.article-point-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.6;
  min-width: 36px;
  padding-top: 2px;
  line-height: 1;
}
.article-point strong {
  display: block;
  font-size: 1rem;
  color: var(--t1);
  margin-bottom: 10px;
}
.article-point p {
  font-size: 0.96rem;
  color: var(--t2);
  margin-bottom: 0;
  line-height: 1.85;
}

/* Bulleted list */
.article-list {
  padding-left: 0;
  list-style: none;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.article-list li {
  padding-left: 22px;
  position: relative;
  font-size: 1.02rem;
  color: var(--t2);
  line-height: 1.8;
}
.article-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
}

/* Sidebar */
.article-sidebar { position: sticky; top: calc(var(--nav-h) + 32px); }
.article-sidebar-card {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
}
.article-sidebar-card .section-label { margin-bottom: 10px; }
.article-sidebar-card h4 { font-size: 1rem; margin-bottom: 10px; color: var(--t1); line-height: 1.4; }
.article-sidebar-card p { font-size: 0.88rem; color: var(--t3); line-height: 1.7; margin-bottom: 0; }

@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; order: -1; }
  .article-body { max-width: 100%; }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner          { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel          { display: none; }
  .firm-intro__inner   { grid-template-columns: 1fr; gap: 48px; }
  .leadership-main     { grid-template-columns: 1fr; }
  .leader-photo-wrap   { max-width: 360px; }
  .contact-inner       { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid         { grid-template-columns: 1fr 1fr; gap: 40px; }
  .insights-grid       { grid-template-columns: 1fr 1fr; }
  .industries-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner   { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(2) { border-right: none; }
  .results-grid        { grid-template-columns: 1fr; }
  .cta-band-inner      { grid-template-columns: 1fr; }
  .cta-band-actions    { flex-direction: row; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .nav-links, .nav-cta-btn { display: none; }
  .nav-burger { display: flex; }
  .practice-item { grid-template-columns: 44px 1fr; }
  .practice-link { display: none; }
  .approach-grid { grid-template-columns: 1fr; }
  .firm-stat-grid { grid-template-columns: 1fr 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .hero-inner { padding: 56px 18px 72px; gap: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-desc { font-size: 1rem; }
  .leader-photo-wrap { max-width: 100%; }
  .leader-bio { font-size: 0.95rem; line-height: 1.8; }
  .cred-row { flex-wrap: wrap; gap: 8px; padding: 12px 14px; }
  .cred-row-issuer { margin-left: 0; }
  .section-hdr h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .network-callout { padding: 24px 20px; }
  .cta-band-actions { flex-direction: column; align-items: stretch; }
  .cta-band-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .industries-grid  { grid-template-columns: 1fr; }
  .firm-stat-grid   { grid-template-columns: 1fr; }
  .stats-strip-inner{ grid-template-columns: 1fr; }
  .stat-block       { border-right: none; border-bottom: 1px solid var(--border-dk); }
  .hero-inner       { padding: 48px 16px 64px; }
  .hero-eyebrow     { margin-bottom: 20px; }
  .section          { padding: 52px 0; }
  .container        { padding: 0 16px; }
  .form-card        { padding: 24px 16px; }
  .leader-photo-wrap { max-width: 280px; margin: 0 auto; }
  .nav-logo-name    { font-size: 0.9rem; }
  .nav-logo-tag     { font-size: 0.65rem; }
}
