/* ============================================================
   KP CULTURE  —  /about-us/kp-culture
   Inherits tokens (--navy/--gold/fonts) from home-page.css.
   Sections: hero+collage / accreditation marquee / world-map
   stat / video punch / 4-card values / process carousel /
   closing video punch.
============================================================ */

body { background: #fff; color: var(--navy); font-family: var(--font-sans); }

/* Push first section below fixed topbar */
#kpc-hero { padding-top: clamp(110px, 12vw, 170px); }


/* ============================================================
   1. HERO  —  dark navy, copy left, photo collage right
============================================================ */
.kpc-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding-bottom: clamp(56px, 7vw, 96px);
}
.kpc-hero::before {
  /* subtle dot mesh ambient */
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1.4px);
  background-size: 18px 18px;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, transparent 80%);
  pointer-events: none;
}

.kpc-hero__wrap {
  position: relative;
  z-index: 1;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

.kpc-hero__copy { padding: clamp(20px, 4vw, 48px) 0; }

/* ── Banner hero variant (light: eyebrow + About Us + snippet + full-width image) ── */
.kpc-hero--banner {
  background: #fff;
  color: var(--navy);
  padding-bottom: 0;
}
.kpc-hero--banner::before { display: none; }
.kpc-hero__head {
  position: relative; z-index: 1;
  max-width: 1480px; margin: 0 auto;
  padding: clamp(6px, 2vw, 20px) clamp(20px, 5vw, 80px) clamp(34px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
}
.kpc-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(11,30,61,0.6);
  margin-bottom: clamp(18px, 2vw, 26px);
}
.kpc-hero__eyebrow-sq {
  width: 12px; height: 12px;
  background: var(--gold);
  display: inline-block;
}
.kpc-hero--banner .kpc-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}
.kpc-hero__snippet {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.62;
  color: rgba(11,30,61,0.66);
  margin: 0 0 8px;
  max-width: 44ch;
}
.kpc-hero__snippet em { font-style: italic; color: var(--gold); }
.kpc-hero__banner {
  /* Inset the banner from the page edges and round its corners so
     the full group photo is visible and framed nicely. The old
     edge-to-edge layout + object-fit:cover was cropping the sides
     because the photo's natural aspect (~3:1) is wider than the
     viewport at most desktop widths.
     - max-width keeps a sensible reading width on ultra-wide screens
     - margin-inline centers it
     - object-fit:contain (set below) means NO side-cropping; the
       container height auto-adjusts via aspect-ratio so the entire
       photo is shown */
  margin: 0 auto;
  width: calc(100% - clamp(24px, 5vw, 80px) * 2);  /* L/R padding from the page */
  max-width: 1400px;
  /* Match the photo's natural aspect (1905x620) so object-fit:cover
     crops zero pixels in either dimension. If the image is ever
     replaced with a different photo, update this ratio (or switch
     to object-fit:contain so the letterbox absorbs any mismatch). */
  aspect-ratio: 1905 / 620;
  overflow: hidden;
  background: #0b1e3d;
  border-radius: clamp(14px, 1.6vw, 24px);         /* rounded corners */
}
.kpc-hero__banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* keep the accreditation marquee exactly as-is: white logos on a navy band */
.kpc-hero--banner .kpc-creds {
  background: var(--navy);
  max-width: none;
}
@media (max-width: 760px) {
  .kpc-hero__head { grid-template-columns: 1fr; align-items: start; gap: 18px; }
}

.kpc-hero__crumb {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: clamp(28px, 3vw, 44px);
}
.kpc-hero__crumb a { color: rgba(255,255,255,0.78); text-decoration: none; transition: color 0.3s ease; }
.kpc-hero__crumb a:hover { color: var(--gold); }
.kpc-hero__crumb span[aria-hidden] { color: rgba(255,255,255,0.32); }

.kpc-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 6.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 22px;
}
.kpc-hero__title-em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
/* Inline pill (the "&" separator) — gold ellipse */
.kpc-hero__pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #fff;
  width: 1.4em; height: 0.95em;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.55em;
  font-weight: 500;
  vertical-align: 0.18em;
  margin: 0 6px;
}

.kpc-hero__lede {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 46ch;
}
.kpc-hero__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, gap 0.35s ease, transform 0.35s ease;
}
.kpc-hero__cta:hover { background: var(--gold); border-color: var(--gold); color: #fff; gap: 14px; }

/* ── Collage: 4 portrait tiles in an asymmetric grid ── */
.kpc-hero__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1.3fr 1fr;
  gap: 14px;
  height: clamp(420px, 50vw, 560px);
}
.kpc-collage {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin: 0;
}
.kpc-collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.6s cubic-bezier(0.16,1,0.3,1);
}
.kpc-collage:hover img { transform: scale(1.06); }
.kpc-collage--a { grid-column: 1 / 2; grid-row: 1 / 2; }
.kpc-collage--b { grid-column: 2 / 3; grid-row: 1 / 2; transform: translateY(28px); }
.kpc-collage--c { grid-column: 1 / 2; grid-row: 2 / 3; transform: translateY(28px); }
.kpc-collage--d { grid-column: 2 / 3; grid-row: 2 / 3; }

/* single banner variant */
.kpc-hero__collage--single { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.kpc-collage--single {
  grid-column: 1 / -1; grid-row: 1 / -1;
  transform: none !important; animation: none !important;
  border-radius: 20px;
}

/* gentle floating loop */
.kpc-collage--a { animation: kpcFloatA 8s ease-in-out infinite; }
.kpc-collage--b { animation: kpcFloatB 9s ease-in-out infinite; }
.kpc-collage--c { animation: kpcFloatC 10s ease-in-out infinite; }
.kpc-collage--d { animation: kpcFloatD 11s ease-in-out infinite; }
@keyframes kpcFloatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes kpcFloatB { 0%,100% { transform: translateY(28px); } 50% { transform: translateY(14px); } }
@keyframes kpcFloatC { 0%,100% { transform: translateY(28px); } 50% { transform: translateY(40px); } }
@keyframes kpcFloatD { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }


/* ── Accreditation marquee ── */
.kpc-creds {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1480px;
  padding: clamp(28px, 4vw, 56px) clamp(20px, 5vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.10);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.kpc-creds__track {
  display: flex; align-items: center; gap: 36px;
  white-space: nowrap;
  animation: kpcMarquee 36s linear infinite;
}
.kpc-cred {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.6vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  flex-shrink: 0;
}
.kpc-cred-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes kpcMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}


/* ── World-map punch line — light section ── */
.kpc-globe-sec {
  background: #fff;
  padding: clamp(80px, 10vw, 160px) clamp(20px, 5vw, 80px);
}
.kpc-globe {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  min-height: clamp(320px, 40vw, 480px);
  display: flex; align-items: center; justify-content: center;
  --mx: 50%; --my: 50%;
  --r: 220px;
}
/* Two stacked dot meshes — soft (always faintly visible) and sharp
   (revealed only inside the cursor radius via CSS mask).            */
.kpc-globe__map {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kpc-globe--light .kpc-globe__map--soft {
  background-image:
    radial-gradient(circle, rgba(11,30,61,0.32) 1.3px, transparent 1.6px);
  background-size: 14px 14px;
  -webkit-mask-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
          mask-image:
    radial-gradient(ellipse 70% 60% at 50% 50%, #000 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  opacity: 0.55;
}
.kpc-globe--light .kpc-globe__map--sharp {
  background-image:
    radial-gradient(circle, var(--gold) 1.6px, transparent 2.0px);
  background-size: 14px 14px;
  -webkit-mask: radial-gradient(circle var(--r) at var(--mx) var(--my),
    rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 100%);
          mask: radial-gradient(circle var(--r) at var(--mx) var(--my),
    rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.kpc-globe.is-hovering .kpc-globe__map--sharp { opacity: 1; }

.kpc-globe__line {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
  max-width: 38ch;
}
.kpc-globe__line em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}


/* ============================================================
   2. PUNCH BANNER  —  video background, single statement
============================================================ */
.kpc-punch {
  position: relative;
  min-height: clamp(360px, 48vw, 560px);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.kpc-punch__bg { position: absolute; inset: 0; z-index: 0; }
.kpc-punch__bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.kpc-punch__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,30,61,0.42) 0%, rgba(11,30,61,0.55) 100%);
  z-index: 1;
}
.kpc-punch__content {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5vw, 60px);
  max-width: 1080px;
  color: #fff;
}
.kpc-punch__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.kpc-punch__line {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.kpc-punch__line em { font-style: italic; font-weight: 400; color: var(--gold); }
.kpc-punch__line--small { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.kpc-punch__cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  padding: 14px 26px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: background 0.35s ease, color 0.35s ease, gap 0.35s ease, border-color 0.35s ease;
}
.kpc-punch__cta:hover { background: #fff; color: var(--navy); gap: 14px; border-color: #fff; }

/* "Rich" punch — adds a body paragraph + CTA under the headline */
.kpc-punch__content--rich { max-width: 760px; }
.kpc-punch__body {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.86);
  margin: 24px auto 0;
  max-width: 56ch;
}
.kpc-punch--video { min-height: clamp(440px, 56vw, 640px); }


/* ============================================================
   3. INTRO  —  two-column "we are serious"
============================================================ */
.kpc-intro {
  background: #f6f6f4;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 5vw, 80px);
}
.kpc-intro__wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: end;
}
.kpc-intro__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
}
.kpc-intro__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.kpc-intro__body p {
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 1.1vw, 1.1rem);
  line-height: 1.72;
  color: rgba(11,30,61,0.78);
  margin: 0 0 24px;
}
.kpc-intro__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.35s ease, gap 0.35s ease;
}
.kpc-intro__cta:hover { background: var(--gold); gap: 14px; }


/* ============================================================
   4. VALUE CARD GRID  —  4 cards
============================================================ */
.kpc-values {
  background: #fff;
  padding: clamp(40px, 5vw, 80px) clamp(20px, 5vw, 80px) clamp(80px, 9vw, 140px);
}
.kpc-values__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 22px);
}
.kpc-value {
  /* Off-white default — warm cream that reads as neutral on both
     light and slightly tinted page backgrounds. */
  background: #faf7f1;
  border-radius: 18px;
  padding: clamp(28px, 2.4vw, 36px);
  display: flex; flex-direction: column;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), background 0.4s ease;
}
.kpc-value:hover { transform: translateY(-6px); background: var(--navy); color: #fff; }
.kpc-value:hover .kpc-value__title,
.kpc-value:hover .kpc-value__desc { color: inherit; }
.kpc-value:hover .kpc-value__icon { background: var(--gold); color: #fff; }
.kpc-value:hover .kpc-value__desc { color: rgba(255,255,255,0.78); }
/* Icons hidden per client request — markup kept in the DOM so we
   can re-enable later by switching back to inline-flex. The cards
   still keep their numbered watermark and rely on title + body
   copy alone. */
.kpc-value__icon {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(11,30,61,0.06);
  color: var(--navy);
  margin-bottom: 22px;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.kpc-value:hover .kpc-value__icon { transform: scale(1.10); }
.kpc-value__icon svg { width: 22px; height: 22px; display: block; }
.kpc-value__title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 14px;
  transition: color 0.4s ease;
}
.kpc-value__desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(11,30,61,0.7);
  margin: 0;
  transition: color 0.4s ease;
}
/* Accent variant neutralised — per client request, all 5 mission
   cards now share the same off-white default and navy-on-hover
   behaviour. The .kpc-value--accent class is kept in the markup
   for backward compatibility but its styling is reset so it
   inherits everything from the base .kpc-value rules above. */
.kpc-value--accent {
  background: #faf7f1;
  color: inherit;
}
.kpc-value--accent .kpc-value__title { color: var(--navy); }
.kpc-value--accent .kpc-value__desc  { color: rgba(11,30,61,0.7); }
.kpc-value--accent .kpc-value__icon  {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(11,30,61,0.06);
}


/* ============================================================
   5. PROCESS  —  D3 "moving forward" flow infographic
============================================================ */
.kpc-process {
  background: #f6f6f4;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 5vw, 80px);
}
.kpc-process__head {
  max-width: 1320px;
  margin: 0 auto clamp(20px, 2.4vw, 32px);
  display: flex; align-items: end; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.kpc-process__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--navy);
  margin: 0;
}
.kpc-process__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.kpc-process__lede {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.6;
  color: rgba(11,30,61,0.72);
  max-width: 38ch;
  margin: 0;
}
.kpc-process__rule {
  max-width: 1320px;
  margin: 0 auto clamp(28px, 3vw, 40px);
  height: 1px;
  background: rgba(11,30,61,0.14);
}

/* ── D3 infographic ── */
.kpc-flow {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.kpc-flow__svg-wrap {
  width: 100%;
  position: relative;
}
.kpc-flow__svg-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Path styles (the connecting curve) */
.kpc-flow__path {
  fill: none;
  stroke: rgba(11,30,61,0.16);
  stroke-width: 2;
  stroke-linecap: round;
}
.kpc-flow__path-progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.4;
  stroke-linecap: round;
}

/* Node group (circle + ordinal + title) */
.kpc-flow__node { cursor: pointer; }
.kpc-flow__node-halo {
  fill: rgba(184,150,110,0.18);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.kpc-flow__node:hover .kpc-flow__node-halo,
.kpc-flow__node.is-active .kpc-flow__node-halo { opacity: 1; }

.kpc-flow__node-ring {
  fill: #fff;
  stroke: rgba(11,30,61,0.16);
  stroke-width: 2;
  transition: stroke 0.35s ease, fill 0.35s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
  transform-origin: center;
}
.kpc-flow__node:hover .kpc-flow__node-ring,
.kpc-flow__node.is-active .kpc-flow__node-ring {
  fill: var(--navy);
  stroke: var(--gold);
}

.kpc-flow__node-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  fill: var(--navy);
  text-anchor: middle;
  dominant-baseline: central;
  transition: fill 0.35s ease;
}
.kpc-flow__node:hover .kpc-flow__node-num,
.kpc-flow__node.is-active .kpc-flow__node-num { fill: var(--gold); }

.kpc-flow__node-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  fill: var(--navy);
  text-anchor: middle;
  transition: fill 0.35s ease, font-weight 0.3s ease;
}
.kpc-flow__node:hover .kpc-flow__node-title,
.kpc-flow__node.is-active .kpc-flow__node-title { fill: var(--gold); }

/* Animated traveller — a small dot that loops forward along the path */
.kpc-flow__traveller {
  fill: var(--gold);
  filter: drop-shadow(0 2px 6px rgba(184,150,110,0.45));
}

/* Detail card under the infographic */
.kpc-flow__detail {
  max-width: 720px;
  margin: clamp(24px, 3vw, 40px) auto 0;
  background: #fff;
  border: 1px solid rgba(11,30,61,0.06);
  border-radius: 18px;
  padding: clamp(24px, 2.4vw, 36px);
  text-align: center;
  min-height: 140px;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.kpc-flow__detail-num {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.kpc-flow__detail-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--navy);
  margin: 0 0 10px;
}
.kpc-flow__detail-desc {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(11,30,61,0.72);
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .kpc-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .kpc-hero__wrap { grid-template-columns: 1fr; }
  .kpc-hero__collage { height: clamp(360px, 90vw, 480px); }
  .kpc-intro__wrap { grid-template-columns: 1fr; align-items: start; }
  .kpc-process__head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .kpc-values__grid { grid-template-columns: 1fr; }
  .kpc-hero__title { font-size: clamp(2.2rem, 11vw, 3rem); }
  .kpc-punch__line { font-size: clamp(1.6rem, 9vw, 2.4rem); }
}


/* ============================================================
   1c. INTRO  —  large editorial lede + 2x2 grey card grid
============================================================ */
.kpc-intro {
  padding: clamp(80px, 9vw, 140px) clamp(20px, 5vw, 80px);
  background: #fff;
}

/* ---- INTRO (prose variant) — verbatim client copy, 2-column ---- */
.kpc-intro--prose { background: #fff; }
.kpc-intro--prose .kpc-intro__split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.kpc-intro__aside { position: relative; }
@media (min-width: 981px) {
  .kpc-intro__aside { position: sticky; top: 120px; }
}
.kpc-intro--prose .kpc-intro__chip {
  /* reuse pill look but left-aligned in this layout */
  margin-bottom: clamp(18px, 2vw, 24px);
}
.kpc-intro__heading {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--navy);
  margin: 0;
}
.kpc-intro__heading em { font-style: italic; font-weight: 400; color: var(--gold); }
.kpc-intro__rule {
  display: block;
  width: 64px; height: 2px;
  margin: clamp(24px, 3vw, 34px) 0 clamp(22px, 2.6vw, 30px);
  background: linear-gradient(90deg, var(--gold), rgba(184,150,110,0));
}
.kpc-intro__facts {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 20px);
  margin: 0;
}
.kpc-intro__fact {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.kpc-intro__fact dt {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  min-width: 64px;
}
.kpc-intro__fact dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(11,30,61,0.6);
}

.kpc-intro__prose { max-width: 64ch; }
.kpc-intro__prose p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.05vw, 1.085rem);
  line-height: 1.74;
  color: rgba(11,30,61,0.82);
  margin: 0 0 1.25em;
}
.kpc-intro__prose p:last-child { margin-bottom: 0; }
.kpc-intro__prose .kpc-intro__lead {
  font-size: clamp(1.12rem, 1.35vw, 1.28rem);
  line-height: 1.6;
  color: var(--navy);
}
.kpc-intro__prose em { font-style: italic; color: var(--gold); }

@media (max-width: 980px) {
  .kpc-intro--prose .kpc-intro__split { grid-template-columns: 1fr; gap: clamp(28px, 6vw, 44px); }
  .kpc-intro__prose { max-width: none; }
}

/* Top — centred chip + huge serif lede */
.kpc-intro__top {
  max-width: 980px;
  margin: 0 auto clamp(48px, 6vw, 88px);
  text-align: center;
  position: relative;
}
.kpc-intro__chip {
  display: inline-flex; align-items: center;
  padding: 8px 16px;
  margin-bottom: clamp(20px, 2vw, 28px);
  border: 1px solid rgba(11,30,61,0.18);
  border-radius: 999px;
  background: #f4f4f3;
  font-family: var(--font-sans);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(11,30,61,0.7);
}
.kpc-intro__lede {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.7rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0;
}
.kpc-intro__lede em {
  font-style: italic;
  font-weight: 400;
  color: rgba(11,30,61,0.55);
}

/* 2x2 card grid */
.kpc-intro__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 2vw, 32px);
}

.kpc-card {
  background: #f4f4f3;
  border-radius: 22px;
  padding: clamp(20px, 1.8vw, 28px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
  transition: background 0.5s ease, transform 0.5s ease;
}
.kpc-card:hover { background: #ececeb; transform: translateY(-3px); }

.kpc-card__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #e6e5e3;
  min-height: 220px;
}
.kpc-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.kpc-card:hover .kpc-card__media img { transform: scale(1.04); }

.kpc-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  display: inline-flex; align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--navy);
}

.kpc-card__body {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: clamp(8px, 0.8vw, 12px) clamp(6px, 0.8vw, 12px);
  gap: 16px;
}
.kpc-card__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.55vw, 1.5rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--navy);
  margin: 0 0 12px;
}
.kpc-card__title em { font-style: italic; font-weight: 400; color: rgba(11,30,61,0.55); }

.kpc-card__desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(11,30,61,0.7);
  margin: 0 0 14px;
}
.kpc-card__desc em { font-style: italic; color: var(--navy); font-weight: 500; }

.kpc-card__chips {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.kpc-card__chip {
  display: inline-flex; align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11,30,61,0.10);
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  color: rgba(11,30,61,0.72);
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .kpc-intro__grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .kpc-card { grid-template-columns: 1fr; }
  .kpc-card__media { min-height: 200px; }
}


/* ============================================================
   1d. ENDORSEMENTS  —  horizontal rail of tall portrait cards
============================================================ */
/* ============================================================
   1d. HIGHLIGHTS / CREDENTIALS  —  framed image + checklist
============================================================ */
.kpc-highlights {
  padding: clamp(60px, 7vw, 104px) clamp(20px, 5vw, 80px);
  background: #fff;
  position: relative;
}
.kpc-highlights__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.kpc-highlights__head {
  max-width: 760px;
  margin: 0 0 clamp(28px, 3.2vw, 46px);
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.16,1,0.3,1),
    transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.kpc-cred__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px 7px 12px;
  background: var(--navy);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.kpc-cred__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,150,110,0.22);
}
.kpc-cred__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 16px 0 0;
}
.kpc-cred__title em { font-style: italic; font-weight: 400; color: var(--gold); }

/* compact 2-column credentials grid */
.kpc-cred__list {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(28px, 4vw, 72px);
  border-top: 1px solid rgba(11,30,61,0.12);
}
.kpc-cred__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: clamp(11px, 1.15vw, 15px) 0;
  border-bottom: 1px solid rgba(11,30,61,0.10);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.55s cubic-bezier(0.16,1,0.3,1),
    transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.kpc-cred__check {
  flex-shrink: 0;
  width: 23px; height: 23px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gold);
  background: rgba(184,150,110,0.12);
  border: 1px solid rgba(184,150,110,0.34);
  transition: background 0.35s ease, color 0.35s ease;
}
.kpc-cred__check svg { width: 13px; height: 13px; }
.kpc-cred__item:hover .kpc-cred__check { background: var(--gold); color: #fff; }
.kpc-cred__text {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 0.98vw, 0.99rem);
  line-height: 1.4;
  color: rgba(11,30,61,0.84);
}

/* ---- Reveal (driven by .in-view added in kp-culture.js) ---- */
.kpc-highlights.in-view .kpc-highlights__head { opacity: 1; transform: translateY(0); }
.kpc-highlights.in-view .kpc-cred__item { opacity: 1; transform: translateY(0); }
.kpc-highlights.in-view .kpc-cred__item:nth-child(1) { transition-delay: 0.14s; }
.kpc-highlights.in-view .kpc-cred__item:nth-child(2) { transition-delay: 0.20s; }
.kpc-highlights.in-view .kpc-cred__item:nth-child(3) { transition-delay: 0.26s; }
.kpc-highlights.in-view .kpc-cred__item:nth-child(4) { transition-delay: 0.32s; }
.kpc-highlights.in-view .kpc-cred__item:nth-child(5) { transition-delay: 0.38s; }
.kpc-highlights.in-view .kpc-cred__item:nth-child(6) { transition-delay: 0.44s; }
.kpc-highlights.in-view .kpc-cred__item:nth-child(7) { transition-delay: 0.50s; }
.kpc-highlights.in-view .kpc-cred__item:nth-child(8) { transition-delay: 0.56s; }

@media (max-width: 720px) {
  .kpc-cred__list { grid-template-columns: 1fr; }
}


/* ============================================================
   1d/1e. TWO-COLUMN — Highlights + Practice Domains, one container
============================================================ */
.kpc-twocol {
  padding: clamp(60px, 7vw, 110px) clamp(20px, 5vw, 80px);
  background: #fff;
}
.kpc-twocol__wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;   /* heading / image / content */
  column-gap: clamp(32px, 4vw, 72px);
  row-gap: clamp(20px, 2.4vw, 32px);
}
/* each column maps its 3 parts onto the shared rows so they align */
.kpc-twocol__col {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
}
.kpc-twocol__head {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;   /* titles sit just above the images */
  gap: 14px;
}
.kpc-twocol .kpc-cred__badge { align-self: flex-start; }
.kpc-twocol__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.kpc-twocol__title em { font-style: italic; font-weight: 400; color: var(--gold); }

.kpc-twocol__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #0b1e3d;
  box-shadow: 0 24px 56px -30px rgba(11,30,61,0.38);
}
.kpc-twocol__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* pointers — single column inside the narrower column, always visible */
.kpc-twocol .kpc-cred__list { grid-template-columns: 1fr; }
.kpc-twocol .kpc-cred__item { opacity: 1; transform: none; }

.kpc-twocol__body p {
  font-family: var(--font-sans);
  font-size: clamp(0.96rem, 1.05vw, 1.05rem);
  line-height: 1.72;
  color: rgba(11,30,61,0.82);
  margin: 0;
}

@media (max-width: 820px) {
  .kpc-twocol__wrap { grid-template-columns: 1fr; grid-template-rows: none; row-gap: clamp(34px, 8vw, 56px); }
  .kpc-twocol__col { grid-row: auto; grid-template-rows: none; display: flex; flex-direction: column; gap: 20px; }
}


/* ============================================================
   1e. PRACTICE DOMAINS
============================================================ */
.kpc-practice {
  padding: clamp(56px, 6.5vw, 100px) clamp(20px, 5vw, 80px);
  background: #fff;
}
.kpc-practice__wrap {
  max-width: 1140px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.kpc-practice__eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid rgba(184,150,110,0.45);
  padding-top: 14px;
}
.kpc-practice__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 18px 0 26px;
}
.kpc-practice__title em { font-style: italic; font-weight: 400; color: var(--gold); }

/* banner variant — exact client heading + single image */
.kpc-practice--banner .kpc-practice__title {
  font-size: clamp(1.7rem, 2.9vw, 2.5rem);
  margin: 0 0 26px;
}
.kpc-practice__banner {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #0b1e3d;
  box-shadow: 0 24px 56px -28px rgba(11,30,61,0.38);
}
.kpc-practice__banner img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
@media (max-width: 1100px) {
  .kpc-practice__banner { aspect-ratio: 16 / 10; }
}

.kpc-practice__body p {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.05vw, 1.075rem);
  line-height: 1.7;
  color: rgba(11,30,61,0.82);
  margin: 0 0 1em;
}
.kpc-practice__body strong { color: var(--navy); font-weight: 600; }

.kpc-practice__chips {
  position: relative;
  display: flex; flex-wrap: wrap; gap: 14px;
  align-content: center;
  padding: clamp(32px, 3.5vw, 56px);
  background: #0b1e3d;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(184,150,110,0.22), transparent 60%),
    radial-gradient(circle at 10% 95%, rgba(184,150,110,0.10), transparent 50%);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
}
/* Subtle blueprint grid behind everything */
.kpc-practice__chips::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
/* SVG layer for connection lines (positioned absolute, fills container) */
.kpc-practice__net {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}
.kpc-practice__net-line {
  fill: none;
  stroke: rgba(184,150,110,0.65);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: drop-shadow(0 0 6px rgba(184,150,110,0.18));
}
.kpc-practice__net-line.is-drawn { opacity: 1; transition: opacity 0.4s ease; }

/* Tiny end-node circles where lines meet */
.kpc-practice__net-node {
  fill: var(--gold);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

/* Chip — start hidden; GSAP brings them in */
.kpc-practice__chip {
  position: relative;
  z-index: 2;
  display: inline-flex; align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: var(--font-sans);
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.92);
  cursor: default;
  opacity: 0;                           /* will be revealed by GSAP */
  transform: translateY(-40px) rotate(-6deg) scale(0.7);
  will-change: transform, opacity;
  box-shadow: 0 10px 30px -16px rgba(0,0,0,0.6);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}
.kpc-practice__chip:hover {
  background: rgba(255,255,255,0.16);
  box-shadow: 0 14px 28px -14px rgba(184,150,110,0.55);
}
.kpc-practice__chip--accent {
  background: var(--gold);
  border-color: var(--gold);
  color: #0b1e3d;
}
.kpc-practice__chip--accent:hover { background: #cba883; border-color: #cba883; }

/* "Built since 1956" badge that fades in once construction completes */
.kpc-practice__badge {
  position: absolute;
  right: 16px; bottom: 16px;
  z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(184,150,110,0.45);
  backdrop-filter: blur(4px);
  font-family: var(--font-sans);
  font-size: 0.7rem; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.kpc-practice__badge.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.kpc-practice__badge-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,110,0.18);
  animation: kpcPulseDot 1.6s ease-in-out infinite;
}
@keyframes kpcPulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(184,150,110,0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(184,150,110,0.05); }
}

/* Travelling pulse along the construction lines */
.kpc-practice__pulse {
  fill: url(#kpcPulseGrad);
  opacity: 0;
}

@media (max-width: 1100px) { .kpc-practice__wrap { grid-template-columns: 1fr; } }


/* ============================================================
   3b. VISION  —  Evervan-style split layout, image wipes 0→full
============================================================ */
.kpc-vision {
  --reveal: 0;                        /* set by JS, 0..1 */
  padding: clamp(72px, 8vw, 130px) clamp(20px, 5vw, 80px);
  background: #efe9e0;                /* warm beige */
  background-image:
    radial-gradient(120% 80% at 100% 0%,  rgba(255,255,255,0.55), transparent 60%),
    radial-gradient(120% 100% at 0% 100%, rgba(184,150,110,0.10), transparent 60%);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.kpc-vision__wrap {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: stretch;
  min-height: clamp(520px, 70vh, 720px);
}

/* === LEFT COLUMN === */
.kpc-vision__copy {
  display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3vw, 56px) clamp(0px, 1vw, 16px);
  max-width: 520px;
}
.kpc-vision__chip {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  width: max-content;
  border: 1.5px solid rgba(184,150,110,0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(184,150,110,0.06) 100%);
  backdrop-filter: blur(4px);
  font-family: var(--font-sans);
  font-size: 0.98rem; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: clamp(24px, 3vw, 36px);
  box-shadow: 0 6px 20px -8px rgba(184,150,110,0.30);
}
.kpc-vision__chip-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184,150,110,0.22);
}
.kpc-vision__chip-mute { color: rgba(11,30,61,0.60); margin-left: 4px; font-weight: 500; }

.kpc-vision__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 clamp(16px, 1.6vw, 26px);
}
.kpc-vision__title em { font-style: italic; font-weight: 400; color: var(--navy); }

/* ---- Vision statement variant (centered, client's exact vision) ---- */
.kpc-vision--statement {
  padding: clamp(64px, 7.5vw, 116px) clamp(20px, 5vw, 80px);
}
.kpc-vision--statement .kpc-vision__inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.kpc-vision__statement {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.3vw, 2.85rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin: clamp(20px, 2.4vw, 32px) 0 0;
}
.kpc-vision__statement em {
  font-style: italic; font-weight: 400;
  color: var(--gold);
}

.kpc-vision__desc {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  line-height: 1.62;
  color: rgba(11,30,61,0.72);
  margin: 0 0 clamp(24px, 3vw, 36px);
  max-width: 38ch;
}

.kpc-vision__cta {
  display: inline-flex; align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 22px;
  background: #fff;
  border: 1px solid rgba(11,30,61,0.10);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.92rem; font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  width: max-content;
  box-shadow: 0 6px 18px -8px rgba(11,30,61,0.18);
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.kpc-vision__cta:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.kpc-vision__cta-icon {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  transition: background 0.4s ease;
}
.kpc-vision__cta:hover .kpc-vision__cta-icon { background: var(--gold); }

.kpc-vision__credline {
  margin: clamp(40px, 5vw, 64px) 0 12px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(11,30,61,0.55);
}
.kpc-vision__credline strong { color: var(--navy); font-weight: 600; }
.kpc-vision__creds {
  display: flex; gap: 22px; flex-wrap: wrap;
}
.kpc-vision__cred {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: rgba(11,30,61,0.58);
}

/* === RIGHT COLUMN — visual === */
/* CBR-style "section image": image starts as a small centred slot
   and expands outward (both sides) to fill the column. The slot
   also grows vertically a touch so the reveal feels banner-like. */
.kpc-vision__visual {
  position: relative;
  min-height: clamp(420px, 56vh, 620px);
  background: transparent;
  /* No clip on the wrapper — the slot effect is applied to the media
     so the floating quote card sits above it without being clipped. */
}
.kpc-vision__media {
  position: absolute; inset: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #d8d2c8;
  /* CBR-style "section image" reveal — centred slot expands outward.
     At --reveal 0  → inset(8% 46% 8% 46%) — narrow centred slot.
     At --reveal 1  → inset(0%  0%  0%  0% ) — fills the right column. */
  clip-path:
    inset(
      calc((1 - var(--reveal, 0)) * 8%)
      calc((1 - var(--reveal, 0)) * 46%)
      calc((1 - var(--reveal, 0)) * 8%)
      calc((1 - var(--reveal, 0)) * 46%)
      round 22px
    );
  -webkit-clip-path:
    inset(
      calc((1 - var(--reveal, 0)) * 8%)
      calc((1 - var(--reveal, 0)) * 46%)
      calc((1 - var(--reveal, 0)) * 8%)
      calc((1 - var(--reveal, 0)) * 46%)
      round 22px
    );
  will-change: clip-path;
  transition: none;
}
.kpc-vision__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* 2026-06-10: the gold seal + stars sit left-of-centre in the source
     photo; shift the cover crop left so they land in the frame centre. */
  object-position: 38% center;
  /* Subtle settle as the slot lands at full size */
  transform: scale(calc(1.06 - var(--reveal) * 0.06));
  transition: transform 0.4s ease;
}

/* Floating quote card */
.kpc-vision__qcard {
  position: absolute;
  top: clamp(20px, 2vw, 36px);
  right: clamp(20px, 2vw, 36px);
  left: auto;
  width: clamp(260px, 28vw, 340px);
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: rgba(20,30,46,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 14px 40px -16px rgba(0,0,0,0.45);
  /* Fade in with the reveal */
  opacity: calc(var(--reveal) * var(--reveal));
  transform: translateY(calc((1 - var(--reveal)) * 16px));
  transition: opacity 0.05s linear, transform 0.05s linear;
}
.kpc-vision__qcard-eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: -0.005em;
  color: #fff;
  margin-bottom: 12px;
}
.kpc-vision__qcard-quote {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin: 0 0 14px;
}
.kpc-vision__qcard-foot {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.kpc-vision__qcard-avatar {
  width: 32px; height: 32px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, var(--gold), #6f5a3f 70%);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.18);
}
.kpc-vision__qcard-name {
  display: flex; flex-direction: column;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  line-height: 1.3;
}
.kpc-vision__qcard-name strong { color: #fff; font-weight: 600; }
.kpc-vision__qcard-name em { color: rgba(255,255,255,0.6); font-style: normal; }

@media (max-width: 1100px) {
  .kpc-vision__wrap { grid-template-columns: 1fr; min-height: 0; }
  .kpc-vision__visual { min-height: 60vw; }
  .kpc-vision__qcard { width: clamp(220px, 60vw, 320px); }
}
@media (max-width: 600px) {
  .kpc-vision__title { font-size: clamp(2rem, 9vw, 3rem); }
  .kpc-vision__qcard { top: 12px; right: 12px; padding: 14px; }
}


/* ============================================================
   4b. MISSION HEAD + 5-card layout enhancements
============================================================ */
.kpc-values__head { max-width: 1180px; margin: 0 auto clamp(40px, 5vw, 64px); }
.kpc-values__eyebrow {
  /* Match the .kpc-vision__chip pill so the two section markers feel
     like a deliberate pair — small enough to read as an eyebrow,
     prominent enough not to disappear. */
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 24px;
  border: 1.5px solid rgba(184,150,110,0.55);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(184,150,110,0.06) 100%);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  box-shadow: 0 6px 20px -8px rgba(184,150,110,0.30);
  margin-bottom: 4px;
}
/* Gold accent dot before the eyebrow text — mirrors the vision chip dot
   for visual continuity between the two section markers. */
.kpc-values__eyebrow::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184,150,110,0.22);
  flex-shrink: 0;
}
.kpc-values__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 18px 0 0;
}
.kpc-values__title em { font-style: italic; font-weight: 400; color: var(--gold); }

.kpc-values__grid--five { grid-template-columns: repeat(3, 1fr); }
.kpc-value__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .kpc-values__grid--five { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .kpc-values__grid--five { grid-template-columns: 1fr; }
  .kpc-intro__wrap { grid-template-columns: 1fr; }
  .kpc-intro__title { grid-column: 1; }
  .kpc-intro__body  { grid-column: 1; }
}


/* ============================================================
   1d. HIGHLIGHTS  —  heading + image-left + 2-col cred grid
   Full-width section, generous padding so it reads as its own
   chapter rather than sharing the rail with practice domains.
============================================================ */
.kpc-hl {
  background: #fff;
  padding: clamp(72px, 8vw, 120px) clamp(20px, 5vw, 80px);
}
/* Desktop gap reduction (2026-06-11): halve the white space between the
   intro prose and the Highlights section. Scoped ≥981px so the ≤980px
   single-column (tablet/phone) layout keeps its original spacing — per the
   desktop-only-changes-for-now protocol (mobile handled separately). */
@media (min-width: 981px) {
  .kpc-intro { padding-bottom: clamp(40px, 4.5vw, 70px); }
  .kpc-hl    { padding-top: clamp(36px, 4vw, 60px); }
}
.kpc-hl__wrap {
  max-width: 1320px;
  margin: 0 auto;
}
.kpc-hl__head {
  max-width: 820px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.kpc-hl__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: #0b1e3d;
  color: #fff;
  border-radius: 999px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 24px;
}
.kpc-hl__chip-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #b8966e;
}
.kpc-hl__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
}
.kpc-hl__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.kpc-hl__split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
}
.kpc-hl__media {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -28px rgba(11,30,61,0.28);
}
.kpc-hl__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.kpc-hl__media:hover img { transform: scale(1.04); }
.kpc-hl__media-frame {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255,255,255,0.40);
  border-radius: 12px;
  pointer-events: none;
}
.kpc-hl__list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  align-self: stretch;
}
.kpc-hl__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(11,30,61,0.08);
}
.kpc-hl__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(184,150,110,0.14);
  color: #b8966e;
  margin-top: 2px;
}
.kpc-hl__check svg { width: 14px; height: 14px; }
.kpc-hl__text {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #0b1e3d;
}
@media (max-width: 1080px) {
  .kpc-hl__list { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .kpc-hl__split { grid-template-columns: 1fr; gap: 36px; }
  .kpc-hl__media { aspect-ratio: 16 / 11; }
}


/* ============================================================
   1e. PRACTICE DOMAINS  —  editorial copy-left + image-right
   Different proportions, side, and background tone from
   highlights so the two sections read as a varied pair.
============================================================ */
.kpc-pd {
  background: #faf7f1;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 5vw, 80px);
}
.kpc-pd__wrap {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.kpc-pd__copy { max-width: 580px; }
.kpc-pd__chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(11,30,61,0.06);
  color: #0b1e3d;
  border-radius: 999px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 24px;
}
.kpc-pd__chip-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: #b8966e;
}
.kpc-pd__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 24px;
}
.kpc-pd__title em { font-style: italic; font-weight: 400; color: var(--gold); }
.kpc-pd__body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(11,30,61,0.78);
  margin: 0;
}
.kpc-pd__media {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 40px 80px -32px rgba(11,30,61,0.30);
}
.kpc-pd__media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.kpc-pd__media:hover img { transform: scale(1.04); }
.kpc-pd__media-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 14px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .kpc-pd__wrap { grid-template-columns: 1fr; gap: 36px; }
  .kpc-pd__media { aspect-ratio: 16 / 11; }
}


/* ============================================================
   Topbar legibility override for the kp-culture page.
   ------------------------------------------------------------
   The homepage's "top" topbar state was designed for a dark
   video hero — at scroll = 0 the bar shows a faint 33%-opacity
   navy gradient and uses the WHITE logo. On kp-culture the page
   background under the topbar is light/cream (no dark hero), so
   the white logo and white nav text disappear into the page.
   This rule darkens the gradient and adds a backdrop blur so
   the bar reads cleanly. The gradient fades to fully transparent
   within the topbar's own height (~85px), so nothing leaks below.
============================================================ */
.topbar[data-state="top"] {
  background: linear-gradient(to bottom,
    rgba(11,30,61,0.82) 0%,
    rgba(11,30,61,0.55) 50%,
    rgba(11,30,61,0.0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
