/* ============================================================
   LEADERSHIP SECTION
   ============================================================ */
.leadership {
  background: var(--offwhite2);
}

/* Founder Card — Large Horizontal */
.founder-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 0;
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-xl);
  min-height: 460px;
}

/* Founder Image */
.founder-photo {
  position: relative;
  background: var(--navy-mid);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
}

.founder-photo-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  margin-bottom: 1rem;
}

.founder-photo-icon svg {
  color: var(--gold);
  opacity: 0.60;
}

.founder-photo-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
}

/* Gold accent stripe */
.founder-photo::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

/* Founder Content */
.founder-content {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.founder-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.founder-badge::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.founder-name {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

.founder-position {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
}

/* Quote */
.founder-quote-wrap {
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}

.founder-quote-mark {
  position: absolute;
  top: -1.5rem;
  left: 1.25rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  user-select: none;
  pointer-events: none;
}

.founder-quote {
  font-size: 1.0625rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
}

.founder-closing {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.40);
  font-style: italic;
}

/* CEO Cards Row */
.ceo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ceo-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}

.ceo-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* CEO Photo */
.ceo-photo {
  height: 260px;
  background: var(--navy-mid);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.ceo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ceo-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
  background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy) 100%);
}

.ceo-photo-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  margin-bottom: 0.75rem;
}

.ceo-photo-icon svg {
  color: var(--gold);
  opacity: 0.60;
}

.ceo-photo-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Gold bar on top of photo */
.ceo-photo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  z-index: 2;
}

/* CEO Content */
.ceo-content {
  padding: 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.ceo-biz-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: var(--navy);
  border-radius: var(--radius-full);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
}

.ceo-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  line-height: 1.1;
}

.ceo-position {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gray);
  text-transform: uppercase;
}

.ceo-quote {
  font-size: 0.9375rem;
  line-height: 1.70;
  color: var(--gray-dark);
  font-style: italic;
  border-left: 2px solid var(--gold-pale);
  padding-left: 1rem;
}

.ceo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 1px;
  border-bottom: 1.5px solid var(--navy);
  align-self: flex-start;
  transition: var(--transition-fast);
}

.ceo-cta:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.ceo-cta svg {
  transition: transform 0.25s;
}

.ceo-card:hover .ceo-cta svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 960px) {
  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    height: 380px;
  }

  .founder-photo-placeholder {
    min-height: 280px;
  }

  .founder-photo::after {
    display: none;
  }

  .founder-content {
    padding: 2.5rem 2rem;
  }

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

@media (max-width: 600px) {
  .founder-photo {
    height: 280px;
  }

  .founder-content {
    padding: 1.75rem 1.25rem;
  }

  .founder-name {
    font-size: 1.5rem;
  }

  .founder-quote {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ceo-photo {
    height: 240px;
  }

  .ceo-content {
    padding: 1.5rem 1.25rem;
  }

  .ceo-quote {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }
}
