/**
 * WSC & Company theme CSS (v7)
 * Kept in sync with the single-file prototype (build_html.py).
 */

:root {
  --blue: #00539C;
  --blue-dark: #003B6F;
  --blue-deep: #012A50;
  --blue-mid: #2D7BC4;
  --blue-light: #E5EEF6;
  --blue-soft: #F2F7FB;
  --grey: #F5F7FA;
  --grey-2: #E7EBF0;
  --ink: #1B2C42;
  --mute: #5E6D82;
  --white: #FFFFFF;
  --line: transparent;
}
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 400; letter-spacing: -0.015em; margin: 0; color: var(--blue-deep); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 1.05; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; }
h3 { font-size: 1.375rem; line-height: 1.25; }
p { margin: 0 0 1.1em; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.narrow { max-width: 840px; margin: 0 auto; padding: 0 32px; }

/* ===== Thin utility ribbon (prototype notice + conference/investor access) ===== */
.ribbon {
  background: var(--blue-deep); color: #DCE7F3;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.ribbon-inner {
  display: flex; align-items: center; justify-content: flex-end;
  padding: 7px 0; gap: 16px;
}
.ribbon-left { color: rgba(220,231,243,0.75); }
.ribbon-left strong { color: #9FC6EB; font-weight: 600; }
.ribbon-right { display: inline-flex; align-items: center; gap: 14px; }
.ribbon-link {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #DCE7F3; text-decoration: none;
  transition: color .15s;
}
.ribbon-link:hover { color: var(--white); }
.ribbon-sep { color: rgba(220,231,243,0.4); }
@media (max-width: 720px) {
  .ribbon-inner { flex-direction: column; align-items: flex-start; gap: 6px; padding: 8px 0; }
  .ribbon-left { font-size: 0.68rem; }
}

/* ===== Nav ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: var(--blue-deep);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif; font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand img { height: 56px; width: auto; display: block; }
.foot-brand .brand { background: var(--blue-deep); padding: 8px 14px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; padding: 0; margin: 0; }
.nav-link {
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
  cursor: pointer; background: none; border-top: 0; border-left: 0; border-right: 0; font-family: inherit;
  display: inline-block;
}
.nav-link:hover { color: var(--white); border-bottom-color: rgba(255,255,255,0.6); }
.nav-link.active, .current-menu-item > .nav-link { color: var(--white); border-bottom-color: var(--white); }
.nav-cta {
  background: var(--blue); color: var(--white);
  padding: 10px 20px; border-radius: 999px; font-size: 0.85rem; font-weight: 500;
  border: none; cursor: pointer; font-family: inherit;
  transition: background .2s, transform .1s;
}
.nav-cta:hover { background: var(--blue-dark); transform: translateY(-1px); }
.menu-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-soft) 100%);
  /* border removed for seamless hero->stats flow */
}
.hero-inner { display: grid; gap: 48px; }
.hero-eyebrow {
  font-size: 0.88rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
}
.hero-head {
  margin-top: 18px;
  font-family: 'Playfair Display', serif; font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.02;
  color: var(--blue-deep);
}
.hero-head em { font-style: italic; font-weight: 400; color: var(--blue-mid); }
.hero-sub { margin-top: 28px; max-width: 640px; font-size: 1.125rem; color: var(--mute); }

/* ===== Stats ===== */
.stats-section { padding: 90px 0; background: var(--blue-soft); text-align: center; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat { text-align: left; border-left: 2px solid var(--blue); padding-left: 20px; }
.stat:last-child { border-right: 2px solid var(--blue); padding-right: 20px; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 400;
  color: var(--blue-deep); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
}

/* ===== Firm section ===== */
.firm-section { padding: 110px 0; background: var(--white); }
.firm-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.firm-eyebrow {
  font-size: 0.88rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
}
.firm-head { font-size: clamp(1.9rem, 3.5vw, 2.75rem); color: var(--blue-deep); line-height: 1.15; margin-top: 16px; }
.firm-body { font-size: 1.05rem; color: var(--ink); }
.firm-body p { margin-bottom: 1.4em; }

/* ===== Industries / Sectors ===== */
.sectors-section { padding: 100px 0; background: var(--blue-soft); border-top: 1px solid var(--line); }
.sectors-eyebrow {
  font-size: 0.88rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 600;
}
.sectors-head { font-size: clamp(1.9rem, 3.5vw, 2.75rem); color: var(--blue-deep); line-height: 1.15; margin-top: 14px; }
.sectors-head em { font-style: italic; font-weight: 500; color: var(--blue); }
.sectors-sub { color: var(--mute); margin-top: 16px; max-width: 620px; font-size: 1.05rem; }
 


.sector-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--blue); }

/* ===== Voices (operating partner testimonials) ===== */
.voices-section { padding: 72px 0 48px; background: var(--white); color: var(--ink); }
.voices-header { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: end; margin-bottom: 32px; }
.voices-eyebrow {
  font-size: 0.88rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: #9FC6EB; font-weight: 600;
}
.voices-head { margin-top: 12px; color: var(--blue-deep); font-size: clamp(1.9rem, 3.5vw, 2.75rem); line-height: 1.15; max-width: 640px; }
.voices-head em { font-style: italic; font-weight: 500; color: var(--blue); }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.voice-card {
  border: 1px solid rgba(255,255,255,0.16);
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border-radius: 4px;
  transition: background .3s, border-color .3s, transform .3s;
  display: flex; flex-direction: column; gap: 8px;
}
.voice-card:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-color: rgba(255,255,255,0.3); transform: translateY(-2px);
}
.voice-mark { font-family: 'Playfair Display', serif; font-style: italic; font-size: 3rem; line-height: 1; color: var(--blue-mid); opacity: 1; margin-bottom: -4px; }
.voice-text { font-family: 'Playfair Display', serif; font-size: 1.18rem; line-height: 1.5; color: var(--ink); font-style: italic; font-weight: 400; margin: 0; flex: 1; }
.voice-attr { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); font-weight: 500; }
.voice-role { color: var(--ink); margin-bottom: 4px; }
.voice-detail { color: var(--mute); }

/* ===== Portfolio band (stats + ticker) ===== */
.portfolio-band {
  padding: 100px 0 0;
  
  border-top: 1px solid var(--line);
  overflow: hidden;
 background: var(--white); }
.portfolio-band-eyebrow {
  font-size: 0.88rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; text-align: center;
}
.portfolio-band-head { text-align: center; color: var(--blue-deep); margin-top: 12px; font-size: clamp(1.75rem, 3vw, 2.4rem); }
.portfolio-band-sub { text-align: center; color: var(--mute); margin-top: 14px; max-width: 560px; margin-left: auto; margin-right: auto; }
.stats-inline {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  padding-bottom: 72px;
}
.stat-inline { text-align: left; border-left: 2px solid var(--blue); padding-left: 20px; }
.stat-inline-num { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; color: var(--blue-deep); line-height: 1; margin-bottom: 8px; }
.stat-inline-label { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); font-weight: 500; }

/* Logo ticker */
.logo-ticker {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 28px 0;
  position: relative; width: 100%;
}
.logo-ticker::before, .logo-ticker::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.logo-ticker::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.logo-ticker::after  { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }
.logo-ticker-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: ticker-scroll 180s linear infinite;
}
.logo-ticker:hover .logo-ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-ticker-item { flex: 0 0 auto; height: 64px; width: 150px; display: flex; align-items: center; justify-content: center; }
.logo-ticker-item img {
  max-height: 100%; max-width: 100%;
  width: auto; height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity .3s;
}
.logo-ticker-item:hover img { opacity: 1; }

/* ===== Portfolio page ===== */
.pf-hero { padding: 90px 0 36px; background: var(--blue-soft); border-bottom: 1px solid var(--line); }
.pf-hero h1 { color: var(--blue-deep); }
.pf-hero .sub { color: var(--mute); margin-top: 20px; max-width: 620px; font-size: 1.1rem; }

.pf-filter {
  padding: 10px 20px; border-radius: 999px;
  background: transparent; color: var(--mute);
  border: 1px solid rgba(0, 59, 111, 0.18);
  font-size: 0.82rem; cursor: pointer; font-family: inherit; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.pf-filter:hover { color: var(--blue); border-color: var(--blue); }
.pf-filter.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.pf-subfilters {
  display: flex; gap: 4px; flex-wrap: wrap;
  padding: 14px 0 4px;
  align-items: center;
 display: none; }
.pf-subfilters[hidden] { display: none; }
.pf-subfilters::before {
  content: "Status"; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute); margin-right: 10px;
}
.pf-subfilter {
  padding: 6px 14px; border-radius: 999px;
  background: transparent; color: var(--mute);
  border: 1px solid rgba(0, 59, 111, 0.18);
  font-size: 0.76rem; cursor: pointer; font-family: inherit; font-weight: 500;
  transition: background .2s, color .2s, border-color .2s;
}
.pf-subfilter:hover { color: var(--blue); border-color: var(--blue); }
.pf-subfilter.active { background: var(--blue-soft); color: var(--blue-deep); border-color: var(--blue-mid); }
.pf-grid, .portfolio-grid {
  padding: 40px 0 100px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  
 overflow: hidden;  border: 1px solid rgba(0,59,111,0.18); border-top: none;}
.portfolio-card { 
  background: var(--white);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 16px; align-items: stretch;
  transition: background .3s;
  text-decoration: none; color: inherit;
    border-right: 1px solid rgba(0,59,111,0.12); border-bottom: 1px solid rgba(0,59,111,0.12); }
.portfolio-card:hover { background: var(--blue-light); }
a.portfolio-card { cursor: pointer; }
.portfolio-logo-wrap {
  aspect-ratio: 3 / 2;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.portfolio-logo img { mix-blend-mode: multiply; }

.portfolio-logo-wrap img,
.portfolio-card > img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  opacity: 0.92;
  transition: opacity .35s;
}
.portfolio-card:hover .portfolio-logo-wrap .pf-logo,
.portfolio-card:hover > img { opacity: 1; }

/* Entrepreneur hover-reveal headshot (v8). Stock placeholder until a photo is
   uploaded in WP admin â Portfolio â Company Details â Entrepreneur Headshot. */
.portfolio-card[data-group="entrepreneur"] .pf-headshot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  max-width: none; max-height: none;
  object-fit: cover; object-position: center top;
  filter: none;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
  border-radius: 4px;
}
.portfolio-card[data-group="entrepreneur"]:hover .pf-headshot { opacity: 1; }
.portfolio-card[data-group="entrepreneur"]:hover .pf-logo { opacity: 0; }
.portfolio-meta { display: flex; flex-direction: column; gap: 4px; text-align: center; }
.portfolio-name, .pf-name { font-family: 'Playfair Display', serif; color: var(--blue-deep); font-size: 0.98rem; font-weight: 400; text-align: center; display: block; }
.portfolio-cat { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mute); font-weight: 500; }

/* ===== Why WSC page ===== */
.why-hero { padding: 90px 0 40px; background: var(--blue-soft); border-bottom: 1px solid var(--line); }
.why-hero h1 { color: var(--blue-deep); max-width: 800px; }
.why-hero .sub { color: var(--mute); margin-top: 20px; max-width: 600px; font-size: 1.1rem; }
.why-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--line);
  margin-top: 56px;
}
.why-tab {
  padding: 16px 28px; cursor: pointer;
  font-size: 0.88rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mute); font-weight: 500;
  border: none; background: none; font-family: inherit;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.why-tab:hover { color: var(--blue); }
.why-tab.active { color: var(--blue-deep); border-bottom-color: var(--blue); }
.why-content { padding: 80px 0; }
.why-panel { display: none; }
.why-panel.active { display: block; }
.why-panel ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 36px; }
.why-panel li {
  padding-left: 32px;
  position: relative;
  font-size: 1.05rem; color: var(--ink); max-width: 780px;
}
.why-panel li::before {
  content: ""; position: absolute; left: 0; top: 14px;
  width: 16px; height: 2px; background: var(--blue);
}

/* ===== Team page ===== */
.team-hero { padding: 90px 0 40px; background: var(--blue-soft); border-bottom: 1px solid var(--line); }
.team-hero h1 { color: var(--blue-deep); }
.team-hero .sub { color: var(--mute); margin-top: 20px; max-width: 580px; font-size: 1.1rem; }
.team-grid {
  padding: 80px 0 100px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px 48px;
}
.team-card {
  all: unset;
  cursor: pointer;
  text-align: center;
  display: block;
  padding: 8px;
  border-radius: 12px;
  transition: background .2s, transform .25s;
}
.team-card:hover { background: var(--blue-soft); transform: translateY(-3px); }
.team-card:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.team-photo {
  width: 220px; height: 220px; border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: var(--white);
  position: relative;
  border: 1px solid rgba(0, 59, 111, 0.18);
  box-shadow: 0 2px 10px rgba(0, 59, 111, 0.06);
}
.team-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transform: scale(1.05);
  transition: transform .5s;
  display: block;
}
.team-card:hover .team-photo img { transform: scale(1.1); }
.team-card--amy .team-photo { background: #fff; }
.team-name { font-size: 1.5rem; color: var(--blue-deep); margin: 0 0 4px; font-family: 'Playfair Display', serif; font-weight: 400; }
.team-title { color: var(--mute); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin: 0 0 10px; }
.team-more { font-size: 0.78rem; color: var(--blue); font-weight: 500; letter-spacing: 0.02em; }

/* ===== Bio modal ===== */
.bio-overlay {
  position: fixed; inset: 0;
  background: rgba(1, 42, 80, 0.6);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.bio-overlay.open { display: flex; }
.bio-modal {
  background: var(--white);
  max-width: 820px; width: 100%;
  max-height: 88vh;
  border-radius: 10px;
  overflow: hidden;
  display: grid; grid-template-columns: 260px 1fr;
  box-shadow: 0 30px 80px rgba(1, 42, 80, 0.4);
}
.bio-photo-col { background: var(--blue-soft); position: relative; overflow-y: auto; }
.bio-photo {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  margin: 32px auto 16px;
  max-width: 180px;
  border: 1px solid rgba(0, 59, 111, 0.18);
  position: relative;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: scale(1.05); }
.bio-photo--amy { background: #fff; }
.bio-photo-meta { text-align: center; padding: 0 20px 28px; }
.bio-photo-meta .bio-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--blue-deep); margin-bottom: 4px; }
.bio-photo-meta .bio-title { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mute); font-weight: 500; }
.bio-body-col { padding: 40px 44px 36px; overflow-y: auto; }
.bio-lead { color: var(--blue); font-weight: 500; font-size: 1.02rem; line-height: 1.55; margin-bottom: 20px; }
.bio-paras p { color: var(--ink); font-size: 0.98rem; line-height: 1.65; margin-bottom: 1em; }
.bio-close {
  position: absolute; top: 16px; right: 20px;
  background: var(--white); border: 1px solid rgba(0, 59, 111, 0.18);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue-deep); line-height: 1;
  transition: background .2s;
}
.bio-close:hover { background: var(--blue-light); }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  font-family: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s;
  border: 1px solid transparent;
  margin-right: 10px;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--blue-deep); border-color: var(--line); }
.btn-ghost:hover { background: var(--blue-soft); border-color: var(--blue); color: var(--blue); }

/* ===== Footer ===== */
footer {
  background: var(--grey);
  color: var(--ink);
  padding: 72px 0 32px;
  border-top: 1px solid var(--line);
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-brand .brand { margin-bottom: 18px; color: var(--blue-deep); }
.foot-brand .brand img { height: 44px; }
.foot-tag { color: var(--mute); max-width: 320px; }
.foot-title {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-deep); font-weight: 600; margin-bottom: 16px;
}
.foot-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-list a { color: var(--mute); font-size: 0.92rem; cursor: pointer; }
.foot-list a:hover { color: var(--blue); }
.foot-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--mute);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .stats-inline { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  voices-grid { grid-template-columns: 1fr; gap: 16px; }
  voices-header { grid-template-columns: 1fr; gap: 16px; }
  .firm-inner { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .team-photo { width: 180px; height: 180px; }
  .pf-grid, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .bio-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .bio-photo-col { padding: 24px 0 0; }
  .bio-photo { max-width: 140px; margin-top: 8px; }
  .bio-body-col { padding: 24px 28px 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--blue-deep); flex-direction: column; padding: 20px 32px; border-bottom: 1px solid rgba(255,255,255,0.08); gap: 16px; align-items: flex-start; }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; background: none; border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.9); padding: 8px 14px; border-radius: 999px; cursor: pointer; font-family: inherit; font-size: 0.85rem; }
  .brand img { height: 44px; }
  h1 { font-size: 2.2rem; }
  .container, .narrow { padding: 0 20px; }
}

/* ===== CTA Band â "Let's start the conversation" ===== */
.cta-band {
  background: var(--blue-deep);
  padding: 100px 0;
  text-align: center;
}
.cta-inner { max-width: 680px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-mid); font-weight: 600; margin-bottom: 20px;
}
.cta-head {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-head em { font-style: italic; color: #9FC6EB; }
.cta-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-email {
  display: inline-block;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 2px solid var(--blue-mid);
  padding-bottom: 3px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.cta-email:hover { border-color: var(--white); color: #9FC6EB; }

/* ===== Conference page ===== */
.conf-hero {
  padding: 72px 0 60px;
  background: var(--blue-soft);
  border-bottom: 1px solid var(--line);
}
.conf-hero-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.conf-hero-left { flex: 1; min-width: 0; }
.conf-hero-right { flex-shrink: 0; padding-top: 4px; }
.conf-eyebrow {
  font-size: 0.88rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue); font-weight: 600; margin-bottom: 16px;
}
.conf-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--blue-deep);
  line-height: 1.15;
  margin-bottom: 20px;
}
.conf-row {
  color: var(--mute);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.conf-download-btn {
  display: inline-block;
  background: var(--blue-deep);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s, transform .15s;
}
.conf-download-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
.conf-pdf-section {
  padding: 60px 0 80px;
  background: var(--grey);
}
.conf-pdf-panel {
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 4px 24px rgba(0,42,80,.10);
  overflow: hidden;
}
.conf-pdf-frame {
  width: 100%;
  height: 880px;
  border: none;
  display: block;
}
@media (max-width: 720px) {
  .conf-hero-inner { flex-direction: column; }
  .conf-pdf-frame { height: 560px; }
}

/* sectors-footnote removed */




/* Portfolio grid unified border */
.pf-filters { border: 1px solid rgba(0,59,111,0.18) !important; border-bottom: none !important; padding: 16px 24px !important; background: #fff; margin: 0; }
.pf-subfilters { border-left: 1px solid rgba(0,59,111,0.18) !important; border-right: 1px solid rgba(0,59,111,0.18) !important; padding: 8px 24px; background: #fff; margin: 0; display: none; }
.pf-subfilters:not([hidden]) { display: flex; }
.pf-subfilters[hidden] { display: none !important; }
.portfolio-grid { border: 1px solid rgba(0,59,111,0.18) !important; border-top: none !important; overflow: hidden; }
.portfolio-card { border-right: 1px solid rgba(0,59,111,0.12); border-bottom: 1px solid rgba(0,59,111,0.12); border-top: none; border-left: none; background: #fff; }

/* Industries / Sector pills — bullet list, 3 per row */
/* ===== Focus Criteria Grid (Where We Focus redesign) ===== */
.focus-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 2px solid var(--blue);
}
.focus-criterion {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.focus-criterion:last-child { border-right: none; }
.focus-metric {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue); font-weight: 500; margin-bottom: 10px;
}
.focus-title {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: 1.25rem; color: var(--blue-deep); line-height: 1.25;
  margin: 0 0 12px;
}
.focus-desc {
  font-size: 0.95rem; color: var(--mute); line-height: 1.65; margin: 0;
}
@media (max-width: 960px) {
  .focus-criteria-grid { grid-template-columns: 1fr; }
  .focus-criterion { border-right: none; }
}
/* ===== Firm Video ===== */
.firm-video-wrap {
  width: 100%; overflow: hidden;
  border-top: 1px solid var(--line);
  position: relative; background: var(--ink);
}
.firm-video {
  width: 100%; display: block;
  max-height: 680px; object-fit: cover;
  opacity: 0; transition: opacity 1s ease;
}
.firm-video.is-playing { opacity: 1; }

/* Portfolio page grey background */
.page-template-page-portfolio .site-main, .page-template-templates-page-portfolio-php .site-main { background: #f5f6f7; }
.page-template-page-portfolio .portfolio-header, .page-template-templates-page-portfolio-php .portfolio-header { background: #f5f6f7; }
.pf-filters { background: #fff !important; }
.portfolio-card { background: #fff !important; }
.portfolio-grid { background: #f5f6f7 !important; }




/* Why WSC Alignment + Attract Leaders sections */
.why-pillars-section { background: #f5f6f7; padding: 80px 0; }
.why-pillars-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.why-pillar-title { font-size: 28px; font-weight: 400; color: var(--navy, #0b1e3d); margin-bottom: 20px; }
.why-pillar-body { font-size: 16px; line-height: 1.75; color: var(--ink, #333); }





.stats-section .stat-number, .stats-section .stat-num { text-align: center; display: block; }
.stats-section .stat-label { text-align: center; display: block; }

/* Stats centered as a group */
.stats-section .container { max-width: 820px; margin-left: auto; margin-right: auto; }
.stat { text-align: left; }


/* Ampersand in firm-head: force body font so Playfair Display ornate & glyph is avoided */
.firm-head .amp { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; font-style: normal; }
/* Ribbon: right-align conference + investor access buttons */
.ribbon-inner { justify-content: flex-end !important; }


/* Disable Playfair Display f-ligatures that render oddly */
h1, h2, h3, .firm-head, .sectors-head, .voices-head, .hero-head {
  font-variant-ligatures: no-common-ligatures;
  font-feature-settings: 'liga' 0, 'clig' 0;
}

/* Market Opportunity section */
.market-section { padding: 100px 0; background: var(--white); border-top: 1px solid var(--line); }
.market-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
.market-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 28px 24px; }
.market-card-title { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 1.15rem; color: var(--blue); line-height: 1.3; margin-bottom: 14px; text-align: center; }
.market-card-desc { font-size: 0.92rem; color: var(--ink); line-height: 1.6; text-align: center; }
@media (max-width: 960px) { .market-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .market-grid { grid-template-columns: 1fr; } }

/* Additional Resources section */
.resources-section { padding: 80px 0; background: var(--blue-deep); border-top: 1px solid var(--line); color: var(--white); }
.resources-header { margin-bottom: 36px; }
.resources-header .hero-eyebrow { color: #9FC6EB; margin-bottom: 12px; }
.resources-header h2 { color: var(--white); }
.resources-body { padding: 0; background: transparent; }
.resources-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 40px; }
.resources-link { display: flex; align-items: flex-start; gap: 8px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.resources-link:last-child { border-bottom: none; }
.resources-link a { color: #9FC6EB; text-decoration: none; }
.resources-link a:hover { text-decoration: underline; }
.resources-link::before { content: "•"; color: #9FC6EB; flex-shrink: 0; margin-top: 2px; }
/* === 2026 CONFERENCE — hidden for launch; remove these 3 lines to re-enable === */
.ribbon-link[data-route="conference"], .ribbon-link[href*="conference"],
a.ribbon-link[href*="conference"] { display: none !important; }
.ribbon-sep { display: none !important; }
/* === end conference hide === */

/* Bio modal min-height for shorter bios */
.bio-body-col { min-height: 420px; }

/* Mobile: larger menu toggle with chevron indicator */
.menu-toggle::after { content: " ▾"; font-size: 0.9rem; }
.menu-toggle { padding: 9px 16px; font-weight: 600; border-width: 1.5px; letter-spacing: 0.04em; }
/* === Eyebrow labels — larger for better readability === */
.hero-eyebrow, .firm-eyebrow, .sectors-eyebrow, .wall-eyebrow,
.portfolio-band-eyebrow, .voices-eyebrow, .why-hero .hero-eyebrow,
.contact-band .hero-eyebrow, .pf-hero .hero-eyebrow,
.team-hero .hero-eyebrow, .conf-eyebrow, .resources-header .hero-eyebrow {
  font-size: 0.88rem !important;
  letter-spacing: 0.16em !important;
}
/* === Logo ticker — larger logos === */
.logo-ticker-item { height: 88px !important; width: 190px !important; }
.logo-ticker-item img { max-height: 88px !important; }
