.hero--about {
  min-height: calc(100vh - var(--topbar-h) - var(--nav-h));
}

.hero--about .hero-bg {
  background: var(--kpg-about-hero) center/cover no-repeat;
}

.hero--about .hero-bg::after {
  content: none;
}

.dark4 {
  background: var(--kpg-showroom-bg) center/cover no-repeat;
  overflow: hidden;
  position: relative;
}

.eyebrow-pill {
  display: inline-block;
  background: var(--pinkline);
  color: var(--maroon);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  padding: 8px 18px;
  border-radius: 20px;
  margin: 0;
}

.overview-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 64px;
  align-items: center;
}

.overview-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-copy .h2 {
  font-size: 38px;
}

.overview-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

.checklist {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.checklist li svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--magenta);
}

.overview-media {
  position: relative;
}

.overview-media img {
  display: block;
  width: 100%;
  aspect-ratio: 6 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.overview-badge {
  position: absolute;
  left: -24px;
  bottom: -32px;
  background: var(--magenta);
  color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  text-align: left;
  white-space: nowrap;
  box-shadow: 0 16px 30px rgba(229, 6, 135, .35);
}

.overview-badge .num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.overview-badge .lbl {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .03em;
  margin-top: 10px;
}

.story-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.story-heading-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.story-num {
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--pinkline);
  background: linear-gradient(180deg, var(--pinkline), rgba(252, 210, 222, 0));
  -webkit-background-clip: text;
  background-clip: text;
}

.story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: stretch;
}

.story-placeholder {
  min-height: 280px;
  background: linear-gradient(155deg, #f3eef1 0%, #eee7ea 100%);
  box-shadow: inset 0 0 0 1px var(--pinkline);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}

.story-placeholder svg {
  width: 48px;
  height: 48px;
}

.story-copy p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

.story-quote {
  position: relative;
  background: rgba(106, 19, 61, .06);
  border-radius: 8px;
  padding: 44px 40px 36px 76px;
  margin: 8px 0 0;
}

.story-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 24px;
  font-size: 72px;
  font-weight: 700;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--magenta);
  opacity: .18;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.story-quote p {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--ink);
  white-space: normal;
  overflow-wrap: break-word;
  font-style: italic;
}

.story-quote cite {
  position: relative;
  font-style: normal;
  font-weight: 700;
  color: var(--maroon);
  font-size: 14px;
}

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

.lcard {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
}

.lcard-media {
  width: 38%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.lcard-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lcard-media .avatar-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.lcard-media .avatar-placeholder svg {
  width: 44px;
  height: 44px;
}

.lcard-body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.lcard-body h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.lcard-body .role {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(229, 6, 135, 0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  width: fit-content;
}

.lcard-bio {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

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

.mv-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.values-col {
  display: flex;
  flex-direction: column;
}

.mv-card {
  background: #fff;
  box-shadow: 0 2px 10px rgba(106, 19, 61, .06);
  border-radius: 16px;
  padding: 28px;
}

.mv-card .micon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px var(--pinkline);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--magenta);
}

.mv-card .micon svg {
  width: 28px;
  height: 28px;
  flex: none;
}

.mv-card h3 {
  margin: 0 0 10px;
  color: var(--maroon);
  font-size: 26px;
  font-weight: 700;
}

.mv-card p {
  margin: 0;
  color: var(--maroon);
  font-size: 15px;
  line-height: 1.5;
}

.values-h {
  margin: 0 0 24px;
  color: var(--maroon);
  font-size: 20px;
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  flex: 1;
}

.value-card {
  background: linear-gradient(155deg, #f3eef1 0%, #ececec 100%);
  box-shadow: inset 0 0 0 1px rgba(106, 19, 61, .06);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform .18s cubic-bezier(.2, .8, .3, 1), box-shadow .18s ease, background .18s ease;
}

.value-card:hover {
  background: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(106, 19, 61, .14);
}

.value-card .vicon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 16px rgba(106, 19, 61, .1), inset 0 0 0 1px var(--pinkline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform .18s cubic-bezier(.2, .8, .3, 1);
}

.value-card:hover .vicon {
  transform: scale(1.06);
}

.value-card .vicon svg {
  width: 34px;
  height: 34px;
  color: var(--magenta);
  flex: none;
}

.value-card span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.serve-card {
  border-radius: 12px;
  padding: 24px;
  background: var(--pinkbg);
  box-shadow: inset 0 0 0 1px var(--pinkline);
  transition: background .18s ease, box-shadow .18s ease, transform .18s cubic-bezier(.2, .8, .3, 1);
}

.serve-card:hover {
  background: var(--maroon);
  box-shadow: none;
}

.serve-card .sicon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--pinkline);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--magenta);
  transition: background .18s ease, box-shadow .18s ease, color .18s ease;
}

.serve-card:hover .sicon {
  background: rgba(255, 255, 255, .12);
  box-shadow: none;
  color: #fff;
}

.serve-card .sicon svg {
  width: 22px;
  height: 22px;
  flex: none;
}

.serve-card h3 {
  margin: 0 0 8px;
  color: var(--maroon);
  font-size: 18px;
  transition: color .18s ease;
}

.serve-card:hover h3 {
  color: #fff;
}

.serve-card p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  transition: color .18s ease;
}

.serve-card:hover p {
  color: rgba(255, 255, 255, .8);
}

@media(max-width:960px) {

  .overview-grid,
  .story-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .overview-media img {
    aspect-ratio: 4 / 3;
  }

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:960px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media(max-width:640px) {
    
    .lcard-media img {
        object-fit: contain;
    }
  .overview-copy .h2 {
    font-size: 28px;
  }

  .overview-copy p {
    font-size: 15px;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .lcard {
    flex-direction: column;
  }

  .lcard-media {
    width: 100%;
    max-height: 220px;
  }

  .lcard-body {
    padding: 20px 24px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .story-num {
    font-size: 56px;
  }

  .overview-badge {
    left: 12px;
    bottom: -20px;
    padding: 14px 18px;
  }
}