.executive-spotlight {
  padding: var(--section-padding-y) 0;
  background: var(--color-secondary); /* Dark background for spotlight effect */
  position: relative;
  overflow: hidden;
}

.executive-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-12);
  align-items: center;
}

.executive-visual {
  position: relative;
  z-index: 2;
}

.founder-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.founder-frame:hover .founder-img {
  transform: scale(1.05);
}

.founder-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--safety-yellow);
  z-index: -1;
  opacity: 0.2;
  border-radius: 4px;
}

.executive-content {
  color: var(--operational-white);
}

.quote-mark {
  font-family: var(--font-secondary);
  font-size: 5rem;
  color: var(--safety-yellow);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: -1rem;
}

.executive-statement {
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-8);
  color: var(--safety-yellow);
}

.executive-bio {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: var(--gray-100); /* Higher contrast for accessibility */
  margin-bottom: var(--space-6);
  max-width: 600px;
}

.executive-signature {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
}

.signature-name {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.signature-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--safety-yellow);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--space-1);
}

/* Texture overlay for spotlight */
.spotlight-texture {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,215,0,0.03) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 992px) {
  .executive-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .executive-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}
