/* ------------------------------------------------------------------
   Additions only. The original stylesheet is untouched and still owns
   the layout, type scale and colour. Everything here is either a
   component the original never had (team profiles, client sectors) or
   a small nav variant, written in the same visual language:
   1px --stone rules, crimson 12px/700 numerals, serif headings.
   ------------------------------------------------------------------ */

/* ---------- Management team ---------- */
.team-lead-section { padding-bottom: clamp(48px, 6vw, 80px); }

.team-lead {
  display: grid;
  grid-template-columns: minmax(260px, 4fr) minmax(300px, 7fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: start;
}

.team-photo {
  position: relative;
  margin: 0;
  background: var(--ink);
  overflow: hidden;
}
.team-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}
.team-index {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  background: #19151699;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 6px 11px;
}

.team-body h2 { font-size: clamp(30px, 3.4vw, 46px); margin: 0 0 10px; }
.team-body h3 {
  font-family: var(--font-serif);
  font-weight: 450;
  letter-spacing: -.03em;
  line-height: 1.05;
  font-size: clamp(23px, 2vw, 29px);
  margin: 0 0 8px;
}
.team-role {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.team-body p { color: var(--secondary); line-height: 1.7; margin: 0 0 16px; }
.team-body > p:last-of-type { margin-bottom: 0; }

.team-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.team-focus li {
  border: 1px solid var(--stone);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary);
  background: var(--white);
}

.team-creds {
  border-top: 1px solid var(--stone);
  margin-top: 22px;
  padding-top: 16px;
  color: var(--crimson) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.team-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  border-top: 1px solid var(--stone);
  margin-top: 28px;
}
.team-meta-item { padding: 20px 24px 20px 0; }
.team-meta-item span {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  margin-bottom: 6px;
}
.team-meta-item p { font-size: 13px; color: var(--secondary); margin: 0; }

/* Consultation partners */
.team-profiles { border-top: 1px solid var(--stone); }
.team-profile {
  display: grid;
  grid-template-columns: minmax(200px, 3fr) minmax(300px, 8fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(34px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--stone);
  align-items: start;
}
.team-profile .team-photo { max-width: 320px; }

/* Compact cards (home preview) */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 36px);
  border-top: 1px solid var(--stone);
  padding-top: clamp(32px, 4vw, 48px);
}
.team-card a { display: block; color: inherit; text-decoration: none; }
.team-card figure { margin: 0 0 18px; background: var(--ink); overflow: hidden; }
.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.team-card a:hover img { transform: scale(1.03); }
.team-card h3 {
  font-family: var(--font-serif);
  font-weight: 450;
  font-size: 21px;
  letter-spacing: -.025em;
  margin: 0 0 6px;
}
.team-card a:hover h3 { color: var(--crimson); }
.team-card .team-role { margin: 0; }
.team-preview .button-secondary { margin-top: clamp(36px, 4vw, 56px); }

/* ---------- Client sectors ---------- */
.client-sectors { border-top: 1px solid var(--ink); }
.client-sector { border-bottom: 1px solid var(--stone); padding: clamp(26px, 3vw, 40px) 0; }
.client-sector-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}
.client-sector-head h3 {
  font-family: var(--font-serif);
  font-weight: 450;
  letter-spacing: -.03em;
  font-size: clamp(21px, 2vw, 29px);
  margin: 0;
}
.client-sector-head span {
  color: var(--crimson);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  flex: none;
}
.client-list {
  columns: 3;
  column-gap: clamp(24px, 3vw, 48px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.client-list li {
  break-inside: avoid;
  padding: 7px 0 7px 16px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: var(--secondary);
}
.client-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 1px;
  background: var(--crimson);
}

/* ---------- Nav: compact About mega menu ---------- */
.mega-menu-compact .mega-menu-inner { grid-template-columns: repeat(3, 1fr); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .client-list { columns: 2; }
}
@media (max-width: 980px) {
  .team-lead,
  .team-profile { grid-template-columns: 1fr; }
  .team-lead .team-photo,
  .team-profile .team-photo { max-width: 340px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  /* the drawer stacks nav items; keep the About/Services triggers full-width
     like the original .primary-nav > .nav-link rows */
  .primary-nav .nav-expertise { width: 100%; }
}
@media (max-width: 680px) {
  .client-list { columns: 1; }
  .team-grid { grid-template-columns: 1fr; max-width: 340px; }
  .team-meta { grid-template-columns: 1fr; }
}
